././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/CHANGES.rst0000644000000000000000000000267414651565742016450 0ustar00Release 2.0.0 (2024-07-28) ========================== * Adopt Ruff * Tighten MyPy settings * Update GitHub actions versions Release 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=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/LICENCE.rst0000644000000000000000000000265514651565742016441 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=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/README.rst0000644000000000000000000000074014651565742016325 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=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/pyproject.toml0000644000000000000000000000537014651565742017556 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://github.com/sphinx-doc/sphinxcontrib-serializinghtml/blob/master/CHANGES.rst" 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 = [ "ruff==0.5.5", "mypy", "types-docutils", ] standalone = [ "Sphinx>=5", ] [[project.authors]] name = "Georg Brandl" email = "georg@python.org" [tool.flit.module] name = "sphinxcontrib.serializinghtml" [tool.flit.sdist] include = [ "CHANGES.rst", "LICENCE.rst", # Tests "tests/", "tox.ini", ] exclude = [ "doc/_build", ] [tool.mypy] python_version = "3.9" packages = [ "sphinxcontrib", "tests", ] exclude = [ "tests/roots", ] check_untyped_defs = true disallow_any_generics = true disallow_incomplete_defs = true disallow_subclassing_any = true disallow_untyped_calls = true disallow_untyped_decorators = true disallow_untyped_defs = true explicit_package_bases = true extra_checks = true no_implicit_reexport = true show_column_numbers = true show_error_context = true strict_optional = true warn_redundant_casts = true warn_unused_configs = true warn_unused_ignores = true enable_error_code = [ "type-arg", "redundant-self", "truthy-iterable", "ignore-without-code", "unused-awaitable", ] ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/__init__.py0000644000000000000000000001474614651565742025061 0ustar00from __future__ import annotations import os import pickle import types from os import path from typing import TYPE_CHECKING 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 if TYPE_CHECKING: from collections.abc import Sequence from typing import Any, Protocol class SerialisingImplementation(Protocol): def dump(self, obj: Any, file: Any, *args: Any, **kwargs: Any) -> None: ... def dumps(self, obj: Any, *args: Any, **kwargs: Any) -> str | bytes: ... def load(self, file: Any, *args: Any, **kwargs: Any) -> Any: ... def loads(self, data: Any, *args: Any, **kwargs: Any) -> Any: ... __version__ = '2.0.0' __version_info__ = (2, 0, 0) 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, json etc.) implementation: SerialisingImplementation implementation_dumps_unicode = False #: additional arguments for dump() additional_dump_args: Sequence[Any] = () #: 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[str, Any], 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[str, Any], 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: tuple[Any] = (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=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/jsonimpl.py0000644000000000000000000000153714651565742025147 0ustar00"""JSON serializer implementation wrapper.""" from __future__ import annotations import json from collections import UserString from typing import IO, Any 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, file: IO[str] | IO[bytes], *args: Any, **kwds: Any) -> None: kwds['cls'] = SphinxJSONEncoder json.dump(obj, file, *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=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/.tx/config0000644000000000000000000000036514651565742026263 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ar/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ar/LC_MESSAGES/sphinxcontr0000644000000000000000000000156214651565742031053 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././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ar/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ar/LC_MESSAGES/sphinxcontr0000644000000000000000000000250214651565742031046 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" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/bg/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/bg/LC_MESSAGES/sphinxcontr0000644000000000000000000000100114651565742031025 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/bg/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/bg/LC_MESSAGES/sphinxcontr0000644000000000000000000000175114651565742031041 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/bn/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/bn/LC_MESSAGES/sphinxcontr0000644000000000000000000000077714651565742031057 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/bn/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/bn/LC_MESSAGES/sphinxcontr0000644000000000000000000000174714651565742031055 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ca/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ca/LC_MESSAGES/sphinxcontr0000644000000000000000000000077714651565742031043 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ca/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ca/LC_MESSAGES/sphinxcontr0000644000000000000000000000174714651565742031041 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 "" ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/cak/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/cak/LC_MESSAGES/sphinxcont0000644000000000000000000000073114651565742031022 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 ././@PaxHeader0000000000000000000000000000024000000000000010211 xustar00132 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/cak/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/cak/LC_MESSAGES/sphinxcont0000644000000000000000000000175314651565742031027 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/cs/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/cs/LC_MESSAGES/sphinxcontr0000644000000000000000000000111514651565742031050 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/cs/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/cs/LC_MESSAGES/sphinxcontr0000644000000000000000000000206514651565742031055 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/cy/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/cy/LC_MESSAGES/sphinxcontr0000644000000000000000000000105214651565742031056 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/cy/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/cy/LC_MESSAGES/sphinxcontr0000644000000000000000000000202214651565742031054 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/da/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/da/LC_MESSAGES/sphinxcontr0000644000000000000000000000135714651565742031037 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.././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/da/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/da/LC_MESSAGES/sphinxcontr0000644000000000000000000000227114651565742031033 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." ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/de/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/de/LC_MESSAGES/sphinxcontr0000644000000000000000000000077614651565742031047 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/de/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/de/LC_MESSAGES/sphinxcontr0000644000000000000000000000174614651565742031045 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/el/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/el/LC_MESSAGES/sphinxcontr0000644000000000000000000000154714651565742031054 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.././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/el/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/el/LC_MESSAGES/sphinxcontr0000644000000000000000000000247614651565742031056 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." ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/eo/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/eo/LC_MESSAGES/sphinxcontr0000644000000000000000000000100114651565742031040 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/eo/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/eo/LC_MESSAGES/sphinxcontr0000644000000000000000000000175114651565742031054 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/es/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1319113 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/es/LC_MESSAGES/sphinxcontr0000644000000000000000000000143514651565742031057 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.././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/es/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/es/LC_MESSAGES/sphinxcontr0000644000000000000000000000247014651565742031057 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." ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/et/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/et/LC_MESSAGES/sphinxcontr0000644000000000000000000000122714651565742031057 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.././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/et/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/et/LC_MESSAGES/sphinxcontr0000644000000000000000000000224414651565742031057 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." ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/eu/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/eu/LC_MESSAGES/sphinxcontr0000644000000000000000000000077614651565742031070 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/eu/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/eu/LC_MESSAGES/sphinxcontr0000644000000000000000000000174614651565742031066 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/fa/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/fa/LC_MESSAGES/sphinxcontr0000644000000000000000000000162214651565742031034 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 پردازش کنید.././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/fa/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/fa/LC_MESSAGES/sphinxcontr0000644000000000000000000000253714651565742031042 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 پردازش کنید." ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/fi/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/fi/LC_MESSAGES/sphinxcontr0000644000000000000000000000077714651565742031056 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/fi/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/fi/LC_MESSAGES/sphinxcontr0000644000000000000000000000174714651565742031054 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/fr/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/fr/LC_MESSAGES/sphinxcontr0000644000000000000000000000143214651565742031054 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.././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/fr/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/fr/LC_MESSAGES/sphinxcontr0000644000000000000000000000242214651565742031054 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." ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/he/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/he/LC_MESSAGES/sphinxcontr0000644000000000000000000000113414651565742031040 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/he/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/he/LC_MESSAGES/sphinxcontr0000644000000000000000000000210414651565742031036 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/hi/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/hi/LC_MESSAGES/sphinxcontr0000644000000000000000000000163114651565742031046 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 में संसाधित कर सकते हैं././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/hi/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/hi/LC_MESSAGES/sphinxcontr0000644000000000000000000000254314651565742031051 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 में संसाधित कर सकते हैं" ././@PaxHeader0000000000000000000000000000024200000000000010213 xustar00134 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/hi_IN/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/hi_IN/LC_MESSAGES/sphinxco0000644000000000000000000000101314651565742030702 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 ././@PaxHeader0000000000000000000000000000024200000000000010213 xustar00134 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/hi_IN/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/hi_IN/LC_MESSAGES/sphinxco0000644000000000000000000000176314651565742030716 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/hr/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/hr/LC_MESSAGES/sphinxcontr0000644000000000000000000000111014651565742031047 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/hr/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/hr/LC_MESSAGES/sphinxcontr0000644000000000000000000000206014651565742031054 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/hu/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/hu/LC_MESSAGES/sphinxcontr0000644000000000000000000000143514651565742031064 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.././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/hu/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/hu/LC_MESSAGES/sphinxcontr0000644000000000000000000000233014651565742031057 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." ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/id/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/id/LC_MESSAGES/sphinxcontr0000644000000000000000000000135614651565742031046 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.././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/id/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/id/LC_MESSAGES/sphinxcontr0000644000000000000000000000224614651565742031045 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." ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/it/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/it/LC_MESSAGES/sphinxcontr0000644000000000000000000000077714651565742031074 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/it/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/it/LC_MESSAGES/sphinxcontr0000644000000000000000000000174714651565742031072 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ja/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ja/LC_MESSAGES/sphinxcontr0000644000000000000000000000144414651565742031042 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ファイルを使用できます。././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ja/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ja/LC_MESSAGES/sphinxcontr0000644000000000000000000000237214651565742031043 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ファイルを使用できます。" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ko/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ko/LC_MESSAGES/sphinxcontr0000644000000000000000000000140614651565742031057 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 파일을 처리할 수 있습니다.././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ko/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ko/LC_MESSAGES/sphinxcontr0000644000000000000000000000230414651565742031055 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 파일을 처리할 수 있습니다." ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/lt/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/lt/LC_MESSAGES/sphinxcontr0000644000000000000000000000120514651565742031062 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/lt/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/lt/LC_MESSAGES/sphinxcontr0000644000000000000000000000215514651565742031067 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/lv/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/lv/LC_MESSAGES/sphinxcontr0000644000000000000000000000104214651565742031063 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/lv/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/lv/LC_MESSAGES/sphinxcontr0000644000000000000000000000201214651565742031061 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/mk/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/mk/LC_MESSAGES/sphinxcontr0000644000000000000000000000104014651565742031047 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/mk/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/mk/LC_MESSAGES/sphinxcontr0000644000000000000000000000201014651565742031045 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 "" ././@PaxHeader0000000000000000000000000000024200000000000010213 xustar00134 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/nb_NO/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/nb_NO/LC_MESSAGES/sphinxco0000644000000000000000000000103014651565742030706 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 ././@PaxHeader0000000000000000000000000000024200000000000010213 xustar00134 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/nb_NO/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/nb_NO/LC_MESSAGES/sphinxco0000644000000000000000000000200014651565742030704 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ne/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ne/LC_MESSAGES/sphinxcontr0000644000000000000000000000077614651565742031061 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ne/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ne/LC_MESSAGES/sphinxcontr0000644000000000000000000000174614651565742031057 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/nl/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/nl/LC_MESSAGES/sphinxcontr0000644000000000000000000000077514651565742031067 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/nl/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/nl/LC_MESSAGES/sphinxcontr0000644000000000000000000000174514651565742031065 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/pl/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/pl/LC_MESSAGES/sphinxcontr0000644000000000000000000000137014651565742031061 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.././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/pl/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/pl/LC_MESSAGES/sphinxcontr0000644000000000000000000000235414651565742031064 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." ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/pt/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/pt/LC_MESSAGES/sphinxcontr0000644000000000000000000000100214651565742031061 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/pt/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/pt/LC_MESSAGES/sphinxcontr0000644000000000000000000000175214651565742031075 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 "" ././@PaxHeader0000000000000000000000000000024200000000000010213 xustar00134 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/pt_BR/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/pt_BR/LC_MESSAGES/sphinxco0000644000000000000000000000144214651565742030730 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.././@PaxHeader0000000000000000000000000000024200000000000010213 xustar00134 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/pt_BR/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/pt_BR/LC_MESSAGES/sphinxco0000644000000000000000000000236614651565742030736 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." ././@PaxHeader0000000000000000000000000000024200000000000010213 xustar00134 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/pt_PT/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/pt_PT/LC_MESSAGES/sphinxco0000644000000000000000000000102314651565742030743 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 ././@PaxHeader0000000000000000000000000000024200000000000010213 xustar00134 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/pt_PT/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/pt_PT/LC_MESSAGES/sphinxco0000644000000000000000000000177314651565742030757 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ro/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ro/LC_MESSAGES/sphinxcontr0000644000000000000000000000105114651565742031062 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ro/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ro/LC_MESSAGES/sphinxcontr0000644000000000000000000000202114651565742031060 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ru/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ru/LC_MESSAGES/sphinxcontr0000644000000000000000000000121114651565742031066 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ru/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ru/LC_MESSAGES/sphinxcontr0000644000000000000000000000216114651565742031073 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/si/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/si/LC_MESSAGES/sphinxcontr0000644000000000000000000000077714651565742031073 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/si/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/si/LC_MESSAGES/sphinxcontr0000644000000000000000000000174714651565742031071 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sk/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sk/LC_MESSAGES/sphinxcontr0000644000000000000000000000150114651565742031057 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.././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sk/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sk/LC_MESSAGES/sphinxcontr0000644000000000000000000000240414651565742031062 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." ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sl/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sl/LC_MESSAGES/sphinxcontr0000644000000000000000000000106514651565742031065 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sl/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sl/LC_MESSAGES/sphinxcontr0000644000000000000000000000203514651565742031063 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 "" ././@PaxHeader0000000000000000000000000000022100000000000010210 xustar00117 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sphinxcontrib.serializinghtml.pot 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sphinxcontrib.serializingh0000644000000000000000000000165414651565742031670 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sq/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sq/LC_MESSAGES/sphinxcontr0000644000000000000000000000141014651565742031064 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.././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sq/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sq/LC_MESSAGES/sphinxcontr0000644000000000000000000000233114651565742031067 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." ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sr/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1359115 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sr/LC_MESSAGES/sphinxcontr0000644000000000000000000000111114651565742031063 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sr/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sr/LC_MESSAGES/sphinxcontr0000644000000000000000000000206114651565742031070 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 "" ././@PaxHeader0000000000000000000000000000024500000000000010216 xustar00137 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sr@latin/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sr@latin/LC_MESSAGES/sphin0000644000000000000000000000113514651565742030763 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 ././@PaxHeader0000000000000000000000000000024500000000000010216 xustar00137 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sr@latin/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sr@latin/LC_MESSAGES/sphin0000644000000000000000000000210514651565742030761 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 "" ././@PaxHeader0000000000000000000000000000024200000000000010213 xustar00134 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sr_RS/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sr_RS/LC_MESSAGES/sphinxco0000644000000000000000000000113014651565742030744 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 ././@PaxHeader0000000000000000000000000000024200000000000010213 xustar00134 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sr_RS/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sr_RS/LC_MESSAGES/sphinxco0000644000000000000000000000210014651565742030742 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sv/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sv/LC_MESSAGES/sphinxcontr0000644000000000000000000000077714651565742031110 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sv/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/sv/LC_MESSAGES/sphinxcontr0000644000000000000000000000174714651565742031106 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ta/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ta/LC_MESSAGES/sphinxcontr0000644000000000000000000000077514651565742031062 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ta/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ta/LC_MESSAGES/sphinxcontr0000644000000000000000000000174514651565742031060 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/te/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/te/LC_MESSAGES/sphinxcontr0000644000000000000000000000077614651565742031067 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/te/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/te/LC_MESSAGES/sphinxcontr0000644000000000000000000000174614651565742031065 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/tr/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/tr/LC_MESSAGES/sphinxcontr0000644000000000000000000000137214651565742031075 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.././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/tr/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/tr/LC_MESSAGES/sphinxcontr0000644000000000000000000000225314651565742031074 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." ././@PaxHeader0000000000000000000000000000024200000000000010213 xustar00134 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/uk_UA/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/uk_UA/LC_MESSAGES/sphinxco0000644000000000000000000000135714651565742030733 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 ././@PaxHeader0000000000000000000000000000024200000000000010213 xustar00134 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/uk_UA/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/uk_UA/LC_MESSAGES/sphinxco0000644000000000000000000000232714651565742030731 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ur/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ur/LC_MESSAGES/sphinxcontr0000644000000000000000000000077414651565742031103 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ur/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/ur/LC_MESSAGES/sphinxcontr0000644000000000000000000000174414651565742031101 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 "" ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/vi/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/vi/LC_MESSAGES/sphinxcontr0000644000000000000000000000077314651565742031072 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 ././@PaxHeader0000000000000000000000000000023700000000000010217 xustar00131 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/vi/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/vi/LC_MESSAGES/sphinxcontr0000644000000000000000000000174314651565742031070 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 "" ././@PaxHeader0000000000000000000000000000024200000000000010213 xustar00134 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/zh_CN/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/zh_CN/LC_MESSAGES/sphinxco0000644000000000000000000000142014651565742030717 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 文件了。././@PaxHeader0000000000000000000000000000024200000000000010213 xustar00134 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/zh_CN/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/zh_CN/LC_MESSAGES/sphinxco0000644000000000000000000000233314651565742030723 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 文件了。" ././@PaxHeader0000000000000000000000000000024200000000000010213 xustar00134 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/zh_TW/LC_MESSAGES/sphinxcontrib.serializinghtml.mo 28 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/zh_TW/LC_MESSAGES/sphinxco0000644000000000000000000000100714651565742030752 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 ././@PaxHeader0000000000000000000000000000024200000000000010213 xustar00134 path=sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/zh_TW/LC_MESSAGES/sphinxcontrib.serializinghtml.po 28 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/locales/zh_TW/LC_MESSAGES/sphinxco0000644000000000000000000000175714651565742030766 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=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/sphinxcontrib/serializinghtml/py.typed0000644000000000000000000000000014651565742024421 0ustar00././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/tests/conftest.py0000644000000000000000000000036014651565742020175 0ustar00from __future__ import annotations from pathlib import Path import pytest pytest_plugins = ( 'sphinx.testing.fixtures', ) @pytest.fixture(scope='session') def rootdir() -> Path: return Path(__file__).resolve().parent / 'roots' ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/tests/roots/test-basic/conf.py0000644000000000000000000000000014651565742022470 0ustar00././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/tests/roots/test-basic/index.rst0000644000000000000000000000002614651565742023042 0ustar00test-basic ========== ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/tests/test_serializinghtml.py0000644000000000000000000000064014651565742022615 0ustar00"""Test for serializinghtml extension.""" from __future__ import annotations from typing import TYPE_CHECKING import pytest if TYPE_CHECKING: from sphinx.application import Sphinx @pytest.mark.sphinx('json', testroot='basic') def test_json(app: Sphinx) -> None: app.builder.build_all() @pytest.mark.sphinx('pickle', testroot='basic') def test_pickle(app: Sphinx) -> None: app.builder.build_all() ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1722215394.1399114 sphinxcontrib_serializinghtml-2.0.0/tox.ini0000644000000000000000000000102414651565742016145 0ustar00[tox] minversion = 2.4.0 envlist = py{39,310,311,312,313}, ruff, 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:ruff] description = Run style checks. extras = test lint commands= ruff check [testenv:mypy] description = Run type checks. extras = test lint commands= mypy sphinxcontrib_serializinghtml-2.0.0/PKG-INFO0000644000000000000000000000454300000000000015662 0ustar00Metadata-Version: 2.1 Name: sphinxcontrib-serializinghtml Version: 2.0.0 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: ruff==0.5.5 ; extra == "lint" Requires-Dist: mypy ; extra == "lint" Requires-Dist: types-docutils ; extra == "lint" Requires-Dist: Sphinx>=5 ; extra == "standalone" Requires-Dist: pytest ; extra == "test" Project-URL: Changelog, https://github.com/sphinx-doc/sphinxcontrib-serializinghtml/blob/master/CHANGES.rst 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