././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949944.4750905 sphinxcontrib-qthelp-1.0.3/0000755000076600000240000000000000000000000016502 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1582949931.0 sphinxcontrib-qthelp-1.0.3/CHANGES0000644000076600000240000000064100000000000017476 0ustar00tkomiyastaff00000000000000Release 1.0.3 (2019-02-29) ========================== * Fix package metadata has broken Release 1.0.2 (2019-02-24) ========================== * #6097: the keyword IDs are not escaped qthelp in .qhp file Release 1.0.1 (2019-02-15) ========================== * Fix release package does not contain locale files Release 1.0.0 (2019-01-18) ========================== * Initial release (copied from sphinx package) ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843192.0 sphinxcontrib-qthelp-1.0.3/LICENSE0000644000076600000240000000263300000000000017513 0ustar00tkomiyastaff00000000000000License for sphinxcontrib-qthelp ================================ 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=1578843192.0 sphinxcontrib-qthelp-1.0.3/MANIFEST.in0000644000076600000240000000030300000000000020234 0ustar00tkomiyastaff00000000000000include README.rst include LICENSE include CHANGES include tox.ini recursive-include sphinxcontrib/qthelp/templates * recursive-include sphinxcontrib/qthelp/locales * recursive-include tests * ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949944.4752738 sphinxcontrib-qthelp-1.0.3/PKG-INFO0000644000076600000240000000237400000000000017605 0ustar00tkomiyastaff00000000000000Metadata-Version: 2.1 Name: sphinxcontrib-qthelp Version: 1.0.3 Summary: sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document. Home-page: http://sphinx-doc.org/ Author: Georg Brandl Author-email: georg@python.org License: BSD Download-URL: https://pypi.org/project/sphinxcontrib-qthelp/ Description: sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp 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=1578843192.0 sphinxcontrib-qthelp-1.0.3/README.rst0000644000076600000240000000151300000000000020171 0ustar00tkomiyastaff00000000000000==================== sphinxcontrib-qthelp ==================== sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document. For more details, please visit http://www.sphinx-doc.org/. Installing ========== Install from PyPI:: pip install -U sphinxcontrib-qthelp 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-qthelp Contributing ============ See `CONTRIBUTING.rst`__ .. __: https://github.com/sphinx-doc/sphinx/blob/master/CONTRIBUTING.rst ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949944.4759116 sphinxcontrib-qthelp-1.0.3/setup.cfg0000644000076600000240000000072600000000000020330 0ustar00tkomiyastaff00000000000000[egg_info] tag_build = tag_date = 0 [aliases] release = egg_info -Db '' [extract_messages] output_file = sphinxcontrib/qthelp/locales/sphinxcontrib.qthelp.pot keywords = _ __ [compile_catalog] domain = sphinxcontrib.qthelp directory = sphinxcontrib/qthelp/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=1582948878.0 sphinxcontrib-qthelp-1.0.3/setup.py0000644000076600000240000000401100000000000020210 0ustar00tkomiyastaff00000000000000# -*- coding: utf-8 -*- import os from setuptools import setup, find_packages long_desc = ''' sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp 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/qthelp/version.py') namespace = {} with open(version_file, 'rt') as f: exec(f.read(), namespace) return namespace['__version__'] setup( name='sphinxcontrib-qthelp', version=get_version(), url='http://sphinx-doc.org/', download_url='https://pypi.org/project/sphinxcontrib-qthelp/', 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=1582949944.424476 sphinxcontrib-qthelp-1.0.3/sphinxcontrib/0000755000076600000240000000000000000000000021374 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843192.0 sphinxcontrib-qthelp-1.0.3/sphinxcontrib/__init__.py0000644000076600000240000000053600000000000023511 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=1582949944.424959 sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/0000755000076600000240000000000000000000000022671 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578844731.0 sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/__init__.py0000644000076600000240000002473000000000000025010 0ustar00tkomiyastaff00000000000000""" sphinxcontrib.qthelp ~~~~~~~~~~~~~~~~~~~~ Build input files for the Qt collection generator. :copyright: Copyright 2007-2019 by the Sphinx team, see README. :license: BSD, see LICENSE for details. """ import html import os import posixpath import re from os import path from typing import Any, Dict, Iterable, List, Tuple, cast from docutils import nodes from docutils.nodes import Node 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 canon_path, make_filename from sphinx.util.template import SphinxRenderer from sphinxcontrib.qthelp.version import __version__ logger = logging.getLogger(__name__) package_dir = path.abspath(path.dirname(__file__)) __ = get_translation(__name__, 'console') _idpattern = re.compile( r'(?P.+) (\((class in )?(?P<id>[\w\.]+)( (?P<descr>\w+))?\))$') section_template = '<section title="%(title)s" ref="%(ref)s"/>' def render_file(filename: str, **kwargs: Any) -> str: pathname = path.join(package_dir, 'templates', filename) return SphinxRenderer.render_from_file(pathname, kwargs) class QtHelpBuilder(StandaloneHTMLBuilder): """ Builder that also outputs Qt help project, contents and index files. """ name = 'qthelp' epilog = __('You can now run "qcollectiongenerator" with the .qhcp ' 'project file in %(outdir)s, like this:\n' '$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n' 'To view the help file:\n' '$ assistant -collectionFile %(outdir)s/%(project)s.qhc') # don't copy the reST source copysource = False supported_image_types = ['image/svg+xml', 'image/png', 'image/gif', 'image/jpeg'] # don't add links add_permalinks = False # don't add sidebar etc. embedded = True # disable download role download_support = False # don't generate the search index or include the search page search = False def init(self) -> None: super().init() # the output files for HTML help must be .html only self.out_suffix = '.html' self.link_suffix = '.html' # self.config.html_style = 'traditional.css' def get_theme_config(self) -> Tuple[str, Dict]: return self.config.qthelp_theme, self.config.qthelp_theme_options def handle_finish(self) -> None: self.build_qhp(self.outdir, self.config.qthelp_basename) def build_qhp(self, outdir: str, outname: str) -> None: logger.info(__('writing project file...')) # sections tocdoc = self.env.get_and_resolve_doctree(self.config.master_doc, self, prune_toctrees=False) sections = [] matcher = NodeMatcher(addnodes.compact_paragraph, toctree=True) for node in tocdoc.traverse(matcher): # type: addnodes.compact_paragraph sections.extend(self.write_toc(node)) for indexname, indexcls, content, collapse in self.domain_indices: item = section_template % {'title': indexcls.localname, 'ref': '%s.html' % indexname} sections.append(' ' * 4 * 4 + item) sections = '\n'.join(sections) # type: ignore # keywords keywords = [] index = IndexEntries(self.env).create_index(self, group_entries=False) for (key, group) in index: for title, (refs, subitems, key_) in group: keywords.extend(self.build_keywords(title, refs, subitems)) keywords = '\n'.join(keywords) # type: ignore # it seems that the "namespace" may not contain non-alphanumeric # characters, and more than one successive dot, or leading/trailing # dots, are also forbidden if self.config.qthelp_namespace: nspace = self.config.qthelp_namespace else: nspace = 'org.sphinx.%s.%s' % (outname, self.config.version) nspace = re.sub(r'[^a-zA-Z0-9.\-]', '', nspace) nspace = re.sub(r'\.+', '.', nspace).strip('.') nspace = nspace.lower() # write the project file with open(path.join(outdir, outname + '.qhp'), 'w', encoding='utf-8') as f: body = render_file('project.qhp', outname=outname, title=self.config.html_title, version=self.config.version, project=self.config.project, namespace=nspace, master_doc=self.config.master_doc, sections=sections, keywords=keywords, files=self.get_project_files(outdir)) f.write(body) homepage = 'qthelp://' + posixpath.join( nspace, 'doc', self.get_target_uri(self.config.master_doc)) startpage = 'qthelp://' + posixpath.join(nspace, 'doc', 'index.html') logger.info(__('writing collection project file...')) with open(path.join(outdir, outname + '.qhcp'), 'w', encoding='utf-8') as f: body = render_file('project.qhcp', outname=outname, title=self.config.html_short_title, homepage=homepage, startpage=startpage) f.write(body) def isdocnode(self, node: Node) -> bool: if not isinstance(node, nodes.list_item): return False if len(node.children) != 2: return False if not isinstance(node[0], addnodes.compact_paragraph): return False if not isinstance(node[0][0], nodes.reference): return False if not isinstance(node[1], nodes.bullet_list): return False return True def write_toc(self, node: Node, indentlevel: int = 4) -> List[str]: parts = [] # type: List[str] if isinstance(node, nodes.list_item) and self.isdocnode(node): compact_paragraph = cast(addnodes.compact_paragraph, node[0]) reference = cast(nodes.reference, compact_paragraph[0]) link = reference['refuri'] title = html.escape(reference.astext()).replace('"', '"') item = '<section title="%(title)s" ref="%(ref)s">' % \ {'title': title, 'ref': link} parts.append(' ' * 4 * indentlevel + item) bullet_list = cast(nodes.bullet_list, node[1]) list_items = cast(Iterable[nodes.list_item], bullet_list) for list_item in list_items: parts.extend(self.write_toc(list_item, indentlevel + 1)) parts.append(' ' * 4 * indentlevel + '</section>') elif isinstance(node, nodes.list_item): for subnode in node: parts.extend(self.write_toc(subnode, indentlevel)) elif isinstance(node, nodes.reference): link = node['refuri'] title = html.escape(node.astext()).replace('"', '"') item = section_template % {'title': title, 'ref': link} item = ' ' * 4 * indentlevel + item parts.append(item.encode('ascii', 'xmlcharrefreplace').decode()) elif isinstance(node, nodes.bullet_list): for subnode in node: parts.extend(self.write_toc(subnode, indentlevel)) elif isinstance(node, addnodes.compact_paragraph): for subnode in node: parts.extend(self.write_toc(subnode, indentlevel)) return parts def keyword_item(self, name: str, ref: Any) -> str: matchobj = _idpattern.match(name) if matchobj: groupdict = matchobj.groupdict() shortname = groupdict['title'] id = groupdict.get('id') # descr = groupdict.get('descr') if shortname.endswith('()'): shortname = shortname[:-2] id = html.escape('%s.%s' % (id, shortname), True) else: id = None nameattr = html.escape(name, quote=True) refattr = html.escape(ref[1], quote=True) if id: item = ' ' * 12 + '<keyword name="%s" id="%s" ref="%s"/>' % (nameattr, id, refattr) else: item = ' ' * 12 + '<keyword name="%s" ref="%s"/>' % (nameattr, refattr) item.encode('ascii', 'xmlcharrefreplace') return item def build_keywords(self, title: str, refs: List[Any], subitems: Any) -> List[str]: keywords = [] # type: List[str] # if len(refs) == 0: # XXX # write_param('See Also', title) if len(refs) == 1: keywords.append(self.keyword_item(title, refs[0])) elif len(refs) > 1: for i, ref in enumerate(refs): # XXX # item = (' '*12 + # '<keyword name="%s [%d]" ref="%s"/>' % ( # title, i, ref)) # item.encode('ascii', 'xmlcharrefreplace') # keywords.append(item) keywords.append(self.keyword_item(title, ref)) if subitems: for subitem in subitems: keywords.extend(self.build_keywords(subitem[0], subitem[1], [])) return keywords def get_project_files(self, outdir: str) -> List[str]: if not outdir.endswith(os.sep): outdir += os.sep olen = len(outdir) project_files = [] staticdir = path.join(outdir, '_static') imagesdir = path.join(outdir, self.imagedir) for root, dirs, files in os.walk(outdir): resourcedir = root.startswith((staticdir, imagesdir)) for fn in sorted(files): if (resourcedir and not fn.endswith('.js')) or fn.endswith('.html'): filename = path.join(root, fn)[olen:] project_files.append(canon_path(filename)) return project_files def setup(app: Sphinx) -> Dict[str, Any]: app.setup_extension('sphinx.builders.html') app.add_builder(QtHelpBuilder) app.add_message_catalog(__name__, path.join(package_dir, 'locales')) app.add_config_value('qthelp_basename', lambda self: make_filename(self.project), 'html') app.add_config_value('qthelp_namespace', None, 'html', [str]) app.add_config_value('qthelp_theme', 'nonav', 'html') app.add_config_value('qthelp_theme_options', {}, 'html') return { 'version': __version__, 'parallel_read_safe': True, 'parallel_write_safe': True, } ����������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4252048 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/��������������������������������������������0000755�0000766�0000024�00000000000�00000000000�024313� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4258435 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/.tx/����������������������������������������0000755�0000766�0000024�00000000000�00000000000�025024� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/.tx/config����������������������������������0000644�0000766�0000024�00000000332�00000000000�026212� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������[main] host = https://www.transifex.com [sphinx-1.sphinxcontrib-qthelp-pot] file_filter = <lang>/LC_MESSAGES/sphinxcontrib.qthelp.po minimum_perc = 0 source_file = sphinxcontrib.qthelp.pot source_lang = en type = PO ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4114225 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ar/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024715� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4268122 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ar/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026502� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ar/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002252�00000000000�033226� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^����v��Ý���‘��"���o�����’���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ar/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002371�00000000000�033233� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4116356 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/bn/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024712� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4277592 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/bn/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026477� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/bn/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002130�00000000000�033216� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��È��v��Ý���?��"��������@���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/bn/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002247�00000000000�033232� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4118419 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ca/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024676� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4286816 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ca/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026463� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ca/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002130�00000000000�033202� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��È��v��Ý���?��"��������@���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ca/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002247�00000000000�033216� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000033�00000000000�011451� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������27 mtime=1582949944.412041 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/cs/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024720� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4295273 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/cs/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026505� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/cs/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002246�00000000000�033234� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^����v��Ý�����"���k�����Ž���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/cs/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002365�00000000000�033241� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000032�00000000000�011450� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������26 mtime=1582949944.41224 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/cy/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024726� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000031�00000000000�011447� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������25 mtime=1582949944.4304 �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/cy/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026513� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/cy/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002203�00000000000�033233� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��ó��v��Ý���j��"���H�����k���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/cy/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002322�00000000000�033240� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000033�00000000000�011451� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������27 mtime=1582949944.412438 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/da/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024677� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000033�00000000000�011451� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������27 mtime=1582949944.431239 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/da/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026464� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/da/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002127�00000000000�033211� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��Ç��v��Ý���>��"��������?���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/da/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002246�00000000000�033216� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4126415 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/de/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024703� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4320757 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/de/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026470� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/de/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002127�00000000000�033215� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��Ç��v��Ý���>��"��������?���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/de/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002246�00000000000�033222� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4128542 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/el/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024713� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4329534 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/el/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026500� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/el/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002126�00000000000�033224� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��Æ��v��Ý���=��"��������>���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/el/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002245�00000000000�033231� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4130676 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/eo/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024716� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4338312 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/eo/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026503� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/eo/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002132�00000000000�033224� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��Ê��v��Ý���A��"��������B���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/eo/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002251�00000000000�033231� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4132748 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/es/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024722� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4348645 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/es/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026507� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/es/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002150�00000000000�033230� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��Í��v��Ý���D��"���"��"���E���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: Edward Villegas-Pulgarin, 2019 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�escribiendo archivo de proyecto...�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/es/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002460�00000000000�033237� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # # Translators: # Edward Villegas-Pulgarin, 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+0000\n" "Last-Translator: Edward Villegas-Pulgarin, 2019\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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "escribiendo archivo de proyecto..." #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4134812 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/et/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024723� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4357736 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/et/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026510� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/et/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002156�00000000000�033237� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��Ñ��v��Ý���H��*���&�����Q���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: Ivar Smolin <okul@linux.ee>, 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�kollektsiooni projektifaili kirjutamine...�projektifaili kirjutamine...�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/et/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002533�00000000000�033241� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # # Translators: # Ivar Smolin <okul@linux.ee>, 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+0000\n" "Last-Translator: Ivar Smolin <okul@linux.ee>, 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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "projektifaili kirjutamine..." #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "kollektsiooni projektifaili kirjutamine..." ���������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4136884 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/eu/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024724� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4365573 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/eu/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026511� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/eu/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002127�00000000000�033236� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��Ç��v��Ý���>��"��������?���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/eu/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002246�00000000000�033243� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4138932 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/fa/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024701� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4374604 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/fa/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026466� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/fa/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002127�00000000000�033213� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��Ç��v��Ý���>��"��������?���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/fa/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002246�00000000000�033220� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4141054 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/fi/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024711� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4382246 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/fi/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026476� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/fi/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002130�00000000000�033215� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��È��v��Ý���?��"��������@���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/fi/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002247�00000000000�033231� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000033�00000000000�011451� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������27 mtime=1582949944.414313 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/fr/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024722� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4391234 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/fr/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026507� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/fr/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002164�00000000000�033235� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��Õ��v��Ý���L��"���*��&���M���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: LAURENT Raphaël <laurent@ined.fr>, 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�enregistrement du fichier de projet...�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/fr/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002506�00000000000�033240� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # # Translators: # LAURENT Raphaël <laurent@ined.fr>, 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+0000\n" "Last-Translator: LAURENT Raphaël <laurent@ined.fr>, 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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "enregistrement du fichier de projet..." #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4145231 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/he/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024707� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4400454 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/he/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026474� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/he/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002265�00000000000�033224� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��%��v��Ý���œ��"���z��������You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/he/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002404�00000000000�033222� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4147258 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/hi/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024713� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4409528 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/hi/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026500� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/hi/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002126�00000000000�033224� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��Æ��v��Ý���=��"��������>���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/hi/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002245�00000000000�033231� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4149318 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/hi_IN/��������������������������������������0000755�0000766�0000024�00000000000�00000000000�025301� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4418335 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/hi_IN/LC_MESSAGES/��������������������������0000755�0000766�0000024�00000000000�00000000000�027066� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/hi_IN/LC_MESSAGES/sphinxcontrib.qthelp.mo���0000644�0000766�0000024�00000002144�00000000000�033612� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��Ô��v��Ý���K��"���)�����L���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/hi_IN/LC_MESSAGES/sphinxcontrib.qthelp.po���0000644�0000766�0000024�00000002263�00000000000�033617� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4151409 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/hr/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024724� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4428477 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/hr/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026511� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/hr/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002241�00000000000�033233� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^����v��Ý���ˆ��"���f�����‰���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/hr/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002360�00000000000�033240� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4153578 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/hu/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024727� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4437358 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/hu/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026514� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/hu/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002132�00000000000�033235� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��Ê��v��Ý���A��"��������B���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/hu/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002251�00000000000�033242� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4155793 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/id/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024707� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000033�00000000000�011451� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������27 mtime=1582949944.444653 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/id/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026474� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/id/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002135�00000000000�033220� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��¿��v��ì���6�� ���#�����D���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+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 �Anda dapat menjalankan "qcollectiongenerator" dengan berkas proyek .qhcp di %(outdir)s, seperti ini: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp Untuk melihat berkas bantuan: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�menulis berkas proyek koleksi...�menulis berkas proyek...������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/id/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000003053�00000000000�033223� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # # Translators: # Tumpal Gemelli, 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" "Anda dapat menjalankan \"qcollectiongenerator\" dengan berkas proyek .qhcp di %(outdir)s, seperti ini:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "Untuk melihat berkas bantuan:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "menulis berkas proyek..." #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "menulis berkas proyek koleksi..." �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4157956 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/it/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024727� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4455507 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/it/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026514� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/it/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002130�00000000000�033233� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��È��v��Ý���?��"��������@���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/it/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002247�00000000000�033247� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4160137 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ja/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024705� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000033�00000000000�011451� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������27 mtime=1582949944.446483 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ja/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026472� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ja/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002122�00000000000�033212� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��Â��v��Ý���9��"��������:���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ja/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002241�00000000000�033217� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000033�00000000000�011451� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������27 mtime=1582949944.416232 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ko/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024724� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4473472 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ko/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026511� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ko/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002133�00000000000�033233� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��Á��v��Ý���8��"�����!���9���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: YT H <dev@theYT.net>, 2019 Language: ko Language-Team: Korean (https://www.transifex.com/sphinx-doc/teams/36659/ko/) Plural-Forms: nplurals=1; plural=0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�프로ì íЏ íŒŒì¼ ì“°ëŠ” 중…��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ko/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002437�00000000000�033245� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # # Translators: # YT H <dev@theYT.net>, 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+0000\n" "Last-Translator: YT H <dev@theYT.net>, 2019\n" "Language-Team: Korean (https://www.transifex.com/sphinx-doc/teams/36659/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" #: sphinxcontrib/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "프로ì íЏ íŒŒì¼ ì“°ëŠ” 중…" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4164414 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/lt/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024732� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4482262 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/lt/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026517� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/lt/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002336�00000000000�033246� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��N��v��Ý���Å��"���£�����Æ���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/lt/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002455�00000000000�033253� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4166517 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/lv/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024734� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4492025 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/lv/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026521� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/lv/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002173�00000000000�033247� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��ë��v��Ý���b��"���@�����c���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/lv/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002312�00000000000�033245� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000033�00000000000�011451� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������27 mtime=1582949944.416865 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/mk/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024722� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4501748 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/mk/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026507� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/mk/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002171�00000000000�033233� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��é��v��Ý���`��"���>�����a���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/mk/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002310�00000000000�033231� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000033�00000000000�011451� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������27 mtime=1582949944.417079 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/nb_NO/��������������������������������������0000755�0000766�0000024�00000000000�00000000000�025306� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4510698 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/nb_NO/LC_MESSAGES/��������������������������0000755�0000766�0000024�00000000000�00000000000�027073� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/nb_NO/LC_MESSAGES/sphinxcontrib.qthelp.mo���0000644�0000766�0000024�00000002161�00000000000�033616� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��á��v��Ý���X��"���6�����Y���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/nb_NO/LC_MESSAGES/sphinxcontrib.qthelp.po���0000644�0000766�0000024�00000002300�00000000000�033614� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4172966 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ne/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024715� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000033�00000000000�011451� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������27 mtime=1582949944.451941 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ne/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026502� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ne/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002127�00000000000�033227� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��Ç��v��Ý���>��"��������?���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ne/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002246�00000000000�033234� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4175096 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/nl/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024724� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4528039 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/nl/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026511� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/nl/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002126�00000000000�033235� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��Æ��v��Ý���=��"��������>���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/nl/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002245�00000000000�033242� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000033�00000000000�011451� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������27 mtime=1582949944.417719 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/pl/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024726� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4536514 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/pl/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026513� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/pl/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002341�00000000000�033236� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��K��v��Ý���Â��"��� �����Ã���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�zapisywanie pliku projektu...������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/pl/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002626�00000000000�033247� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # # Translators: # Tawez, 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "zapisywanie pliku projektu..." #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ����������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4179497 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/pt/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024736� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4545536 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/pt/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026523� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/pt/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002133�00000000000�033245� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��Ë��v��Ý���B��"��� �����C���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/pt/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002252�00000000000�033252� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4181619 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/pt_BR/��������������������������������������0000755�0000766�0000024�00000000000�00000000000�025321� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000033�00000000000�011451� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������27 mtime=1582949944.455359 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/pt_BR/LC_MESSAGES/��������������������������0000755�0000766�0000024�00000000000�00000000000�027106� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/pt_BR/LC_MESSAGES/sphinxcontrib.qthelp.mo���0000644�0000766�0000024�00000002151�00000000000�033630� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��Ù��v��Ý���P��"���.�����Q���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/pt_BR/LC_MESSAGES/sphinxcontrib.qthelp.po���0000644�0000766�0000024�00000002270�00000000000�033635� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000033�00000000000�011451� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������27 mtime=1582949944.418377 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/pt_PT/��������������������������������������0000755�0000766�0000024�00000000000�00000000000�025341� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4561584 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/pt_PT/LC_MESSAGES/��������������������������0000755�0000766�0000024�00000000000�00000000000�027126� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/pt_PT/LC_MESSAGES/sphinxcontrib.qthelp.mo���0000644�0000766�0000024�00000002154�00000000000�033653� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��Ü��v��Ý���S��"���1�����T���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/pt_PT/LC_MESSAGES/sphinxcontrib.qthelp.po���0000644�0000766�0000024�00000002273�00000000000�033660� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4185956 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ro/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024733� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4571257 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ro/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026520� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ro/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002202�00000000000�033237� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��ò��v��Ý���i��"���G�����j���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ro/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002321�00000000000�033244� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000033�00000000000�011451� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������27 mtime=1582949944.418804 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ru/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024741� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000033�00000000000�011451� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������27 mtime=1582949944.457921 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ru/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026526� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ru/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002342�00000000000�033252� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��R��v��Ý���É��"���§�����Ê���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ru/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002461�00000000000�033257� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000033�00000000000�011451� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������27 mtime=1582949944.419008 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/si/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024726� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000033�00000000000�011451� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������27 mtime=1582949944.458686 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/si/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026513� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/si/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002130�00000000000�033232� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��È��v��Ý���?��"��������@���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/si/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002247�00000000000�033246� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000033�00000000000�011451� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������27 mtime=1582949944.419219 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/sk/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024730� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4595065 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/sk/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026515� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/sk/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002242�00000000000�033240� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^����v��Ý���‰��"���g�����Š���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/sk/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002361�00000000000�033245� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4194336 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/sl/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024731� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4603806 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/sl/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026516� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/sl/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002216�00000000000�033242� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��þ��v��Ý���u��"���S�����v���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/sl/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002335�00000000000�033247� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/sphinxcontrib.qthelp.pot��������������������0000644�0000766�0000024�00000002157�00000000000�031232� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "MIME-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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in " "%(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000033�00000000000�011451� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������27 mtime=1582949944.419641 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/sr/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024737� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4611988 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/sr/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026524� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/sr/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002242�00000000000�033247� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^����v��Ý���‰��"���g�����Š���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/sr/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002361�00000000000�033254� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4198546 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/sr@latin/�����������������������������������0000755�0000766�0000024�00000000000�00000000000�026067� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4621012 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/sr@latin/LC_MESSAGES/�����������������������0000755�0000766�0000024�00000000000�00000000000�027654� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.qthelp.mo0000644�0000766�0000024�00000002270�00000000000�034400� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��(��v��Ý���Ÿ��"���}����� ���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.qthelp.po0000644�0000766�0000024�00000002407�00000000000�034405� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4200644 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/sv/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024743� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000033�00000000000�011451� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������27 mtime=1582949944.463178 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/sv/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026530� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/sv/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002130�00000000000�033247� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��È��v��Ý���?��"��������@���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/sv/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002247�00000000000�033263� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000033�00000000000�011451� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������27 mtime=1582949944.420277 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ta/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024717� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000033�00000000000�011451� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������27 mtime=1582949944.464042 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ta/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026504� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ta/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002126�00000000000�033230� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��Æ��v��Ý���=��"��������>���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/ta/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002245�00000000000�033235� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4204845 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/tr/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024740� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4649038 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/tr/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026525� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/tr/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002127�00000000000�033252� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��Ç��v��Ý���>��"��������?���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/tr/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002246�00000000000�033257� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4206994 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/uk_UA/��������������������������������������0000755�0000766�0000024�00000000000�00000000000�025317� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4657586 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/uk_UA/LC_MESSAGES/��������������������������0000755�0000766�0000024�00000000000�00000000000�027104� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/uk_UA/LC_MESSAGES/sphinxcontrib.qthelp.mo���0000644�0000766�0000024�00000002510�00000000000�033625� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��¸��v��Ý���/��"��� �����0���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/uk_UA/LC_MESSAGES/sphinxcontrib.qthelp.po���0000644�0000766�0000024�00000002627�00000000000�033641� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" ���������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000033�00000000000�011451� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������27 mtime=1582949944.420906 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/vi/�����������������������������������������0000755�0000766�0000024�00000000000�00000000000�024731� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4665394 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/vi/LC_MESSAGES/�����������������������������0000755�0000766�0000024�00000000000�00000000000�026516� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/vi/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000766�0000024�00000002124�00000000000�033240� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��Ä��v��Ý���;��"��������<���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/vi/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000766�0000024�00000002243�00000000000�033245� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4211128 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/zh_CN/��������������������������������������0000755�0000766�0000024�00000000000�00000000000�025314� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000033�00000000000�011451� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������27 mtime=1582949944.467417 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/zh_CN/LC_MESSAGES/��������������������������0000755�0000766�0000024�00000000000�00000000000�027101� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.qthelp.mo���0000644�0000766�0000024�00000002206�00000000000�033624� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��Ý��v��ù���T�����N�����m���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: Yinian Chin <yinian1992@live.com>, 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 �你现在å¯ä»¥åƒä¸‹é¢è¿™æ ·ï¼Œé…åˆ %(outdir)s 下的 .qhcp 项目文件è¿è¡Œâ€œqcollectiongeneratorâ€å‘½ä»¤äº†ï¼š $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�写入集åˆé¡¹ç›®æ–‡ä»¶â€¦â€¦�写入项目文件……�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.qthelp.po���0000644�0000766�0000024�00000003145�00000000000�033632� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # # Translators: # Yinian Chin <yinian1992@live.com>, 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+0000\n" "Last-Translator: Yinian Chin <yinian1992@live.com>, 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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" "你现在å¯ä»¥åƒä¸‹é¢è¿™æ ·ï¼Œé…åˆ %(outdir)s 下的 .qhcp 项目文件è¿è¡Œâ€œqcollectiongeneratorâ€å‘½ä»¤äº†ï¼š\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "写入项目文件……" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "写入集åˆé¡¹ç›®æ–‡ä»¶â€¦â€¦" ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4213247 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/zh_TW/��������������������������������������0000755�0000766�0000024�00000000000�00000000000�025346� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000033�00000000000�011451� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������27 mtime=1582949944.468271 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/zh_TW/LC_MESSAGES/��������������������������0000755�0000766�0000024�00000000000�00000000000�027133� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.qthelp.mo���0000644�0000766�0000024�00000002140�00000000000�033653� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������<���������������\���Ý���]���"���;�����^��Ð��v��Ý���G��"���%�����H���You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...�Project-Id-Version: sphinxcontrib-qthelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-18 00:35+0900 PO-Revision-Date: 2019-01-17 15:35+0000 Last-Translator: FULL NAME <EMAIL@ADDRESS> 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 �You can now run "qcollectiongenerator" with the .qhcp project file in %(outdir)s, like this: $ qcollectiongenerator %(outdir)s/%(project)s.qhcp To view the help file: $ assistant -collectionFile %(outdir)s/%(project)s.qhc�writing collection project file...�writing project file...���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.qthelp.po���0000644�0000766�0000024�00000002257�00000000000�033667� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Translations template for sphinxcontrib-qthelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-qthelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-qthelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-18 00:35+0900\n" "PO-Revision-Date: 2019-01-17 15:35+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/qthelp/__init__.py:60 #, python-format msgid "" "You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" "$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" "To view the help file:\n" "$ assistant -collectionFile %(outdir)s/%(project)s.qhc" msgstr "" #: sphinxcontrib/qthelp/__init__.py:100 msgid "writing project file..." msgstr "" #: sphinxcontrib/qthelp/__init__.py:151 msgid "writing collection project file..." msgstr "" �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000034�00000000000�011452� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1582949944.4690292 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/templates/������������������������������������������0000755�0000766�0000024�00000000000�00000000000�024667� 5����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������././@PaxHeader��������������������������������������������������������������������������������������0000000�0000000�0000000�00000000026�00000000000�011453� x����������������������������������������������������������������������������������������������������ustar�00����������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������22 mtime=1578843192.0 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/templates/project.qhcp������������������������������0000644�0000766�0000024�00000001067�00000000000�027216� 0����������������������������������������������������������������������������������������������������ustar�00tkomiya�������������������������staff���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="utf-8" ?> <QHelpCollectionProject version="1.0"> <assistant> <title>{{ title|e }} {{ homepage|e }} {{ startpage|e }} {{ outname|e }}.qhp {{ outname|e }}.qch {{ outname|e }}.qch ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843192.0 sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/templates/project.qhp0000644000076600000240000000153700000000000027055 0ustar00tkomiyastaff00000000000000 {{ namespace|e }} doc {{ outname|e }} {{ version|e }} {{ outname|e }} {{ version|e }}
{{ sections }}
{{ keywords }} {%- for filename in files %} {{ filename|e }} {%- endfor %}
././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843192.0 sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/version.py0000644000076600000240000000041500000000000024730 0ustar00tkomiyastaff00000000000000""" sphinxcontrib.qthelp.version ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :copyright: Copyright 2007-2019 by the Sphinx team, see README. :license: BSD, see LICENSE for details. """ __version__ = '1.0.3' __version_info__ = tuple(map(int, __version__.split('.'))) ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949944.4708679 sphinxcontrib-qthelp-1.0.3/sphinxcontrib_qthelp.egg-info/0000755000076600000240000000000000000000000024443 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1582949944.0 sphinxcontrib-qthelp-1.0.3/sphinxcontrib_qthelp.egg-info/PKG-INFO0000644000076600000240000000237400000000000025546 0ustar00tkomiyastaff00000000000000Metadata-Version: 2.1 Name: sphinxcontrib-qthelp Version: 1.0.3 Summary: sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document. Home-page: http://sphinx-doc.org/ Author: Georg Brandl Author-email: georg@python.org License: BSD Download-URL: https://pypi.org/project/sphinxcontrib-qthelp/ Description: sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp 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=1582949944.0 sphinxcontrib-qthelp-1.0.3/sphinxcontrib_qthelp.egg-info/SOURCES.txt0000644000076600000240000001666600000000000026346 0ustar00tkomiyastaff00000000000000CHANGES LICENSE MANIFEST.in README.rst setup.cfg setup.py tox.ini sphinxcontrib/__init__.py sphinxcontrib/qthelp/__init__.py sphinxcontrib/qthelp/version.py sphinxcontrib/qthelp/locales/sphinxcontrib.qthelp.pot sphinxcontrib/qthelp/locales/.tx/config sphinxcontrib/qthelp/locales/ar/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/ar/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/bn/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/bn/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/ca/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/ca/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/cs/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/cs/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/cy/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/cy/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/da/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/da/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/de/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/de/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/el/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/el/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/eo/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/eo/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/es/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/es/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/et/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/et/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/eu/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/eu/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/fa/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/fa/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/fi/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/fi/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/fr/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/fr/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/he/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/he/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/hi/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/hi/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/hi_IN/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/hi_IN/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/hr/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/hr/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/hu/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/hu/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/id/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/id/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/it/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/it/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/ja/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/ja/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/ko/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/ko/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/lt/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/lt/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/lv/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/lv/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/mk/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/mk/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/nb_NO/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/nb_NO/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/ne/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/ne/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/nl/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/nl/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/pl/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/pl/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/pt/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/pt/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/pt_BR/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/pt_BR/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/pt_PT/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/pt_PT/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/ro/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/ro/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/ru/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/ru/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/si/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/si/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/sk/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/sk/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/sl/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/sl/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/sr/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/sr/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/sv/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/sv/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/ta/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/ta/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/tr/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/tr/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/uk_UA/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/uk_UA/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/vi/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/vi/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.qthelp.mo sphinxcontrib/qthelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.qthelp.po sphinxcontrib/qthelp/templates/project.qhcp sphinxcontrib/qthelp/templates/project.qhp sphinxcontrib_qthelp.egg-info/PKG-INFO sphinxcontrib_qthelp.egg-info/SOURCES.txt sphinxcontrib_qthelp.egg-info/dependency_links.txt sphinxcontrib_qthelp.egg-info/namespace_packages.txt sphinxcontrib_qthelp.egg-info/not-zip-safe sphinxcontrib_qthelp.egg-info/requires.txt sphinxcontrib_qthelp.egg-info/top_level.txt tests/conftest.py tests/test_qthelp.py tests/roots/test-basic/conf.py tests/roots/test-basic/index.rst tests/roots/test-need-escaped/bar.rst tests/roots/test-need-escaped/baz.rst tests/roots/test-need-escaped/conf.py tests/roots/test-need-escaped/foo.rst tests/roots/test-need-escaped/index.rst tests/roots/test-need-escaped/quux.rst tests/roots/test-need-escaped/qux.rst././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1582949944.0 sphinxcontrib-qthelp-1.0.3/sphinxcontrib_qthelp.egg-info/dependency_links.txt0000644000076600000240000000000100000000000030511 0ustar00tkomiyastaff00000000000000 ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1582949944.0 sphinxcontrib-qthelp-1.0.3/sphinxcontrib_qthelp.egg-info/namespace_packages.txt0000644000076600000240000000001600000000000030773 0ustar00tkomiyastaff00000000000000sphinxcontrib ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1582949944.0 sphinxcontrib-qthelp-1.0.3/sphinxcontrib_qthelp.egg-info/not-zip-safe0000644000076600000240000000000100000000000026671 0ustar00tkomiyastaff00000000000000 ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1582949944.0 sphinxcontrib-qthelp-1.0.3/sphinxcontrib_qthelp.egg-info/requires.txt0000644000076600000240000000006200000000000027041 0ustar00tkomiyastaff00000000000000 [lint] flake8 mypy docutils-stubs [test] pytest ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1582949944.0 sphinxcontrib-qthelp-1.0.3/sphinxcontrib_qthelp.egg-info/top_level.txt0000644000076600000240000000001600000000000027172 0ustar00tkomiyastaff00000000000000sphinxcontrib ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949944.4713693 sphinxcontrib-qthelp-1.0.3/tests/0000755000076600000240000000000000000000000017644 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843192.0 sphinxcontrib-qthelp-1.0.3/tests/conftest.py0000644000076600000240000000062200000000000022043 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=1582949944.4220288 sphinxcontrib-qthelp-1.0.3/tests/roots/0000755000076600000240000000000000000000000021012 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949944.4718108 sphinxcontrib-qthelp-1.0.3/tests/roots/test-basic/0000755000076600000240000000000000000000000023050 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843192.0 sphinxcontrib-qthelp-1.0.3/tests/roots/test-basic/conf.py0000644000076600000240000000000000000000000024335 0ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843192.0 sphinxcontrib-qthelp-1.0.3/tests/roots/test-basic/index.rst0000644000076600000240000000002600000000000024707 0ustar00tkomiyastaff00000000000000test-basic ========== ././@PaxHeader0000000000000000000000000000003400000000000011452 xustar000000000000000028 mtime=1582949944.4746094 sphinxcontrib-qthelp-1.0.3/tests/roots/test-need-escaped/0000755000076600000240000000000000000000000024304 5ustar00tkomiyastaff00000000000000././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843192.0 sphinxcontrib-qthelp-1.0.3/tests/roots/test-need-escaped/bar.rst0000644000076600000240000000001000000000000025571 0ustar00tkomiyastaff00000000000000bar === ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843192.0 sphinxcontrib-qthelp-1.0.3/tests/roots/test-need-escaped/baz.rst0000644000076600000240000000001000000000000025601 0ustar00tkomiyastaff00000000000000baz === ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843192.0 sphinxcontrib-qthelp-1.0.3/tests/roots/test-need-escaped/conf.py0000644000076600000240000000007600000000000025606 0ustar00tkomiyastaff00000000000000project = 'need "escaped" project' smartquotes = False ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843192.0 sphinxcontrib-qthelp-1.0.3/tests/roots/test-need-escaped/foo.rst0000644000076600000240000000012200000000000025614 0ustar00tkomiyastaff00000000000000 ===== .. toctree:: quux foo "1" ------- foo.1-1 ^^^^^^^ foo.2 ----- ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843192.0 sphinxcontrib-qthelp-1.0.3/tests/roots/test-need-escaped/index.rst0000644000076600000240000000135500000000000026151 0ustar00tkomiyastaff00000000000000.. Sphinx Tests documentation master file, created by sphinx-quickstart on Wed Jun 4 23:49:58 2008. You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. Welcome to Sphinx Tests's documentation! ======================================== Contents: .. toctree:: :maxdepth: 2 :numbered: :caption: Table of Contents :name: mastertoc foo bar http://sphinx-doc.org/ baz qux .. index:: pair: "subsection"; single: & (ampersand) single: < (less) single: > (greater) single: Sphinx (document generator) single: keyword1 (class in ID) single: keyword2 (foo bar baz) ---------- subsection ---------- subsubsection ------------- ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843192.0 sphinxcontrib-qthelp-1.0.3/tests/roots/test-need-escaped/quux.rst0000644000076600000240000000001200000000000026031 0ustar00tkomiyastaff00000000000000quux ==== ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843192.0 sphinxcontrib-qthelp-1.0.3/tests/roots/test-need-escaped/qux.rst0000644000076600000240000000003500000000000025651 0ustar00tkomiyastaff00000000000000qux.rst has no section title ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578843192.0 sphinxcontrib-qthelp-1.0.3/tests/test_qthelp.py0000644000076600000240000001300300000000000022547 0ustar00tkomiyastaff00000000000000""" test_qthelp ~~~~~~~~~~~ Test for qthelp extension. :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import pytest from sphinx.testing.util import etree_parse @pytest.mark.sphinx('qthelp', testroot='basic') def test_qthelp_basic(app, status, warning): app.builder.build_all() qhp = (app.outdir / 'Python.qhp').text() assert '' in qhp assert 'Python' in qhp assert '' in qhp assert '
' in qhp assert 'genindex.html' in qhp assert 'index.html' in qhp assert '_static/basic.css' in qhp qhcp = (app.outdir / 'Python.qhcp').text() assert 'Python documentation' in qhcp assert 'qthelp://org.sphinx.python/doc/index.html' in qhcp assert 'qthelp://org.sphinx.python/doc/index.html' in qhcp assert 'Python.qhp' in qhcp assert 'Python.qch' in qhcp assert 'Python.qch' in qhcp @pytest.mark.sphinx('qthelp', testroot='need-escaped') def test_qthelp_escaped(app, status, warning): app.builder.build_all() et = etree_parse(app.outdir / 'needbescapedbproject.qhp') customFilter = et.find('.//customFilter') assert len(customFilter) == 2 assert customFilter.attrib == {'name': 'need "escaped" project '} assert customFilter[0].text == 'needbescapedbproject' assert customFilter[1].text is None toc = et.find('.//toc') assert len(toc) == 1 assert toc[0].attrib == {'title': 'need "escaped" project documentation', 'ref': 'index.html'} assert len(toc[0]) == 4 assert toc[0][0].attrib == {'title': '', 'ref': 'foo.html'} assert toc[0][0][0].attrib == {'title': 'quux', 'ref': 'quux.html'} assert toc[0][0][1].attrib == {'title': 'foo "1"', 'ref': 'foo.html#foo-1'} assert toc[0][0][1][0].attrib == {'title': 'foo.1-1', 'ref': 'foo.html#foo-1-1'} assert toc[0][0][2].attrib == {'title': 'foo.2', 'ref': 'foo.html#foo-2'} assert toc[0][1].attrib == {'title': 'bar', 'ref': 'bar.html'} assert toc[0][2].attrib == {'title': 'http://sphinx-doc.org/', 'ref': 'http://sphinx-doc.org/'} assert toc[0][3].attrib == {'title': 'baz', 'ref': 'baz.html'} keywords = et.find('.//keywords') assert len(keywords) == 8 assert keywords[0].attrib == {'name': '', 'ref': 'index.html#index-0'} assert keywords[1].attrib == {'name': '& (ampersand)', 'id': 'ampersand.&', 'ref': 'index.html#index-0'} assert keywords[2].attrib == {'name': '< (less)', 'id': 'less.<', 'ref': 'index.html#index-0'} assert keywords[3].attrib == {'name': '"subsection"', 'ref': 'index.html#index-0'} assert keywords[4].attrib == {'name': '> (greater)', 'id': 'greater.>', 'ref': 'index.html#index-0'} assert keywords[5].attrib == {'name': 'keyword1 (class in ID)', 'id': 'ID.keyword1', 'ref': 'index.html#index-0'} assert keywords[6].attrib == {'name': 'keyword2 (foo bar baz)', 'ref': 'index.html#index-0'} assert keywords[7].attrib == {'name': 'Sphinx (document generator)', 'id': 'document.Sphinx', 'ref': 'index.html#index-0'} @pytest.mark.sphinx('qthelp', testroot='basic') def test_qthelp_namespace(app, status, warning): # default namespace app.builder.build_all() qhp = (app.outdir / 'Python.qhp').text() assert 'org.sphinx.python' in qhp qhcp = (app.outdir / 'Python.qhcp').text() assert 'qthelp://org.sphinx.python/doc/index.html' in qhcp assert 'qthelp://org.sphinx.python/doc/index.html' in qhcp # give a namespace app.config.qthelp_namespace = 'org.sphinx-doc.sphinx' app.builder.build_all() qhp = (app.outdir / 'Python.qhp').text() assert 'org.sphinx-doc.sphinx' in qhp qhcp = (app.outdir / 'Python.qhcp').text() assert 'qthelp://org.sphinx-doc.sphinx/doc/index.html' in qhcp assert 'qthelp://org.sphinx-doc.sphinx/doc/index.html' in qhcp @pytest.mark.sphinx('qthelp', testroot='basic') def test_qthelp_title(app, status, warning): # default title app.builder.build_all() qhp = (app.outdir / 'Python.qhp').text() assert '
' in qhp qhcp = (app.outdir / 'Python.qhcp').text() assert 'Python documentation' in qhcp # give a title app.config.html_title = 'Sphinx "full" title' app.config.html_short_title = 'Sphinx "short" title' app.builder.build_all() qhp = (app.outdir / 'Python.qhp').text() assert ('
' in qhp) qhcp = (app.outdir / 'Python.qhcp').text() assert 'Sphinx <b>"short"</b> title' in qhcp ././@PaxHeader0000000000000000000000000000002600000000000011453 xustar000000000000000022 mtime=1578844731.0 sphinxcontrib-qthelp-1.0.3/tox.ini0000644000076600000240000000073200000000000020017 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/