Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-sphinxcontrib-htmlhelp for openSUSE:Factory checked in at 2021-06-15 16:36:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-sphinxcontrib-htmlhelp (Old) and /work/SRC/openSUSE:Factory/.python-sphinxcontrib-htmlhelp.new.32437 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-sphinxcontrib-htmlhelp" Tue Jun 15 16:36:47 2021 rev:3 rq:899358 version:2.0.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-sphinxcontrib-htmlhelp/python-sphinxcontrib-htmlhelp.changes 2020-03-08 22:21:45.195989196 +0100 +++ /work/SRC/openSUSE:Factory/.python-sphinxcontrib-htmlhelp.new.32437/python-sphinxcontrib-htmlhelp.changes 2021-06-15 16:36:57.717654514 +0200 @@ -1,0 +2,8 @@ +Sun Jun 6 12:12:35 UTC 2021 - Dirk M??ller <dmuel...@suse.com> + +- update to 2.0.0: + * Drop python-3.5 support + * Remove deprecated method: ``HTMLHelpBuilder.open_file()`` + * #6685: htmlhelp builder should generate HTML4 docs instead of HTML5 + +------------------------------------------------------------------- Old: ---- sphinxcontrib-htmlhelp-1.0.3.tar.gz New: ---- sphinxcontrib-htmlhelp-2.0.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-sphinxcontrib-htmlhelp.spec ++++++ --- /var/tmp/diff_new_pack.8r42Ha/_old 2021-06-15 16:36:58.137655241 +0200 +++ /var/tmp/diff_new_pack.8r42Ha/_new 2021-06-15 16:36:58.141655248 +0200 @@ -1,7 +1,7 @@ # -# spec file for package python-sphinxcontrib-htmlhelp +# spec file # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -27,7 +27,7 @@ %bcond_with test %endif Name: python-sphinxcontrib-htmlhelp%{psuffix} -Version: 1.0.3 +Version: 2.0.0 Release: 0 Summary: Sphinx contrib extension to generate html help files License: BSD-2-Clause ++++++ sphinxcontrib-htmlhelp-1.0.3.tar.gz -> sphinxcontrib-htmlhelp-2.0.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/CHANGES new/sphinxcontrib-htmlhelp-2.0.0/CHANGES --- old/sphinxcontrib-htmlhelp-1.0.3/CHANGES 2020-02-21 18:01:08.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/CHANGES 2021-05-22 18:01:14.000000000 +0200 @@ -1,6 +1,8 @@ -Release 1.0.3 (unreleased) +Release 2.0.0 (2021-05-23) ========================== +* Drop python-3.5 support +* Remove deprecated method: ``HTMLHelpBuilder.open_file()`` * #6685: htmlhelp builder should generate HTML4 docs instead of HTML5 Release 1.0.2 (2019-04-12) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/PKG-INFO new/sphinxcontrib-htmlhelp-2.0.0/PKG-INFO --- old/sphinxcontrib-htmlhelp-1.0.3/PKG-INFO 2020-02-21 18:09:56.589685000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/PKG-INFO 2021-05-22 18:01:28.262668100 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: sphinxcontrib-htmlhelp -Version: 1.0.3 +Version: 2.0.0 Summary: sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files Home-page: http://sphinx-doc.org/ Author: Georg Brandl @@ -20,16 +20,17 @@ Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python Classifier: Programming Language :: Python :: 3 -Classifier: Programming Language :: Python :: 3.5 Classifier: Programming Language :: Python :: 3.6 Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 Classifier: Framework :: Sphinx Classifier: Framework :: Sphinx :: Extension Classifier: Topic :: Documentation Classifier: Topic :: Documentation :: Sphinx Classifier: Topic :: Text Processing Classifier: Topic :: Utilities -Requires-Python: >=3.5 +Requires-Python: >=3.6 Description-Content-Type: text/x-rst Provides-Extra: test Provides-Extra: lint diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/setup.py new/sphinxcontrib-htmlhelp-2.0.0/setup.py --- old/sphinxcontrib-htmlhelp-1.0.3/setup.py 2020-02-21 18:08:59.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/setup.py 2021-05-22 17:58:17.000000000 +0200 @@ -53,9 +53,10 @@ 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', 'Framework :: Sphinx', 'Framework :: Sphinx :: Extension', 'Topic :: Documentation', @@ -64,7 +65,7 @@ 'Topic :: Utilities', ], platforms='any', - python_requires=">=3.5", + python_requires=">=3.6", packages=find_packages(exclude=['tests']), include_package_data=True, extras_require=extras_require, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/__init__.py new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/__init__.py --- old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/__init__.py 2020-02-21 17:56:16.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/__init__.py 2021-05-22 17:47:07.000000000 +0200 @@ -10,9 +10,8 @@ import html import os -import warnings from os import path -from typing import Any, Dict, IO, List, Set, Tuple, Type +from typing import Any, Dict, List, Set, Tuple, Type from docutils import nodes from docutils.nodes import Element, Node, document @@ -21,7 +20,6 @@ from sphinx.application import Sphinx from sphinx.builders.html import StandaloneHTMLBuilder from sphinx.config import Config -from sphinx.deprecation import RemovedInSphinx40Warning from sphinx.environment.adapters.indexentries import IndexEntries from sphinx.locale import get_translation from sphinx.util import logging @@ -179,13 +177,6 @@ super().prepare_writing(docnames) self.globalcontext['html5_doctype'] = False - def open_file(self, outdir: str, basename: str, mode: str = 'w') -> IO: - # open a file with the correct encoding for the selected language - warnings.warn('HTMLHelpBuilder.open_file() is deprecated.', - RemovedInSphinx40Warning) - return open(path.join(outdir, basename), mode, encoding=self.encoding, - errors='xmlcharrefreplace') - def update_page_context(self, pagename: str, templatename: str, ctx: Dict, event_arg: str) -> None: # NOQA ctx['encoding'] = self.encoding Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/ar/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ar/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/ar/LC_MESSAGES/sphinxcontrib.htmlhelp.po new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ar/LC_MESSAGES/sphinxcontrib.htmlhelp.po --- old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/ar/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2020-01-09 17:46:54.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ar/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2021-05-22 17:59:25.000000000 +0200 @@ -4,6 +4,9 @@ # sphinxcontrib-htmlhelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # +# Translators: +# Abdullah ahmed <alha...@hotmail.co.uk>, 2020 +# #, fuzzy msgid "" msgstr "" @@ -11,6 +14,7 @@ "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" +"Last-Translator: Abdullah ahmed <alha...@hotmail.co.uk>, 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" @@ -22,20 +26,20 @@ #: sphinxcontrib/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" +msgstr "???????????? ???????? ???? %(outdir)s" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" -msgstr "" +msgstr "?????? ?????????? ?????????? ????????????" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" -msgstr "" +msgstr "?????????? ?????? ??????????????" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" -msgstr "" +msgstr "?????????? ?????? ???????? ????????????" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." -msgstr "" +msgstr "?????????? ?????? ???????????? ..." Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/bg/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/bg/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/bg/LC_MESSAGES/sphinxcontrib.htmlhelp.po new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/bg/LC_MESSAGES/sphinxcontrib.htmlhelp.po --- old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/bg/LC_MESSAGES/sphinxcontrib.htmlhelp.po 1970-01-01 01:00:00.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/bg/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2021-05-22 17:59:50.000000000 +0200 @@ -0,0 +1,41 @@ +# Translations template for sphinxcontrib-htmlhelp. +# Copyright (C) 2019 ORGANIZATION +# This file is distributed under the same license as the +# sphinxcontrib-htmlhelp project. +# FIRST AUTHOR <EMAIL@ADDRESS>, 2019. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2019-02-15 00:45+0900\n" +"PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 +#, python-format +msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." +msgstr "" + +#: sphinxcontrib/htmlhelp/__init__.py:203 +msgid "copying stopword list" +msgstr "" + +#: sphinxcontrib/htmlhelp/__init__.py:218 +msgid "writing project file" +msgstr "" + +#: sphinxcontrib/htmlhelp/__init__.py:246 +msgid "writing TOC file" +msgstr "" + +#: sphinxcontrib/htmlhelp/__init__.py:268 +msgid "writing index file..." +msgstr "" Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/bn/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/bn/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/ca/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ca/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/cak/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/cak/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/cs/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/cs/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/cy/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/cy/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/da/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/da/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/da/LC_MESSAGES/sphinxcontrib.htmlhelp.po new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/da/LC_MESSAGES/sphinxcontrib.htmlhelp.po --- old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/da/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2020-01-09 17:46:54.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/da/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2021-05-22 17:59:33.000000000 +0200 @@ -4,6 +4,9 @@ # sphinxcontrib-htmlhelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # +# Translators: +# Joe Hansen <joedalt...@yahoo.dk>, 2019 +# #, fuzzy msgid "" msgstr "" @@ -11,6 +14,7 @@ "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" +"Last-Translator: Joe Hansen <joedalt...@yahoo.dk>, 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" @@ -22,20 +26,20 @@ #: sphinxcontrib/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" +msgstr "Du kan nu afvikle HTML Help Workshop med .htp-filen i %(outdir)s." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" -msgstr "" +msgstr "kopierer stopword-liste" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" -msgstr "" +msgstr "skriver projektfil" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" -msgstr "" +msgstr "skriver TOC-fil" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." -msgstr "" +msgstr "skriver indeksfil ..." Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/de/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/de/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/el/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/el/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/el/LC_MESSAGES/sphinxcontrib.htmlhelp.po new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/el/LC_MESSAGES/sphinxcontrib.htmlhelp.po --- old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/el/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2020-01-09 17:46:54.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/el/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2021-05-22 17:59:08.000000000 +0200 @@ -4,6 +4,9 @@ # sphinxcontrib-htmlhelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # +# Translators: +# tzoumakers tzoumakers <tzoumake...@gmail.com>, 2019 +# #, fuzzy msgid "" msgstr "" @@ -11,6 +14,7 @@ "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" +"Last-Translator: tzoumakers tzoumakers <tzoumake...@gmail.com>, 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" @@ -23,19 +27,21 @@ #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" +"???????????????? ???????? ???? ???????????????????? ???? HTML Help Workshop ???? ???? ???????????? .htp ???? " +"%(outdir)s." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" -msgstr "" +msgstr "?????????????????? ???????????? stopword" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" -msgstr "" +msgstr "?????????????? ?????????????? ??????????" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" -msgstr "" +msgstr "?????????????? ?????????????? TOC" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." -msgstr "" +msgstr "?????????????? ?????????????? ????????????????????..." Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/eo/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/eo/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/es/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/es/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/es/LC_MESSAGES/sphinxcontrib.htmlhelp.po new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/es/LC_MESSAGES/sphinxcontrib.htmlhelp.po --- old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/es/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2020-01-09 17:46:54.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/es/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2021-05-22 17:59:01.000000000 +0200 @@ -5,7 +5,8 @@ # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # # Translators: -# Edward Villegas-Pulgarin, 2019 +# Edward Villegas-Pulgarin <cosmoscali...@gmail.com>, 2019 +# Leonardo J. Caballero G. <leonardocaball...@gmail.com>, 2020 # #, fuzzy msgid "" @@ -14,7 +15,7 @@ "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" -"Last-Translator: Edward Villegas-Pulgarin, 2019\n" +"Last-Translator: Leonardo J. Caballero G. <leonardocaball...@gmail.com>, 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" @@ -27,18 +28,19 @@ #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" +"Ahora puede ejecutar HTML Help Workshop con el archivo .htp en %(outdir)s." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" -msgstr "" +msgstr "copiando la lista de palabras vac??as" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" -msgstr "" +msgstr "escribir archivo de proyecto" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" -msgstr "" +msgstr "escribiendo archivo TOC" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/et/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/et/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/et/LC_MESSAGES/sphinxcontrib.htmlhelp.po new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/et/LC_MESSAGES/sphinxcontrib.htmlhelp.po --- old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/et/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2020-01-09 17:46:54.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/et/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2021-05-22 17:59:17.000000000 +0200 @@ -27,6 +27,7 @@ #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" +"V??id n????d k??ivitada HTML Help Workshopi .htp failiga kataloogis %(outdir)s." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" @@ -34,11 +35,11 @@ #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" -msgstr "" +msgstr "projektifaili kirjutamine" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" -msgstr "" +msgstr "sisukorrafaili kirjutamine" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/eu/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/eu/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/fa/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/fa/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/fa/LC_MESSAGES/sphinxcontrib.htmlhelp.po new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/fa/LC_MESSAGES/sphinxcontrib.htmlhelp.po --- old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/fa/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2020-01-09 17:46:54.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/fa/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2021-05-22 17:59:02.000000000 +0200 @@ -4,6 +4,9 @@ # sphinxcontrib-htmlhelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # +# Translators: +# Hadi F <h_ad...@yahoo.com>, 2021 +# #, fuzzy msgid "" msgstr "" @@ -11,6 +14,7 @@ "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" +"Last-Translator: Hadi F <h_ad...@yahoo.com>, 2021\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" @@ -23,19 +27,21 @@ #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" +"???? ?????????? ???? ???????????? ???????????? ?????????????? HTML ???? ???? ???????? .htp ???? %(outdir)s ???????? " +"????????." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" -msgstr "" +msgstr "???????????? ???? ?????????? ???????????? ??????????????" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" -msgstr "" +msgstr "?????????? ???????? ??????????" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" -msgstr "" +msgstr "?????????? ???????? ?????????? ?????????? ????" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." -msgstr "" +msgstr "?????????? ???????? ??????????..." Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/fi/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/fi/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/fr/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/fr/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/fr/LC_MESSAGES/sphinxcontrib.htmlhelp.po new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/fr/LC_MESSAGES/sphinxcontrib.htmlhelp.po --- old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/fr/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2020-01-09 17:46:54.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/fr/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2021-05-22 17:59:22.000000000 +0200 @@ -6,6 +6,8 @@ # # Translators: # LAURENT Rapha??l <laur...@ined.fr>, 2019 +# Jean-Fran??ois B. <j...@free.fr>, 2019 +# Denis Bitouz?? <dbito...@wanadoo.fr>, 2021 # #, fuzzy msgid "" @@ -14,7 +16,7 @@ "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" -"Last-Translator: LAURENT Rapha??l <laur...@ined.fr>, 2019\n" +"Last-Translator: Denis Bitouz?? <dbito...@wanadoo.fr>, 2021\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" @@ -27,18 +29,20 @@ #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" +"Vous pouvez maintenant ex??cuter HTML Help Workshop sur le fichier .htp dans " +"%(outdir)s." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" -msgstr "" +msgstr "Copie de la liste des mots vides" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" -msgstr "" +msgstr "enregistrement du fichier de projet" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" -msgstr "" +msgstr "enregistrement du fichier de table des mati??res" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/he/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/he/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/hi/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/hi/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/hi/LC_MESSAGES/sphinxcontrib.htmlhelp.po new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/hi/LC_MESSAGES/sphinxcontrib.htmlhelp.po --- old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/hi/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2020-01-09 17:46:54.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/hi/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2021-05-22 17:59:30.000000000 +0200 @@ -4,6 +4,9 @@ # sphinxcontrib-htmlhelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # +# Translators: +# Ajay Singh <ajaysa...@gmail.com>, 2019 +# #, fuzzy msgid "" msgstr "" @@ -11,6 +14,7 @@ "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" +"Last-Translator: Ajay Singh <ajaysa...@gmail.com>, 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" @@ -23,19 +27,21 @@ #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" +"?????? ?????? %(outdir)s ????????? .?????????????????? #.htp# ???????????? ?????? ?????????.??????.?????????.??????. ??????????????? ????????????????????? " +"#HTML Help Workshop# ????????? ???????????? ?????????." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" -msgstr "" +msgstr "????????????????????????????????? ???????????? ?????? ??????????????????????????? ???????????? ?????? ????????? ??????" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" -msgstr "" +msgstr "???????????????????????? ???????????? ???????????? ?????? ????????? ??????" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" -msgstr "" +msgstr "????????????-???????????? ???????????? ???????????? ?????? ????????? ??????" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." -msgstr "" +msgstr "???????????????????????????????????? ???????????? ???????????? ?????? ????????? ??????" Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/hi_IN/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/hi_IN/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/hr/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/hr/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/hu/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/hu/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/hu/LC_MESSAGES/sphinxcontrib.htmlhelp.po new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/hu/LC_MESSAGES/sphinxcontrib.htmlhelp.po --- old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/hu/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2020-01-09 17:46:54.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/hu/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2021-05-22 17:59:09.000000000 +0200 @@ -4,6 +4,9 @@ # sphinxcontrib-htmlhelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # +# Translators: +# Bal??zs ??r, 2020 +# #, fuzzy msgid "" msgstr "" @@ -11,6 +14,7 @@ "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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" @@ -23,19 +27,21 @@ #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" +"Most m??r futtathatja a HTML Help Workshopot a(z) %(outdir)s k??nyvt??rban l??v??" +" .htp f??jllal." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" -msgstr "" +msgstr "kisz??rend?? szavak list??j??nak m??sol??sa" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" -msgstr "" +msgstr "projektf??jl ??r??sa" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" -msgstr "" +msgstr "tartalomjegyz??kf??jl ??r??sa" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." -msgstr "" +msgstr "indexf??jl ??r??sa???" Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/id/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/id/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/id/LC_MESSAGES/sphinxcontrib.htmlhelp.po new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/id/LC_MESSAGES/sphinxcontrib.htmlhelp.po --- old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/id/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2020-01-09 17:46:54.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/id/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2021-05-22 17:59:36.000000000 +0200 @@ -6,6 +6,7 @@ # # Translators: # Tumpal Gemelli, 2019 +# oon arfiandwi <oon.arfian...@gmail.com>, 2019 # #, fuzzy msgid "" @@ -14,7 +15,7 @@ "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" -"Last-Translator: Tumpal Gemelli, 2019\n" +"Last-Translator: oon arfiandwi <oon.arfian...@gmail.com>, 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" @@ -32,15 +33,15 @@ #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" -msgstr "" +msgstr "menyalin daftar kata henti" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" -msgstr "" +msgstr "menulis berkas proyek" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" -msgstr "" +msgstr "menulis berkas TOC" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/it/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/it/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/ja/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ja/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/ja/LC_MESSAGES/sphinxcontrib.htmlhelp.po new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ja/LC_MESSAGES/sphinxcontrib.htmlhelp.po --- old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/ja/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2020-01-09 17:46:54.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ja/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2021-05-22 17:59:10.000000000 +0200 @@ -4,6 +4,9 @@ # sphinxcontrib-htmlhelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # +# Translators: +# Takayuki Shimizukawa <shimizuk...@gmail.com>, 2019 +# #, fuzzy msgid "" msgstr "" @@ -11,6 +14,7 @@ "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" +"Last-Translator: Takayuki Shimizukawa <shimizuk...@gmail.com>, 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" @@ -22,20 +26,20 @@ #: sphinxcontrib/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" +msgstr "%(outdir)s?????????????????? .htp ???????????????HTML Help Workshop????????????????????????" #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" -msgstr "" +msgstr "stopword ?????????????????????" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" -msgstr "" +msgstr "?????????????????????????????????????????????" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" -msgstr "" +msgstr "TOC ???????????????????????????" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." -msgstr "" +msgstr "?????????????????????????????????????????????..." Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/ko/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ko/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/ko/LC_MESSAGES/sphinxcontrib.htmlhelp.po new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ko/LC_MESSAGES/sphinxcontrib.htmlhelp.po --- old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/ko/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2020-01-09 17:46:54.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ko/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2021-05-22 17:58:55.000000000 +0200 @@ -4,6 +4,9 @@ # sphinxcontrib-htmlhelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # +# Translators: +# YT H <d...@theyt.net>, 2019 +# #, fuzzy msgid "" msgstr "" @@ -11,6 +14,7 @@ "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" +"Last-Translator: YT H <d...@theyt.net>, 2019\n" "Language-Team: Korean (https://www.transifex.com/sphinx-doc/teams/36659/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,20 +26,20 @@ #: sphinxcontrib/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" +msgstr "?????? %(outdir)s?????? .htp ????????? ???????????? HTML Help Workshop??? ????????? ??? ????????????." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" -msgstr "" +msgstr "????????? ?????? ?????? ???" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" -msgstr "" +msgstr "???????????? ?????? ?????? ???" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" -msgstr "" +msgstr "?????? ?????? ?????? ???" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." -msgstr "" +msgstr "?????? ?????? ?????? ??????" Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/lt/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/lt/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/lv/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/lv/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/mk/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/mk/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/nb_NO/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/nb_NO/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/ne/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ne/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/nl/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/nl/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/pl/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/pl/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/pt/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/pt/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/pt_BR/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/pt_BR/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/pt_BR/LC_MESSAGES/sphinxcontrib.htmlhelp.po new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/pt_BR/LC_MESSAGES/sphinxcontrib.htmlhelp.po --- old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/pt_BR/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2020-01-09 17:46:54.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/pt_BR/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2021-05-22 17:59:37.000000000 +0200 @@ -4,6 +4,9 @@ # sphinxcontrib-htmlhelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # +# Translators: +# Rafael Fontenelle <rffontene...@gmail.com>, 2019 +# #, fuzzy msgid "" msgstr "" @@ -11,6 +14,7 @@ "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" +"Last-Translator: Rafael Fontenelle <rffontene...@gmail.com>, 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" @@ -23,19 +27,21 @@ #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" +"Voc?? pode agora executar HTML Help Workshop com o arquivo .htp em " +"%(outdir)s." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" -msgstr "" +msgstr "copiando lista de palavras vazia" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" -msgstr "" +msgstr "escrevendo arquivo de projeto" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" -msgstr "" +msgstr "escrevendo arquivo TOC" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." -msgstr "" +msgstr "escrevendo arquivo de ??ndice..." Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/pt_PT/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/pt_PT/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/ro/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ro/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/ru/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ru/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/si/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/si/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/sk/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sk/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/sk/LC_MESSAGES/sphinxcontrib.htmlhelp.po new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sk/LC_MESSAGES/sphinxcontrib.htmlhelp.po --- old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/sk/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2020-01-09 17:46:54.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sk/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2021-05-22 17:59:49.000000000 +0200 @@ -4,6 +4,9 @@ # sphinxcontrib-htmlhelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # +# Translators: +# Slavko <li...@slavino.sk>, 2021 +# #, fuzzy msgid "" msgstr "" @@ -11,6 +14,7 @@ "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" +"Last-Translator: Slavko <li...@slavino.sk>, 2021\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" @@ -22,20 +26,20 @@ #: sphinxcontrib/htmlhelp/__init__.py:147 #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" +msgstr "teraz m????ete spusti?? HTML Help Workshop so s??borom .htp v %(outdir)s." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" -msgstr "" +msgstr "kop??rovanie zoznamu stop slov" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" -msgstr "" +msgstr "zapisovanie s??boru projektu" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" -msgstr "" +msgstr "zapisovanie s??boru s obsahom" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." -msgstr "" +msgstr "zapisovanie s??boru indexu???" Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/sl/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sl/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/sq/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sq/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/sq/LC_MESSAGES/sphinxcontrib.htmlhelp.po new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sq/LC_MESSAGES/sphinxcontrib.htmlhelp.po --- old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/sq/LC_MESSAGES/sphinxcontrib.htmlhelp.po 1970-01-01 01:00:00.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sq/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2021-05-22 17:59:53.000000000 +0200 @@ -0,0 +1,46 @@ +# Translations template for sphinxcontrib-htmlhelp. +# Copyright (C) 2019 ORGANIZATION +# This file is distributed under the same license as the +# sphinxcontrib-htmlhelp project. +# FIRST AUTHOR <EMAIL@ADDRESS>, 2019. +# +# Translators: +# Besnik Bleta <bes...@programeshqip.org>, 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2019-02-15 00:45+0900\n" +"PO-Revision-Date: 2019-02-14 15:47+0000\n" +"Last-Translator: Besnik Bleta <bes...@programeshqip.org>, 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/htmlhelp/__init__.py:147 +#, python-format +msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." +msgstr "" +"Tani mund t?? xhironi HTML Help Workshop me kartel??n .htp te %(outdir)s." + +#: sphinxcontrib/htmlhelp/__init__.py:203 +msgid "copying stopword list" +msgstr "po kopjohet list?? fjal??sh t?? ndaluara" + +#: sphinxcontrib/htmlhelp/__init__.py:218 +msgid "writing project file" +msgstr "po shkruhet kartel?? ndihme" + +#: sphinxcontrib/htmlhelp/__init__.py:246 +msgid "writing TOC file" +msgstr "po shkruhet kartel?? TL" + +#: sphinxcontrib/htmlhelp/__init__.py:268 +msgid "writing index file..." +msgstr "po shkruhet kartel?? treguesi" Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/sr/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sr/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.htmlhelp.po new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.htmlhelp.po --- old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2020-01-09 17:46:54.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2021-05-22 17:59:31.000000000 +0200 @@ -11,7 +11,7 @@ "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/sphinx-doc/teams/36659/sr%40latin/)\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" Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/sr_RS/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sr_RS/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/sv/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/sv/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/ta/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ta/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/te/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/te/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/te/LC_MESSAGES/sphinxcontrib.htmlhelp.po new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/te/LC_MESSAGES/sphinxcontrib.htmlhelp.po --- old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/te/LC_MESSAGES/sphinxcontrib.htmlhelp.po 1970-01-01 01:00:00.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/te/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2021-05-22 17:59:51.000000000 +0200 @@ -0,0 +1,41 @@ +# Translations template for sphinxcontrib-htmlhelp. +# Copyright (C) 2019 ORGANIZATION +# This file is distributed under the same license as the +# sphinxcontrib-htmlhelp project. +# FIRST AUTHOR <EMAIL@ADDRESS>, 2019. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: sphinxcontrib-htmlhelp 1.0.0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2019-02-15 00:45+0900\n" +"PO-Revision-Date: 2019-02-14 15:47+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/htmlhelp/__init__.py:147 +#, python-format +msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." +msgstr "" + +#: sphinxcontrib/htmlhelp/__init__.py:203 +msgid "copying stopword list" +msgstr "" + +#: sphinxcontrib/htmlhelp/__init__.py:218 +msgid "writing project file" +msgstr "" + +#: sphinxcontrib/htmlhelp/__init__.py:246 +msgid "writing TOC file" +msgstr "" + +#: sphinxcontrib/htmlhelp/__init__.py:268 +msgid "writing index file..." +msgstr "" Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/tr/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/tr/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/tr/LC_MESSAGES/sphinxcontrib.htmlhelp.po new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/tr/LC_MESSAGES/sphinxcontrib.htmlhelp.po --- old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/tr/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2020-01-09 17:46:54.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/tr/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2021-05-22 17:59:42.000000000 +0200 @@ -4,6 +4,9 @@ # sphinxcontrib-htmlhelp project. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019. # +# Translators: +# BouRock, 2020 +# #, fuzzy msgid "" msgstr "" @@ -11,6 +14,7 @@ "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+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" @@ -23,19 +27,21 @@ #, python-format msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." msgstr "" +"Art??k %(outdir)s i??indeki .htp dosyas?? ile HTML Yard??m At??lyesi'ni " +"??al????t??rabilirsiniz." #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" -msgstr "" +msgstr "gereksiz kelime listesi kopyalan??yor" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" -msgstr "" +msgstr "proje dosyas?? yaz??l??yor" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" -msgstr "" +msgstr "TOC dosyas?? yaz??l??yor" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." -msgstr "" +msgstr "dizin dosyas?? yaz??l??yor..." Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/uk_UA/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/uk_UA/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/ur/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/ur/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/vi/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/vi/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.htmlhelp.po new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.htmlhelp.po --- old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2020-01-09 17:46:54.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.htmlhelp.po 2021-05-22 17:59:24.000000000 +0200 @@ -6,6 +6,7 @@ # # Translators: # Yinian Chin <yinian1...@live.com>, 2019 +# Jian Dai <daiji...@qq.com>, 2020 # #, fuzzy msgid "" @@ -14,7 +15,7 @@ "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-02-15 00:45+0900\n" "PO-Revision-Date: 2019-02-14 15:47+0000\n" -"Last-Translator: Yinian Chin <yinian1...@live.com>, 2019\n" +"Last-Translator: Jian Dai <daiji...@qq.com>, 2020\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" @@ -30,15 +31,15 @@ #: sphinxcontrib/htmlhelp/__init__.py:203 msgid "copying stopword list" -msgstr "" +msgstr "?????????????????????" #: sphinxcontrib/htmlhelp/__init__.py:218 msgid "writing project file" -msgstr "" +msgstr "??????????????????" #: sphinxcontrib/htmlhelp/__init__.py:246 msgid "writing TOC file" -msgstr "" +msgstr "?????? TOC ??????" #: sphinxcontrib/htmlhelp/__init__.py:268 msgid "writing index file..." Binary files old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.htmlhelp.mo and new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.htmlhelp.mo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/version.py new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/version.py --- old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib/htmlhelp/version.py 2020-02-21 18:01:08.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib/htmlhelp/version.py 2021-05-22 18:01:02.000000000 +0200 @@ -6,5 +6,5 @@ :license: BSD, see LICENSE for details. """ -__version__ = '1.0.3' +__version__ = '2.0.0' __version_info__ = tuple(map(int, __version__.split('.'))) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib_htmlhelp.egg-info/PKG-INFO new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib_htmlhelp.egg-info/PKG-INFO --- old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib_htmlhelp.egg-info/PKG-INFO 2020-02-21 18:09:56.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib_htmlhelp.egg-info/PKG-INFO 2021-05-22 18:01:28.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: sphinxcontrib-htmlhelp -Version: 1.0.3 +Version: 2.0.0 Summary: sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files Home-page: http://sphinx-doc.org/ Author: Georg Brandl @@ -20,16 +20,17 @@ Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python Classifier: Programming Language :: Python :: 3 -Classifier: Programming Language :: Python :: 3.5 Classifier: Programming Language :: Python :: 3.6 Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 Classifier: Framework :: Sphinx Classifier: Framework :: Sphinx :: Extension Classifier: Topic :: Documentation Classifier: Topic :: Documentation :: Sphinx Classifier: Topic :: Text Processing Classifier: Topic :: Utilities -Requires-Python: >=3.5 +Requires-Python: >=3.6 Description-Content-Type: text/x-rst Provides-Extra: test Provides-Extra: lint diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib_htmlhelp.egg-info/SOURCES.txt new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib_htmlhelp.egg-info/SOURCES.txt --- old/sphinxcontrib-htmlhelp-1.0.3/sphinxcontrib_htmlhelp.egg-info/SOURCES.txt 2020-02-21 18:09:56.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/sphinxcontrib_htmlhelp.egg-info/SOURCES.txt 2021-05-22 18:01:28.000000000 +0200 @@ -12,6 +12,8 @@ sphinxcontrib/htmlhelp/locales/.tx/config sphinxcontrib/htmlhelp/locales/ar/LC_MESSAGES/sphinxcontrib.htmlhelp.mo sphinxcontrib/htmlhelp/locales/ar/LC_MESSAGES/sphinxcontrib.htmlhelp.po +sphinxcontrib/htmlhelp/locales/bg/LC_MESSAGES/sphinxcontrib.htmlhelp.mo +sphinxcontrib/htmlhelp/locales/bg/LC_MESSAGES/sphinxcontrib.htmlhelp.po sphinxcontrib/htmlhelp/locales/bn/LC_MESSAGES/sphinxcontrib.htmlhelp.mo sphinxcontrib/htmlhelp/locales/bn/LC_MESSAGES/sphinxcontrib.htmlhelp.po sphinxcontrib/htmlhelp/locales/ca/LC_MESSAGES/sphinxcontrib.htmlhelp.mo @@ -90,6 +92,8 @@ sphinxcontrib/htmlhelp/locales/sk/LC_MESSAGES/sphinxcontrib.htmlhelp.po sphinxcontrib/htmlhelp/locales/sl/LC_MESSAGES/sphinxcontrib.htmlhelp.mo sphinxcontrib/htmlhelp/locales/sl/LC_MESSAGES/sphinxcontrib.htmlhelp.po +sphinxcontrib/htmlhelp/locales/sq/LC_MESSAGES/sphinxcontrib.htmlhelp.mo +sphinxcontrib/htmlhelp/locales/sq/LC_MESSAGES/sphinxcontrib.htmlhelp.po sphinxcontrib/htmlhelp/locales/sr/LC_MESSAGES/sphinxcontrib.htmlhelp.mo sphinxcontrib/htmlhelp/locales/sr/LC_MESSAGES/sphinxcontrib.htmlhelp.po sphinxcontrib/htmlhelp/locales/sr@latin/LC_MESSAGES/sphinxcontrib.htmlhelp.mo @@ -100,6 +104,8 @@ sphinxcontrib/htmlhelp/locales/sv/LC_MESSAGES/sphinxcontrib.htmlhelp.po sphinxcontrib/htmlhelp/locales/ta/LC_MESSAGES/sphinxcontrib.htmlhelp.mo sphinxcontrib/htmlhelp/locales/ta/LC_MESSAGES/sphinxcontrib.htmlhelp.po +sphinxcontrib/htmlhelp/locales/te/LC_MESSAGES/sphinxcontrib.htmlhelp.mo +sphinxcontrib/htmlhelp/locales/te/LC_MESSAGES/sphinxcontrib.htmlhelp.po sphinxcontrib/htmlhelp/locales/tr/LC_MESSAGES/sphinxcontrib.htmlhelp.mo sphinxcontrib/htmlhelp/locales/tr/LC_MESSAGES/sphinxcontrib.htmlhelp.po sphinxcontrib/htmlhelp/locales/uk_UA/LC_MESSAGES/sphinxcontrib.htmlhelp.mo diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/tests/test_htmlhelp.py new/sphinxcontrib-htmlhelp-2.0.0/tests/test_htmlhelp.py --- old/sphinxcontrib-htmlhelp-1.0.3/tests/test_htmlhelp.py 2020-01-09 17:46:54.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/tests/test_htmlhelp.py 2021-05-07 17:33:35.000000000 +0200 @@ -13,7 +13,7 @@ import pytest from html5lib import HTMLParser -from sphinx.builders.htmlhelp import chm_htmlescape, default_htmlhelp_basename +from sphinxcontrib.htmlhelp import chm_htmlescape, default_htmlhelp_basename from sphinx.config import Config diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-htmlhelp-1.0.3/tox.ini new/sphinxcontrib-htmlhelp-2.0.0/tox.ini --- old/sphinxcontrib-htmlhelp-1.0.3/tox.ini 2020-02-21 17:56:16.000000000 +0100 +++ new/sphinxcontrib-htmlhelp-2.0.0/tox.ini 2021-05-16 13:18:12.000000000 +0200 @@ -1,5 +1,16 @@ [tox] -envlist=flake8,mypy,py35,py36,py37,py38,py39 +envlist = + py{36,37,38,39,310-dev}, + flake8, + mypy + +[gh-actions] +python = + 3.6: py36 + 3.7: py37 + 3.8: py38 + 3.9: py39 + 3.10: py310-dev [testenv] deps= @@ -12,11 +23,6 @@ commands= pytest --durations 25 {posargs} -[testenv:py39] -deps = - {[testenv]deps} - git+https://github.com/html5lib/html5lib-python - [testenv:flake8] description = Run style checks.