././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7677186 sphinxcontrib-serializinghtml-1.1.5/0000755000076600000240000000000000000000000017155 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1621699546.0 sphinxcontrib-serializinghtml-1.1.5/CHANGES0000644000076600000240000000114500000000000020151 0ustar00tkomiyastaffRelease 1.1.5 (2021-05-23) ========================== * Remove deprecation warnings for Sphinx-3.x Release 1.1.4 (2020-02-29) ========================== * Fix package metadata has broken Release 1.1.3 (2019-04-05) ========================== * Fix #6245: circular import error Release 1.1.1 (2019-02-17) ========================== * Fix failed to load HTML extension Release 1.1.0 (2019-02-17) ========================== * Add ``JSONHTMLBuilder`` and ``PickleHTMLBuilder`` (copied from sphinx package) Release 1.0.0 (2019-02-17) ========================== * Initial release (copied from sphinx package) ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1578843603.0 sphinxcontrib-serializinghtml-1.1.5/LICENSE0000644000076600000240000000265500000000000020172 0ustar00tkomiyastaffLicense for sphinxcontrib-serializinghtml ========================================= 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. ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1578843603.0 sphinxcontrib-serializinghtml-1.1.5/MANIFEST.in0000644000076600000240000000023100000000000020707 0ustar00tkomiyastaffinclude README.rst include LICENSE include CHANGES include tox.ini recursive-include sphinxcontrib/serializinghtml/locales * recursive-include tests * ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7678568 sphinxcontrib-serializinghtml-1.1.5/PKG-INFO0000644000076600000240000000253400000000000020256 0ustar00tkomiyastaffMetadata-Version: 2.1 Name: sphinxcontrib-serializinghtml Version: 1.1.5 Summary: sphinxcontrib-serializinghtml is a sphinx extension which outputs "serialized" HTML files (json and pickle). Home-page: http://sphinx-doc.org/ Author: Georg Brandl Author-email: georg@python.org License: BSD Download-URL: https://pypi.org/project/sphinxcontrib-serializinghtml/ Description: sphinxcontrib-serializinghtml is a sphinx extension which outputs "serialized" HTML files (json and pickle). Platform: any Classifier: Development Status :: 5 - Production/Stable Classifier: Environment :: Console Classifier: Environment :: Web Environment Classifier: Intended Audience :: Developers Classifier: Intended Audience :: Education Classifier: License :: OSI Approved :: BSD License Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.5 Classifier: Programming Language :: Python :: 3.6 Classifier: Programming Language :: Python :: 3.7 Classifier: Framework :: Sphinx Classifier: Framework :: Sphinx :: Extension Classifier: Topic :: Documentation Classifier: Topic :: Documentation :: Sphinx Classifier: Topic :: Text Processing Classifier: Topic :: Utilities Requires-Python: >=3.5 Provides-Extra: test Provides-Extra: lint ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1578843603.0 sphinxcontrib-serializinghtml-1.1.5/README.rst0000644000076600000240000000163300000000000020647 0ustar00tkomiyastaff============================= sphinxcontrib-serializinghtml ============================= sphinxcontrib-serializinghtml is a sphinx extension which outputs "serialized" HTML files (json and pickle). For more details, please visit http://www.sphinx-doc.org/. Installing ========== Install from PyPI:: pip install -U sphinxcontrib-serializinghtml Release signatures ================== Releases are signed with following keys: * `498D6B9E `_ * `5EBA0E07 `_ Testing ======= To run the tests with the interpreter available as ``python``, use:: tox Continuous testing runs on travis: https://travis-ci.org/sphinx-doc/sphinxcontrib-serializinghtml Contributing ============ See `CONTRIBUTING.rst`__ .. __: https://github.com/sphinx-doc/sphinx/blob/master/CONTRIBUTING.rst ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7683902 sphinxcontrib-serializinghtml-1.1.5/setup.cfg0000644000076600000240000000102200000000000020771 0ustar00tkomiyastaff[egg_info] tag_build = tag_date = 0 [aliases] release = egg_info -Db '' [extract_messages] output_file = sphinxcontrib/serializinghtml/locales/sphinxcontrib.serializinghtml.pot keywords = _ __ [compile_catalog] domain = sphinxcontrib.serializinghtml directory = sphinxcontrib/serializinghtml/locales/ use_fuzzy = true [bdist_wheel] universal = 1 [metadata] license_file = LICENSE [flake8] max-line-length = 95 ignore = E116,E241,E251 exclude = .git,.tox,.venv [mypy] ignore_missing_imports = True strict_optional = False ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1582948952.0 sphinxcontrib-serializinghtml-1.1.5/setup.py0000644000076600000240000000410700000000000020671 0ustar00tkomiyastaff# -*- coding: utf-8 -*- import os from setuptools import setup, find_packages long_desc = ''' sphinxcontrib-serializinghtml is a sphinx extension which outputs "serialized" HTML files (json and pickle). ''' extras_require = { 'test': [ 'pytest', ], 'lint': [ 'flake8', 'mypy', 'docutils-stubs', ], } def get_version(): """Get version number of the package from version.py without importing core module.""" package_dir = os.path.abspath(os.path.dirname(__file__)) version_file = os.path.join(package_dir, 'sphinxcontrib/serializinghtml/version.py') namespace = {} with open(version_file, 'rt') as f: exec(f.read(), namespace) return namespace['__version__'] setup( name='sphinxcontrib-serializinghtml', version=get_version(), url='http://sphinx-doc.org/', download_url='https://pypi.org/project/sphinxcontrib-serializinghtml/', license='BSD', author='Georg Brandl', author_email='georg@python.org', description=long_desc.strip().replace('\n', ' '), long_description=long_desc, zip_safe=False, classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Environment :: Web Environment', 'Intended Audience :: Developers', 'Intended Audience :: Education', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Framework :: Sphinx', 'Framework :: Sphinx :: Extension', 'Topic :: Documentation', 'Topic :: Documentation :: Sphinx', 'Topic :: Text Processing', 'Topic :: Utilities', ], platforms='any', python_requires=">=3.5", packages=find_packages(exclude=['tests']), include_package_data=True, extras_require=extras_require, namespace_packages=['sphinxcontrib'], ) ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7306476 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/0000755000076600000240000000000000000000000022047 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1578843603.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/__init__.py0000644000076600000240000000053600000000000024164 0ustar00tkomiyastaff""" sphinxcontrib ~~~~~~~~~~~~~ This package is a namespace package that contains all extensions distributed in the ``sphinx-contrib`` distribution. :copyright: Copyright 2007-2009 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import pkg_resources pkg_resources.declare_namespace(__name__) ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7313862 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/0000755000076600000240000000000000000000000025254 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1621163714.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/__init__.py0000644000076600000240000001366000000000000027373 0ustar00tkomiyastaff""" sphinxcontrib.serializinghtml ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :copyright: Copyright 2007-2019 by the Sphinx team, see README. :license: BSD, see LICENSE for details. """ import pickle import types from os import path from typing import Any, Dict from sphinx.application import ENV_PICKLE_FILENAME, Sphinx from sphinx.builders.html import BuildInfo, StandaloneHTMLBuilder from sphinx.locale import get_translation from sphinx.util.osutil import SEP, copyfile, ensuredir, os_path from sphinxcontrib.serializinghtml import jsonimpl from sphinxcontrib.serializinghtml.version import __version__ if False: # For type annotation from typing import Any, Dict, Tuple # NOQA package_dir = path.abspath(path.dirname(__file__)) __ = get_translation(__name__, 'console') #: the filename for the "last build" file (for serializing builders) LAST_BUILD_FILENAME = 'last_build' class SerializingHTMLBuilder(StandaloneHTMLBuilder): """ An abstract builder that serializes the generated HTML. """ #: the serializing implementation to use. Set this to a module that #: implements a `dump`, `load`, `dumps` and `loads` functions #: (pickle, simplejson etc.) implementation = None # type: Any implementation_dumps_unicode = False #: additional arguments for dump() additional_dump_args = () # type: Tuple #: the filename for the global context file globalcontext_filename = None # type: str supported_image_types = ['image/svg+xml', 'image/png', 'image/gif', 'image/jpeg'] def init(self): # type: () -> None self.build_info = BuildInfo(self.config, self.tags) self.imagedir = '_images' self.current_docname = None self.theme = None # no theme necessary self.templates = None # no template bridge necessary self.init_templates() self.init_highlighter() self.init_css_files() self.init_js_files() self.use_index = self.get_builder_config('use_index', 'html') def get_target_uri(self, docname, typ=None): # type: (str, str) -> str if docname == 'index': return '' if docname.endswith(SEP + 'index'): return docname[:-5] # up to sep return docname + SEP def dump_context(self, context, filename): # type: (Dict, str) -> None if self.implementation_dumps_unicode: with open(filename, 'w', encoding='utf-8') as ft: self.implementation.dump(context, ft, *self.additional_dump_args) else: with open(filename, 'wb') as fb: self.implementation.dump(context, fb, *self.additional_dump_args) def handle_page(self, pagename, ctx, templatename='page.html', outfilename=None, event_arg=None): # type: (str, Dict, str, str, Any) -> None ctx['current_page_name'] = pagename self.add_sidebars(pagename, ctx) if not outfilename: outfilename = path.join(self.outdir, os_path(pagename) + self.out_suffix) # we're not taking the return value here, since no template is # actually rendered self.app.emit('html-page-context', pagename, templatename, ctx, event_arg) # make context object serializable for key in list(ctx): if isinstance(ctx[key], types.FunctionType): del ctx[key] ensuredir(path.dirname(outfilename)) self.dump_context(ctx, outfilename) # if there is a source file, copy the source file for the # "show source" link if ctx.get('sourcename'): source_name = path.join(self.outdir, '_sources', os_path(ctx['sourcename'])) ensuredir(path.dirname(source_name)) copyfile(self.env.doc2path(pagename), source_name) def handle_finish(self): # type: () -> None # dump the global context outfilename = path.join(self.outdir, self.globalcontext_filename) self.dump_context(self.globalcontext, outfilename) # super here to dump the search index super().handle_finish() # copy the environment file from the doctree dir to the output dir # as needed by the web app copyfile(path.join(self.doctreedir, ENV_PICKLE_FILENAME), path.join(self.outdir, ENV_PICKLE_FILENAME)) # touch 'last build' file, used by the web application to determine # when to reload its environment and clear the cache open(path.join(self.outdir, LAST_BUILD_FILENAME), 'w').close() class PickleHTMLBuilder(SerializingHTMLBuilder): """ A Builder that dumps the generated HTML into pickle files. """ name = 'pickle' epilog = __('You can now process the pickle files in %(outdir)s.') implementation = pickle implementation_dumps_unicode = False additional_dump_args = (pickle.HIGHEST_PROTOCOL,) indexer_format = pickle indexer_dumps_unicode = False out_suffix = '.fpickle' globalcontext_filename = 'globalcontext.pickle' searchindex_filename = 'searchindex.pickle' class JSONHTMLBuilder(SerializingHTMLBuilder): """ A builder that dumps the generated HTML into JSON files. """ name = 'json' epilog = __('You can now process the JSON files in %(outdir)s.') implementation = jsonimpl implementation_dumps_unicode = True indexer_format = jsonimpl indexer_dumps_unicode = True out_suffix = '.fjson' globalcontext_filename = 'globalcontext.json' searchindex_filename = 'searchindex.json' def setup(app: Sphinx) -> Dict[str, Any]: app.setup_extension('sphinx.builders.html') app.add_builder(JSONHTMLBuilder) app.add_builder(PickleHTMLBuilder) app.add_message_catalog(__name__, path.join(package_dir, 'locales')) return { 'version': __version__, 'parallel_read_safe': True, 'parallel_write_safe': True, } ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1578843603.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/jsonimpl.py0000644000076600000240000000210700000000000027461 0ustar00tkomiyastaff""" sphinx.util.jsonimpl ~~~~~~~~~~~~~~~~~~~~ JSON serializer implementation wrapper. :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import json from collections import UserString if False: # For type annotation from typing import Any, IO # NOQA class SphinxJSONEncoder(json.JSONEncoder): """JSONEncoder subclass that forces translation proxies.""" def default(self, obj): # type: (Any) -> str if isinstance(obj, UserString): return str(obj) return super().default(obj) def dump(obj, fp, *args, **kwds): # type: (Any, IO, Any, Any) -> None kwds['cls'] = SphinxJSONEncoder json.dump(obj, fp, *args, **kwds) def dumps(obj, *args, **kwds): # type: (Any, Any, Any) -> str kwds['cls'] = SphinxJSONEncoder return json.dumps(obj, *args, **kwds) def load(*args, **kwds): # type: (Any, Any) -> Any return json.load(*args, **kwds) def loads(*args, **kwds): # type: (Any, Any) -> Any return json.loads(*args, **kwds) ././@PaxHeader0000000000000000000000000000003300000000000010211 xustar0027 mtime=1621699639.731637 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/0000755000076600000240000000000000000000000026676 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003300000000000010211 xustar0027 mtime=1621699639.731912 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/.tx/0000755000076600000240000000000000000000000027407 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1578843603.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/.tx/config0000644000076600000240000000036500000000000030603 0ustar00tkomiyastaff[main] host = https://www.transifex.com [sphinx-1.sphinxcontrib-serializinghtml-pot] file_filter = /LC_MESSAGES/sphinxcontrib.serializinghtml.po minimum_perc = 0 source_file = sphinxcontrib.serializinghtml.pot source_lang = en type = PO ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7167592 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ar/0000755000076600000240000000000000000000000027300 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7324104 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ar/LC_MESSAGES/0000755000076600000240000000000000000000000031065 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ar/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ar/LC_MESSAGES/sphinxcontr0000644000076600000240000000156200000000000033373 0ustar00tkomiyastaff4L1M36AE,You can now process the JSON files in %(outdir)s.You can now process the pickle files in %(outdir)s.Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: Abdullah ahmed , 2020 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.9.1 تستطيع الآن معالجة ملفات JSONفي %(outdir)sتستطيع الآن معالجة ملفات pickle في %(outdir)s././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ar/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699570.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ar/LC_MESSAGES/sphinxcontr0000644000076600000240000000250200000000000033366 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # # Translators: # Abdullah ahmed , 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+0000\n" "Last-Translator: Abdullah ahmed , 2020\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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "تستطيع الآن معالجة ملفات pickle في %(outdir)s" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "تستطيع الآن معالجة ملفات JSONفي %(outdir)s" ././@PaxHeader0000000000000000000000000000003300000000000010211 xustar0027 mtime=1621699639.716965 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/bg/0000755000076600000240000000000000000000000027266 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003200000000000010210 xustar0026 mtime=1621699639.73292 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/bg/LC_MESSAGES/0000755000076600000240000000000000000000000031053 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/bg/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/bg/LC_MESSAGES/sphinxcontr0000644000076600000240000000100100000000000033345 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: bg Language-Team: Bulgarian (https://www.transifex.com/sphinx-doc/teams/36659/bg/) 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.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/bg/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699578.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/bg/LC_MESSAGES/sphinxcontr0000644000076600000240000000175100000000000033361 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+0000\n" "Language-Team: Bulgarian (https://www.transifex.com/sphinx-doc/teams/36659/bg/)\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: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7171931 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/bn/0000755000076600000240000000000000000000000027275 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003300000000000010211 xustar0027 mtime=1621699639.733447 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/bn/LC_MESSAGES/0000755000076600000240000000000000000000000031062 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/bn/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/bn/LC_MESSAGES/sphinxcontr0000644000076600000240000000077700000000000033377 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: bn Language-Team: Bengali (https://www.transifex.com/sphinx-doc/teams/36659/bn/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/bn/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699574.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/bn/LC_MESSAGES/sphinxcontr0000644000076600000240000000174700000000000033375 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7174044 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ca/0000755000076600000240000000000000000000000027261 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7339756 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ca/LC_MESSAGES/0000755000076600000240000000000000000000000031046 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ca/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ca/LC_MESSAGES/sphinxcontr0000644000076600000240000000077700000000000033363 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: ca Language-Team: Catalan (https://www.transifex.com/sphinx-doc/teams/36659/ca/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ca/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699575.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ca/LC_MESSAGES/sphinxcontr0000644000076600000240000000174700000000000033361 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7176096 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/cak/0000755000076600000240000000000000000000000027434 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7344704 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/cak/LC_MESSAGES/0000755000076600000240000000000000000000000031221 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023200000000000010212 xustar00132 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/cak/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/cak/LC_MESSAGES/sphinxcont0000644000076600000240000000073100000000000033342 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: cak Language-Team: Kaqchikel (https://www.transifex.com/sphinx-doc/teams/36659/cak/) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023200000000000010212 xustar00132 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/cak/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699570.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/cak/LC_MESSAGES/sphinxcont0000644000076600000240000000175300000000000033347 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+0000\n" "Language-Team: Kaqchikel (https://www.transifex.com/sphinx-doc/teams/36659/cak/)\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: cak\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7178178 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/cs/0000755000076600000240000000000000000000000027303 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7349668 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/cs/LC_MESSAGES/0000755000076600000240000000000000000000000031070 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/cs/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/cs/LC_MESSAGES/sphinxcontr0000644000076600000240000000111500000000000033370 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: cs Language-Team: Czech (https://www.transifex.com/sphinx-doc/teams/36659/cs/) Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/cs/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699570.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/cs/LC_MESSAGES/sphinxcontr0000644000076600000240000000206500000000000033375 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7180765 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/cy/0000755000076600000240000000000000000000000027311 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7354763 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/cy/LC_MESSAGES/0000755000076600000240000000000000000000000031076 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/cy/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/cy/LC_MESSAGES/sphinxcontr0000644000076600000240000000105200000000000033376 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: cy Language-Team: Welsh (https://www.transifex.com/sphinx-doc/teams/36659/cy/) Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/cy/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699570.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/cy/LC_MESSAGES/sphinxcontr0000644000076600000240000000202200000000000033374 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003300000000000010211 xustar0027 mtime=1621699639.718321 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/da/0000755000076600000240000000000000000000000027262 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7360077 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/da/LC_MESSAGES/0000755000076600000240000000000000000000000031047 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/da/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/da/LC_MESSAGES/sphinxcontr0000644000076600000240000000135700000000000033357 0ustar00tkomiyastaff4L1M3-/You can now process the JSON files in %(outdir)s.You can now process the pickle files in %(outdir)s.Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: Joe Hansen , 2019 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.9.1 Du kan nu behandle JSON-filerne i %(outdir)s.Du kan nu behandle pickle-filerne i %(outdir)s.././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/da/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699571.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/da/LC_MESSAGES/sphinxcontr0000644000076600000240000000227100000000000033353 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # # Translators: # Joe Hansen , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+0000\n" "Last-Translator: Joe Hansen , 2019\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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "Du kan nu behandle pickle-filerne i %(outdir)s." #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "Du kan nu behandle JSON-filerne i %(outdir)s." ././@PaxHeader0000000000000000000000000000003300000000000010211 xustar0027 mtime=1621699639.718547 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/de/0000755000076600000240000000000000000000000027266 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003300000000000010211 xustar0027 mtime=1621699639.736597 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/de/LC_MESSAGES/0000755000076600000240000000000000000000000031053 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/de/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/de/LC_MESSAGES/sphinxcontr0000644000076600000240000000077600000000000033367 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: de Language-Team: German (https://www.transifex.com/sphinx-doc/teams/36659/de/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/de/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699574.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/de/LC_MESSAGES/sphinxcontr0000644000076600000240000000174600000000000033365 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7187595 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/el/0000755000076600000240000000000000000000000027276 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7371109 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/el/LC_MESSAGES/0000755000076600000240000000000000000000000031063 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/el/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/el/LC_MESSAGES/sphinxcontr0000644000076600000240000000154700000000000033374 0ustar00tkomiyastaff4L1M3ceYou can now process the JSON files in %(outdir)s.You can now process the pickle files in %(outdir)s.Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: tzoumakers tzoumakers , 2019 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.9.1 Μπορείτε τώρα να επεξεργαστείτε τα αρχεία JSON σε %(outdir)s.Μπορείτε τώρα να επεξεργαστείτε τα αρχεία pickle σε %(outdir)s.././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/el/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699576.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/el/LC_MESSAGES/sphinxcontr0000644000076600000240000000247600000000000033376 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # # Translators: # tzoumakers tzoumakers , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+0000\n" "Last-Translator: tzoumakers tzoumakers , 2019\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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "Μπορείτε τώρα να επεξεργαστείτε τα αρχεία pickle σε %(outdir)s." #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "Μπορείτε τώρα να επεξεργαστείτε τα αρχεία JSON σε %(outdir)s." ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7189755 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/eo/0000755000076600000240000000000000000000000027301 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7376537 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/eo/LC_MESSAGES/0000755000076600000240000000000000000000000031066 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/eo/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/eo/LC_MESSAGES/sphinxcontr0000644000076600000240000000100100000000000033360 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: eo Language-Team: Esperanto (https://www.transifex.com/sphinx-doc/teams/36659/eo/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/eo/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699574.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/eo/LC_MESSAGES/sphinxcontr0000644000076600000240000000175100000000000033374 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7191887 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/es/0000755000076600000240000000000000000000000027305 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003300000000000010211 xustar0027 mtime=1621699639.738152 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/es/LC_MESSAGES/0000755000076600000240000000000000000000000031072 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/es/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/es/LC_MESSAGES/sphinxcontr0000644000076600000240000000143500000000000033377 0ustar00tkomiyastaff4L1M36=You can now process the JSON files in %(outdir)s.You can now process the pickle files in %(outdir)s.Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: Leonardo J. Caballero G. , 2020 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.9.1 Usted ahora puede procesar el archivo JSON %(outdir)s.Usted ahora puede procesar los archivos pickle en %(outdir)s.././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/es/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699571.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/es/LC_MESSAGES/sphinxcontr0000644000076600000240000000247000000000000033377 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # # Translators: # Edward Villegas-Pulgarin , 2019 # Leonardo J. Caballero G. , 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+0000\n" "Last-Translator: Leonardo J. Caballero G. , 2020\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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "Usted ahora puede procesar los archivos pickle en %(outdir)s." #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "Usted ahora puede procesar el archivo JSON %(outdir)s." ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7193942 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/et/0000755000076600000240000000000000000000000027306 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7386396 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/et/LC_MESSAGES/0000755000076600000240000000000000000000000031073 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/et/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/et/LC_MESSAGES/sphinxcontr0000644000076600000240000000122700000000000033377 0ustar00tkomiyastaff,<1=oLJYou can now process the JSON files in %(outdir)s.Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: Ivar Smolin , 2020 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.9.1 Nüüd on sul võimalik töödelda kataloogis %(outdir)s asuvaid JSON-faile.././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/et/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699575.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/et/LC_MESSAGES/sphinxcontr0000644000076600000240000000224400000000000033377 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # # Translators: # Ivar Smolin , 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+0000\n" "Last-Translator: Ivar Smolin , 2020\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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" "Nüüd on sul võimalik töödelda kataloogis %(outdir)s asuvaid JSON-faile." ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7196121 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/eu/0000755000076600000240000000000000000000000027307 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7391467 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/eu/LC_MESSAGES/0000755000076600000240000000000000000000000031074 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/eu/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/eu/LC_MESSAGES/sphinxcontr0000644000076600000240000000077600000000000033410 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: eu Language-Team: Basque (https://www.transifex.com/sphinx-doc/teams/36659/eu/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/eu/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699574.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/eu/LC_MESSAGES/sphinxcontr0000644000076600000240000000174600000000000033406 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7198224 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/fa/0000755000076600000240000000000000000000000027264 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003300000000000010211 xustar0027 mtime=1621699639.739634 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/fa/LC_MESSAGES/0000755000076600000240000000000000000000000031051 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/fa/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/fa/LC_MESSAGES/sphinxcontr0000644000076600000240000000162200000000000033354 0ustar00tkomiyastaff4L1M3uYou can now process the JSON files in %(outdir)s.You can now process the pickle files in %(outdir)s.Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: Hadi F , 2020 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.9.1 شما هم اکنون می توانید فایل های JSON را در پوشه ی %(outdir)s پردازش کنید.شما هم اکنون می توانید فایل های رده بندی شده (pickle) را در پوشه ی %(outdir)s پردازش کنید.././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/fa/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699577.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/fa/LC_MESSAGES/sphinxcontr0000644000076600000240000000253700000000000033362 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # # Translators: # Hadi F , 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+0000\n" "Last-Translator: Hadi F , 2020\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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" "شما هم اکنون می توانید فایل های رده بندی شده (pickle) را در پوشه ی " "%(outdir)s پردازش کنید." #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" "شما هم اکنون می توانید فایل های JSON را در پوشه ی %(outdir)s پردازش کنید." ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7200303 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/fi/0000755000076600000240000000000000000000000027274 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7401505 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/fi/LC_MESSAGES/0000755000076600000240000000000000000000000031061 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/fi/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/fi/LC_MESSAGES/sphinxcontr0000644000076600000240000000077700000000000033376 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: fi Language-Team: Finnish (https://www.transifex.com/sphinx-doc/teams/36659/fi/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/fi/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699574.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/fi/LC_MESSAGES/sphinxcontr0000644000076600000240000000174700000000000033374 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003300000000000010211 xustar0027 mtime=1621699639.720234 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/fr/0000755000076600000240000000000000000000000027305 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003300000000000010211 xustar0027 mtime=1621699639.740651 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/fr/LC_MESSAGES/0000755000076600000240000000000000000000000031072 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/fr/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/fr/LC_MESSAGES/sphinxcontr0000644000076600000240000000143200000000000033374 0ustar00tkomiyastaff4L1M3?IYou can now process the JSON files in %(outdir)s.You can now process the pickle files in %(outdir)s.Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: Jean-François B. , 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.9.1 Vous pouvez maintenant traiter le fichier JSON dans %(outdir)s.Vous pouvez maintenant traiter les fichiers sérialisés dans %(outdir)s.././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/fr/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699574.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/fr/LC_MESSAGES/sphinxcontr0000644000076600000240000000242200000000000033374 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # # Translators: # LAURENT Raphaël , 2019 # Jean-François B. , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+0000\n" "Last-Translator: Jean-François B. , 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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" "Vous pouvez maintenant traiter les fichiers sérialisés dans %(outdir)s." #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "Vous pouvez maintenant traiter le fichier JSON dans %(outdir)s." ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7204368 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/he/0000755000076600000240000000000000000000000027272 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7411408 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/he/LC_MESSAGES/0000755000076600000240000000000000000000000031057 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/he/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/he/LC_MESSAGES/sphinxcontr0000644000076600000240000000113400000000000033360 0ustar00tkomiyastaff$,.-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: he Language-Team: Hebrew (https://www.transifex.com/sphinx-doc/teams/36659/he/) Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/he/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699571.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/he/LC_MESSAGES/sphinxcontr0000644000076600000240000000210400000000000033356 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7206495 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/hi/0000755000076600000240000000000000000000000027276 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7416162 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/hi/LC_MESSAGES/0000755000076600000240000000000000000000000031063 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/hi/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/hi/LC_MESSAGES/sphinxcontr0000644000076600000240000000163100000000000033366 0ustar00tkomiyastaff4L1M3You can now process the JSON files in %(outdir)s.You can now process the pickle files in %(outdir)s.Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: Ajay Singh , 2019 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.9.1 अब आप जैसन #JSON# फाइलों को %(outdir)s में संसाधित कर सकते हैंअब आप रक्षित फाइलों को %(outdir)s में संसाधित कर सकते हैं././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/hi/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699570.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/hi/LC_MESSAGES/sphinxcontr0000644000076600000240000000254300000000000033371 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # # Translators: # Ajay Singh , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+0000\n" "Last-Translator: Ajay Singh , 2019\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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "अब आप रक्षित फाइलों को %(outdir)s में संसाधित कर सकते हैं" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "अब आप जैसन #JSON# फाइलों को %(outdir)s में संसाधित कर सकते हैं" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7208695 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/hi_IN/0000755000076600000240000000000000000000000027664 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7421691 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/hi_IN/LC_MESSAGES/0000755000076600000240000000000000000000000031451 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023400000000000010214 xustar00134 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/hi_IN/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/hi_IN/LC_MESSAGES/sphinxco0000644000076600000240000000101300000000000033222 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: hi_IN Language-Team: Hindi (India) (https://www.transifex.com/sphinx-doc/teams/36659/hi_IN/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023400000000000010214 xustar00134 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/hi_IN/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699570.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/hi_IN/LC_MESSAGES/sphinxco0000644000076600000240000000176300000000000033236 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7210946 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/hr/0000755000076600000240000000000000000000000027307 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7427063 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/hr/LC_MESSAGES/0000755000076600000240000000000000000000000031074 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/hr/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/hr/LC_MESSAGES/sphinxcontr0000644000076600000240000000111000000000000033367 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: hr Language-Team: Croatian (https://www.transifex.com/sphinx-doc/teams/36659/hr/) Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/hr/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699575.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/hr/LC_MESSAGES/sphinxcontr0000644000076600000240000000206000000000000033374 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7212982 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/hu/0000755000076600000240000000000000000000000027312 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7432096 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/hu/LC_MESSAGES/0000755000076600000240000000000000000000000031077 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/hu/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/hu/LC_MESSAGES/sphinxcontr0000644000076600000240000000143500000000000033404 0ustar00tkomiyastaff4L1M3MOYou can now process the JSON files in %(outdir)s.You can now process the pickle files in %(outdir)s.Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: Balázs Úr, 2020 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.9.1 Most már feldolgozhatja a(z) %(outdir)s könyvtárban lévő JSON-fájlokat.Most már feldolgozhatja a(z) %(outdir)s könyvtárban lévő pickle-fájlokat.././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/hu/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699570.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/hu/LC_MESSAGES/sphinxcontr0000644000076600000240000000233000000000000033377 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # # Translators: # Balázs Úr, 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+0000\n" "Last-Translator: Balázs Úr, 2020\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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" "Most már feldolgozhatja a(z) %(outdir)s könyvtárban lévő pickle-fájlokat." #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" "Most már feldolgozhatja a(z) %(outdir)s könyvtárban lévő JSON-fájlokat." ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7214968 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/id/0000755000076600000240000000000000000000000027272 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7437506 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/id/LC_MESSAGES/0000755000076600000240000000000000000000000031057 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/id/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/id/LC_MESSAGES/sphinxcontr0000644000076600000240000000135600000000000033366 0ustar00tkomiyastaff4L1M37|9You can now process the JSON files in %(outdir)s.You can now process the pickle files in %(outdir)s.Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+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.9.1 Sekarang anda dapat memroses berkas JSON di %(outdir)s.Sekarang anda dapat memroses berkas pickle di %(outdir)s.././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/id/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699570.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/id/LC_MESSAGES/sphinxcontr0000644000076600000240000000224600000000000033365 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # # Translators: # Tumpal Gemelli, 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "Sekarang anda dapat memroses berkas pickle di %(outdir)s." #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "Sekarang anda dapat memroses berkas JSON di %(outdir)s." ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7217126 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/it/0000755000076600000240000000000000000000000027312 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7442408 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/it/LC_MESSAGES/0000755000076600000240000000000000000000000031077 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/it/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/it/LC_MESSAGES/sphinxcontr0000644000076600000240000000077700000000000033414 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: it Language-Team: Italian (https://www.transifex.com/sphinx-doc/teams/36659/it/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/it/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699577.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/it/LC_MESSAGES/sphinxcontr0000644000076600000240000000174700000000000033412 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7219143 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ja/0000755000076600000240000000000000000000000027270 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7447236 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ja/LC_MESSAGES/0000755000076600000240000000000000000000000031055 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ja/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ja/LC_MESSAGES/sphinxcontr0000644000076600000240000000144400000000000033362 0ustar00tkomiyastaff4L1M3DFYou can now process the JSON files in %(outdir)s.You can now process the pickle files in %(outdir)s.Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: Takayuki Shimizukawa , 2019 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.9.1 %(outdir)sに作成されたJSONファイルを使用できます。%(outdir)sに作成されたPickleファイルを使用できます。././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ja/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699575.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ja/LC_MESSAGES/sphinxcontr0000644000076600000240000000237200000000000033363 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # # Translators: # Takayuki Shimizukawa , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+0000\n" "Last-Translator: Takayuki Shimizukawa , 2019\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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "%(outdir)sに作成されたPickleファイルを使用できます。" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "%(outdir)sに作成されたJSONファイルを使用できます。" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7221107 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ko/0000755000076600000240000000000000000000000027307 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7452273 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ko/LC_MESSAGES/0000755000076600000240000000000000000000000031074 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ko/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ko/LC_MESSAGES/sphinxcontr0000644000076600000240000000140600000000000033377 0ustar00tkomiyastaff4L1M3B~DYou can now process the JSON files in %(outdir)s.You can now process the pickle files in %(outdir)s.Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: YT H , 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.9.1 이제 %(outdir)s에서 JSON 파일을 처리할 수 있습니다.이제 %(outdir)s에서 Pickle 파일을 처리할 수 있습니다.././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ko/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699574.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ko/LC_MESSAGES/sphinxcontr0000644000076600000240000000230400000000000033375 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # # Translators: # YT H , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+0000\n" "Last-Translator: YT H , 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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "이제 %(outdir)s에서 Pickle 파일을 처리할 수 있습니다." #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "이제 %(outdir)s에서 JSON 파일을 처리할 수 있습니다." ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7223175 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/lt/0000755000076600000240000000000000000000000027315 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7457201 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/lt/LC_MESSAGES/0000755000076600000240000000000000000000000031102 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/lt/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/lt/LC_MESSAGES/sphinxcontr0000644000076600000240000000120500000000000033402 0ustar00tkomiyastaff$,W-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: lt Language-Team: Lithuanian (https://www.transifex.com/sphinx-doc/teams/36659/lt/) Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/lt/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699571.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/lt/LC_MESSAGES/sphinxcontr0000644000076600000240000000215500000000000033407 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7225144 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/lv/0000755000076600000240000000000000000000000027317 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7462213 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/lv/LC_MESSAGES/0000755000076600000240000000000000000000000031104 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/lv/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/lv/LC_MESSAGES/sphinxcontr0000644000076600000240000000104200000000000033403 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: lv Language-Team: Latvian (https://www.transifex.com/sphinx-doc/teams/36659/lv/) Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/lv/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699571.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/lv/LC_MESSAGES/sphinxcontr0000644000076600000240000000201200000000000033401 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7227511 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/mk/0000755000076600000240000000000000000000000027305 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7466931 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/mk/LC_MESSAGES/0000755000076600000240000000000000000000000031072 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/mk/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/mk/LC_MESSAGES/sphinxcontr0000644000076600000240000000104000000000000033367 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: mk Language-Team: Macedonian (https://www.transifex.com/sphinx-doc/teams/36659/mk/) Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/mk/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699570.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/mk/LC_MESSAGES/sphinxcontr0000644000076600000240000000201000000000000033365 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7229621 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/nb_NO/0000755000076600000240000000000000000000000027671 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7471898 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/nb_NO/LC_MESSAGES/0000755000076600000240000000000000000000000031456 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023400000000000010214 xustar00134 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/nb_NO/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/nb_NO/LC_MESSAGES/sphinxco0000644000076600000240000000103000000000000033226 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: nb_NO Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/sphinx-doc/teams/36659/nb_NO/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023400000000000010214 xustar00134 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/nb_NO/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699575.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/nb_NO/LC_MESSAGES/sphinxco0000644000076600000240000000200000000000000033224 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003300000000000010211 xustar0027 mtime=1621699639.723166 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ne/0000755000076600000240000000000000000000000027300 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003300000000000010211 xustar0027 mtime=1621699639.747667 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ne/LC_MESSAGES/0000755000076600000240000000000000000000000031065 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ne/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ne/LC_MESSAGES/sphinxcontr0000644000076600000240000000077600000000000033401 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: ne Language-Team: Nepali (https://www.transifex.com/sphinx-doc/teams/36659/ne/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ne/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699577.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ne/LC_MESSAGES/sphinxcontr0000644000076600000240000000174600000000000033377 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003300000000000010211 xustar0027 mtime=1621699639.723376 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/nl/0000755000076600000240000000000000000000000027307 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7481587 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/nl/LC_MESSAGES/0000755000076600000240000000000000000000000031074 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/nl/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/nl/LC_MESSAGES/sphinxcontr0000644000076600000240000000077500000000000033407 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: nl Language-Team: Dutch (https://www.transifex.com/sphinx-doc/teams/36659/nl/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/nl/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699573.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/nl/LC_MESSAGES/sphinxcontr0000644000076600000240000000174500000000000033405 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7235856 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/pl/0000755000076600000240000000000000000000000027311 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7486787 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/pl/LC_MESSAGES/0000755000076600000240000000000000000000000031076 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/pl/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/pl/LC_MESSAGES/sphinxcontr0000644000076600000240000000137000000000000033401 0ustar00tkomiyastaff,<1=To3You can now process the JSON files in %(outdir)s.Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+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.9.1 Możesz teraz przetwarzać pliki JSON w %(outdir)s.././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/pl/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699575.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/pl/LC_MESSAGES/sphinxcontr0000644000076600000240000000235400000000000033404 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # # Translators: # Tawez, 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "Możesz teraz przetwarzać pliki JSON w %(outdir)s." ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7237976 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/pt/0000755000076600000240000000000000000000000027321 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7491782 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/pt/LC_MESSAGES/0000755000076600000240000000000000000000000031106 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/pt/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/pt/LC_MESSAGES/sphinxcontr0000644000076600000240000000100200000000000033401 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: pt Language-Team: Portuguese (https://www.transifex.com/sphinx-doc/teams/36659/pt/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/pt/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699575.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/pt/LC_MESSAGES/sphinxcontr0000644000076600000240000000175200000000000033415 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003300000000000010211 xustar0027 mtime=1621699639.724002 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/pt_BR/0000755000076600000240000000000000000000000027704 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7496648 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/pt_BR/LC_MESSAGES/0000755000076600000240000000000000000000000031471 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023400000000000010214 xustar00134 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/pt_BR/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/pt_BR/LC_MESSAGES/sphinxco0000644000076600000240000000144200000000000033250 0ustar00tkomiyastaff4L1M3:9You can now process the JSON files in %(outdir)s.You can now process the pickle files in %(outdir)s.Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: Rafael Fontenelle , 2019 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.9.1 Você agora pode processar os arquivos JSON em %(outdir)s.Você agora pode processar arquivos pickle em %(outdir)s.././@PaxHeader0000000000000000000000000000023400000000000010214 xustar00134 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/pt_BR/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699577.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/pt_BR/LC_MESSAGES/sphinxco0000644000076600000240000000236600000000000033256 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # # Translators: # Rafael Fontenelle , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+0000\n" "Last-Translator: Rafael Fontenelle , 2019\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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "Você agora pode processar arquivos pickle em %(outdir)s." #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "Você agora pode processar os arquivos JSON em %(outdir)s." ././@PaxHeader0000000000000000000000000000003300000000000010211 xustar0027 mtime=1621699639.724204 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/pt_PT/0000755000076600000240000000000000000000000027724 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7501817 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/pt_PT/LC_MESSAGES/0000755000076600000240000000000000000000000031511 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023400000000000010214 xustar00134 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/pt_PT/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/pt_PT/LC_MESSAGES/sphinxco0000644000076600000240000000102300000000000033263 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: pt_PT Language-Team: Portuguese (Portugal) (https://www.transifex.com/sphinx-doc/teams/36659/pt_PT/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023400000000000010214 xustar00134 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/pt_PT/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699577.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/pt_PT/LC_MESSAGES/sphinxco0000644000076600000240000000177300000000000033277 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7244208 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ro/0000755000076600000240000000000000000000000027316 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7506626 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ro/LC_MESSAGES/0000755000076600000240000000000000000000000031103 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ro/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ro/LC_MESSAGES/sphinxcontr0000644000076600000240000000105100000000000033402 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: ro Language-Team: Romanian (https://www.transifex.com/sphinx-doc/teams/36659/ro/) Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1)) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ro/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699577.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ro/LC_MESSAGES/sphinxcontr0000644000076600000240000000202100000000000033400 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7246222 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ru/0000755000076600000240000000000000000000000027324 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003200000000000010210 xustar0026 mtime=1621699639.75114 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ru/LC_MESSAGES/0000755000076600000240000000000000000000000031111 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ru/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ru/LC_MESSAGES/sphinxcontr0000644000076600000240000000121100000000000033406 0ustar00tkomiyastaff$,[-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: ru Language-Team: Russian (https://www.transifex.com/sphinx-doc/teams/36659/ru/) Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ru/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699574.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ru/LC_MESSAGES/sphinxcontr0000644000076600000240000000216100000000000033413 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003300000000000010211 xustar0027 mtime=1621699639.724862 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/si/0000755000076600000240000000000000000000000027311 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7516353 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/si/LC_MESSAGES/0000755000076600000240000000000000000000000031076 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/si/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/si/LC_MESSAGES/sphinxcontr0000644000076600000240000000077700000000000033413 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: si Language-Team: Sinhala (https://www.transifex.com/sphinx-doc/teams/36659/si/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/si/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699570.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/si/LC_MESSAGES/sphinxcontr0000644000076600000240000000174700000000000033411 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003300000000000010211 xustar0027 mtime=1621699639.725135 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sk/0000755000076600000240000000000000000000000027313 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7521443 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sk/LC_MESSAGES/0000755000076600000240000000000000000000000031100 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sk/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sk/LC_MESSAGES/sphinxcontr0000644000076600000240000000150100000000000033377 0ustar00tkomiyastaff4L1M3!46 You can now process the JSON files in %(outdir)s.You can now process the pickle files in %(outdir)s.Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: Slavko , 2019 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.9.1 Teraz môžete spracovať súbory JSON v %(outdir)s.Teraz môžete spracovať súbory pickle v %(outdir)s.././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sk/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699578.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sk/LC_MESSAGES/sphinxcontr0000644000076600000240000000240400000000000033402 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # # Translators: # Slavko , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+0000\n" "Last-Translator: Slavko , 2019\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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "Teraz môžete spracovať súbory pickle v %(outdir)s." #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "Teraz môžete spracovať súbory JSON v %(outdir)s." ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7253606 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sl/0000755000076600000240000000000000000000000027314 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7526324 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sl/LC_MESSAGES/0000755000076600000240000000000000000000000031101 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sl/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sl/LC_MESSAGES/sphinxcontr0000644000076600000240000000106500000000000033405 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: sl Language-Team: Slovenian (https://www.transifex.com/sphinx-doc/teams/36659/sl/) Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sl/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699571.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sl/LC_MESSAGES/sphinxcontr0000644000076600000240000000203500000000000033403 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000021300000000000010211 xustar00117 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sphinxcontrib.serializinghtml.pot 22 mtime=1578843603.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sphinxcontrib.serializingh0000644000076600000240000000165400000000000034210 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" #: sphinxcontrib/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7255833 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sq/0000755000076600000240000000000000000000000027321 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7531698 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sq/LC_MESSAGES/0000755000076600000240000000000000000000000031106 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sq/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sq/LC_MESSAGES/sphinxcontr0000644000076600000240000000141000000000000033404 0ustar00tkomiyastaff4L1M357You can now process the JSON files in %(outdir)s.You can now process the pickle files in %(outdir)s.Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: Besnik Bleta , 2020 Language: sq Language-Team: Albanian (https://www.transifex.com/sphinx-doc/teams/36659/sq/) 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.9.1 Tani mund të përpunoni kartelat JSON te %(outdir)s.Tani mund të përpunoni kartelat pickle te %(outdir)s.././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sq/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699578.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sq/LC_MESSAGES/sphinxcontr0000644000076600000240000000233100000000000033407 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # # Translators: # Besnik Bleta , 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+0000\n" "Last-Translator: Besnik Bleta , 2020\n" "Language-Team: Albanian (https://www.transifex.com/sphinx-doc/teams/36659/sq/)\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: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "Tani mund të përpunoni kartelat pickle te %(outdir)s." #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "Tani mund të përpunoni kartelat JSON te %(outdir)s." ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7257972 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sr/0000755000076600000240000000000000000000000027322 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7549167 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sr/LC_MESSAGES/0000755000076600000240000000000000000000000031107 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sr/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sr/LC_MESSAGES/sphinxcontr0000644000076600000240000000111100000000000033403 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: sr Language-Team: Serbian (https://www.transifex.com/sphinx-doc/teams/36659/sr/) Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sr/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699575.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sr/LC_MESSAGES/sphinxcontr0000644000076600000240000000206100000000000033410 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7260149 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sr@latin/0000755000076600000240000000000000000000000030452 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7554038 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sr@latin/LC_MESSAGES/0000755000076600000240000000000000000000000032237 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00137 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sr@latin/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sr@latin/LC_MESSAGES/sphin0000644000076600000240000000113500000000000033303 0ustar00tkomiyastaff$,/-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: sr@latin Language-Team: Serbian (Latin) (https://www.transifex.com/sphinx-doc/teams/36659/sr@latin/) 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.9.1 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00137 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sr@latin/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699574.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sr@latin/LC_MESSAGES/sphin0000644000076600000240000000210500000000000033301 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+0000\n" "Language-Team: Serbian (Latin) (https://www.transifex.com/sphinx-doc/teams/36659/sr@latin/)\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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7262352 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sr_RS/0000755000076600000240000000000000000000000027726 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7558959 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sr_RS/LC_MESSAGES/0000755000076600000240000000000000000000000031513 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023400000000000010214 xustar00134 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sr_RS/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sr_RS/LC_MESSAGES/sphinxco0000644000076600000240000000113000000000000033264 0ustar00tkomiyastaff$,*-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: sr_RS Language-Team: Serbian (Serbia) (https://www.transifex.com/sphinx-doc/teams/36659/sr_RS/) 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.9.1 ././@PaxHeader0000000000000000000000000000023400000000000010214 xustar00134 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sr_RS/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699577.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sr_RS/LC_MESSAGES/sphinxco0000644000076600000240000000210000000000000033262 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+0000\n" "Language-Team: Serbian (Serbia) (https://www.transifex.com/sphinx-doc/teams/36659/sr_RS/)\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_RS\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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7264462 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sv/0000755000076600000240000000000000000000000027326 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7611222 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sv/LC_MESSAGES/0000755000076600000240000000000000000000000031113 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sv/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sv/LC_MESSAGES/sphinxcontr0000644000076600000240000000077700000000000033430 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: sv Language-Team: Swedish (https://www.transifex.com/sphinx-doc/teams/36659/sv/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sv/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699571.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/sv/LC_MESSAGES/sphinxcontr0000644000076600000240000000174700000000000033426 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003300000000000010211 xustar0027 mtime=1621699639.726657 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ta/0000755000076600000240000000000000000000000027302 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003300000000000010211 xustar0027 mtime=1621699639.761744 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ta/LC_MESSAGES/0000755000076600000240000000000000000000000031067 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ta/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ta/LC_MESSAGES/sphinxcontr0000644000076600000240000000077500000000000033402 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: ta Language-Team: Tamil (https://www.transifex.com/sphinx-doc/teams/36659/ta/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ta/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699576.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ta/LC_MESSAGES/sphinxcontr0000644000076600000240000000174500000000000033400 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7268863 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/te/0000755000076600000240000000000000000000000027306 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7622159 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/te/LC_MESSAGES/0000755000076600000240000000000000000000000031073 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/te/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/te/LC_MESSAGES/sphinxcontr0000644000076600000240000000077600000000000033407 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: te Language-Team: Telugu (https://www.transifex.com/sphinx-doc/teams/36659/te/) 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.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/te/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699578.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/te/LC_MESSAGES/sphinxcontr0000644000076600000240000000174600000000000033405 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+0000\n" "Language-Team: Telugu (https://www.transifex.com/sphinx-doc/teams/36659/te/)\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: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7271063 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/tr/0000755000076600000240000000000000000000000027323 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7626853 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/tr/LC_MESSAGES/0000755000076600000240000000000000000000000031110 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/tr/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/tr/LC_MESSAGES/sphinxcontr0000644000076600000240000000137200000000000033415 0ustar00tkomiyastaff4L1M3?xAYou can now process the JSON files in %(outdir)s.You can now process the pickle files in %(outdir)s.Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: BouRock, 2020 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.9.1 Artık %(outdir)s içinde JSON dosyalarını işleyebilirsiniz.Artık %(outdir)s içinde pickle dosyalarını işleyebilirsiniz.././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/tr/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699571.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/tr/LC_MESSAGES/sphinxcontr0000644000076600000240000000225300000000000033414 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # # Translators: # BouRock, 2020 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+0000\n" "Last-Translator: BouRock, 2020\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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "Artık %(outdir)s içinde pickle dosyalarını işleyebilirsiniz." #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "Artık %(outdir)s içinde JSON dosyalarını işleyebilirsiniz." ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7273183 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/uk_UA/0000755000076600000240000000000000000000000027702 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7631538 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/uk_UA/LC_MESSAGES/0000755000076600000240000000000000000000000031467 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023400000000000010214 xustar00134 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/uk_UA/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/uk_UA/LC_MESSAGES/sphinxco0000644000076600000240000000135700000000000033253 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: uk_UA Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/sphinx-doc/teams/36659/uk_UA/) Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023400000000000010214 xustar00134 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/uk_UA/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699575.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/uk_UA/LC_MESSAGES/sphinxco0000644000076600000240000000232700000000000033251 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7275264 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ur/0000755000076600000240000000000000000000000027324 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7636163 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ur/LC_MESSAGES/0000755000076600000240000000000000000000000031111 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ur/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ur/LC_MESSAGES/sphinxcontr0000644000076600000240000000077400000000000033423 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: ur Language-Team: Urdu (https://www.transifex.com/sphinx-doc/teams/36659/ur/) 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.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ur/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699575.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/ur/LC_MESSAGES/sphinxcontr0000644000076600000240000000174400000000000033421 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+0000\n" "Language-Team: Urdu (https://www.transifex.com/sphinx-doc/teams/36659/ur/)\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: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7277412 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/vi/0000755000076600000240000000000000000000000027314 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7640698 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/vi/LC_MESSAGES/0000755000076600000240000000000000000000000031101 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/vi/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/vi/LC_MESSAGES/sphinxcontr0000644000076600000240000000077300000000000033412 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: vi Language-Team: Vietnamese (https://www.transifex.com/sphinx-doc/teams/36659/vi/) Plural-Forms: nplurals=1; plural=0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023100000000000010211 xustar00131 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/vi/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699571.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/vi/LC_MESSAGES/sphinxcontr0000644000076600000240000000174300000000000033410 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7279606 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/zh_CN/0000755000076600000240000000000000000000000027677 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7645328 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/zh_CN/LC_MESSAGES/0000755000076600000240000000000000000000000031464 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023400000000000010214 xustar00134 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/zh_CN/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/zh_CN/LC_MESSAGES/sphinxco0000644000076600000240000000142000000000000033237 0ustar00tkomiyastaff4L1M39;You can now process the JSON files in %(outdir)s.You can now process the pickle files in %(outdir)s.Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: Yinian Chin , 2019 Language: zh_CN Language-Team: Chinese (China) (https://www.transifex.com/sphinx-doc/teams/36659/zh_CN/) Plural-Forms: nplurals=1; plural=0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 你现在可以处理 %(outdir)s 中的 JSON 文件了。你现在可以处理 %(outdir)s 中的 Pickle 文件了。././@PaxHeader0000000000000000000000000000023400000000000010214 xustar00134 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/zh_CN/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699574.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/zh_CN/LC_MESSAGES/sphinxco0000644000076600000240000000233300000000000033243 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # # Translators: # Yinian Chin , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+0000\n" "Last-Translator: Yinian Chin , 2019\n" "Language-Team: Chinese (China) (https://www.transifex.com/sphinx-doc/teams/36659/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: sphinxcontrib/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "你现在可以处理 %(outdir)s 中的 Pickle 文件了。" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "你现在可以处理 %(outdir)s 中的 JSON 文件了。" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7281702 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/zh_TW/0000755000076600000240000000000000000000000027731 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7650127 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/zh_TW/LC_MESSAGES/0000755000076600000240000000000000000000000031516 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000023400000000000010214 xustar00134 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/zh_TW/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 22 mtime=1621699589.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/zh_TW/LC_MESSAGES/sphinxco0000644000076600000240000000100700000000000033272 0ustar00tkomiyastaff$,-Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-02-17 21:23+0900 PO-Revision-Date: 2019-02-17 12:23+0000 Last-Translator: FULL NAME Language: zh_TW Language-Team: Chinese (Taiwan) (https://www.transifex.com/sphinx-doc/teams/36659/zh_TW/) Plural-Forms: nplurals=1; plural=0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.9.1 ././@PaxHeader0000000000000000000000000000023400000000000010214 xustar00134 path=sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/zh_TW/LC_MESSAGES/sphinxcontrib.serializinghtml.po 22 mtime=1621699577.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/locales/zh_TW/LC_MESSAGES/sphinxco0000644000076600000240000000175700000000000033306 0ustar00tkomiyastaff# Translations template for sphinxcontrib-serializinghtml. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-serializinghtml project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-serializinghtml 1.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-17 21:23+0900\n" "PO-Revision-Date: 2019-02-17 12:23+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/serializinghtml/__init__.py:137 #, python-format msgid "You can now process the pickle files in %(outdir)s." msgstr "" #: sphinxcontrib/serializinghtml/__init__.py:154 #, python-format msgid "You can now process the JSON files in %(outdir)s." msgstr "" ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1582949899.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib/serializinghtml/version.py0000644000076600000240000000043700000000000027317 0ustar00tkomiyastaff""" sphinxcontrib.serializinghtml.version ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :copyright: Copyright 2007-2019 by the Sphinx team, see README. :license: BSD, see LICENSE for details. """ __version__ = '1.1.5' __version_info__ = tuple(map(int, __version__.split('.'))) ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7666817 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib_serializinghtml.egg-info/0000755000076600000240000000000000000000000027026 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1621699639.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib_serializinghtml.egg-info/PKG-INFO0000644000076600000240000000253400000000000030127 0ustar00tkomiyastaffMetadata-Version: 2.1 Name: sphinxcontrib-serializinghtml Version: 1.1.5 Summary: sphinxcontrib-serializinghtml is a sphinx extension which outputs "serialized" HTML files (json and pickle). Home-page: http://sphinx-doc.org/ Author: Georg Brandl Author-email: georg@python.org License: BSD Download-URL: https://pypi.org/project/sphinxcontrib-serializinghtml/ Description: sphinxcontrib-serializinghtml is a sphinx extension which outputs "serialized" HTML files (json and pickle). Platform: any Classifier: Development Status :: 5 - Production/Stable Classifier: Environment :: Console Classifier: Environment :: Web Environment Classifier: Intended Audience :: Developers Classifier: Intended Audience :: Education Classifier: License :: OSI Approved :: BSD License Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.5 Classifier: Programming Language :: Python :: 3.6 Classifier: Programming Language :: Python :: 3.7 Classifier: Framework :: Sphinx Classifier: Framework :: Sphinx :: Extension Classifier: Topic :: Documentation Classifier: Topic :: Documentation :: Sphinx Classifier: Topic :: Text Processing Classifier: Topic :: Utilities Requires-Python: >=3.5 Provides-Extra: test Provides-Extra: lint ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1621699639.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib_serializinghtml.egg-info/SOURCES.txt0000644000076600000240000002370100000000000030715 0ustar00tkomiyastaffCHANGES LICENSE MANIFEST.in README.rst setup.cfg setup.py tox.ini sphinxcontrib/__init__.py sphinxcontrib/serializinghtml/__init__.py sphinxcontrib/serializinghtml/jsonimpl.py sphinxcontrib/serializinghtml/version.py sphinxcontrib/serializinghtml/locales/sphinxcontrib.serializinghtml.pot sphinxcontrib/serializinghtml/locales/.tx/config sphinxcontrib/serializinghtml/locales/ar/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/ar/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/bg/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/bg/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/bn/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/bn/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/ca/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/ca/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/cak/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/cak/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/cs/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/cs/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/cy/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/cy/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/da/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/da/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/de/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/de/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/el/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/el/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/eo/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/eo/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/es/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/es/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/et/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/et/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/eu/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/eu/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/fa/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/fa/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/fi/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/fi/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/fr/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/fr/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/he/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/he/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/hi/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/hi/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/hi_IN/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/hi_IN/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/hr/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/hr/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/hu/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/hu/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/id/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/id/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/it/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/it/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/ja/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/ja/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/ko/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/ko/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/lt/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/lt/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/lv/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/lv/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/mk/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/mk/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/nb_NO/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/nb_NO/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/ne/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/ne/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/nl/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/nl/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/pl/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/pl/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/pt/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/pt/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/pt_BR/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/pt_BR/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/pt_PT/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/pt_PT/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/ro/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/ro/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/ru/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/ru/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/si/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/si/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/sk/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/sk/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/sl/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/sl/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/sq/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/sq/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/sr/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/sr/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/sr@latin/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/sr@latin/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/sr_RS/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/sr_RS/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/sv/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/sv/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/ta/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/ta/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/te/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/te/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/tr/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/tr/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/uk_UA/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/uk_UA/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/ur/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/ur/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/vi/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/vi/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/zh_CN/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/zh_CN/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib/serializinghtml/locales/zh_TW/LC_MESSAGES/sphinxcontrib.serializinghtml.mo sphinxcontrib/serializinghtml/locales/zh_TW/LC_MESSAGES/sphinxcontrib.serializinghtml.po sphinxcontrib_serializinghtml.egg-info/PKG-INFO sphinxcontrib_serializinghtml.egg-info/SOURCES.txt sphinxcontrib_serializinghtml.egg-info/dependency_links.txt sphinxcontrib_serializinghtml.egg-info/namespace_packages.txt sphinxcontrib_serializinghtml.egg-info/not-zip-safe sphinxcontrib_serializinghtml.egg-info/requires.txt sphinxcontrib_serializinghtml.egg-info/top_level.txt tests/conftest.py tests/test_serializinghtml.py tests/roots/test-basic/conf.py tests/roots/test-basic/index.rst././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1621699639.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib_serializinghtml.egg-info/dependency_links.txt0000644000076600000240000000000100000000000033074 0ustar00tkomiyastaff ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1621699639.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib_serializinghtml.egg-info/namespace_packages.txt0000644000076600000240000000001600000000000033356 0ustar00tkomiyastaffsphinxcontrib ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1582949779.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib_serializinghtml.egg-info/not-zip-safe0000644000076600000240000000000100000000000031254 0ustar00tkomiyastaff ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1621699639.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib_serializinghtml.egg-info/requires.txt0000644000076600000240000000006200000000000031424 0ustar00tkomiyastaff [lint] flake8 mypy docutils-stubs [test] pytest ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1621699639.0 sphinxcontrib-serializinghtml-1.1.5/sphinxcontrib_serializinghtml.egg-info/top_level.txt0000644000076600000240000000001600000000000031555 0ustar00tkomiyastaffsphinxcontrib ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7671294 sphinxcontrib-serializinghtml-1.1.5/tests/0000755000076600000240000000000000000000000020317 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1578843603.0 sphinxcontrib-serializinghtml-1.1.5/tests/conftest.py0000644000076600000240000000062200000000000022516 0ustar00tkomiyastaff""" pytest config for sphinx extensions ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import pytest from sphinx.testing.path import path pytest_plugins = 'sphinx.testing.fixtures' @pytest.fixture(scope='session') def rootdir(): return path(__file__).parent.abspath() / 'roots' ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7286365 sphinxcontrib-serializinghtml-1.1.5/tests/roots/0000755000076600000240000000000000000000000021465 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1621699639.7675219 sphinxcontrib-serializinghtml-1.1.5/tests/roots/test-basic/0000755000076600000240000000000000000000000023523 5ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1578843603.0 sphinxcontrib-serializinghtml-1.1.5/tests/roots/test-basic/conf.py0000644000076600000240000000000000000000000025010 0ustar00tkomiyastaff././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1578843603.0 sphinxcontrib-serializinghtml-1.1.5/tests/roots/test-basic/index.rst0000644000076600000240000000002600000000000025362 0ustar00tkomiyastafftest-basic ========== ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1578843603.0 sphinxcontrib-serializinghtml-1.1.5/tests/test_serializinghtml.py0000644000076600000240000000071200000000000025135 0ustar00tkomiyastaff""" test_serializinghtml ~~~~~~~~~~~~~~~~~~~~ Test for serializinghtml extension. :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import pytest @pytest.mark.sphinx('json', testroot='basic') def test_json(app, status, warning): app.builder.build_all() @pytest.mark.sphinx('pickle', testroot='basic') def test_pickle(app, status, warning): app.builder.build_all() ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1621163698.0 sphinxcontrib-serializinghtml-1.1.5/tox.ini0000644000076600000240000000113600000000000020471 0ustar00tkomiyastaff[tox] envlist = py{36,37,38,39,310-dev}, flake8, mypy [gh-actions] python = 3.6: py36 3.7: py37 3.8: py38 3.9: py39 3.10: py310-dev [testenv] usedevelop = true 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/