Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gaupol for openSUSE:Factory checked 
in at 2024-04-09 16:46:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gaupol (Old)
 and      /work/SRC/openSUSE:Factory/.gaupol.new.29460 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gaupol"

Tue Apr  9 16:46:07 2024 rev:36 rq:1164231 version:1.14.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/gaupol/gaupol.changes    2024-02-28 
19:45:36.822522709 +0100
+++ /work/SRC/openSUSE:Factory/.gaupol.new.29460/gaupol.changes 2024-04-09 
16:46:08.325667075 +0200
@@ -1,0 +2,12 @@
+Tue Apr  2 19:42:42 UTC 2024 - Antoine Belvire <antoine.belv...@opensuse.org>
+
+- Update to 1.14.1:
+  * Fix invalid entry in AppData file (gh#otsaloma/gaupol#219).
+- Changes from 1.14:
+  * Change the icon for the toggle video player toolbar item to an
+    action icon (not mimetype) that has a symbolic version
+    available.
+  * Fix installation on Python >= 3.12 by using distutils from
+    setuptools.
+
+-------------------------------------------------------------------

Old:
----
  gaupol-1.13.tar.gz

New:
----
  gaupol-1.14.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ gaupol.spec ++++++
--- /var/tmp/diff_new_pack.w7CIzt/_old  2024-04-09 16:46:09.317703560 +0200
+++ /var/tmp/diff_new_pack.w7CIzt/_new  2024-04-09 16:46:09.321703708 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gaupol
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 %bcond_without test
 %define skip_python2 1
 Name:           gaupol
-Version:        1.13
+Version:        1.14.1
 Release:        0
 Summary:        GTK Subtitle editor
 License:        GPL-3.0-or-later

++++++ gaupol-1.13.tar.gz -> gaupol-1.14.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/Makefile new/gaupol-1.14.1/Makefile
--- old/gaupol-1.13/Makefile    2023-10-08 18:04:09.000000000 +0200
+++ new/gaupol-1.14.1/Makefile  2024-04-02 20:58:43.000000000 +0200
@@ -39,6 +39,7 @@
        @echo "ADD RELEASE NOTES"
        $(EDITOR) NEWS.md
        $(EDITOR) data/io.otsaloma.gaupol.appdata.xml.in
+       appstream-util validate-relax --nonet 
data/io.otsaloma.gaupol.appdata.xml.in
        sudo ./setup.py install --prefix=/usr/local clean
        /usr/local/bin/gaupol
        tools/release
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/NEWS.md new/gaupol-1.14.1/NEWS.md
--- old/gaupol-1.13/NEWS.md     2023-10-08 18:04:09.000000000 +0200
+++ new/gaupol-1.14.1/NEWS.md   2024-04-02 20:58:43.000000000 +0200
@@ -1,3 +1,15 @@
+2024-04-02: Gaupol 1.14.1
+=========================
+
+* Fix invalid entry in AppData file (#219)
+
+2024-03-31: Gaupol 1.14
+=======================
+
+* Change the icon for the toggle video player toolbar item to an action
+  icon (not mimetype) that has a symbolic version available
+* Fix installation on Python >= 3.12 by using distutils from setuptools
+
 2023-10-08: Gaupol 1.13
 =======================
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/aeidon/__init__.py 
new/gaupol-1.14.1/aeidon/__init__.py
--- old/gaupol-1.13/aeidon/__init__.py  2023-10-08 18:04:09.000000000 +0200
+++ new/gaupol-1.14.1/aeidon/__init__.py        2024-04-02 20:58:43.000000000 
+0200
@@ -74,7 +74,7 @@
 import re
 import sys
 
-__version__ = "1.13"
+__version__ = "1.14.1"
 
 RUNNING_SPHINX = (sys.argv[0].endswith("autogen.py") or
                   sys.argv[0].endswith("sphinx-build"))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/aeidon/files/subrip.py 
new/gaupol-1.14.1/aeidon/files/subrip.py
--- old/gaupol-1.13/aeidon/files/subrip.py      2023-10-08 18:04:09.000000000 
+0200
+++ new/gaupol-1.14.1/aeidon/files/subrip.py    2024-04-02 20:58:43.000000000 
+0200
@@ -87,7 +87,6 @@
         Raise :exc:`UnicodeError` if encoding fails.
         """
         for i, subtitle in enumerate(subtitles):
-            if i > 0: f.write("\n")
             f.write("{:d}\n".format(i + 1))
             start = subtitle.start_time.replace(".", ",")
             end = subtitle.end_time.replace(".", ",")
@@ -103,3 +102,4 @@
                     f.write("  X1:{:03d} X2:{:03d}".format(x1, x2))
                     f.write( " Y1:{:03d} Y2:{:03d}".format(y1, y2))
             f.write("\n{}\n".format(subtitle.get_text(doc)))
+            f.write("\n")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/gaupol-1.13/data/extensions/custom-framerates/custom-framerates.extension.in
 
new/gaupol-1.14.1/data/extensions/custom-framerates/custom-framerates.extension.in
--- 
old/gaupol-1.13/data/extensions/custom-framerates/custom-framerates.extension.in
    2023-10-08 18:04:09.000000000 +0200
+++ 
new/gaupol-1.14.1/data/extensions/custom-framerates/custom-framerates.extension.in
  2024-04-02 20:58:43.000000000 +0200
@@ -1,11 +1,11 @@
 # -*- conf -*-
 
 [Extension]
-GaupolVersion=1.13
+GaupolVersion=1.14.1
 Module=custom-framerates
 Name=Custom Framerates
 Description=Allow use of non-standard framerates
-Version=1.13
+Version=1.14
 Authors=Osmo Salomaa <otsal...@iki.fi>;
 Copyright=Copyright © 2011 Osmo Salomaa;
 Website=https://otsaloma.io/gaupol/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/data/io.otsaloma.gaupol.appdata.xml.in 
new/gaupol-1.14.1/data/io.otsaloma.gaupol.appdata.xml.in
--- old/gaupol-1.13/data/io.otsaloma.gaupol.appdata.xml.in      2023-10-08 
18:04:09.000000000 +0200
+++ new/gaupol-1.14.1/data/io.otsaloma.gaupol.appdata.xml.in    2024-04-02 
20:58:43.000000000 +0200
@@ -20,7 +20,9 @@
   <url type="bugtracker">https://github.com/otsaloma/gaupol/issues</url>
   <url type="translate">https://www.transifex.com/otsaloma/gaupol/</url>
   <launchable type="desktop-id">io.otsaloma.gaupol.desktop</launchable>
-  <releases>
+  <releases>    
+    <release version="1.14.1" date="2024-04-02"/>
+    <release version="1.14"   date="2024-03-31"/>
     <release version="1.13"   date="2023-10-08"/>
     <release version="1.12"   date="2023-01-21"/>
     <release version="1.11"   date="2022-04-03"/>
@@ -36,7 +38,9 @@
     <mediatype>text/x-subviewer</mediatype>
   </provides>
   <project_license>GPL-3.0+</project_license>
-  <developer_name>Osmo Salomaa</developer_name>
+  <developer id="otsaloma.io">
+    <name>Osmo Salomaa</name>
+  </developer>
   <screenshots>
     <screenshot type="default">
       <image>https://otsaloma.io/gaupol/screenshot-appdata.png</image>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/gaupol/__init__.py 
new/gaupol-1.14.1/gaupol/__init__.py
--- old/gaupol-1.13/gaupol/__init__.py  2023-10-08 18:04:09.000000000 +0200
+++ new/gaupol-1.14.1/gaupol/__init__.py        2024-04-02 20:58:43.000000000 
+0200
@@ -17,7 +17,7 @@
 
 """GTK user interface for the Gaupol subtitle editor."""
 
-__version__ = "1.13"
+__version__ = "1.14.1"
 COMBO_SEPARATOR = "<separator/>"
 
 import sys
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/gaupol/application.py 
new/gaupol-1.14.1/gaupol/application.py
--- old/gaupol-1.13/gaupol/application.py       2023-10-08 18:04:09.000000000 
+0200
+++ new/gaupol-1.14.1/gaupol/application.py     2024-04-02 20:58:43.000000000 
+0200
@@ -276,7 +276,7 @@
         self.main_toolbar.insert(button, -1)
         # win.toggle-player
         button = Gtk.ToggleToolButton(
-            label=_("Video"), icon_name="video-x-generic")
+            label=_("Video"), icon_name="camera-video")
         button.set_action_name("win.toggle-player")
         button.set_tooltip_text(_("Show or hide the video player"))
         self.main_toolbar.insert(button, -1)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/po/cs.po new/gaupol-1.14.1/po/cs.po
--- old/gaupol-1.13/po/cs.po    2023-10-08 18:04:09.000000000 +0200
+++ new/gaupol-1.14.1/po/cs.po  2024-04-02 20:58:43.000000000 +0200
@@ -12,7 +12,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-10-08 18:55+0300\n"
+"POT-Creation-Date: 2024-03-31 22:54+0300\n"
 "PO-Revision-Date: 2016-07-07 00:55+0000\n"
 "Last-Translator: fri, 2023\n"
 "Language-Team: Czech (https://app.transifex.com/otsaloma/teams/64879/cs/)\n"
@@ -2707,7 +2707,7 @@
 "formátů souborů titulků a poskytuje prostředky k vytváření titulků, "
 "upravování textů a časování titulků, aby odpovídaly obrazovému 
záznamu."
 
-#: data/io.otsaloma.gaupol.appdata.xml.in:42
+#: data/io.otsaloma.gaupol.appdata.xml.in:45
 msgid "Main window"
 msgstr "Hlavní okno"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/po/de.po new/gaupol-1.14.1/po/de.po
--- old/gaupol-1.13/po/de.po    2023-10-08 18:04:09.000000000 +0200
+++ new/gaupol-1.14.1/po/de.po  2024-04-02 20:58:43.000000000 +0200
@@ -12,7 +12,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-10-08 18:55+0300\n"
+"POT-Creation-Date: 2024-03-31 22:54+0300\n"
 "PO-Revision-Date: 2016-07-07 00:55+0000\n"
 "Last-Translator: oxq, 2023\n"
 "Language-Team: German (https://app.transifex.com/otsaloma/teams/64879/de/)\n"
@@ -2720,7 +2720,7 @@
 "mehrere Untertiteldateiformate und ermöglicht das Erstellen von Untertiteln,"
 " Textbearbeitung und die zeitliche Anpassung von Untertiteln an das Video."
 
-#: data/io.otsaloma.gaupol.appdata.xml.in:42
+#: data/io.otsaloma.gaupol.appdata.xml.in:45
 msgid "Main window"
 msgstr ""
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/po/es.po new/gaupol-1.14.1/po/es.po
--- old/gaupol-1.13/po/es.po    2023-10-08 18:04:09.000000000 +0200
+++ new/gaupol-1.14.1/po/es.po  2024-04-02 20:58:43.000000000 +0200
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-10-08 18:55+0300\n"
+"POT-Creation-Date: 2024-03-31 22:54+0300\n"
 "PO-Revision-Date: 2016-07-07 00:55+0000\n"
 "Last-Translator: Carlos Mella <cmel...@gmail.com>, 2023\n"
 "Language-Team: Spanish (https://app.transifex.com/otsaloma/teams/64879/es/)\n"
@@ -2747,7 +2747,7 @@
 "para diversos formatos de archivos, proporciona los medios para crear "
 "subtítulos, manipular líneas y sincronizar subtítulos a un vídeo."
 
-#: data/io.otsaloma.gaupol.appdata.xml.in:42
+#: data/io.otsaloma.gaupol.appdata.xml.in:45
 msgid "Main window"
 msgstr "Ventana principal"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/po/fi.po new/gaupol-1.14.1/po/fi.po
--- old/gaupol-1.13/po/fi.po    2023-10-08 18:04:09.000000000 +0200
+++ new/gaupol-1.14.1/po/fi.po  2024-04-02 20:58:43.000000000 +0200
@@ -12,8 +12,8 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-10-08 18:55+0300\n"
-"PO-Revision-Date: 2023-10-08 18:56+0300\n"
+"POT-Creation-Date: 2024-03-31 22:54+0300\n"
+"PO-Revision-Date: 2024-03-31 22:55+0300\n"
 "Last-Translator: Osmo Salomaa <otsal...@iki.fi>, 2023\n"
 "Language-Team: Finnish (https://app.transifex.com/otsaloma/teams/64879/fi/)\n"
 "MIME-Version: 1.0\n"
@@ -2694,7 +2694,7 @@
 "eri tekstitystiedostomuotoja ja tarjoaa toimintoja tekstitysten luomiseen, "
 "tekstien muokkaamiseen ja tekstitysten ajoittamiseen videoon sovittaen."
 
-#: data/io.otsaloma.gaupol.appdata.xml.in:42
+#: data/io.otsaloma.gaupol.appdata.xml.in:45
 msgid "Main window"
 msgstr "Pääikkuna"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/po/fr.po new/gaupol-1.14.1/po/fr.po
--- old/gaupol-1.13/po/fr.po    2023-10-08 18:04:09.000000000 +0200
+++ new/gaupol-1.14.1/po/fr.po  2024-04-02 20:58:43.000000000 +0200
@@ -14,7 +14,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-10-08 18:55+0300\n"
+"POT-Creation-Date: 2024-03-31 22:54+0300\n"
 "PO-Revision-Date: 2016-07-07 00:55+0000\n"
 "Last-Translator: Erwan Amans <erwan.am...@gmail.com>, 2019\n"
 "Language-Team: French (https://app.transifex.com/otsaloma/teams/64879/fr/)\n"
@@ -2746,7 +2746,7 @@
 "nombreux formats de sous-titres et permet de créer, des sous-titres, "
 "d'éditer du texte, et de synchroniser les sous-titres à une vidéo."
 
-#: data/io.otsaloma.gaupol.appdata.xml.in:42
+#: data/io.otsaloma.gaupol.appdata.xml.in:45
 msgid "Main window"
 msgstr "Fenêtre principale"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/po/gaupol.pot 
new/gaupol-1.14.1/po/gaupol.pot
--- old/gaupol-1.13/po/gaupol.pot       2023-10-08 18:04:09.000000000 +0200
+++ new/gaupol-1.14.1/po/gaupol.pot     2024-04-02 20:58:43.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-10-08 18:55+0300\n"
+"POT-Creation-Date: 2024-03-31 22:54+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <l...@li.org>\n"
@@ -2650,7 +2650,7 @@
 "texts and timing subtitles to match video."
 msgstr ""
 
-#: data/io.otsaloma.gaupol.appdata.xml.in:42
+#: data/io.otsaloma.gaupol.appdata.xml.in:45
 msgid "Main window"
 msgstr ""
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/po/gl.po new/gaupol-1.14.1/po/gl.po
--- old/gaupol-1.13/po/gl.po    2023-10-08 18:04:09.000000000 +0200
+++ new/gaupol-1.14.1/po/gl.po  2024-04-02 20:58:43.000000000 +0200
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-10-08 18:55+0300\n"
+"POT-Creation-Date: 2024-03-31 22:54+0300\n"
 "PO-Revision-Date: 2016-07-07 00:55+0000\n"
 "Last-Translator: Osmo Salomaa <otsal...@iki.fi>, 2016\n"
 "Language-Team: Galician 
(https://app.transifex.com/otsaloma/teams/64879/gl/)\n"
@@ -2699,7 +2699,7 @@
 "texts and timing subtitles to match video."
 msgstr ""
 
-#: data/io.otsaloma.gaupol.appdata.xml.in:42
+#: data/io.otsaloma.gaupol.appdata.xml.in:45
 msgid "Main window"
 msgstr ""
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/po/he.po new/gaupol-1.14.1/po/he.po
--- old/gaupol-1.13/po/he.po    2023-10-08 18:04:09.000000000 +0200
+++ new/gaupol-1.14.1/po/he.po  2024-04-02 20:58:43.000000000 +0200
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-10-08 18:55+0300\n"
+"POT-Creation-Date: 2024-03-31 22:54+0300\n"
 "PO-Revision-Date: 2016-07-07 00:55+0000\n"
 "Last-Translator: Osmo Salomaa <otsal...@iki.fi>, 2016\n"
 "Language-Team: Hebrew (https://app.transifex.com/otsaloma/teams/64879/he/)\n"
@@ -19,7 +19,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\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"
+"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 
1 == 0) ? 1: 2;\n"
 
 #: aeidon/enums.py:40 gaupol/enums.py:38
 msgid "Subtitle number"
@@ -668,7 +668,6 @@
 msgstr[0] ""
 msgstr[1] ""
 msgstr[2] ""
-msgstr[3] ""
 
 #: gaupol/renderers/multiline.py:86
 msgid "Italic"
@@ -692,7 +691,6 @@
 msgstr[0] ""
 msgstr[1] ""
 msgstr[2] ""
-msgstr[3] ""
 
 #: gaupol/dialogs/search.py:488
 msgid "\"{}\" not found"
@@ -903,7 +901,6 @@
 msgstr[0] ""
 msgstr[1] ""
 msgstr[2] ""
-msgstr[3] ""
 
 #: gaupol/dialogs/duration_adjust.py:87
 msgid "_Adjust"
@@ -1055,7 +1052,6 @@
 msgstr[0] ""
 msgstr[1] ""
 msgstr[2] ""
-msgstr[3] ""
 
 #: gaupol/agents/edit.py:334 gaupol/agents/edit.py:352
 msgid "Stretching start position"
@@ -2671,7 +2667,7 @@
 "texts and timing subtitles to match video."
 msgstr ""
 
-#: data/io.otsaloma.gaupol.appdata.xml.in:42
+#: data/io.otsaloma.gaupol.appdata.xml.in:45
 msgid "Main window"
 msgstr ""
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/po/hu.po new/gaupol-1.14.1/po/hu.po
--- old/gaupol-1.13/po/hu.po    2023-10-08 18:04:09.000000000 +0200
+++ new/gaupol-1.14.1/po/hu.po  2024-04-02 20:58:43.000000000 +0200
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-10-08 18:55+0300\n"
+"POT-Creation-Date: 2024-03-31 22:54+0300\n"
 "PO-Revision-Date: 2016-07-07 00:55+0000\n"
 "Last-Translator: Osmo Salomaa <otsal...@iki.fi>, 2016\n"
 "Language-Team: Hungarian 
(https://app.transifex.com/otsaloma/teams/64879/hu/)\n"
@@ -2673,7 +2673,7 @@
 "texts and timing subtitles to match video."
 msgstr ""
 
-#: data/io.otsaloma.gaupol.appdata.xml.in:42
+#: data/io.otsaloma.gaupol.appdata.xml.in:45
 msgid "Main window"
 msgstr ""
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/po/ie.po new/gaupol-1.14.1/po/ie.po
--- old/gaupol-1.13/po/ie.po    2023-10-08 18:04:09.000000000 +0200
+++ new/gaupol-1.14.1/po/ie.po  2024-04-02 20:58:43.000000000 +0200
@@ -12,7 +12,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-10-08 18:55+0300\n"
+"POT-Creation-Date: 2024-03-31 22:54+0300\n"
 "PO-Revision-Date: 2016-07-07 00:55+0000\n"
 "Last-Translator: Caarmi, 2021\n"
 "Language-Team: Interlingue 
(https://app.transifex.com/otsaloma/teams/64879/ie/)\n"
@@ -2679,7 +2679,7 @@
 " formates de file e permisse vos crear, redacter e colocar subtitules secun "
 "un video."
 
-#: data/io.otsaloma.gaupol.appdata.xml.in:42
+#: data/io.otsaloma.gaupol.appdata.xml.in:45
 msgid "Main window"
 msgstr "Li fenestre principal"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/po/is.po new/gaupol-1.14.1/po/is.po
--- old/gaupol-1.13/po/is.po    2023-10-08 18:04:09.000000000 +0200
+++ new/gaupol-1.14.1/po/is.po  2024-04-02 20:58:43.000000000 +0200
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-10-08 18:55+0300\n"
+"POT-Creation-Date: 2024-03-31 22:54+0300\n"
 "PO-Revision-Date: 2016-07-07 00:55+0000\n"
 "Last-Translator: Sveinn í Felli <s...@fellsnet.is>, 2019\n"
 "Language-Team: Icelandic 
(https://app.transifex.com/otsaloma/teams/64879/is/)\n"
@@ -2676,7 +2676,7 @@
 " margar gerðir skjátextaskráa og býður upp á að útbúa nýja 
skjátexta, "
 "breytingar texta og tímasetningu þeirra svo að þeir samsvari 
myndskeiðum."
 
-#: data/io.otsaloma.gaupol.appdata.xml.in:42
+#: data/io.otsaloma.gaupol.appdata.xml.in:45
 msgid "Main window"
 msgstr "Aðalgluggi"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/po/nl.po new/gaupol-1.14.1/po/nl.po
--- old/gaupol-1.13/po/nl.po    2023-10-08 18:04:09.000000000 +0200
+++ new/gaupol-1.14.1/po/nl.po  2024-04-02 20:58:43.000000000 +0200
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-10-08 18:55+0300\n"
+"POT-Creation-Date: 2024-03-31 22:54+0300\n"
 "PO-Revision-Date: 2016-07-07 00:55+0000\n"
 "Last-Translator: Heimen Stoffels <vistau...@fastmail.com>, 2023\n"
 "Language-Team: Dutch (https://app.transifex.com/otsaloma/teams/64879/nl/)\n"
@@ -2498,7 +2498,7 @@
 #: data/patterns/Latn.common-error.in:145
 #: data/patterns/Latn.common-error.in:154
 msgid "Add or remove spaces around parentheses and square brackets"
-msgstr ""
+msgstr "Voeg een spatie toe (of verwijder deze) rondom alle soorten haakjes"
 
 #: data/patterns/Latn.common-error.in:162
 msgid "Space after a dialogue dash"
@@ -2592,11 +2592,11 @@
 
 #: data/patterns/Latn.hearing-impaired.in:12
 msgid "Sound in parentheses"
-msgstr ""
+msgstr "Geluid tussen haakjes"
 
 #: data/patterns/Latn.hearing-impaired.in:13
 msgid "Remove description of a sound between parentheses"
-msgstr ""
+msgstr "Verwijder de geluidsomschrijving tussen haakjes"
 
 #: data/patterns/Latn.hearing-impaired.in:19
 msgid "Song lyrics between number signs"
@@ -2704,7 +2704,7 @@
 "om nieuwe ondertitels te maken, teksten aan te passen en ondertitels te "
 "timen met video's."
 
-#: data/io.otsaloma.gaupol.appdata.xml.in:42
+#: data/io.otsaloma.gaupol.appdata.xml.in:45
 msgid "Main window"
 msgstr "Hoofdvenster"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/po/pl.po new/gaupol-1.14.1/po/pl.po
--- old/gaupol-1.13/po/pl.po    2023-10-08 18:04:09.000000000 +0200
+++ new/gaupol-1.14.1/po/pl.po  2024-04-02 20:58:43.000000000 +0200
@@ -13,7 +13,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-10-08 18:55+0300\n"
+"POT-Creation-Date: 2024-03-31 22:54+0300\n"
 "PO-Revision-Date: 2016-07-07 00:55+0000\n"
 "Last-Translator: edasmax <edas...@gmail.com>, 2023\n"
 "Language-Team: Polish (https://app.transifex.com/otsaloma/teams/64879/pl/)\n"
@@ -2703,7 +2703,7 @@
 "napisów i zapewnia środki do tworzenia napisów, edycji tekstów i "
 "synchronizacji napisów w celu dopasowania do wideo."
 
-#: data/io.otsaloma.gaupol.appdata.xml.in:42
+#: data/io.otsaloma.gaupol.appdata.xml.in:45
 msgid "Main window"
 msgstr "Okno główne"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/po/pt.po new/gaupol-1.14.1/po/pt.po
--- old/gaupol-1.13/po/pt.po    2023-10-08 18:04:09.000000000 +0200
+++ new/gaupol-1.14.1/po/pt.po  2024-04-02 20:58:43.000000000 +0200
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-10-08 18:55+0300\n"
+"POT-Creation-Date: 2024-03-31 22:54+0300\n"
 "PO-Revision-Date: 2016-07-07 00:55+0000\n"
 "Last-Translator: Hugo Carvalho <hugokarva...@hotmail.com>, 2023\n"
 "Language-Team: Portuguese 
(https://app.transifex.com/otsaloma/teams/64879/pt/)\n"
@@ -2501,7 +2501,7 @@
 #: data/patterns/Latn.common-error.in:145
 #: data/patterns/Latn.common-error.in:154
 msgid "Add or remove spaces around parentheses and square brackets"
-msgstr ""
+msgstr "Adiciona ou remove espaços entre parênteses e parênteses retos"
 
 #: data/patterns/Latn.common-error.in:162
 msgid "Space after a dialogue dash"
@@ -2595,11 +2595,11 @@
 
 #: data/patterns/Latn.hearing-impaired.in:12
 msgid "Sound in parentheses"
-msgstr ""
+msgstr "Som entre parênteses"
 
 #: data/patterns/Latn.hearing-impaired.in:13
 msgid "Remove description of a sound between parentheses"
-msgstr ""
+msgstr "Remove a descrição de um som entre parênteses"
 
 #: data/patterns/Latn.hearing-impaired.in:19
 msgid "Song lyrics between number signs"
@@ -2708,7 +2708,7 @@
 "vários formatos de ficheiro de legenda e fornece meios de criar legendas, "
 "editar textos e legendas de tempo para corresponder ao vídeo."
 
-#: data/io.otsaloma.gaupol.appdata.xml.in:42
+#: data/io.otsaloma.gaupol.appdata.xml.in:45
 msgid "Main window"
 msgstr "Janela principal"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/po/pt_BR.po new/gaupol-1.14.1/po/pt_BR.po
--- old/gaupol-1.13/po/pt_BR.po 2023-10-08 18:04:09.000000000 +0200
+++ new/gaupol-1.14.1/po/pt_BR.po       2024-04-02 20:58:43.000000000 +0200
@@ -12,7 +12,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-10-08 18:55+0300\n"
+"POT-Creation-Date: 2024-03-31 22:54+0300\n"
 "PO-Revision-Date: 2016-07-07 00:55+0000\n"
 "Last-Translator: Rafael Fontenelle <rffontene...@gmail.com>, 2023\n"
 "Language-Team: Portuguese (Brazil) 
(https://app.transifex.com/otsaloma/teams/64879/pt_BR/)\n"
@@ -2502,7 +2502,7 @@
 #: data/patterns/Latn.common-error.in:145
 #: data/patterns/Latn.common-error.in:154
 msgid "Add or remove spaces around parentheses and square brackets"
-msgstr ""
+msgstr "Adiciona ou remove espaços em volta de parênteses e colchetes"
 
 #: data/patterns/Latn.common-error.in:162
 msgid "Space after a dialogue dash"
@@ -2596,11 +2596,11 @@
 
 #: data/patterns/Latn.hearing-impaired.in:12
 msgid "Sound in parentheses"
-msgstr ""
+msgstr "Som entre parênteses"
 
 #: data/patterns/Latn.hearing-impaired.in:13
 msgid "Remove description of a sound between parentheses"
-msgstr ""
+msgstr "Remove descrição de um som entre parênteses"
 
 #: data/patterns/Latn.hearing-impaired.in:19
 msgid "Song lyrics between number signs"
@@ -2709,7 +2709,7 @@
 "vários formatos de arquivo de legenda e fornece meios de criar legendas, "
 "editar textos e legendas de tempo para corresponder ao vídeo."
 
-#: data/io.otsaloma.gaupol.appdata.xml.in:42
+#: data/io.otsaloma.gaupol.appdata.xml.in:45
 msgid "Main window"
 msgstr "Janela principal"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/po/ru.po new/gaupol-1.14.1/po/ru.po
--- old/gaupol-1.13/po/ru.po    2023-10-08 18:04:09.000000000 +0200
+++ new/gaupol-1.14.1/po/ru.po  2024-04-02 20:58:43.000000000 +0200
@@ -13,7 +13,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-10-08 18:55+0300\n"
+"POT-Creation-Date: 2024-03-31 22:54+0300\n"
 "PO-Revision-Date: 2016-07-07 00:55+0000\n"
 "Last-Translator: Caarmi, 2021\n"
 "Language-Team: Russian (https://app.transifex.com/otsaloma/teams/64879/ru/)\n"
@@ -2687,7 +2687,7 @@
 "форматов файлов субтитров и 
предоставляет средства для их создания, "
 "редактирования и синхронизации с видео."
 
-#: data/io.otsaloma.gaupol.appdata.xml.in:42
+#: data/io.otsaloma.gaupol.appdata.xml.in:45
 msgid "Main window"
 msgstr "Главное окно"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/po/sr.po new/gaupol-1.14.1/po/sr.po
--- old/gaupol-1.13/po/sr.po    2023-10-08 18:04:09.000000000 +0200
+++ new/gaupol-1.14.1/po/sr.po  2024-04-02 20:58:43.000000000 +0200
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-10-08 18:55+0300\n"
+"POT-Creation-Date: 2024-03-31 22:54+0300\n"
 "PO-Revision-Date: 2016-07-07 00:55+0000\n"
 "Last-Translator: Osmo Salomaa <otsal...@iki.fi>, 2016\n"
 "Language-Team: Serbian (https://app.transifex.com/otsaloma/teams/64879/sr/)\n"
@@ -2685,7 +2685,7 @@
 "texts and timing subtitles to match video."
 msgstr ""
 
-#: data/io.otsaloma.gaupol.appdata.xml.in:42
+#: data/io.otsaloma.gaupol.appdata.xml.in:45
 msgid "Main window"
 msgstr ""
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/po/tr.po new/gaupol-1.14.1/po/tr.po
--- old/gaupol-1.13/po/tr.po    2023-10-08 18:04:09.000000000 +0200
+++ new/gaupol-1.14.1/po/tr.po  2024-04-02 20:58:43.000000000 +0200
@@ -8,16 +8,16 @@
 # Yasin ÇUKUR <yasincu...@gmail.com>, 2020
 # CJ9 <aani...@gmail.com>, 2020
 # Hasan Kalaman <piryaz...@gmail.com>, 2021
-# Sabri Ünal <libreaj...@gmail.com>, 2022
+# b83946de5835331df42b9ffcc43e6a33_05e65cd 
<73a30e0a984b2291d4915f37112ad292_814039>, 2022
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-10-08 18:55+0300\n"
+"POT-Creation-Date: 2024-03-31 22:54+0300\n"
 "PO-Revision-Date: 2016-07-07 00:55+0000\n"
-"Last-Translator: Sabri Ünal <libreaj...@gmail.com>, 2022\n"
+"Last-Translator: b83946de5835331df42b9ffcc43e6a33_05e65cd 
<73a30e0a984b2291d4915f37112ad292_814039>, 2022\n"
 "Language-Team: Turkish (https://app.transifex.com/otsaloma/teams/64879/tr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -2696,7 +2696,7 @@
 "altyazı dosya biçimini destekler ve video eşleştirmek için altyazı "
 "oluşturma, metinleri düzenleme ve altyazıları zamanlama araçları 
sağlar."
 
-#: data/io.otsaloma.gaupol.appdata.xml.in:42
+#: data/io.otsaloma.gaupol.appdata.xml.in:45
 msgid "Main window"
 msgstr "Ana pencere"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/po/zh_CN.po new/gaupol-1.14.1/po/zh_CN.po
--- old/gaupol-1.13/po/zh_CN.po 2023-10-08 18:04:09.000000000 +0200
+++ new/gaupol-1.14.1/po/zh_CN.po       2024-04-02 20:58:43.000000000 +0200
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-10-08 18:55+0300\n"
+"POT-Creation-Date: 2024-03-31 22:54+0300\n"
 "PO-Revision-Date: 2016-07-07 00:55+0000\n"
 "Last-Translator: tzwasd 😃, 2023\n"
 "Language-Team: Chinese (China) 
(https://app.transifex.com/otsaloma/teams/64879/zh_CN/)\n"
@@ -2656,7 +2656,7 @@
 "texts and timing subtitles to match video."
 msgstr "Gaupol 
是一个编辑基于文本的字幕编辑器。它支持多种字幕文件æ 
¼å¼ï¼Œå¹¶æä¾›åˆ›å»ºå­—幕、编辑文本和调整字幕时间轴以匹é…
è§†é¢‘等功能。"
 
-#: data/io.otsaloma.gaupol.appdata.xml.in:42
+#: data/io.otsaloma.gaupol.appdata.xml.in:45
 msgid "Main window"
 msgstr "主窗口"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gaupol-1.13/setup.py new/gaupol-1.14.1/setup.py
--- old/gaupol-1.13/setup.py    2023-10-08 18:04:09.000000000 +0200
+++ new/gaupol-1.14.1/setup.py  2024-04-02 20:58:43.000000000 +0200
@@ -30,14 +30,24 @@
     extensions are not compiled either.
 """
 
-import distutils
 import glob
+import logging
 import os
 import re
 import shutil
 import sys
 
-from distutils import log
+logging.basicConfig(level=logging.INFO, format="%(levelname)s: %(message)s")
+log = logging.getLogger(__name__)
+log.setLevel(logging.INFO)
+
+try:
+    import distutils
+except ImportError:
+    # Use distutils from setuptools, needed since Python 3.12.
+    # https://docs.python.org/3/whatsnew/3.12.html#distutils
+    import setuptools._distutils as distutils
+
 from distutils.command.clean import clean
 from distutils.command.install import install
 from distutils.command.install_data import install_data
@@ -79,7 +89,7 @@
 
 def run_or_warn(cmd):
     if os.system(cmd) == 0: return
-    log.warn("command {!r} failed".format(cmd))
+    log.warning("command {!r} failed".format(cmd))
 
 
 class Clean(clean):

Reply via email to