././@PaxHeader0000000000000000000000000000003300000000000010211 xustar0027 mtime=1705115202.872852 sphinxcontrib_qthelp-1.0.7/CHANGES0000644000000000000000000000173514550377103013722 0ustar00Release 1.0.7 (2024-01-13) ========================== * Remove Sphinx as a required dependency, as circular dependencies may cause failure with package managers that expect a directed acyclic graph (DAG) of dependencies. Release 1.0.6 (2023-08-14) ========================== * Use ``os.PathLike`` over ``pathlib.Path`` Release 1.0.5 (2023-08-09) ========================== * Fix tests for Sphinx 7.1 and below Release 1.0.4 (2023-08-07) ========================== * Drop support for Python 3.5, 3.6, 3.7, and 3.8 * Raise minimum required Sphinx version to 5.0 Release 1.0.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) ././@PaxHeader0000000000000000000000000000003300000000000010211 xustar0027 mtime=1705115202.872852 sphinxcontrib_qthelp-1.0.7/LICENSE0000644000000000000000000000263314550377103013732 0ustar00License 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. ././@PaxHeader0000000000000000000000000000003300000000000010211 xustar0027 mtime=1705115202.872852 sphinxcontrib_qthelp-1.0.7/README.rst0000644000000000000000000000063114550377103014410 0ustar00==================== 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 Contributing ============ See `CONTRIBUTING.rst`__ .. __: https://github.com/sphinx-doc/sphinx/blob/master/CONTRIBUTING.rst ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705115202.8768523 sphinxcontrib_qthelp-1.0.7/pyproject.toml0000644000000000000000000000370714550377103015644 0ustar00[build-system] requires = ["flit_core>=3.7"] build-backend = "flit_core.buildapi" # project metadata [project] name = "sphinxcontrib-qthelp" description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp documents" readme = "README.rst" urls.Changelog = "https://www.sphinx-doc.org/en/master/changes.html" urls.Code = "https://github.com/sphinx-doc/sphinxcontrib-qthelp" urls.Download = "https://pypi.org/project/sphinxcontrib-qthelp/" urls.Homepage = "https://www.sphinx-doc.org/" urls."Issue tracker" = "https://github.com/sphinx-doc/sphinx/issues" license.text = "BSD-2-Clause" requires-python = ">=3.9" # Classifiers list: https://pypi.org/classifiers/ classifiers = [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Environment :: Web Environment", "Intended Audience :: Developers", "Intended Audience :: Education", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Framework :: Sphinx", "Framework :: Sphinx :: Extension", "Topic :: Documentation", "Topic :: Documentation :: Sphinx", "Topic :: Text Processing", "Topic :: Utilities", ] dependencies = [] dynamic = ["version"] [project.optional-dependencies] test = [ "pytest", ] lint = [ "flake8", "mypy", "docutils-stubs", ] standalone = [ "Sphinx>=5", ] [[project.authors]] name = "Georg Brandl" email = "georg@python.org" [tool.flit.module] name = "sphinxcontrib.qthelp" [tool.flit.sdist] include = [ "CHANGES", "LICENSE", # Tests "tests/", "tox.ini", ] [tool.mypy] ignore_missing_imports = true ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705115202.8768523 sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/__init__.py0000644000000000000000000002473114550377103021230 0ustar00"""Build input files for the Qt collection generator.""" from __future__ import annotations import html import os import posixpath import re from collections.abc import Iterable from os import path from typing import Any, 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 __version__ = '1.0.7' __version_info__ = (1, 0, 7) 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.epilog = self.epilog % { 'outdir': '%(outdir)s', 'project': self.config.qthelp_basename, } self.build_qhp(self.outdir, self.config.qthelp_basename) def build_qhp(self, outdir: str | os.PathLike[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': indexname + self.out_suffix} 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%s' % self.link_suffix) 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: 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: 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 | os.PathLike[str]) -> list[str]: 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.relpath(path.join(root, fn), outdir) project_files.append(canon_path(filename)) return project_files def setup(app: Sphinx) -> dict[str, Any]: app.require_sphinx('5.0') 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/.tx/config����������������������������������0000644�0000000�0000000�00000000332�14550377103�022431� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������[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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/ar/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002252�14550377103�027445� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/ar/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002371�14550377103�027452� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/bn/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002130�14550377103�027435� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/bn/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002247�14550377103�027451� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/ca/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002130�14550377103�027421� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/ca/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002247�14550377103�027435� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/cs/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002246�14550377103�027453� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/cs/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002365�14550377103�027460� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/cy/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002203�14550377103�027452� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/cy/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002322�14550377103�027457� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/da/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002127�14550377103�027430� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/da/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002246�14550377103�027435� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/de/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002127�14550377103�027434� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/de/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002246�14550377103�027441� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/el/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002126�14550377103�027443� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/el/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002245�14550377103�027450� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/eo/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002132�14550377103�027443� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/eo/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002251�14550377103�027450� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/es/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002150�14550377103�027447� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/es/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002460�14550377103�027456� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/et/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002156�14550377103�027456� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/et/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002533�14550377103�027460� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/eu/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002127�14550377103�027455� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/eu/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002246�14550377103�027462� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/fa/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002127�14550377103�027432� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/fa/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002246�14550377103�027437� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/fi/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002130�14550377103�027434� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/fi/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002247�14550377103�027450� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/fr/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002164�14550377103�027454� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/fr/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002506�14550377103�027457� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/he/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002265�14550377103�027443� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^��%��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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/he/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002404�14550377103�027441� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/hi/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002126�14550377103�027443� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/hi/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002245�14550377103�027450� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/hi_IN/LC_MESSAGES/sphinxcontrib.qthelp.mo���0000644�0000000�0000000�00000002144�14550377103�030031� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/hi_IN/LC_MESSAGES/sphinxcontrib.qthelp.po���0000644�0000000�0000000�00000002263�14550377103�030036� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/hr/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002241�14550377103�027452� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/hr/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002360�14550377103�027457� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/hu/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002132�14550377103�027454� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/hu/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002251�14550377103�027461� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/id/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002135�14550377103�027437� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/id/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000003053�14550377103�027442� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/it/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002130�14550377103�027452� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/it/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002247�14550377103�027466� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/ja/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002122�14550377103�027431� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/ja/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002241�14550377103�027436� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/ko/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002133�14550377103�027452� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/ko/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002437�14550377103�027464� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/lt/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002336�14550377103�027465� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^��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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/lt/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002455�14550377103�027472� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/lv/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002173�14550377103�027466� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/lv/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002312�14550377103�027464� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/mk/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002171�14550377103�027452� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/mk/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002310�14550377103�027450� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/nb_NO/LC_MESSAGES/sphinxcontrib.qthelp.mo���0000644�0000000�0000000�00000002161�14550377103�030035� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8768523 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/nb_NO/LC_MESSAGES/sphinxcontrib.qthelp.po���0000644�0000000�0000000�00000002300�14550377103�030033� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/ne/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002127�14550377103�027446� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/ne/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002246�14550377103�027453� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/nl/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002126�14550377103�027454� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/nl/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002245�14550377103�027461� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/pl/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002341�14550377103�027455� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^��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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/pl/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002626�14550377103�027466� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/pt/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002133�14550377103�027464� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/pt/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002252�14550377103�027471� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/pt_BR/LC_MESSAGES/sphinxcontrib.qthelp.mo���0000644�0000000�0000000�00000002151�14550377103�030047� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/pt_BR/LC_MESSAGES/sphinxcontrib.qthelp.po���0000644�0000000�0000000�00000002270�14550377103�030054� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/pt_PT/LC_MESSAGES/sphinxcontrib.qthelp.mo���0000644�0000000�0000000�00000002154�14550377103�030072� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/pt_PT/LC_MESSAGES/sphinxcontrib.qthelp.po���0000644�0000000�0000000�00000002273�14550377103�030077� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/ro/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002202�14550377103�027456� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/ro/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002321�14550377103�027463� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/ru/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002342�14550377103�027471� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^��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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/ru/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002461�14550377103�027476� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/si/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002130�14550377103�027451� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/si/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002247�14550377103�027465� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/sk/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002242�14550377103�027457� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/sk/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002361�14550377103�027464� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/sl/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002216�14550377103�027461� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/sl/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002335�14550377103�027466� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/sphinxcontrib.qthelp.pot��������������������0000644�0000000�0000000�00000002157�14550377103�025451� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/sr/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002242�14550377103�027466� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/sr/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002361�14550377103�027473� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.qthelp.mo0000644�0000000�0000000�00000002270�14550377103�030617� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^��(��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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.qthelp.po0000644�0000000�0000000�00000002407�14550377103�030624� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/sv/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002130�14550377103�027466� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/sv/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002247�14550377103�027502� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/ta/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002126�14550377103�027447� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/ta/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002245�14550377103�027454� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/tr/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002127�14550377103�027471� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/tr/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002246�14550377103�027476� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/uk_UA/LC_MESSAGES/sphinxcontrib.qthelp.mo���0000644�0000000�0000000�00000002510�14550377103�030044� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/uk_UA/LC_MESSAGES/sphinxcontrib.qthelp.po���0000644�0000000�0000000�00000002627�14550377103�030060� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/vi/LC_MESSAGES/sphinxcontrib.qthelp.mo������0000644�0000000�0000000�00000002124�14550377103�027457� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/vi/LC_MESSAGES/sphinxcontrib.qthelp.po������0000644�0000000�0000000�00000002243�14550377103�027464� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.qthelp.mo���0000644�0000000�0000000�00000002206�14550377103�030043� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.qthelp.po���0000644�0000000�0000000�00000003145�14550377103�030051� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.qthelp.mo���0000644�0000000�0000000�00000002140�14550377103�030072� 0����������������������������������������������������������������������������������������������������ustar�00�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<���������������\������]���"���;�����^����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�00000000034�00000000000�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.qthelp.po���0000644�0000000�0000000�00000002257�14550377103�030106� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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�010212� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������28 mtime=1705115202.8808522 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/templates/project.qhcp������������������������������0000644�0000000�0000000�00000001067�14550377103�023435� 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?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 ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705115202.8808522 sphinxcontrib_qthelp-1.0.7/sphinxcontrib/qthelp/templates/project.qhp0000644000000000000000000000153714550377103023274 0ustar00 {{ namespace|e }} doc {{ outname|e }} {{ version|e }} {{ outname|e }} {{ version|e }}
{{ sections }}
{{ keywords }} {%- for filename in files %} {{ filename|e }} {%- endfor %}
././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705115202.8808522 sphinxcontrib_qthelp-1.0.7/tests/conftest.py0000644000000000000000000000053314550377103016263 0ustar00from pathlib import Path import pytest import sphinx pytest_plugins = 'sphinx.testing.fixtures' @pytest.fixture(scope='session') def rootdir(): if sphinx.version_info[:2] < (7, 2): from sphinx.testing.path import path return path(__file__).parent.abspath() / 'roots' return Path(__file__).resolve().parent / 'roots' ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705115202.8808522 sphinxcontrib_qthelp-1.0.7/tests/roots/test-basic/conf.py0000644000000000000000000000000014550377103020554 0ustar00././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705115202.8808522 sphinxcontrib_qthelp-1.0.7/tests/roots/test-basic/index.rst0000644000000000000000000000002614550377103021126 0ustar00test-basic ========== ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705115202.8808522 sphinxcontrib_qthelp-1.0.7/tests/roots/test-need-escaped/bar.rst0000644000000000000000000000001014550377103022010 0ustar00bar === ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705115202.8808522 sphinxcontrib_qthelp-1.0.7/tests/roots/test-need-escaped/baz.rst0000644000000000000000000000001014550377103022020 0ustar00baz === ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705115202.8808522 sphinxcontrib_qthelp-1.0.7/tests/roots/test-need-escaped/conf.py0000644000000000000000000000007614550377103022025 0ustar00project = 'need "escaped" project' smartquotes = False ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705115202.8808522 sphinxcontrib_qthelp-1.0.7/tests/roots/test-need-escaped/foo.rst0000644000000000000000000000012214550377103022033 0ustar00 ===== .. toctree:: quux foo "1" ------- foo.1-1 ^^^^^^^ foo.2 ----- ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705115202.8808522 sphinxcontrib_qthelp-1.0.7/tests/roots/test-need-escaped/index.rst0000644000000000000000000000135514550377103022370 0ustar00.. 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 ------------- ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705115202.8808522 sphinxcontrib_qthelp-1.0.7/tests/roots/test-need-escaped/quux.rst0000644000000000000000000000001214550377103022250 0ustar00quux ==== ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705115202.8808522 sphinxcontrib_qthelp-1.0.7/tests/roots/test-need-escaped/qux.rst0000644000000000000000000000003514550377103022070 0ustar00qux.rst has no section title ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705115202.8808522 sphinxcontrib_qthelp-1.0.7/tests/test_qthelp.py0000644000000000000000000001263414550377103016777 0ustar00"""Test for qthelp extension.""" 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').read_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').read_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').read_text() assert 'org.sphinx.python' in qhp qhcp = (app.outdir / 'Python.qhcp').read_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').read_text() assert 'org.sphinx-doc.sphinx' in qhp qhcp = (app.outdir / 'Python.qhcp').read_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').read_text() assert '
' in qhp qhcp = (app.outdir / 'Python.qhcp').read_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').read_text() assert ('
' in qhp) qhcp = (app.outdir / 'Python.qhcp').read_text() assert 'Sphinx <b>"short"</b> title' in qhcp ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705115202.8808522 sphinxcontrib_qthelp-1.0.7/tox.ini0000644000000000000000000000105214550377103014232 0ustar00[tox] minversion = 2.4.0 envlist = py{39,310,311,312,313}, flake8, mypy isolated_build = True [testenv] deps= pytest git+https://github.com/sphinx-doc/sphinx extras= test setenv = PYTHONWARNINGS = all,ignore::DeprecationWarning:docutils.io commands= pytest --durations 25 {posargs} [testenv:flake8] description = Run style checks. extras = test lint commands= flake8 [testenv:mypy] description = Run type checks. extras = test lint commands= mypy sphinxcontrib/ --explicit-package-bases sphinxcontrib_qthelp-1.0.7/PKG-INFO0000644000000000000000000000426600000000000013762 0ustar00Metadata-Version: 2.1 Name: sphinxcontrib-qthelp Version: 1.0.7 Summary: sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp documents Author-email: Georg Brandl Requires-Python: >=3.9 Description-Content-Type: text/x-rst Classifier: Development Status :: 5 - Production/Stable Classifier: Environment :: Console Classifier: Environment :: Web Environment Classifier: Intended Audience :: Developers Classifier: Intended Audience :: Education Classifier: License :: OSI Approved :: BSD License Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3 :: Only Classifier: Programming Language :: Python :: 3.9 Classifier: Programming Language :: Python :: 3.10 Classifier: Programming Language :: Python :: 3.11 Classifier: Programming Language :: Python :: 3.12 Classifier: Programming Language :: Python :: 3.13 Classifier: Framework :: Sphinx Classifier: Framework :: Sphinx :: Extension Classifier: Topic :: Documentation Classifier: Topic :: Documentation :: Sphinx Classifier: Topic :: Text Processing Classifier: Topic :: Utilities Requires-Dist: flake8 ; extra == "lint" Requires-Dist: mypy ; extra == "lint" Requires-Dist: docutils-stubs ; extra == "lint" Requires-Dist: Sphinx>=5 ; extra == "standalone" Requires-Dist: pytest ; extra == "test" Project-URL: Changelog, https://www.sphinx-doc.org/en/master/changes.html Project-URL: Code, https://github.com/sphinx-doc/sphinxcontrib-qthelp Project-URL: Download, https://pypi.org/project/sphinxcontrib-qthelp/ Project-URL: Homepage, https://www.sphinx-doc.org/ Project-URL: Issue tracker, https://github.com/sphinx-doc/sphinx/issues Provides-Extra: lint Provides-Extra: standalone Provides-Extra: test ==================== sphinxcontrib-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 Contributing ============ See `CONTRIBUTING.rst`__ .. __: https://github.com/sphinx-doc/sphinx/blob/master/CONTRIBUTING.rst