Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package retext for openSUSE:Factory checked 
in at 2022-09-14 13:45:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/retext (Old)
 and      /work/SRC/openSUSE:Factory/.retext.new.2083 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "retext"

Wed Sep 14 13:45:11 2022 rev:22 rq:1003452 version:7.2.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/retext/retext.changes    2021-03-17 
20:19:51.123309083 +0100
+++ /work/SRC/openSUSE:Factory/.retext.new.2083/retext.changes  2022-09-14 
13:45:25.825961971 +0200
@@ -1,0 +2,15 @@
+Thu Sep  8 07:03:42 UTC 2022 - Fabian Vogt <fv...@suse.com>
+
+- Update to version 7.2.3:
+  * Fixed TypeError crash with Python 3.10 and Qt WebKit.
+  * Translations updated:
+    + Chinese (China) (contributed by liulitchi).
+    + Portuguese (Brazil) (contributed by Igor Garcia and Christiano Morais).
+    + Slovak (contributed by Jose Riha).
+- Update to version 7.2.2:
+  * Fixed bad Spanish translation causing a crash.
+  * Fixed "TypeError: index 0 has type 'float' but 'int' is expected"
+    with Python 3.10.
+  * Fixed "RuntimeError: ffi_prep_cif_var failed" in XSettings code.
+
+-------------------------------------------------------------------

Old:
----
  retext-7.2.1.tar.gz

New:
----
  retext-7.2.3.tar.gz

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

Other differences:
------------------
++++++ retext.spec ++++++
--- /var/tmp/diff_new_pack.84QGWl/_old  2022-09-14 13:45:26.245963028 +0200
+++ /var/tmp/diff_new_pack.84QGWl/_new  2022-09-14 13:45:26.253963049 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package retext
 #
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           retext
-Version:        7.2.1
+Version:        7.2.3
 Release:        0
 Summary:        Simple editor for Markdown and reStructuredText
 License:        GPL-3.0-or-later

++++++ retext-7.2.1.tar.gz -> retext-7.2.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/retext-7.2.1/.github/workflows/main.yml 
new/retext-7.2.3/.github/workflows/main.yml
--- old/retext-7.2.1/.github/workflows/main.yml 2021-03-06 18:29:07.000000000 
+0100
+++ new/retext-7.2.3/.github/workflows/main.yml 2022-02-03 21:33:29.000000000 
+0100
@@ -12,6 +12,7 @@
           - py38-pyqt514-ubuntu
           - py39-pyqt515-ubuntu
           - py39-pyqt515-windows
+          - py310-pyqt515-ubuntu
         include:
           - environment: py36-pyqt511-ubuntu1804
             python: 3.6
@@ -33,6 +34,10 @@
             python: 3.9
             pyqt: PyQt5
             platform: windows-latest
+          - environment: py310-pyqt515-ubuntu
+            python: '3.10'
+            pyqt: PyQt5
+            platform: ubuntu-latest
     runs-on: ${{ matrix.platform }}
     steps:
       - uses: actions/checkout@v2
@@ -47,9 +52,7 @@
         with:
           python-version: ${{ matrix.python }}
       - name: Install Python dependencies
-        run: |
-          python -m pip install "${{ matrix.pyqt }}" Markdown 
pymdown-extensions docutils chardet Pygments
-          python -m pip install 
git+https://github.com/retext-project/pymarkups.git
+        run: python -m pip install "${{ matrix.pyqt }}" Markdown 
pymdown-extensions docutils chardet Pygments Markups
       - name: Run tests in Xvfb
         if: ${{ startsWith(matrix.platform, 'ubuntu') }}
         run: xvfb-run -a -s "-screen 0 1024x768x24" python -m unittest 
discover -s tests -v
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/retext-7.2.1/ReText/__init__.py 
new/retext-7.2.3/ReText/__init__.py
--- old/retext-7.2.1/ReText/__init__.py 2021-03-06 18:29:07.000000000 +0100
+++ new/retext-7.2.3/ReText/__init__.py 2022-02-03 21:33:29.000000000 +0100
@@ -24,7 +24,7 @@
 from PyQt5.QtCore import QByteArray, QLocale, QSettings, QStandardPaths
 from PyQt5.QtGui import QFont, QFontDatabase
 
-app_version = "7.2.1"
+app_version = "7.2.3"
 
 settings = QSettings('ReText project', 'ReText')
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/retext-7.2.1/ReText/syncscroll.py 
new/retext-7.2.3/ReText/syncscroll.py
--- old/retext-7.2.1/ReText/syncscroll.py       2021-03-06 18:29:07.000000000 
+0100
+++ new/retext-7.2.3/ReText/syncscroll.py       2022-02-03 21:33:29.000000000 
+0100
@@ -134,6 +134,9 @@
         preview_scroll_offset = preview_pixel_to_scroll_to - 
distance_to_top_of_viewport
 
         pos = self.frame.scrollPosition()
+        # scrollPosition() returns QPoint for WebKit and QPointF for WebEngine
+        if isinstance(pos, QPoint):
+            preview_scroll_offset = int(preview_scroll_offset)
         pos.setY(preview_scroll_offset)
         self.frame.setScrollPosition(pos)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/retext-7.2.1/ReText/window.py 
new/retext-7.2.3/ReText/window.py
--- old/retext-7.2.1/ReText/window.py   2021-03-06 18:29:07.000000000 +0100
+++ new/retext-7.2.3/ReText/window.py   2022-02-03 21:33:29.000000000 +0100
@@ -86,7 +86,7 @@
                self.treeView.doubleClicked.connect(self.treeItemSelected)
                self.tabWidget = QTabWidget(self.splitter)
                self.initTabWidget()
-               self.splitter.setSizes([self.width() / 5, self.width() * 4 / 5])
+               self.splitter.setSizes([self.width() // 5, self.width() * 4 // 
5])
                self.initDirectoryTree(globalSettings.showDirectoryTree, 
globalSettings.directoryPath)
                self.setCentralWidget(self.splitter)
                self.tabWidget.currentChanged.connect(self.changeIndex)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/retext-7.2.1/ReText/xsettings.py 
new/retext-7.2.3/ReText/xsettings.py
--- old/retext-7.2.1/ReText/xsettings.py        2021-03-06 18:29:07.000000000 
+0100
+++ new/retext-7.2.3/ReText/xsettings.py        2022-02-03 21:33:29.000000000 
+0100
@@ -81,7 +81,7 @@
        xcb.xcb_get_selection_owner_reply.argtypes = [ctypes.c_void_p, 
_xcb_cookie_t, ctypes.c_void_p]
        xcb.xcb_get_selection_owner_reply.restype = ctypes.POINTER(_xcb_reply_t)
        xcb.xcb_get_property.argtypes = [ctypes.c_void_p, ctypes.c_uint8, 
ctypes.c_uint32, ctypes.c_uint32,
-                                        ctypes.c_uint32, ctypes.c_uint32]
+                                        ctypes.c_uint32, ctypes.c_uint32, 
ctypes.c_uint32]
        xcb.xcb_get_property.restype = _xcb_cookie_t
        xcb.xcb_get_property_reply.argtypes = [ctypes.c_void_p, _xcb_cookie_t, 
ctypes.c_void_p]
        xcb.xcb_get_property_reply.restype = ctypes.c_void_p
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/retext-7.2.1/changelog.md 
new/retext-7.2.3/changelog.md
--- old/retext-7.2.1/changelog.md       2021-03-06 18:29:07.000000000 +0100
+++ new/retext-7.2.3/changelog.md       2022-02-03 21:33:29.000000000 +0100
@@ -1,3 +1,18 @@
+## ReText 7.2.3 (2022-02-03)
+
+* Issues #573, #574 ??? Fixed TypeError crash with Python 3.10 and Qt WebKit.
+* Translations updated:
+    - Chinese (China) (contributed by liulitchi).
+    - Portuguese (Brazil) (contributed by Igor Garcia and Christiano Morais).
+    - Slovak (contributed by Jose Riha).
+
+## ReText 7.2.2 (2021-10-11)
+
+* Issue #552 ??? Fixed bad Spanish translation causing a crash.
+* Fixed `TypeError: index 0 has type 'float' but 'int' is expected` with
+  Python 3.10.
+* Fixed `RuntimeError: ffi_prep_cif_var failed` in XSettings code.
+
 ## ReText 7.2.1 (2021-03-06)
 
 * Issues #255, #492 ??? Improved support for dark Qt themes.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/retext-7.2.1/data/me.mitya57.ReText.appdata.xml 
new/retext-7.2.3/data/me.mitya57.ReText.appdata.xml
--- old/retext-7.2.1/data/me.mitya57.ReText.appdata.xml 2021-03-06 
18:29:07.000000000 +0100
+++ new/retext-7.2.3/data/me.mitya57.ReText.appdata.xml 2022-02-03 
21:33:29.000000000 +0100
@@ -63,6 +63,8 @@
   <update_contact>mitya57_AT_gmail.com</update_contact>
   <content_rating type="oars-1.0"/>
   <releases>
+    <release version="7.2.3" date="2022-02-03"/>
+    <release version="7.2.2" date="2021-10-11"/>
     <release version="7.2.1" date="2021-03-06"/>
     <release version="7.2.0" date="2021-02-08"/>
     <release version="7.1.0" date="2020-04-04"/>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/retext-7.2.1/locale/retext_cs.ts 
new/retext-7.2.3/locale/retext_cs.ts
--- old/retext-7.2.1/locale/retext_cs.ts        2021-03-06 18:29:07.000000000 
+0100
+++ new/retext-7.2.3/locale/retext_cs.ts        2022-02-03 21:33:29.000000000 
+0100
@@ -645,7 +645,7 @@
         <location filename="../ReText/window.py" line="936"/>
         <source>%s files</source>
         <comment>Example of final string: Markdown files</comment>
-        <translation>%s soubory</translation>
+        <translation>Soubory %s</translation>
     </message>
     <message>
         <location filename="../ReText/window.py" line="1011"/>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/retext-7.2.1/locale/retext_es.ts 
new/retext-7.2.3/locale/retext_es.ts
--- old/retext-7.2.1/locale/retext_es.ts        2021-03-06 18:29:07.000000000 
+0100
+++ new/retext-7.2.3/locale/retext_es.ts        2022-02-03 21:33:29.000000000 
+0100
@@ -291,7 +291,9 @@
         <source>The file &apos;%s&apos; does not exist.
 
 Do you want to create it?</source>
-        <translation>??Desea crearlo?</translation>
+        <translation>El archivo &apos;%s&apos; no existe.
+
+??Desea crearlo?</translation>
     </message>
     <message>
         <location filename="../ReText/tab.py" line="530"/>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/retext-7.2.1/locale/retext_ja.ts 
new/retext-7.2.3/locale/retext_ja.ts
--- old/retext-7.2.1/locale/retext_ja.ts        2021-03-06 18:29:07.000000000 
+0100
+++ new/retext-7.2.3/locale/retext_ja.ts        2022-02-03 21:33:29.000000000 
+0100
@@ -800,17 +800,17 @@
     <message>
         <location filename="../ReText/window.py" line="270"/>
         <source>&amp;File</source>
-        <translation>????????????</translation>
+        <translation>????????????(&amp;F)</translation>
     </message>
     <message>
         <location filename="../ReText/window.py" line="271"/>
         <source>&amp;Edit</source>
-        <translation>??????</translation>
+        <translation>??????(&amp;E)</translation>
     </message>
     <message>
         <location filename="../ReText/window.py" line="272"/>
         <source>&amp;Help</source>
-        <translation>?????????</translation>
+        <translation>?????????(&amp;H)</translation>
     </message>
 </context>
 <context>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/retext-7.2.1/locale/retext_pt_BR.ts 
new/retext-7.2.3/locale/retext_pt_BR.ts
--- old/retext-7.2.1/locale/retext_pt_BR.ts     2021-03-06 18:29:07.000000000 
+0100
+++ new/retext-7.2.3/locale/retext_pt_BR.ts     2022-02-03 21:33:29.000000000 
+0100
@@ -25,7 +25,7 @@
     <message>
         <location filename="../ReText/config.py" line="109"/>
         <source>Number of recent documents</source>
-        <translation type="unfinished"></translation>
+        <translation>N??mero de documentos recentes</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
@@ -35,7 +35,7 @@
     <message>
         <location filename="../ReText/config.py" line="109"/>
         <source>Default preview state</source>
-        <translation type="unfinished"></translation>
+        <translation>Estado de previs??o padr??o</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
@@ -99,13 +99,18 @@
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
+        <source>Ordered list mode</source>
+        <translation>Modo de lista ordenada</translation>
+    </message>
+    <message>
+        <location filename="../ReText/config.py" line="109"/>
         <source>Interface</source>
         <translation>Interface</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
         <source>Hide toolbar</source>
-        <translation type="unfinished"></translation>
+        <translation>Ocultar barra de ferramentas</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
@@ -120,12 +125,22 @@
     <message>
         <location filename="../ReText/config.py" line="109"/>
         <source>Hide tabs bar when there is only one tab</source>
-        <translation type="unfinished"></translation>
+        <translation>Ocultar barra de abas quando s?? h?? uma aba</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
         <source>Show full path in window title</source>
-        <translation type="unfinished"></translation>
+        <translation>Mostrar caminho completo no t??tulo da 
janela</translation>
+    </message>
+    <message>
+        <location filename="../ReText/config.py" line="109"/>
+        <source>Show directory tree</source>
+        <translation>Mostrar ??rvore de diret??rios</translation>
+    </message>
+    <message>
+        <location filename="../ReText/config.py" line="109"/>
+        <source>Working directory</source>
+        <translation>Diret??rio de trabalho</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="166"/>
@@ -135,52 +150,37 @@
     <message>
         <location filename="../ReText/config.py" line="185"/>
         <source>Live preview</source>
-        <translation type="unfinished">Visualiza????o autom??tica</translation>
+        <translation>Visualiza????o atual</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="186"/>
         <source>Normal preview</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/config.py" line="109"/>
-        <source>Ordered list mode</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/config.py" line="109"/>
-        <source>Show directory tree</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/config.py" line="109"/>
-        <source>Working directory</source>
-        <translation type="unfinished"></translation>
+        <translation>Visualiza????o normal</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="191"/>
         <source>Disabled</source>
-        <translation type="unfinished"></translation>
+        <translation>Desabilitado</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="192"/>
         <source>Cursor Line</source>
-        <translation type="unfinished"></translation>
+        <translation>Linha de Cursor</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="193"/>
         <source>Wrapped Line</source>
-        <translation type="unfinished"></translation>
+        <translation>Linha Envolvida</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="198"/>
         <source>Increment</source>
-        <translation type="unfinished"></translation>
+        <translation>Incrementar</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="199"/>
         <source>Repeat</source>
-        <translation type="unfinished"></translation>
+        <translation>Repetir</translation>
     </message>
 </context>
 <context>
@@ -188,7 +188,7 @@
     <message>
         <location filename="../ReText/config.py" line="60"/>
         <source>Select directory to open</source>
-        <translation type="unfinished"></translation>
+        <translation>Selecionar diret??rio para abrir</translation>
     </message>
 </context>
 <context>
@@ -212,17 +212,17 @@
     <message>
         <location filename="../ReText/tabledialog.py" line="27"/>
         <source>Insert table</source>
-        <translation type="unfinished"></translation>
+        <translation>Inserir tabela</translation>
     </message>
     <message>
         <location filename="../ReText/tabledialog.py" line="36"/>
         <source>Number of rows</source>
-        <translation type="unfinished"></translation>
+        <translation>N??mero de linhas</translation>
     </message>
     <message>
         <location filename="../ReText/tabledialog.py" line="37"/>
         <source>Number of columns</source>
-        <translation type="unfinished"></translation>
+        <translation>N??mero de colunas</translation>
     </message>
 </context>
 <context>
@@ -284,24 +284,26 @@
     <message>
         <location filename="../ReText/tab.py" line="497"/>
         <source>Create missing file?</source>
-        <translation type="unfinished"></translation>
+        <translation>Criar arquivo ausente?</translation>
     </message>
     <message>
         <location filename="../ReText/tab.py" line="497"/>
         <source>The file &apos;%s&apos; does not exist.
 
 Do you want to create it?</source>
-        <translation type="unfinished"></translation>
+        <translation>O arquivo &apos;%s&apos; n??o existe.
+
+Deseja cri??-lo?</translation>
     </message>
     <message>
         <location filename="../ReText/tab.py" line="530"/>
         <source>File could not be created</source>
-        <translation type="unfinished"></translation>
+        <translation>Arquivo n??o pode ser criado</translation>
     </message>
     <message>
         <location filename="../ReText/tab.py" line="530"/>
         <source>Could not create file &apos;%s&apos;: %s</source>
-        <translation type="unfinished"></translation>
+        <translation>N??o foi poss??vel criar arquivo &apos;%s&apos;: 
%s</translation>
     </message>
 </context>
 <context>
@@ -399,7 +401,7 @@
     <message>
         <location filename="../ReText/window.py" line="719"/>
         <source>Go to line</source>
-        <translation type="unfinished"></translation>
+        <translation>Ir para a linha</translation>
     </message>
     <message>
         <location filename="../ReText/window.py" line="137"/>
@@ -414,7 +416,7 @@
     <message>
         <location filename="../ReText/window.py" line="151"/>
         <source>Insert table</source>
-        <translation type="unfinished"></translation>
+        <translation>Inserir tabela</translation>
     </message>
     <message>
         <location filename="../ReText/window.py" line="153"/>
@@ -422,6 +424,11 @@
         <translation>Modo de edi????o de tabelas</translation>
     </message>
     <message>
+        <location filename="../ReText/window.py" line="156"/>
+        <source>Insert images by file path</source>
+        <translation>Inserir imagens por caminho de arquivo</translation>
+    </message>
+    <message>
         <location filename="../ReText/window.py" line="159"/>
         <source>FakeVim mode</source>
         <translation>Modo de entrada FakeVim</translation>
@@ -469,17 +476,17 @@
     <message>
         <location filename="../ReText/window.py" line="187"/>
         <source>Paste image</source>
-        <translation type="unfinished"></translation>
+        <translation>Colar imagem</translation>
     </message>
     <message>
         <location filename="../ReText/window.py" line="189"/>
         <source>Move line up</source>
-        <translation type="unfinished"></translation>
+        <translation>Mover para cima</translation>
     </message>
     <message>
         <location filename="../ReText/window.py" line="191"/>
         <source>Move line down</source>
-        <translation type="unfinished"></translation>
+        <translation>Mover para baixo</translation>
     </message>
     <message>
         <location filename="../ReText/window.py" line="200"/>
@@ -629,7 +636,7 @@
     <message>
         <location filename="../ReText/window.py" line="719"/>
         <source>Type the line number</source>
-        <translation type="unfinished"></translation>
+        <translation>Digite o n??mero da linha</translation>
     </message>
     <message>
         <location filename="../ReText/window.py" line="755"/>
@@ -700,7 +707,7 @@
     <message>
         <location filename="../ReText/window.py" line="1034"/>
         <source>Unrecognized paperSize setting &quot;%s&quot;.</source>
-        <translation type="unfinished"></translation>
+        <translation>Ajuste de tamanho do papel n??o reconhecido 
&quot;%s&quot;.</translation>
     </message>
     <message>
         <location filename="../ReText/window.py" line="1060"/>
@@ -776,6 +783,11 @@
         <translation>C??digo HTML</translation>
     </message>
     <message>
+        <location filename="../ReText/window.py" line="1289"/>
+        <source>Select one or several images to open</source>
+        <translation>Selecione uma ou v??rias imagens para abrir</translation>
+    </message>
+    <message>
         <location filename="../ReText/window.py" line="1307"/>
         <source>ReText %s (using PyMarkups %s)</source>
         <translation>ReText %s (usando PyMarkups %s)</translation>
@@ -800,16 +812,6 @@
         <source>reStructuredText syntax</source>
         <translation>Sintaxe reStructuredText</translation>
     </message>
-    <message>
-        <location filename="../ReText/window.py" line="156"/>
-        <source>Insert images by file path</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="1289"/>
-        <source>Select one or several images to open</source>
-        <translation type="unfinished"></translation>
-    </message>
 </context>
 <context>
     <name>TextInfoArea</name>
@@ -825,17 +827,17 @@
     <message>
         <location filename="../ReText/__main__.py" line="88"/>
         <source>Open the files in preview mode</source>
-        <translation type="unfinished"></translation>
+        <translation>Abra os arquivos no modo de visualiza????o</translation>
     </message>
     <message>
         <location filename="../ReText/__main__.py" line="90"/>
         <source>Create a new window even if there is an existing one</source>
-        <translation type="unfinished"></translation>
+        <translation>Criar uma nova janela, mesmo que j?? exista uma 
janela</translation>
     </message>
     <message>
         <location filename="../ReText/__main__.py" line="94"/>
         <source>List of files to open</source>
-        <translation type="unfinished"></translation>
+        <translation>Lista de arquivos para abrir</translation>
     </message>
 </context>
 </TS>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/retext-7.2.1/locale/retext_sk.ts 
new/retext-7.2.3/locale/retext_sk.ts
--- old/retext-7.2.1/locale/retext_sk.ts        2021-03-06 18:29:07.000000000 
+0100
+++ new/retext-7.2.3/locale/retext_sk.ts        2022-02-03 21:33:29.000000000 
+0100
@@ -3,78 +3,83 @@
 <context>
     <name>ConfigDialog</name>
     <message>
+        <location filename="../ReText/config.py" line="91"/>
+        <source>Using configuration file at:</source>
+        <translation>S??bor s nastaveniami:</translation>
+    </message>
+    <message>
         <location filename="../ReText/config.py" line="109"/>
         <source>Behavior</source>
-        <translation type="unfinished"></translation>
+        <translation>Spr??vanie</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
         <source>Automatically save documents</source>
-        <translation type="unfinished"></translation>
+        <translation>Automaticky uklada?? dokumenty</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
-        <source>Restore window geometry</source>
-        <translation type="unfinished"></translation>
+        <source>Automatically open last documents on startup</source>
+        <translation>Pri spusten?? automaticky otvori?? posledn?? 
dokumenty</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
-        <source>Open external links in ReText window</source>
-        <translation type="unfinished"></translation>
+        <source>Number of recent documents</source>
+        <translation>Po??et posledn??ch dokumentov</translation>
     </message>
     <message>
-        <location filename="../ReText/config.py" line="184"/>
-        <source>Editor</source>
-        <translation type="unfinished"></translation>
+        <location filename="../ReText/config.py" line="109"/>
+        <source>Restore window geometry</source>
+        <translation>Obnovi?? umiestnenie okna</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
-        <source>Highlight current line</source>
-        <translation type="unfinished"></translation>
+        <source>Default preview state</source>
+        <translation>Predvolen?? n??h??ad</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
-        <source>Show line numbers</source>
-        <translation type="unfinished"></translation>
+        <source>Open external links in ReText window</source>
+        <translation>Otv??ra?? extern?? odkazy v okne ReText-u</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
-        <source>Tab key inserts spaces</source>
-        <translation type="unfinished"></translation>
+        <source>Markdown syntax extensions (comma-separated)</source>
+        <translation>Roz????renia syntaxe markdown (??iarkou 
oddelen??)</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
-        <source>Tabulation width</source>
+        <source>Enable synchronized scrolling for Markdown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ReText/config.py" line="109"/>
-        <source>Interface</source>
-        <translation type="unfinished"></translation>
+        <location filename="../ReText/config.py" line="184"/>
+        <source>Editor</source>
+        <translation>Editor</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
-        <source>Icon theme name</source>
-        <translation type="unfinished"></translation>
+        <source>Highlight current line</source>
+        <translation>Zv??razni?? aktu??lny riadok</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
-        <source>Stylesheet file</source>
-        <translation type="unfinished"></translation>
+        <source>Show line numbers</source>
+        <translation>Zobrazi?? ????sla riadkov</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
-        <source>Markdown syntax extensions (comma-separated)</source>
-        <translation type="unfinished"></translation>
+        <source>Line numbers are relative to current line</source>
+        <translation>????slovanie riadkov za??ne na aktu??lnom 
riadku</translation>
     </message>
     <message>
-        <location filename="../ReText/config.py" line="166"/>
-        <source>Help</source>
-        <translation type="unfinished">Pomocn??k</translation>
+        <location filename="../ReText/config.py" line="109"/>
+        <source>Tab key inserts spaces</source>
+        <translation>Kl??ves Tab vklad?? medzery</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
-        <source>Enable synchronized scrolling for Markdown</source>
+        <source>Tabulation width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -84,43 +89,38 @@
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
-        <source>Automatically open last documents on startup</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/config.py" line="91"/>
-        <source>Using configuration file at:</source>
+        <source>Enable soft wrap</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
-        <source>Number of recent documents</source>
-        <translation type="unfinished"></translation>
+        <source>Show document stats</source>
+        <translation>Zobrazi?? ??tatistiku dokumentu</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
-        <source>Default preview state</source>
-        <translation type="unfinished"></translation>
+        <source>Ordered list mode</source>
+        <translation>Re??im zoraden??ho zoznamu</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
-        <source>Line numbers are relative to current line</source>
-        <translation type="unfinished"></translation>
+        <source>Interface</source>
+        <translation>Rozhranie</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
-        <source>Enable soft wrap</source>
-        <translation type="unfinished"></translation>
+        <source>Hide toolbar</source>
+        <translation>Skry?? panel n??strojov</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
-        <source>Show document stats</source>
-        <translation type="unfinished"></translation>
+        <source>Icon theme name</source>
+        <translation>N??zov mot??vu ikon</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
-        <source>Hide toolbar</source>
-        <translation type="unfinished"></translation>
+        <source>Stylesheet file</source>
+        <translation>S??bor so ??t??lom</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
@@ -133,34 +133,34 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ReText/config.py" line="185"/>
-        <source>Live preview</source>
-        <translation type="unfinished">Priebe??n?? n??h??ad</translation>
+        <location filename="../ReText/config.py" line="109"/>
+        <source>Show directory tree</source>
+        <translation>Zobrazi?? adres??rov?? strom</translation>
     </message>
     <message>
-        <location filename="../ReText/config.py" line="186"/>
-        <source>Normal preview</source>
-        <translation type="unfinished"></translation>
+        <location filename="../ReText/config.py" line="109"/>
+        <source>Working directory</source>
+        <translation>Pracovn?? adres??r</translation>
     </message>
     <message>
-        <location filename="../ReText/config.py" line="109"/>
-        <source>Ordered list mode</source>
-        <translation type="unfinished"></translation>
+        <location filename="../ReText/config.py" line="166"/>
+        <source>Help</source>
+        <translation>Pomocn??k</translation>
     </message>
     <message>
-        <location filename="../ReText/config.py" line="109"/>
-        <source>Show directory tree</source>
-        <translation type="unfinished"></translation>
+        <location filename="../ReText/config.py" line="185"/>
+        <source>Live preview</source>
+        <translation>Priebe??n?? n??h??ad</translation>
     </message>
     <message>
-        <location filename="../ReText/config.py" line="109"/>
-        <source>Working directory</source>
-        <translation type="unfinished"></translation>
+        <location filename="../ReText/config.py" line="186"/>
+        <source>Normal preview</source>
+        <translation>Norm??lny n??h??ad</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="191"/>
         <source>Disabled</source>
-        <translation type="unfinished"></translation>
+        <translation>Vypnut??</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="192"/>
@@ -175,12 +175,12 @@
     <message>
         <location filename="../ReText/config.py" line="198"/>
         <source>Increment</source>
-        <translation type="unfinished"></translation>
+        <translation>Pr??rastok</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="199"/>
         <source>Repeat</source>
-        <translation type="unfinished"></translation>
+        <translation>Opakova??</translation>
     </message>
 </context>
 <context>
@@ -188,7 +188,7 @@
     <message>
         <location filename="../ReText/config.py" line="60"/>
         <source>Select directory to open</source>
-        <translation type="unfinished"></translation>
+        <translation>Vyberte adres??r na otvorenie</translation>
     </message>
 </context>
 <context>
@@ -196,7 +196,7 @@
     <message>
         <location filename="../ReText/config.py" line="35"/>
         <source>(none)</source>
-        <translation type="unfinished"></translation>
+        <translation>(??iadny)</translation>
     </message>
 </context>
 <context>
@@ -204,7 +204,7 @@
     <message>
         <location filename="../ReText/config.py" line="52"/>
         <source>Select file to open</source>
-        <translation type="unfinished"></translation>
+        <translation>Vyberte s??bor na otvorenie</translation>
     </message>
 </context>
 <context>
@@ -212,17 +212,17 @@
     <message>
         <location filename="../ReText/tabledialog.py" line="27"/>
         <source>Insert table</source>
-        <translation type="unfinished"></translation>
+        <translation>Vlo??i?? tabu??ku</translation>
     </message>
     <message>
         <location filename="../ReText/tabledialog.py" line="36"/>
         <source>Number of rows</source>
-        <translation type="unfinished"></translation>
+        <translation>Po??et riadkov</translation>
     </message>
     <message>
         <location filename="../ReText/tabledialog.py" line="37"/>
         <source>Number of columns</source>
-        <translation type="unfinished"></translation>
+        <translation>Po??et st??pcov</translation>
     </message>
 </context>
 <context>
@@ -230,12 +230,12 @@
     <message>
         <location filename="../ReText/dialogs.py" line="44"/>
         <source>Enter locale name (example: en_US)</source>
-        <translation type="unfinished"></translation>
+        <translation>Zadajte n??zov lokaliz??cie (napr.: sk_SK)</translation>
     </message>
     <message>
         <location filename="../ReText/dialogs.py" line="50"/>
         <source>Set as default</source>
-        <translation type="unfinished"></translation>
+        <translation>Nastavi?? ako predvolen??</translation>
     </message>
 </context>
 <context>
@@ -248,25 +248,25 @@
     <message>
         <location filename="../ReText/fakevimeditor.py" line="118"/>
         <source>Information</source>
-        <translation type="unfinished"></translation>
+        <translation>Inform??cie</translation>
     </message>
 </context>
 <context>
     <name>ReTextEdit</name>
     <message>
+        <location filename="../ReText/editor.py" line="248"/>
+        <source>Add to dictionary</source>
+        <translation>Prida?? do slovn??ku</translation>
+    </message>
+    <message>
         <location filename="../ReText/editor.py" line="460"/>
         <source>Save image</source>
-        <translation type="unfinished"></translation>
+        <translation>Ulo??i?? obr??zok</translation>
     </message>
     <message>
         <location filename="../ReText/editor.py" line="460"/>
         <source>Images (*.png *.jpg)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/editor.py" line="248"/>
-        <source>Add to dictionary</source>
-        <translation type="unfinished"></translation>
+        <translation>Obr??zky (*.png *.jpg)</translation>
     </message>
 </context>
 <context>
@@ -284,7 +284,7 @@
     <message>
         <location filename="../ReText/tab.py" line="497"/>
         <source>Create missing file?</source>
-        <translation type="unfinished"></translation>
+        <translation>Vytvori?? ch??baj??ci s??bor?</translation>
     </message>
     <message>
         <location filename="../ReText/tab.py" line="497"/>
@@ -296,12 +296,12 @@
     <message>
         <location filename="../ReText/tab.py" line="530"/>
         <source>File could not be created</source>
-        <translation type="unfinished"></translation>
+        <translation>S??bor sa nepodarilo vytvori??</translation>
     </message>
     <message>
         <location filename="../ReText/tab.py" line="530"/>
         <source>Could not create file &apos;%s&apos;: %s</source>
-        <translation type="unfinished"></translation>
+        <translation>Nepodarilo sa vytvori?? s??bor &apos;%s&apos;: 
%s</translation>
     </message>
 </context>
 <context>
@@ -332,6 +332,16 @@
         <translation>Otvori??</translation>
     </message>
     <message>
+        <location filename="../ReText/window.py" line="106"/>
+        <source>Set encoding</source>
+        <translation>Nastavi?? k??dovanie</translation>
+    </message>
+    <message>
+        <location filename="../ReText/window.py" line="1231"/>
+        <source>Reload</source>
+        <translation>Znovu na????ta??</translation>
+    </message>
+    <message>
         <location filename="../ReText/window.py" line="112"/>
         <source>Save</source>
         <translation>Ulo??i??</translation>
@@ -342,6 +352,21 @@
         <translation>Ulo??i?? ako</translation>
     </message>
     <message>
+        <location filename="../ReText/window.py" line="117"/>
+        <source>Next tab</source>
+        <translation>??al??ia karta</translation>
+    </message>
+    <message>
+        <location filename="../ReText/window.py" line="119"/>
+        <source>Previous tab</source>
+        <translation>Predch??dzaj??ca karta</translation>
+    </message>
+    <message>
+        <location filename="../ReText/window.py" line="121"/>
+        <source>Close tab</source>
+        <translation>Zavrie?? kartu</translation>
+    </message>
+    <message>
         <location filename="../ReText/window.py" line="123"/>
         <source>Print</source>
         <translation>Tla??i??</translation>
@@ -357,11 +382,26 @@
         <translation>Zobrazi?? HTML k??d</translation>
     </message>
     <message>
+        <location filename="../ReText/window.py" line="128"/>
+        <source>Change editor font</source>
+        <translation>Zmeni?? p??smo editora</translation>
+    </message>
+    <message>
+        <location filename="../ReText/window.py" line="130"/>
+        <source>Change preview font</source>
+        <translation>Zmeni?? p??smo n??h??adu</translation>
+    </message>
+    <message>
         <location filename="../ReText/window.py" line="132"/>
         <source>Find text</source>
         <translation>N??js?? text</translation>
     </message>
     <message>
+        <location filename="../ReText/window.py" line="719"/>
+        <source>Go to line</source>
+        <translation>Prejs?? na riadok</translation>
+    </message>
+    <message>
         <location filename="../ReText/window.py" line="137"/>
         <source>Preview</source>
         <translation>N??h??ad</translation>
@@ -372,11 +412,36 @@
         <translation>Priebe??n?? n??h??ad</translation>
     </message>
     <message>
+        <location filename="../ReText/window.py" line="151"/>
+        <source>Insert table</source>
+        <translation>Vlo??i?? tabu??ku</translation>
+    </message>
+    <message>
+        <location filename="../ReText/window.py" line="153"/>
+        <source>Table editing mode</source>
+        <translation>Re??im ??pravy tabu??ky</translation>
+    </message>
+    <message>
+        <location filename="../ReText/window.py" line="156"/>
+        <source>Insert images by file path</source>
+        <translation>Vlo??i?? obr??zky zadan??m cesty</translation>
+    </message>
+    <message>
+        <location filename="../ReText/window.py" line="159"/>
+        <source>FakeVim mode</source>
+        <translation>Re??im FakeVim</translation>
+    </message>
+    <message>
         <location filename="../ReText/window.py" line="164"/>
         <source>Fullscreen mode</source>
         <translation>Celoobrazovkov?? re??im</translation>
     </message>
     <message>
+        <location filename="../ReText/window.py" line="671"/>
+        <source>Preferences</source>
+        <translation>Predvo??by</translation>
+    </message>
+    <message>
         <location filename="../ReText/window.py" line="174"/>
         <source>Quit</source>
         <translation>Quit</translation>
@@ -407,6 +472,21 @@
         <translation>Vlo??i??</translation>
     </message>
     <message>
+        <location filename="../ReText/window.py" line="187"/>
+        <source>Paste image</source>
+        <translation>Prilepi?? obr??zok</translation>
+    </message>
+    <message>
+        <location filename="../ReText/window.py" line="189"/>
+        <source>Move line up</source>
+        <translation>Presun???? riadok vy????ie</translation>
+    </message>
+    <message>
+        <location filename="../ReText/window.py" line="191"/>
+        <source>Move line down</source>
+        <translation>Presun???? riadok ni????ie</translation>
+    </message>
+    <message>
         <location filename="../ReText/window.py" line="200"/>
         <source>Enable</source>
         <translation>Povoli??</translation>
@@ -422,6 +502,16 @@
         <translation>Pou??i?? k vykres??ovaniu WebKit</translation>
     </message>
     <message>
+        <location filename="../ReText/window.py" line="207"/>
+        <source>Use WebEngine (Chromium) renderer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ReText/window.py" line="212"/>
+        <source>Show directory</source>
+        <translation>Zobrazi?? prie??inok</translation>
+    </message>
+    <message>
         <location filename="../ReText/window.py" line="213"/>
         <source>Next</source>
         <translation>Nasleduj??ci</translation>
@@ -432,11 +522,31 @@
         <translation>Predch??dzaj??ci</translation>
     </message>
     <message>
+        <location filename="../ReText/window.py" line="217"/>
+        <source>Replace</source>
+        <translation>Nahradi??</translation>
+    </message>
+    <message>
+        <location filename="../ReText/window.py" line="219"/>
+        <source>Replace all</source>
+        <translation>Nahradi?? v??etko</translation>
+    </message>
+    <message>
+        <location filename="../ReText/window.py" line="222"/>
+        <source>Close</source>
+        <translation>Zavrie??</translation>
+    </message>
+    <message>
         <location filename="../ReText/window.py" line="226"/>
         <source>Get help online</source>
         <translation>Z??ska?? online pomoc</translation>
     </message>
     <message>
+        <location filename="../ReText/window.py" line="227"/>
+        <source>About ReText</source>
+        <translation>O programe ReText</translation>
+    </message>
+    <message>
         <location filename="../ReText/window.py" line="230"/>
         <source>About Qt</source>
         <translation>O Qt</translation>
@@ -457,6 +567,11 @@
         <translation>Pod??iarknut??</translation>
     </message>
     <message>
+        <location filename="../ReText/window.py" line="325"/>
+        <source>Formatting</source>
+        <translation>Form??tovanie</translation>
+    </message>
+    <message>
         <location filename="../ReText/window.py" line="265"/>
         <source>Symbols</source>
         <translation>Symboly</translation>
@@ -492,9 +607,9 @@
         <translation>Kontrola pravopisu</translation>
     </message>
     <message>
-        <location filename="../ReText/window.py" line="325"/>
-        <source>Formatting</source>
-        <translation>Form??tovanie</translation>
+        <location filename="../ReText/window.py" line="322"/>
+        <source>Default markup</source>
+        <translation>Predvolen?? markup syntax</translation>
     </message>
     <message>
         <location filename="../ReText/window.py" line="372"/>
@@ -502,6 +617,11 @@
         <translation>Vyh??ad??vanie</translation>
     </message>
     <message>
+        <location filename="../ReText/window.py" line="375"/>
+        <source>Replace with</source>
+        <translation>Nahradi??</translation>
+    </message>
+    <message>
         <location filename="../ReText/window.py" line="377"/>
         <source>Case sensitively</source>
         <translation>Rozli??ovanie ve??kosti p??smen</translation>
@@ -512,19 +632,19 @@
         <translation>Nov?? dokument</translation>
     </message>
     <message>
+        <location filename="../ReText/window.py" line="719"/>
+        <source>Type the line number</source>
+        <translation>Zadajte ????slo riadka</translation>
+    </message>
+    <message>
         <location filename="../ReText/window.py" line="755"/>
         <source>Please, save the file somewhere.</source>
         <translation>Ulo??te pros??m niekam s??bor.</translation>
     </message>
     <message>
-        <location filename="../ReText/window.py" line="212"/>
-        <source>Show directory</source>
-        <translation>Zobrazi?? prie??inok</translation>
-    </message>
-    <message>
         <location filename="../ReText/window.py" line="871"/>
         <source>Select one or several files to open</source>
-        <translation>Vyberte jeden alebo viac s??borov k 
otvoreniu</translation>
+        <translation>Vyberte jeden alebo viac s??borov na 
otvorenie</translation>
     </message>
     <message>
         <location filename="../ReText/window.py" line="1289"/>
@@ -534,7 +654,12 @@
     <message>
         <location filename="../ReText/window.py" line="1289"/>
         <source>All files (*)</source>
-        <translation>V??etky s??bory (*.*)</translation>
+        <translation>V??etky s??bory (*)</translation>
+    </message>
+    <message>
+        <location filename="../ReText/window.py" line="910"/>
+        <source>Select file encoding from the list:</source>
+        <translation>Vyberte k??dovanie s??boru zo zoznamu:</translation>
     </message>
     <message>
         <location filename="../ReText/window.py" line="933"/>
@@ -542,11 +667,22 @@
         <translation>Jednoduch?? text (*.txt)</translation>
     </message>
     <message>
+        <location filename="../ReText/window.py" line="936"/>
+        <source>%s files</source>
+        <comment>Example of final string: Markdown files</comment>
+        <translation>S??bory %s</translation>
+    </message>
+    <message>
         <location filename="../ReText/window.py" line="1011"/>
         <source>Save file</source>
         <translation>Ulo??i?? s??bor</translation>
     </message>
     <message>
+        <location filename="../ReText/window.py" line="956"/>
+        <source>Cannot save to file which is open in another tab!</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ReText/window.py" line="979"/>
         <source>Cannot save to file because it is read-only!</source>
         <translation>Nie je mo??n?? ulo??i??, preto??e s??bor je len nna 
????tanie!</translation>
@@ -567,6 +703,11 @@
         <translation>HTML s??bory (*.html *.htm)</translation>
     </message>
     <message>
+        <location filename="../ReText/window.py" line="1034"/>
+        <source>Unrecognized paperSize setting &quot;%s&quot;.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ReText/window.py" line="1060"/>
         <source>Export document to PDF</source>
         <translation>Exportova?? dokument do PDF</translation>
@@ -592,92 +733,19 @@
         <translation>Nepodarilo sa spusti?? pr??kaz:</translation>
     </message>
     <message>
-        <location filename="../ReText/window.py" line="1251"/>
-        <source>The document has been modified.
-Do you want to save your changes?</source>
-        <translation>Dokument bol zmenen??.
-Chcete ulo??i?? va??e zmeny?</translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="1279"/>
-        <source>HTML code</source>
-        <translation>HTML k??d</translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="1307"/>
-        <source>Author: Dmitry Shachnev, 2011</source>
-        <translation>Autor: Dmitry Shachnev, 2011</translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="1307"/>
-        <source>Markdown syntax</source>
-        <translation>Markdown syntax</translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="227"/>
-        <source>About ReText</source>
-        <translation>O ReText</translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="936"/>
-        <source>%s files</source>
-        <comment>Example of final string: Markdown files</comment>
-        <translation>S??bory %s</translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="1307"/>
-        <source>Simple but powerful editor for Markdown and 
reStructuredText</source>
-        <translation>Jednoduch?? a pritom efekt??vny editor pre Markdown a 
reStructuredText</translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="1307"/>
-        <source>reStructuredText syntax</source>
-        <translation>reStructuredText syntax</translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="322"/>
-        <source>Default markup</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="671"/>
-        <source>Preferences</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="106"/>
-        <source>Set encoding</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="910"/>
-        <source>Select file encoding from the list:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="1231"/>
-        <source>Reload</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="117"/>
-        <source>Next tab</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="119"/>
-        <source>Previous tab</source>
-        <translation type="unfinished"></translation>
+        <location filename="../ReText/window.py" line="1172"/>
+        <source>Alt text</source>
+        <translation>Alt text</translation>
     </message>
     <message>
-        <location filename="../ReText/window.py" line="153"/>
-        <source>Table editing mode</source>
-        <translation type="unfinished"></translation>
+        <location filename="../ReText/window.py" line="1173"/>
+        <source>URL</source>
+        <translation>URL adresa</translation>
     </message>
     <message>
-        <location filename="../ReText/window.py" line="159"/>
-        <source>FakeVim mode</source>
-        <translation type="unfinished"></translation>
+        <location filename="../ReText/window.py" line="1173"/>
+        <source>Link text</source>
+        <translation>Text odkazu</translation>
     </message>
     <message>
         <location filename="../ReText/window.py" line="1214"/>
@@ -698,114 +766,46 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ReText/window.py" line="128"/>
-        <source>Change editor font</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="130"/>
-        <source>Change preview font</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="1307"/>
-        <source>ReText %s (using PyMarkups %s)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="222"/>
-        <source>Close</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="1172"/>
-        <source>Alt text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="1173"/>
-        <source>URL</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="1173"/>
-        <source>Link text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="217"/>
-        <source>Replace</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="219"/>
-        <source>Replace all</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="375"/>
-        <source>Replace with</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="956"/>
-        <source>Cannot save to file which is open in another tab!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="207"/>
-        <source>Use WebEngine (Chromium) renderer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="121"/>
-        <source>Close tab</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="719"/>
-        <source>Go to line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="151"/>
-        <source>Insert table</source>
-        <translation type="unfinished"></translation>
+        <location filename="../ReText/window.py" line="1251"/>
+        <source>The document has been modified.
+Do you want to save your changes?</source>
+        <translation>Dokument bol zmenen??.
+Chcete ulo??i?? va??e zmeny?</translation>
     </message>
     <message>
-        <location filename="../ReText/window.py" line="156"/>
-        <source>Insert images by file path</source>
-        <translation type="unfinished"></translation>
+        <location filename="../ReText/window.py" line="1279"/>
+        <source>HTML code</source>
+        <translation>HTML k??d</translation>
     </message>
     <message>
-        <location filename="../ReText/window.py" line="187"/>
-        <source>Paste image</source>
-        <translation type="unfinished"></translation>
+        <location filename="../ReText/window.py" line="1289"/>
+        <source>Select one or several images to open</source>
+        <translation>Vyberte jeden alebo viac obr??zkov na 
otvorenie</translation>
     </message>
     <message>
-        <location filename="../ReText/window.py" line="189"/>
-        <source>Move line up</source>
+        <location filename="../ReText/window.py" line="1307"/>
+        <source>ReText %s (using PyMarkups %s)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ReText/window.py" line="191"/>
-        <source>Move line down</source>
-        <translation type="unfinished"></translation>
+        <location filename="../ReText/window.py" line="1307"/>
+        <source>Simple but powerful editor for Markdown and 
reStructuredText</source>
+        <translation>Jednoduch??, no efekt??vny editor pre Markdown a 
ReStructuredText</translation>
     </message>
     <message>
-        <location filename="../ReText/window.py" line="719"/>
-        <source>Type the line number</source>
-        <translation type="unfinished"></translation>
+        <location filename="../ReText/window.py" line="1307"/>
+        <source>Author: Dmitry Shachnev, 2011</source>
+        <translation>Autor: Dmitry Shachnev, 2011</translation>
     </message>
     <message>
-        <location filename="../ReText/window.py" line="1034"/>
-        <source>Unrecognized paperSize setting &quot;%s&quot;.</source>
-        <translation type="unfinished"></translation>
+        <location filename="../ReText/window.py" line="1307"/>
+        <source>Markdown syntax</source>
+        <translation>Syntax Markdown</translation>
     </message>
     <message>
-        <location filename="../ReText/window.py" line="1289"/>
-        <source>Select one or several images to open</source>
-        <translation type="unfinished"></translation>
+        <location filename="../ReText/window.py" line="1307"/>
+        <source>reStructuredText syntax</source>
+        <translation>Syntax reStructuredText</translation>
     </message>
 </context>
 <context>
@@ -832,7 +832,7 @@
     <message>
         <location filename="../ReText/__main__.py" line="94"/>
         <source>List of files to open</source>
-        <translation type="unfinished"></translation>
+        <translation>Zoznam s??borov na otvorenie</translation>
     </message>
 </context>
 </TS>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/retext-7.2.1/locale/retext_zh_CN.ts 
new/retext-7.2.3/locale/retext_zh_CN.ts
--- old/retext-7.2.1/locale/retext_zh_CN.ts     2021-03-06 18:29:07.000000000 
+0100
+++ new/retext-7.2.3/locale/retext_zh_CN.ts     2022-02-03 21:33:29.000000000 
+0100
@@ -99,6 +99,11 @@
     </message>
     <message>
         <location filename="../ReText/config.py" line="109"/>
+        <source>Ordered list mode</source>
+        <translation>??????????????????</translation>
+    </message>
+    <message>
+        <location filename="../ReText/config.py" line="109"/>
         <source>Interface</source>
         <translation>????????????</translation>
     </message>
@@ -128,6 +133,16 @@
         <translation>??????????????????????????????</translation>
     </message>
     <message>
+        <location filename="../ReText/config.py" line="109"/>
+        <source>Show directory tree</source>
+        <translation>?????????????????????</translation>
+    </message>
+    <message>
+        <location filename="../ReText/config.py" line="109"/>
+        <source>Working directory</source>
+        <translation>????????????</translation>
+    </message>
+    <message>
         <location filename="../ReText/config.py" line="166"/>
         <source>Help</source>
         <translation>??????</translation>
@@ -143,44 +158,29 @@
         <translation>????????????</translation>
     </message>
     <message>
-        <location filename="../ReText/config.py" line="109"/>
-        <source>Ordered list mode</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/config.py" line="109"/>
-        <source>Show directory tree</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ReText/config.py" line="109"/>
-        <source>Working directory</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ReText/config.py" line="191"/>
         <source>Disabled</source>
-        <translation type="unfinished"></translation>
+        <translation>??????</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="192"/>
         <source>Cursor Line</source>
-        <translation type="unfinished"></translation>
+        <translation>?????????</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="193"/>
         <source>Wrapped Line</source>
-        <translation type="unfinished"></translation>
+        <translation>?????????</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="198"/>
         <source>Increment</source>
-        <translation type="unfinished"></translation>
+        <translation>??????</translation>
     </message>
     <message>
         <location filename="../ReText/config.py" line="199"/>
         <source>Repeat</source>
-        <translation type="unfinished"></translation>
+        <translation>??????</translation>
     </message>
 </context>
 <context>
@@ -188,7 +188,7 @@
     <message>
         <location filename="../ReText/config.py" line="60"/>
         <source>Select directory to open</source>
-        <translation type="unfinished"></translation>
+        <translation>????????????????????????</translation>
     </message>
 </context>
 <context>
@@ -578,6 +578,21 @@
         <translation>??????</translation>
     </message>
     <message>
+        <location filename="../ReText/window.py" line="270"/>
+        <source>&amp;File</source>
+        <translation>??????(&amp;F)</translation>
+    </message>
+    <message>
+        <location filename="../ReText/window.py" line="271"/>
+        <source>&amp;Edit</source>
+        <translation>??????(&amp;E)</translation>
+    </message>
+    <message>
+        <location filename="../ReText/window.py" line="272"/>
+        <source>&amp;Help</source>
+        <translation>??????(&amp;H)</translation>
+    </message>
+    <message>
         <location filename="../ReText/window.py" line="275"/>
         <source>Open recent</source>
         <translation>??????????????????</translation>
@@ -795,21 +810,6 @@
         <source>reStructuredText syntax</source>
         <translation>reStructuredText ??????</translation>
     </message>
-    <message>
-        <location filename="../ReText/window.py" line="270"/>
-        <source>&amp;File</source>
-        <translation>??????</translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="271"/>
-        <source>&amp;Edit</source>
-        <translation>??????</translation>
-    </message>
-    <message>
-        <location filename="../ReText/window.py" line="272"/>
-        <source>&amp;Help</source>
-        <translation>??????</translation>
-    </message>
 </context>
 <context>
     <name>TextInfoArea</name>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/retext-7.2.1/setup.py new/retext-7.2.3/setup.py
--- old/retext-7.2.1/setup.py   2021-03-06 18:29:07.000000000 +0100
+++ new/retext-7.2.3/setup.py   2022-02-03 21:33:29.000000000 +0100
@@ -1,6 +1,6 @@
 #!/usr/bin/env python3
 
-VERSION = '7.2.1'
+VERSION = '7.2.3'
 
 long_description = '''\
 ReText is simple text editor that supports Markdown and reStructuredText

Reply via email to