././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/CHANGES0000644000000000000000000000247614550375243015713 0ustar00Release 1.1.10 (2024-01-13) =========================== * Remove Sphinx as a required dependency, as circular dependencies may cause failure with package managers that expect a directed acyclic graph (DAG) of dependencies. Release 1.1.9 (2023-08-20) ========================== * Serialise context["script_files"] and context["css_files"] as their filenames on Sphinx 7.2.0. Release 1.1.8 (2023-08-14) ========================== * Use ``os.PathLike`` over ``pathlib.Path`` Release 1.1.7 (2023-08-09) ========================== * Fix tests for Sphinx 7.1 and below Release 1.1.6 (2023-08-07) ========================== * Drop support for Python 3.5, 3.6, 3.7, and 3.8 * Raise minimum required Sphinx version to 5.0 Release 1.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) ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/LICENSE0000644000000000000000000000265514550375243015724 0ustar00License 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. ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/README.rst0000644000000000000000000000074014550375243016377 0ustar00============================= 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 Contributing ============ See `CONTRIBUTING.rst`__ .. __: https://github.com/sphinx-doc/sphinx/blob/master/CONTRIBUTING.rst ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/pyproject.toml0000644000000000000000000000406314550375243017626 0ustar00[build-system] requires = ["flit_core>=3.7"] build-backend = "flit_core.buildapi" # project metadata [project] name = "sphinxcontrib-serializinghtml" description = """sphinxcontrib-serializinghtml is a sphinx extension which \ outputs "serialized" HTML files (json and pickle)""" readme = "README.rst" urls.Changelog = "https://www.sphinx-doc.org/en/master/changes.html" urls.Code = "https://github.com/sphinx-doc/sphinxcontrib-serializinghtml" urls.Download = "https://pypi.org/project/sphinxcontrib-serializinghtml/" urls.Homepage = "https://www.sphinx-doc.org/" urls."Issue tracker" = "https://github.com/sphinx-doc/sphinx/issues" license.text = "BSD-2-Clause" requires-python = ">=3.9" # Classifiers list: https://pypi.org/classifiers/ classifiers = [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Environment :: Web Environment", "Intended Audience :: Developers", "Intended Audience :: Education", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Framework :: Sphinx", "Framework :: Sphinx :: Extension", "Topic :: Documentation", "Topic :: Documentation :: Sphinx", "Topic :: Text Processing", "Topic :: Utilities", ] dependencies = [] dynamic = ["version"] [project.optional-dependencies] test = [ "pytest", ] lint = [ "flake8", "mypy", "docutils-stubs", ] standalone = [ "Sphinx>=5", ] [[project.authors]] name = "Georg Brandl" email = "georg@python.org" [tool.flit.module] name = "sphinxcontrib.serializinghtml" [tool.flit.sdist] include = [ "CHANGES", "LICENSE", # Tests "tests/", "tox.ini", ] exclude = [ "doc/_build", ] [tool.mypy] ignore_missing_imports = true ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/__init__.py0000644000000000000000000001374414550375243025130 0ustar00from __future__ import annotations import os import pickle import types from os import path from typing import Any 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 __version__ = '1.1.10' __version_info__ = (1, 1, 10) 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: Any = None implementation_dumps_unicode = False #: additional arguments for dump() additional_dump_args: tuple = () #: the filename for the global context file globalcontext_filename: str = '' supported_image_types = ['image/svg+xml', 'image/png', 'image/gif', 'image/jpeg'] def init(self) -> None: self.build_info = BuildInfo(self.config, self.tags) self.imagedir = '_images' self.current_docname = '' self.theme = None # type: ignore[assignment] # 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: str, typ: str | None = None) -> str: if docname == 'index': return '' if docname.endswith(SEP + 'index'): return docname[:-5] # up to sep return docname + SEP def dump_context(self, context: dict, filename: str | os.PathLike[str]) -> None: context = context.copy() if 'css_files' in context: context['css_files'] = [css.filename for css in context['css_files']] if 'script_files' in context: context['script_files'] = [js.filename for js in context['script_files']] 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: str, ctx: dict, templatename: str = 'page.html', outfilename: str | None = None, event_arg: Any = None) -> None: ctx['current_page_name'] = pagename ctx.setdefault('pathto', lambda p: p) 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) -> 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.require_sphinx('5.0') 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, } ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/jsonimpl.py0000644000000000000000000000151214550375243025212 0ustar00"""JSON serializer implementation wrapper.""" from __future__ import annotations import json from collections import UserString from typing import Any, IO class SphinxJSONEncoder(json.JSONEncoder): """JSONEncoder subclass that forces translation proxies.""" def default(self, obj: Any) -> str: if isinstance(obj, UserString): return str(obj) return super().default(obj) def dump(obj: Any, fp: IO, *args: Any, **kwds: Any) -> None: kwds['cls'] = SphinxJSONEncoder json.dump(obj, fp, *args, **kwds) def dumps(obj: Any, *args: Any, **kwds: Any) -> str: kwds['cls'] = SphinxJSONEncoder return json.dumps(obj, *args, **kwds) def load(*args: Any, **kwds: Any) -> Any: return json.load(*args, **kwds) def loads(*args: Any, **kwds: Any) -> Any: return json.loads(*args, **kwds) ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/.tx/config0000644000000000000000000000036514550375243026335 0ustar00[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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ar/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ar/LC_MESSAGES/sphinxcont0000644000000000000000000000156214550375243030743 0ustar004L1M36AE,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././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ar/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ar/LC_MESSAGES/sphinxcont0000644000000000000000000000250214550375243030736 0ustar00# 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" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/bg/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/bg/LC_MESSAGES/sphinxcont0000644000000000000000000000100114550375243030715 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/bg/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/bg/LC_MESSAGES/sphinxcont0000644000000000000000000000175114550375243030731 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/bn/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/bn/LC_MESSAGES/sphinxcont0000644000000000000000000000077714550375243030747 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/bn/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/bn/LC_MESSAGES/sphinxcont0000644000000000000000000000174714550375243030745 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ca/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ca/LC_MESSAGES/sphinxcont0000644000000000000000000000077714550375243030733 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ca/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ca/LC_MESSAGES/sphinxcont0000644000000000000000000000174714550375243030731 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024100000000000010212 xustar00133 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/cak/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/cak/LC_MESSAGES/sphinxcon0000644000000000000000000000073114550375243030710 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024100000000000010212 xustar00133 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/cak/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/cak/LC_MESSAGES/sphinxcon0000644000000000000000000000175314550375243030715 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/cs/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/cs/LC_MESSAGES/sphinxcont0000644000000000000000000000111514550375243030740 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/cs/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/cs/LC_MESSAGES/sphinxcont0000644000000000000000000000206514550375243030745 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/cy/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/cy/LC_MESSAGES/sphinxcont0000644000000000000000000000105214550375243030746 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/cy/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/cy/LC_MESSAGES/sphinxcont0000644000000000000000000000202214550375243030744 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/da/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/da/LC_MESSAGES/sphinxcont0000644000000000000000000000135714550375243030727 0ustar004L1M3-/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.././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/da/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/da/LC_MESSAGES/sphinxcont0000644000000000000000000000227114550375243030723 0ustar00# 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." ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/de/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/de/LC_MESSAGES/sphinxcont0000644000000000000000000000077614550375243030737 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/de/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/de/LC_MESSAGES/sphinxcont0000644000000000000000000000174614550375243030735 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/el/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/el/LC_MESSAGES/sphinxcont0000644000000000000000000000154714550375243030744 0ustar004L1M3ceYou 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.././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/el/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/el/LC_MESSAGES/sphinxcont0000644000000000000000000000247614550375243030746 0ustar00# 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." ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/eo/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3724663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/eo/LC_MESSAGES/sphinxcont0000644000000000000000000000100114550375243030730 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/eo/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/eo/LC_MESSAGES/sphinxcont0000644000000000000000000000175114550375243030744 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/es/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/es/LC_MESSAGES/sphinxcont0000644000000000000000000000143514550375243030747 0ustar004L1M36=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.././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/es/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/es/LC_MESSAGES/sphinxcont0000644000000000000000000000247014550375243030747 0ustar00# 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." ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/et/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/et/LC_MESSAGES/sphinxcont0000644000000000000000000000122714550375243030747 0ustar00,<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.././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/et/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/et/LC_MESSAGES/sphinxcont0000644000000000000000000000224414550375243030747 0ustar00# 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." ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/eu/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/eu/LC_MESSAGES/sphinxcont0000644000000000000000000000077614550375243030760 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/eu/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/eu/LC_MESSAGES/sphinxcont0000644000000000000000000000174614550375243030756 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/fa/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/fa/LC_MESSAGES/sphinxcont0000644000000000000000000000162214550375243030724 0ustar004L1M3uYou 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 پردازش کنید.././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/fa/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/fa/LC_MESSAGES/sphinxcont0000644000000000000000000000253714550375243030732 0ustar00# 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 پردازش کنید." ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/fi/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/fi/LC_MESSAGES/sphinxcont0000644000000000000000000000077714550375243030746 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/fi/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/fi/LC_MESSAGES/sphinxcont0000644000000000000000000000174714550375243030744 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/fr/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/fr/LC_MESSAGES/sphinxcont0000644000000000000000000000143214550375243030744 0ustar004L1M3?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.././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/fr/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/fr/LC_MESSAGES/sphinxcont0000644000000000000000000000242214550375243030744 0ustar00# 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." ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/he/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/he/LC_MESSAGES/sphinxcont0000644000000000000000000000113414550375243030730 0ustar00$,.-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/he/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/he/LC_MESSAGES/sphinxcont0000644000000000000000000000210414550375243030726 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/hi/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/hi/LC_MESSAGES/sphinxcont0000644000000000000000000000163114550375243030736 0ustar004L1M3You 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 में संसाधित कर सकते हैं././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/hi/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/hi/LC_MESSAGES/sphinxcont0000644000000000000000000000254314550375243030741 0ustar00# 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 में संसाधित कर सकते हैं" ././@PaxHeader0000000000000000000000000000024300000000000010214 xustar00135 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/hi_IN/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/hi_IN/LC_MESSAGES/sphinxc0000644000000000000000000000101314550375243030575 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024300000000000010214 xustar00135 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/hi_IN/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/hi_IN/LC_MESSAGES/sphinxc0000644000000000000000000000176314550375243030611 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/hr/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/hr/LC_MESSAGES/sphinxcont0000644000000000000000000000111014550375243030737 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/hr/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/hr/LC_MESSAGES/sphinxcont0000644000000000000000000000206014550375243030744 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/hu/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/hu/LC_MESSAGES/sphinxcont0000644000000000000000000000143514550375243030754 0ustar004L1M3MOYou 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.././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/hu/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/hu/LC_MESSAGES/sphinxcont0000644000000000000000000000233014550375243030747 0ustar00# 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." ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/id/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/id/LC_MESSAGES/sphinxcont0000644000000000000000000000135614550375243030736 0ustar004L1M37|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.././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/id/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/id/LC_MESSAGES/sphinxcont0000644000000000000000000000224614550375243030735 0ustar00# 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." ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/it/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/it/LC_MESSAGES/sphinxcont0000644000000000000000000000077714550375243030764 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/it/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/it/LC_MESSAGES/sphinxcont0000644000000000000000000000174714550375243030762 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ja/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ja/LC_MESSAGES/sphinxcont0000644000000000000000000000144414550375243030732 0ustar004L1M3DFYou 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ファイルを使用できます。././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ja/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ja/LC_MESSAGES/sphinxcont0000644000000000000000000000237214550375243030733 0ustar00# 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ファイルを使用できます。" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ko/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ko/LC_MESSAGES/sphinxcont0000644000000000000000000000140614550375243030747 0ustar004L1M3B~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 파일을 처리할 수 있습니다.././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ko/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ko/LC_MESSAGES/sphinxcont0000644000000000000000000000230414550375243030745 0ustar00# 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 파일을 처리할 수 있습니다." ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/lt/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/lt/LC_MESSAGES/sphinxcont0000644000000000000000000000120514550375243030752 0ustar00$,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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/lt/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/lt/LC_MESSAGES/sphinxcont0000644000000000000000000000215514550375243030757 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/lv/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/lv/LC_MESSAGES/sphinxcont0000644000000000000000000000104214550375243030753 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/lv/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/lv/LC_MESSAGES/sphinxcont0000644000000000000000000000201214550375243030751 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/mk/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/mk/LC_MESSAGES/sphinxcont0000644000000000000000000000104014550375243030737 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/mk/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/mk/LC_MESSAGES/sphinxcont0000644000000000000000000000201014550375243030735 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024300000000000010214 xustar00135 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/nb_NO/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/nb_NO/LC_MESSAGES/sphinxc0000644000000000000000000000103014550375243030601 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024300000000000010214 xustar00135 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/nb_NO/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/nb_NO/LC_MESSAGES/sphinxc0000644000000000000000000000200014550375243030577 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ne/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ne/LC_MESSAGES/sphinxcont0000644000000000000000000000077614550375243030751 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ne/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ne/LC_MESSAGES/sphinxcont0000644000000000000000000000174614550375243030747 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/nl/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/nl/LC_MESSAGES/sphinxcont0000644000000000000000000000077514550375243030757 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/nl/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/nl/LC_MESSAGES/sphinxcont0000644000000000000000000000174514550375243030755 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/pl/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/pl/LC_MESSAGES/sphinxcont0000644000000000000000000000137014550375243030751 0ustar00,<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.././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/pl/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/pl/LC_MESSAGES/sphinxcont0000644000000000000000000000235414550375243030754 0ustar00# 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." ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/pt/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/pt/LC_MESSAGES/sphinxcont0000644000000000000000000000100214550375243030751 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/pt/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/pt/LC_MESSAGES/sphinxcont0000644000000000000000000000175214550375243030765 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024300000000000010214 xustar00135 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/pt_BR/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/pt_BR/LC_MESSAGES/sphinxc0000644000000000000000000000144214550375243030623 0ustar004L1M3: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.././@PaxHeader0000000000000000000000000000024300000000000010214 xustar00135 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/pt_BR/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/pt_BR/LC_MESSAGES/sphinxc0000644000000000000000000000236614550375243030631 0ustar00# 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." ././@PaxHeader0000000000000000000000000000024300000000000010214 xustar00135 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/pt_PT/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/pt_PT/LC_MESSAGES/sphinxc0000644000000000000000000000102314550375243030636 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024300000000000010214 xustar00135 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/pt_PT/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/pt_PT/LC_MESSAGES/sphinxc0000644000000000000000000000177314550375243030652 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ro/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ro/LC_MESSAGES/sphinxcont0000644000000000000000000000105114550375243030752 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ro/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ro/LC_MESSAGES/sphinxcont0000644000000000000000000000202114550375243030750 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ru/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ru/LC_MESSAGES/sphinxcont0000644000000000000000000000121114550375243030756 0ustar00$,[-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ru/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ru/LC_MESSAGES/sphinxcont0000644000000000000000000000216114550375243030763 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/si/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/si/LC_MESSAGES/sphinxcont0000644000000000000000000000077714550375243030763 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/si/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/si/LC_MESSAGES/sphinxcont0000644000000000000000000000174714550375243030761 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sk/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sk/LC_MESSAGES/sphinxcont0000644000000000000000000000150114550375243030747 0ustar004L1M3!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.././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sk/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sk/LC_MESSAGES/sphinxcont0000644000000000000000000000240414550375243030752 0ustar00# 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." ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sl/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sl/LC_MESSAGES/sphinxcont0000644000000000000000000000106514550375243030755 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sl/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sl/LC_MESSAGES/sphinxcont0000644000000000000000000000203514550375243030753 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000022200000000000010211 xustar00118 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sphinxcontrib.serializinghtml.pot 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sphinxcontrib.serializing0000644000000000000000000000165414550375243031572 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sq/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3764663 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sq/LC_MESSAGES/sphinxcont0000644000000000000000000000141014550375243030754 0ustar004L1M357You 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.././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sq/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sq/LC_MESSAGES/sphinxcont0000644000000000000000000000233114550375243030757 0ustar00# 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." ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sr/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sr/LC_MESSAGES/sphinxcont0000644000000000000000000000111114550375243030753 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sr/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sr/LC_MESSAGES/sphinxcont0000644000000000000000000000206114550375243030760 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024600000000000010217 xustar00138 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sr@latin/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sr@latin/LC_MESSAGES/sphi0000644000000000000000000000113514550375243030657 0ustar00$,/-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 ././@PaxHeader0000000000000000000000000000024600000000000010217 xustar00138 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sr@latin/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sr@latin/LC_MESSAGES/sphi0000644000000000000000000000210514550375243030655 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024300000000000010214 xustar00135 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sr_RS/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sr_RS/LC_MESSAGES/sphinxc0000644000000000000000000000113014550375243030637 0ustar00$,*-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 ././@PaxHeader0000000000000000000000000000024300000000000010214 xustar00135 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sr_RS/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sr_RS/LC_MESSAGES/sphinxc0000644000000000000000000000210014550375243030635 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sv/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sv/LC_MESSAGES/sphinxcont0000644000000000000000000000077714550375243031000 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sv/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/sv/LC_MESSAGES/sphinxcont0000644000000000000000000000174714550375243030776 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ta/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ta/LC_MESSAGES/sphinxcont0000644000000000000000000000077514550375243030752 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ta/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ta/LC_MESSAGES/sphinxcont0000644000000000000000000000174514550375243030750 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/te/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/te/LC_MESSAGES/sphinxcont0000644000000000000000000000077614550375243030757 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/te/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/te/LC_MESSAGES/sphinxcont0000644000000000000000000000174614550375243030755 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/tr/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/tr/LC_MESSAGES/sphinxcont0000644000000000000000000000137214550375243030765 0ustar004L1M3?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.././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/tr/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/tr/LC_MESSAGES/sphinxcont0000644000000000000000000000225314550375243030764 0ustar00# 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." ././@PaxHeader0000000000000000000000000000024300000000000010214 xustar00135 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/uk_UA/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/uk_UA/LC_MESSAGES/sphinxc0000644000000000000000000000135714550375243030626 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024300000000000010214 xustar00135 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/uk_UA/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/uk_UA/LC_MESSAGES/sphinxc0000644000000000000000000000232714550375243030624 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ur/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ur/LC_MESSAGES/sphinxcont0000644000000000000000000000077414550375243030773 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ur/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/ur/LC_MESSAGES/sphinxcont0000644000000000000000000000174414550375243030771 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/vi/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/vi/LC_MESSAGES/sphinxcont0000644000000000000000000000077314550375243030762 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/vi/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/vi/LC_MESSAGES/sphinxcont0000644000000000000000000000174314550375243030760 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000024300000000000010214 xustar00135 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/zh_CN/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/zh_CN/LC_MESSAGES/sphinxc0000644000000000000000000000142014550375243030612 0ustar004L1M39;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 文件了。././@PaxHeader0000000000000000000000000000024300000000000010214 xustar00135 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/zh_CN/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/zh_CN/LC_MESSAGES/sphinxc0000644000000000000000000000233314550375243030616 0ustar00# 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 文件了。" ././@PaxHeader0000000000000000000000000000024300000000000010214 xustar00135 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/zh_TW/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/zh_TW/LC_MESSAGES/sphinxc0000644000000000000000000000100714550375243030645 0ustar00$,-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 ././@PaxHeader0000000000000000000000000000024300000000000010214 xustar00135 path=sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/zh_TW/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/sphinxcontrib/serializinghtml/locales/zh_TW/LC_MESSAGES/sphinxc0000644000000000000000000000175714550375243030661 0ustar00# 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 "" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/tests/conftest.py0000644000000000000000000000053314550375243020251 0ustar00from pathlib import Path import pytest import sphinx pytest_plugins = 'sphinx.testing.fixtures' @pytest.fixture(scope='session') def rootdir(): if sphinx.version_info[:2] < (7, 2): from sphinx.testing.path import path return path(__file__).parent.abspath() / 'roots' return Path(__file__).resolve().parent / 'roots' ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/tests/roots/test-basic/conf.py0000644000000000000000000000000014550375243022542 0ustar00././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/tests/roots/test-basic/index.rst0000644000000000000000000000002614550375243023114 0ustar00test-basic ========== ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/tests/test_serializinghtml.py0000644000000000000000000000043714550375243022673 0ustar00"""Test for serializinghtml extension.""" 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() ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1705114275.3804662 sphinxcontrib_serializinghtml-1.1.10/tox.ini0000644000000000000000000000107414550375243016224 0ustar00[tox] minversion = 2.4.0 envlist = py{39,310,311,312,313}, flake8, mypy isolated_build = True [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/ --explicit-package-bases sphinxcontrib_serializinghtml-1.1.10/PKG-INFO0000644000000000000000000000447300000000000015745 0ustar00Metadata-Version: 2.1 Name: sphinxcontrib-serializinghtml Version: 1.1.10 Summary: sphinxcontrib-serializinghtml is a sphinx extension which outputs "serialized" HTML files (json and pickle) Author-email: Georg Brandl Requires-Python: >=3.9 Description-Content-Type: text/x-rst Classifier: Development Status :: 5 - Production/Stable Classifier: Environment :: Console Classifier: Environment :: Web Environment Classifier: Intended Audience :: Developers Classifier: Intended Audience :: Education Classifier: License :: OSI Approved :: BSD License Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3 :: Only Classifier: Programming Language :: Python :: 3.9 Classifier: Programming Language :: Python :: 3.10 Classifier: Programming Language :: Python :: 3.11 Classifier: Programming Language :: Python :: 3.12 Classifier: Programming Language :: Python :: 3.13 Classifier: Framework :: Sphinx Classifier: Framework :: Sphinx :: Extension Classifier: Topic :: Documentation Classifier: Topic :: Documentation :: Sphinx Classifier: Topic :: Text Processing Classifier: Topic :: Utilities Requires-Dist: flake8 ; extra == "lint" Requires-Dist: mypy ; extra == "lint" Requires-Dist: docutils-stubs ; extra == "lint" Requires-Dist: Sphinx>=5 ; extra == "standalone" Requires-Dist: pytest ; extra == "test" Project-URL: Changelog, https://www.sphinx-doc.org/en/master/changes.html Project-URL: Code, https://github.com/sphinx-doc/sphinxcontrib-serializinghtml Project-URL: Download, https://pypi.org/project/sphinxcontrib-serializinghtml/ Project-URL: Homepage, https://www.sphinx-doc.org/ Project-URL: Issue tracker, https://github.com/sphinx-doc/sphinx/issues Provides-Extra: lint Provides-Extra: standalone Provides-Extra: test ============================= sphinxcontrib-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 Contributing ============ See `CONTRIBUTING.rst`__ .. __: https://github.com/sphinx-doc/sphinx/blob/master/CONTRIBUTING.rst