Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ark for openSUSE:Factory checked in 
at 2022-10-15 16:33:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ark (Old)
 and      /work/SRC/openSUSE:Factory/.ark.new.2275 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ark"

Sat Oct 15 16:33:38 2022 rev:149 rq:1010655 version:22.08.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/ark/ark.changes  2022-09-09 18:23:07.432193625 
+0200
+++ /work/SRC/openSUSE:Factory/.ark.new.2275/ark.changes        2022-10-15 
16:33:47.189624122 +0200
@@ -1,0 +2,8 @@
+Tue Oct 11 14:31:45 UTC 2022 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+-------------------------------------------------------------------

Old:
----
  ark-22.08.1.tar.xz
  ark-22.08.1.tar.xz.sig

New:
----
  ark-22.08.2.tar.xz
  ark-22.08.2.tar.xz.sig

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

Other differences:
------------------
++++++ ark.spec ++++++
--- /var/tmp/diff_new_pack.jtbNPR/_old  2022-10-15 16:33:47.765625505 +0200
+++ /var/tmp/diff_new_pack.jtbNPR/_new  2022-10-15 16:33:47.773625525 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:           ark
-Version:        22.08.1
+Version:        22.08.2
 Release:        0
 Summary:        KDE Archiver Tool
 License:        GPL-2.0-or-later


++++++ ark-22.08.1.tar.xz -> ark-22.08.2.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-22.08.1/CMakeLists.txt 
new/ark-22.08.2/CMakeLists.txt
--- old/ark-22.08.1/CMakeLists.txt      2022-09-03 04:47:18.000000000 +0200
+++ new/ark-22.08.2/CMakeLists.txt      2022-10-10 21:59:24.000000000 +0200
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "22")
 set (RELEASE_SERVICE_VERSION_MINOR "08")
-set (RELEASE_SERVICE_VERSION_MICRO "1")
+set (RELEASE_SERVICE_VERSION_MICRO "2")
 set (RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 project(ark VERSION ${RELEASE_SERVICE_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-22.08.1/app/compressfileitemaction.cpp 
new/ark-22.08.2/app/compressfileitemaction.cpp
--- old/ark-22.08.1/app/compressfileitemaction.cpp      2022-09-03 
04:47:18.000000000 +0200
+++ new/ark-22.08.2/app/compressfileitemaction.cpp      2022-10-10 
21:59:24.000000000 +0200
@@ -100,7 +100,8 @@
     QAction *action = new QAction(icon, name, parent);
 
     connect(action, &QAction::triggered, this, [fileExtension, urls, name, 
parent, this]() {
-        auto *addToArchiveJob = new AddToArchive(parent);
+        // Don't pass a parent to the job, otherwise it will be killed if 
dolphin gets closed.
+        auto *addToArchiveJob = new AddToArchive(nullptr);
         addToArchiveJob->setImmediateProgressReporting(true);
         addToArchiveJob->setChangeToFirstPath(true);
         for (const QUrl &url : urls) {
@@ -121,6 +122,7 @@
             } else if (!addToArchiveJob->errorString().isEmpty()) {
                 Q_EMIT error(addToArchiveJob->errorString());
             }
+            addToArchiveJob->deleteLater();
         });
     });
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-22.08.1/app/extractfileitemaction.cpp 
new/ark-22.08.2/app/extractfileitemaction.cpp
--- old/ark-22.08.1/app/extractfileitemaction.cpp       2022-09-03 
04:47:18.000000000 +0200
+++ new/ark-22.08.2/app/extractfileitemaction.cpp       2022-10-10 
21:59:24.000000000 +0200
@@ -100,7 +100,8 @@
 {
     QAction *action = new QAction(icon, name, parent);
     connect(action, &QAction::triggered, this, [urls,name, option, 
parent,this]() {
-        auto *batchExtractJob = new BatchExtract(parent);
+        // Don't pass a parent to the job, otherwise it will be killed if 
dolphin gets closed.
+        auto *batchExtractJob = new BatchExtract(nullptr);
         
batchExtractJob->setDestinationFolder(QFileInfo(urls.first().toLocalFile()).path());
         
batchExtractJob->setOpenDestinationAfterExtraction(ArkSettings::openDestinationFolderAfterExtraction());
         if (option == AutoSubfolder) {
@@ -119,6 +120,7 @@
             if (!batchExtractJob->errorString().isEmpty()) {
                 Q_EMIT error(batchExtractJob->errorString());
             }
+            batchExtractJob->deleteLater();
         });
     });
     return action;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-22.08.1/app/org.kde.ark.appdata.xml 
new/ark-22.08.2/app/org.kde.ark.appdata.xml
--- old/ark-22.08.1/app/org.kde.ark.appdata.xml 2022-09-03 04:47:18.000000000 
+0200
+++ new/ark-22.08.2/app/org.kde.ark.appdata.xml 2022-10-10 21:59:24.000000000 
+0200
@@ -362,10 +362,10 @@
     <binary>ark</binary>
   </provides>
   <releases>
+    <release version="22.08.2" date="2022-10-13"/>
     <release version="22.08.1" date="2022-09-08"/>
     <release version="22.08.0" date="2022-08-18"/>
     <release version="22.04.3" date="2022-07-07"/>
-    <release version="22.04.2" date="2022-06-09"/>
   </releases>
   <content_rating type="oars-1.1"/>
 </component>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-22.08.1/plugins/cli7zplugin/cliplugin.cpp 
new/ark-22.08.2/plugins/cli7zplugin/cliplugin.cpp
--- old/ark-22.08.1/plugins/cli7zplugin/cliplugin.cpp   2022-09-03 
04:47:18.000000000 +0200
+++ new/ark-22.08.2/plugins/cli7zplugin/cliplugin.cpp   2022-10-10 
21:59:24.000000000 +0200
@@ -132,7 +132,7 @@
     }
 
     const QRegularExpression rxVersionLine(QStringLiteral("^p7zip Version 
([\\d\\.]+) .*$"));
-    const QRegularExpression rxVersionLine7z(QStringLiteral("^7-Zip \\(z\\) 
([\\d\\.]+) .*$"));
+    const QRegularExpression rxVersionLine7z(QStringLiteral("^7-Zip \\(\\w\\) 
([\\d\\.]+) .*$"));
     QRegularExpressionMatch matchVersion;
 
     switch (m_parseState) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ark-22.08.1/plugins/cli7zplugin/kerfuffle_cli7z.json.cmake 
new/ark-22.08.2/plugins/cli7zplugin/kerfuffle_cli7z.json.cmake
--- old/ark-22.08.1/plugins/cli7zplugin/kerfuffle_cli7z.json.cmake      
2022-09-03 04:47:18.000000000 +0200
+++ new/ark-22.08.2/plugins/cli7zplugin/kerfuffle_cli7z.json.cmake      
2022-10-10 21:59:24.000000000 +0200
@@ -14,7 +14,7 @@
         "Description[en_GB]": "Full support for the zip and 7z archive 
formats",
         "Description[es]": "Uso total de los formatos de archivos comprimidos 
zip y 7z",
         "Description[et]": "Zip ja 7z arhiivivormingu t??ielik toetus",
-        "Description[eu]": "zip eta 7z artxibo fitxategientzako euskarri osoa",
+        "Description[eu]": "zip eta 7z artxibo fitxategien euskarri osoa",
         "Description[fi]": "T??ysi Zip- ja 7z-tiedostomuotojen tuki",
         "Description[fr]": "Prise en charge compl??te des formats d'archive 
zip et 7z",
         "Description[gl]": "Compatibilidade total cos formatos de arquivo zip 
and 7z.",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ark-22.08.1/plugins/clirarplugin/kerfuffle_clirar.json.cmake 
new/ark-22.08.2/plugins/clirarplugin/kerfuffle_clirar.json.cmake
--- old/ark-22.08.1/plugins/clirarplugin/kerfuffle_clirar.json.cmake    
2022-09-03 04:47:18.000000000 +0200
+++ new/ark-22.08.2/plugins/clirarplugin/kerfuffle_clirar.json.cmake    
2022-10-10 21:59:24.000000000 +0200
@@ -14,7 +14,7 @@
         "Description[en_GB]": "Full support for the RAR archive format",
         "Description[es]": "Uso total del formato de archivo comprimido RAR",
         "Description[et]": "RAR-arhiivi vormingu t??ielik toetus",
-        "Description[eu]": "RAR artxibo formatuarentzako euskarri osoa",
+        "Description[eu]": "RAR artxibo formatuaren euskarri osoa",
         "Description[fi]": "T??ysi RAR-tiedostomuodon tuki",
         "Description[fr]": "Prise en charge compl??te du format d'archive RAR",
         "Description[gl]": "Compatibilidade total co formato de arquivo RAR.",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ark-22.08.1/plugins/libsinglefileplugin/kerfuffle_libbz2.json.cmake 
new/ark-22.08.2/plugins/libsinglefileplugin/kerfuffle_libbz2.json.cmake
--- old/ark-22.08.1/plugins/libsinglefileplugin/kerfuffle_libbz2.json.cmake     
2022-09-03 04:47:18.000000000 +0200
+++ new/ark-22.08.2/plugins/libsinglefileplugin/kerfuffle_libbz2.json.cmake     
2022-10-10 21:59:24.000000000 +0200
@@ -38,6 +38,7 @@
         "Description[sr@latin]": "Otvaranje i raspakivanje pojedina??nih 
fajlova kompresovanih algoritmom bzip2",
         "Description[sr]": "???????????????? ?? ?????????????????????? 
???????????????????????? ?????????????? ?????????????????????????? 
???????????????????? ????????2",
         "Description[sv]": "??ppna och packa upp enstaka filer komprimerade 
med bzip2-algoritmen",
+        "Description[ta]": "Bzip2 ???????????????????????? 
??????????????????????????????????????????????????? ????????????????????? 
?????????????????? ???????????????????????????, 
????????????????????????????????????????????????",
         "Description[tr]": "Bzip2 algoritmas?? ile s??k????t??r??lm???? tek 
dosyalar?? a????n ve ????kar??n",
         "Description[uk]": "???????????? ???????????????????? ?? 
???????????????????? ???????? ???? ?????????????? ????????????, 
?????????????????? ???? ?????????????????? ?????????????????? bzip2",
         "Description[x-test]": "xxOpen and extract single files compressed 
with the bzip2 algorithmxx",
@@ -86,6 +87,7 @@
         "Name[sr@latin]": "Priklju??ak za bzip2",
         "Name[sr]": "?????????????????? ???? ????????2",
         "Name[sv]": "Bzip2-insticksprogram",
+        "Name[ta]": "Bzip2 ?????????????????????????????????",
         "Name[tr]": "Bzip2 eklentisi",
         "Name[uk]": "?????????????? bzip2",
         "Name[x-test]": "xxBzip2 pluginxx",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ark-22.08.1/plugins/libsinglefileplugin/kerfuffle_libgz.json.cmake 
new/ark-22.08.2/plugins/libsinglefileplugin/kerfuffle_libgz.json.cmake
--- old/ark-22.08.1/plugins/libsinglefileplugin/kerfuffle_libgz.json.cmake      
2022-09-03 04:47:18.000000000 +0200
+++ new/ark-22.08.2/plugins/libsinglefileplugin/kerfuffle_libgz.json.cmake      
2022-10-10 21:59:24.000000000 +0200
@@ -38,6 +38,7 @@
         "Description[sr@latin]": "Otvaranje i raspakivanje pojedina??nih 
fajlova kompresovanih algoritmom gzip",
         "Description[sr]": "???????????????? ?? ?????????????????????? 
???????????????????????? ?????????????? ?????????????????????????? 
???????????????????? ????????",
         "Description[sv]": "??ppna och packa upp enstaka filer komprimerade 
med gzip-algoritmen",
+        "Description[ta]": "Gzip ???????????????????????? 
??????????????????????????????????????????????????? ????????????????????? 
?????????????????? ???????????????????????????, 
????????????????????????????????????????????????",
         "Description[tr]": "Gzip algoritmas?? ile s??k????t??r??lm???? tek 
dosyalar?? a????n ve ????kar??n",
         "Description[uk]": "???????????? ???????????????????? ?? 
???????????????????? ???????? ???? ?????????????? ????????????, 
?????????????????? ???? ?????????????????? ?????????????????? gzip",
         "Description[x-test]": "xxOpen and extract single files compressed 
with the gzip algorithmxx",
@@ -86,6 +87,7 @@
         "Name[sr@latin]": "Priklju??ak za gzip",
         "Name[sr]": "?????????????????? ???? ????????",
         "Name[sv]": "Gzip-insticksprogram",
+        "Name[ta]": "Gzip ?????????????????????????????????",
         "Name[tr]": "Gzip eklentisi",
         "Name[uk]": "?????????????? gzip",
         "Name[x-test]": "xxGzip pluginxx",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ark-22.08.1/plugins/libsinglefileplugin/kerfuffle_libxz.json.cmake 
new/ark-22.08.2/plugins/libsinglefileplugin/kerfuffle_libxz.json.cmake
--- old/ark-22.08.1/plugins/libsinglefileplugin/kerfuffle_libxz.json.cmake      
2022-09-03 04:47:18.000000000 +0200
+++ new/ark-22.08.2/plugins/libsinglefileplugin/kerfuffle_libxz.json.cmake      
2022-10-10 21:59:24.000000000 +0200
@@ -38,6 +38,7 @@
         "Description[sr@latin]": "Otvaranje i raspakivanje pojedina??nih 
fajlova kompresovanih algoritmom LZMA",
         "Description[sr]": "???????????????? ?? ?????????????????????? 
???????????????????????? ?????????????? ?????????????????????????? 
???????????????????? ????????",
         "Description[sv]": "??ppna och packa upp enstaka filer komprimerade 
med lzma-algoritmen",
+        "Description[ta]": "Lzma ???????????????????????? 
??????????????????????????????????????????????????? ????????????????????? 
?????????????????? ???????????????????????????, 
????????????????????????????????????????????????",
         "Description[tr]": "Lzma algoritmas?? ile s??k????t??r??lm???? tek 
dosyalar?? a????n ve ????kar??n",
         "Description[uk]": "???????????? ???????????????????? ?? 
???????????????????? ???????? ???? ?????????????? ????????????, 
?????????????????? ???? ?????????????????? ?????????????????? lzma",
         "Description[x-test]": "xxOpen and extract single files compressed 
with the lzma algorithmxx",
@@ -86,6 +87,7 @@
         "Name[sr@latin]": "Priklju??ak za LZMA",
         "Name[sr]": "?????????????????? ???? ????????",
         "Name[sv]": "LZMA-insticksprogram",
+        "Name[ta]": "LZMA ?????????????????????????????????",
         "Name[tr]": "LZMA eklentisi",
         "Name[uk]": "?????????????? LZMA",
         "Name[x-test]": "xxLZMA pluginxx",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ark-22.08.1/plugins/libsinglefileplugin/kerfuffle_libzstd.json.cmake 
new/ark-22.08.2/plugins/libsinglefileplugin/kerfuffle_libzstd.json.cmake
--- old/ark-22.08.1/plugins/libsinglefileplugin/kerfuffle_libzstd.json.cmake    
2022-09-03 04:47:18.000000000 +0200
+++ new/ark-22.08.2/plugins/libsinglefileplugin/kerfuffle_libzstd.json.cmake    
2022-10-10 21:59:24.000000000 +0200
@@ -31,6 +31,7 @@
         "Description[sk]": "Otvorenie a extrahovanie jednotliv??ch s??borov 
komprimovan??ch algoritmom zstd",
         "Description[sl]": "Odpri in raz??iri posamezne datoteke stisnjene z 
algoritmom zstd",
         "Description[sv]": "??ppna och packa upp enstaka filer komprimerade 
med zstd-algoritmen",
+        "Description[ta]": "Zstd ???????????????????????? 
??????????????????????????????????????????????????? ????????????????????? 
?????????????????? ???????????????????????????, 
????????????????????????????????????????????????",
         "Description[tr]": "zstd algoritmas?? ise s??k????t??r??lm???? 
ar??ivleri a????n ve ????kar??n",
         "Description[uk]": "???????????? ???????????????????? ?? 
???????????????????? ???????? ???? ?????????????? ????????????, 
?????????????????? ???? ?????????????????? ?????????????????? zstd",
         "Description[x-test]": "xxOpen and extract single files compressed 
with the zstd algorithmxx",
@@ -71,6 +72,7 @@
         "Name[sk]": "Zstd plugin",
         "Name[sl]": "Vstavek Zstd",
         "Name[sv]": "Zstd-insticksprogram",
+        "Name[ta]": "Zstd ?????????????????????????????????",
         "Name[tr]": "Zstd eklentisi",
         "Name[uk]": "?????????????? zstd",
         "Name[x-test]": "xxZstd pluginxx",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-22.08.1/po/ca/ark.po new/ark-22.08.2/po/ca/ark.po
--- old/ark-22.08.1/po/ca/ark.po        2022-09-06 02:05:47.000000000 +0200
+++ new/ark-22.08.2/po/ca/ark.po        2022-10-11 06:51:07.000000000 +0200
@@ -11,7 +11,7 @@
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-08-26 02:13+0000\n"
-"PO-Revision-Date: 2022-06-10 10:16+0200\n"
+"PO-Revision-Date: 2022-09-07 19:51+0200\n"
 "Last-Translator: Josep M. Ferrer <txe...@gmail.com>\n"
 "Language-Team: Catalan <kde-i18n...@kde.org>\n"
 "Language: ca\n"
@@ -911,7 +911,7 @@
 #: kerfuffle/generalsettingspage.ui:33
 #, kde-format
 msgid "Pre&view the file with internal previewer"
-msgstr "&Vista pr??via del fitxer amb el visor intern"
+msgstr "&Vista pr??via del fitxer amb el visualitzador intern"
 
 #. i18n: ectx: property (text), widget (QRadioButton, radioButton_2)
 #: kerfuffle/generalsettingspage.ui:43
@@ -1412,7 +1412,7 @@
 #: part/arkviewer.cpp:100
 #, kde-format
 msgid "The internal viewer cannot preview this file."
-msgstr "El visor intern no pot previsualitzar aquest fitxer."
+msgstr "El visualitzador intern no pot previsualitzar aquest fitxer."
 
 #: part/arkviewer.cpp:116
 #, kde-kuit-format
@@ -1420,8 +1420,8 @@
 "The internal viewer cannot preview this type of file<nl/>(%1).<nl/><nl/>Do "
 "you want to try to view it as plain text?"
 msgstr ""
-"El visor intern no pot previsualitzar aquest tipus de fitxer<nl/>(%1).<nl/"
-"><nl/>Voleu intentar visualitzar-lo com a text?"
+"El visualitzador intern no pot previsualitzar aquest tipus de fitxer<nl/"
+">(%1).<nl/><nl/>Voleu intentar visualitzar-lo com a text?"
 
 #: part/arkviewer.cpp:117 part/arkviewer.cpp:129
 #, kde-format
@@ -1441,14 +1441,14 @@
 "The internal viewer cannot preview this unknown type of file.<nl/><nl/>Do "
 "you want to try to view it as plain text?"
 msgstr ""
-"El visor intern no pot previsualitzar aquest tipus de fitxer desconegut.<nl/"
-"><nl/>Voleu intentar visualitzar-lo com a text?"
+"El visualitzador intern no pot previsualitzar aquest tipus de fitxer "
+"desconegut.<nl/><nl/>Voleu intentar visualitzar-lo com a text?"
 
 #: part/arkviewer.cpp:192
 #, kde-format
 msgctxt "@action"
 msgid "About Viewer Component"
-msgstr "Quant al component del visor"
+msgstr "Quant al component del visualitzador"
 
 #: part/infopanel.cpp:52
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-22.08.1/po/ca/docs/ark/index.docbook 
new/ark-22.08.2/po/ca/docs/ark/index.docbook
--- old/ark-22.08.1/po/ca/docs/ark/index.docbook        2022-09-06 
02:05:48.000000000 +0200
+++ new/ark-22.08.2/po/ca/docs/ark/index.docbook        2022-10-11 
06:51:07.000000000 +0200
@@ -291,7 +291,7 @@
 >&Ctrl;<keycap
 >P</keycap
 ></keycombo
->) obrir?? el fitxer amb el visor intern de l'&ark;. Es tracta d'un 
visualitzador r??pid de nom??s lectura, per?? no accepta tots els tipus de 
fitxers.</para>
+>) obrir?? el fitxer amb el visualitzador intern de l'&ark;. Es tracta d'un 
visualitzador r??pid de nom??s lectura, per?? no accepta tots els tipus de 
fitxers.</para>
 </listitem>
 <listitem>
 <para
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-22.08.1/po/ca@valencia/ark.po 
new/ark-22.08.2/po/ca@valencia/ark.po
--- old/ark-22.08.1/po/ca@valencia/ark.po       2022-09-06 02:05:47.000000000 
+0200
+++ new/ark-22.08.2/po/ca@valencia/ark.po       2022-10-11 06:51:07.000000000 
+0200
@@ -11,7 +11,7 @@
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-08-26 02:13+0000\n"
-"PO-Revision-Date: 2022-06-10 10:16+0200\n"
+"PO-Revision-Date: 2022-09-07 19:51+0200\n"
 "Last-Translator: Josep M. Ferrer <txe...@gmail.com>\n"
 "Language-Team: Catalan <kde-i18n...@kde.org>\n"
 "Language: ca@valencia\n"
@@ -862,7 +862,7 @@
 #: kerfuffle/extractiondialog.ui:203
 #, kde-format
 msgid "All &files"
-msgstr "Tots els &fitxers"
+msgstr "Tots els fi&txers"
 
 #. i18n: ectx: property (text), widget (QCheckBox, 
kcfg_openDestinationFolderAfterExtraction)
 #: kerfuffle/extractionsettingspage.ui:17
@@ -1378,7 +1378,7 @@
 #: part/ark_part.rc:15
 #, kde-format
 msgid "&File"
-msgstr "&Fitxer"
+msgstr "Fi&txer"
 
 #. i18n: ectx: Menu (settings)
 #: part/ark_part.rc:29
@@ -1573,13 +1573,13 @@
 #, kde-format
 msgctxt "@action:inmenu"
 msgid "Save Copy As..."
-msgstr "Guarda una c??pia com a..."
+msgstr "Anomena i guarda una c??pia..."
 
 #: part/part.cpp:373
 #, kde-format
 msgctxt "open a file with external program"
 msgid "&Open"
-msgstr "&Obri"
+msgstr "O&bri"
 
 #: part/part.cpp:375
 #, kde-format
@@ -1630,7 +1630,7 @@
 #, kde-format
 msgctxt "@action:inmenu"
 msgid "&Extract"
-msgstr "&Extrau"
+msgstr "E&xtrau"
 
 #: part/part.cpp:402
 #, kde-format
@@ -1644,7 +1644,7 @@
 #: part/part.cpp:407
 #, kde-format
 msgid "Add &Files..."
-msgstr "Afig &fitxers..."
+msgstr "Afig fi&txers..."
 
 #: part/part.cpp:408 part/part.cpp:470
 #, kde-format
@@ -1729,7 +1729,7 @@
 #: part/part.cpp:648
 #, kde-format
 msgid "The archive failed the integrity test."
-msgstr "L'arxiu ha fallat a la prova d'integritat."
+msgstr "L'arxiu ha fallat en la prova d'integritat."
 
 #: part/part.cpp:669
 #, kde-format
@@ -1895,7 +1895,7 @@
 #, kde-format
 msgid "Entries with the same names can't be pasted to the same destination."
 msgstr ""
-"Les entrades amb els mateixos noms no es poden apegar en la mateixa "
+"Les entrades amb els mateixos noms no es poden apegar a la mateixa "
 "destinaci??."
 
 #: part/part.cpp:1645
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-22.08.1/po/fr/ark.po new/ark-22.08.2/po/fr/ark.po
--- old/ark-22.08.1/po/fr/ark.po        2022-09-06 02:05:48.000000000 +0200
+++ new/ark-22.08.2/po/fr/ark.po        2022-10-11 06:51:07.000000000 +0200
@@ -9,7 +9,7 @@
 # S??bastien Renard <sebastien.ren...@digitalfox.org>, 2008.
 # Jean-Jacques Finazzi <mrja...@users.sourceforge.net>, 2007, 2008, 2009, 
2010, 2011, 2012.
 # xavier <xavier.besn...@neuf.fr>, 2012, 2013, 2020, 2021, 2022.
-# Thomas Vergnaud <thomas.vergn...@gmx.fr>, 2014, 2015, 2016, 2017, 2018, 2019.
+# Thomas Vergnaud <thomas.vergn...@gmx.fr>, 2014, 2015, 2016, 2017, 2018, 
2019, 2022.
 # Vincent Pinon <vpi...@kde.org>, 2017.
 # Simon Depiets <sdepi...@gmail.com>, 2018, 2019.
 msgid ""
@@ -17,15 +17,15 @@
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-08-26 02:13+0000\n"
-"PO-Revision-Date: 2022-06-10 20:21+0200\n"
-"Last-Translator: Xavier Besnard <xavier.besn...@neuf.fr>\n"
+"PO-Revision-Date: 2022-10-09 17:28+0200\n"
+"Last-Translator: Thomas Vergnaud <thomas.vergn...@mailo.eu>\n"
 "Language-Team: French <kde-francoph...@kde.org>\n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 22.04.3\n"
+"X-Generator: Lokalize 21.12.3\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
@@ -39,8 +39,8 @@
 msgctxt "EMAIL OF TRANSLATORS"
 msgid "Your emails"
 msgstr ""
-"xavier.besn...@neuf.fr, mrja...@users.sourceforge.net, thomas.vergnaud@gmx."
-"fr, sdepi...@gmail.com"
+"xavier.besn...@neuf.fr, mrja...@users.sourceforge.net, thomas.vergnaud@mailo."
+"eu, sdepi...@gmail.com"
 
 #. i18n: ectx: Menu (archive)
 #: app/arkui.rc:5
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-22.08.1/po/id/ark.po new/ark-22.08.2/po/id/ark.po
--- old/ark-22.08.1/po/id/ark.po        2022-09-06 02:05:48.000000000 +0200
+++ new/ark-22.08.2/po/id/ark.po        2022-10-11 06:51:07.000000000 +0200
@@ -11,9 +11,9 @@
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-08-26 02:13+0000\n"
-"PO-Revision-Date: 2022-08-26 23:44+0700\n"
+"PO-Revision-Date: 2022-09-27 17:54+0700\n"
 "Last-Translator: Wantoy??k <wanto...@gmail.com>\n"
-"Language-Team: https://t.me/Localizations_KDE_Indonesia\n";
+"Language-Team: Indonesian <kde-i18n-...@kde.org>\n"
 "Language: id\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -506,7 +506,7 @@
 #: kerfuffle/ark.kcfg:41
 #, kde-format
 msgid "How the main window is divided."
-msgstr "Sebagaimana window utama terbagi."
+msgstr "Sebagaimana jendela utama terbagi."
 
 #. i18n: ectx: label, entry (showInfoPanel), group (MainWindow)
 #: kerfuffle/ark.kcfg:45
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-22.08.1/po/it/ark.po new/ark-22.08.2/po/it/ark.po
--- old/ark-22.08.1/po/it/ark.po        2022-09-06 02:05:48.000000000 +0200
+++ new/ark-22.08.2/po/it/ark.po        2022-10-11 06:51:07.000000000 +0200
@@ -19,7 +19,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 22.04.3\n"
+"X-Generator: Lokalize 22.08.0\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-22.08.1/po/ja/ark.po new/ark-22.08.2/po/ja/ark.po
--- old/ark-22.08.1/po/ja/ark.po        2022-09-06 02:05:48.000000000 +0200
+++ new/ark-22.08.2/po/ja/ark.po        2022-10-11 06:51:07.000000000 +0200
@@ -2237,18 +2237,3 @@
 #, kde-kuit-format
 msgid "Failed to set metadata for entry: %1"
 msgstr "??????????????????????????????????????????????????????: %1"
-
-#~ msgctxt "Uncompressed size of a file inside an archive"
-#~ msgid "Size"
-#~ msgstr "?????????"
-
-#~ msgctxt "@action:inmenu Part of Compress submenu in Dolphin context menu"
-#~ msgid "Here (as TAR.GZ)"
-#~ msgstr "????????? (TAR.GZ ?????????)"
-
-#~ msgid ""
-#~ "This archive contains archive entries with absolute paths, which are not "
-#~ "supported by Ark."
-#~ msgstr ""
-#~ "??????????????????????????? Ark 
???????????????????????????????????????????????????????????????????????????"
-#~ "?????????"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-22.08.1/po/ko/ark.po new/ark-22.08.2/po/ko/ark.po
--- old/ark-22.08.1/po/ko/ark.po        2022-09-06 02:05:48.000000000 +0200
+++ new/ark-22.08.2/po/ko/ark.po        2022-10-11 06:51:07.000000000 +0200
@@ -12,7 +12,7 @@
 "POT-Creation-Date: 2022-08-26 02:13+0000\n"
 "PO-Revision-Date: 2022-07-13 15:34+0200\n"
 "Last-Translator: Shinjo Park <k...@peremen.name>\n"
-"Language-Team: Korean <kde...@kde.org>\n"
+"Language-Team: Korean <kde-i18n-...@kde.org>\n"
 "Language: ko\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-22.08.1/po/ta/ark.po new/ark-22.08.2/po/ta/ark.po
--- old/ark-22.08.1/po/ta/ark.po        2022-09-06 02:05:48.000000000 +0200
+++ new/ark-22.08.2/po/ta/ark.po        2022-10-11 06:51:07.000000000 +0200
@@ -14,7 +14,7 @@
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-08-26 02:13+0000\n"
-"PO-Revision-Date: 2022-08-18 19:39+0530\n"
+"PO-Revision-Date: 2022-10-06 21:43+0530\n"
 "Last-Translator: Kishore G <kishor...@gmail.com>\n"
 "Language-Team: Tamil <kde-i18n-...@kde.org>\n"
 "Language: ta\n"
@@ -22,7 +22,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 22.07.90\n"
+"X-Generator: Lokalize 22.08.1\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -359,12 +359,15 @@
 "Use the batch interface instead of the usual dialog. This option is implied "
 "if more than one url is specified."
 msgstr ""
+"?????????????????? ?????????????????????????????????????????? 
??????????????????, ????????? ??????????????????????????? 
??????????????????????????? ??????????????? ?????????????????? batch 
?????????????????????????????? "
+"???????????????????????????????????????. ??????????????????????????? 
???????????????????????? ??????????????????????????? 
????????????????????????????????????????????????????????????????????????, 
??????????????????????????? ??????????????? "
+"????????????????????????????????????."
 
 #: app/main.cpp:183
 #, kde-format
 msgid ""
 "The destination argument will be set to the path of the first file supplied."
-msgstr ""
+msgstr "??????????????????????????? ??????????????? ???????????????????????? 
??????????????????????????????, ?????????????????????????????? 
???????????????????????????????????????."
 
 #: app/main.cpp:186
 #, kde-format
@@ -373,6 +376,8 @@
 "a single file archive, a subfolder with the name of the archive will be "
 "created."
 msgstr ""
+"???????????????????????????????????? ?????????????????????????????? 
???????????????????????????????????????, ????????? ??????????????????????????? 
????????? ???????????????????????? ????????? 
??????????????????????????????????????? "
+"??????????????????????????????, ???????????????????????????????????? 
????????????????????? ????????? ??????????????? ????????????-??????????????? 
?????????????????????????????????????????????."
 
 #: app/main.cpp:189
 #, kde-format
@@ -506,19 +511,19 @@
 #: kerfuffle/ark.kcfg:45
 #, kde-format
 msgid "Whether to show the information panel."
-msgstr ""
+msgstr "?????????????????? ???????????????????????? ??????????????? 
????????????????????????."
 
 #. i18n: ectx: label, entry (limitPreviewFileSize), group (Preview)
 #: kerfuffle/ark.kcfg:55
 #, kde-format
 msgid "Whether to limit the preview according to file size."
-msgstr ""
+msgstr "?????????????????????????????? ??????????????????????????????????????? 
????????????????????????????????????????????? 
??????????????????????????????????????? ????????????????????????."
 
 #. i18n: ectx: label, entry (previewFileSizeLimit), group (Preview)
 #: kerfuffle/ark.kcfg:59
 #, kde-format
 msgid "Preview file size limit in megabytes."
-msgstr ""
+msgstr "?????????????????????????????????????????????????????? 
???????????????????????? ??????????????????, 
?????????????????????????????????????????????"
 
 #: kerfuffle/cliinterface.cpp:245
 #, kde-kuit-format
@@ -677,7 +682,7 @@
 #: kerfuffle/previewsettingspage.ui:32
 #, kde-format
 msgid " megabytes"
-msgstr ""
+msgstr " ???????????????????????????????????????"
 
 #: kerfuffle/createdialog.cpp:111
 #, kde-format
@@ -876,18 +881,20 @@
 "Whether to check by default the extraction into subfolder checkbox in the "
 "Extraction Dialog, when the archive has more than one top-level entry."
 msgstr ""
+"?????????????????????????????????????????? ??????????????????????????????, 
'????????????-????????????????????????????????? ??????????????????????????????' 
??????????????? ?????????????????????????????????????????? 
????????????????????? "
+"????????????????????????????????????????????????????????? 
????????????????????????."
 
 #. i18n: ectx: property (text), widget (QCheckBox, kcfg_extractToSubfolder)
 #: kerfuffle/extractionsettingspage.ui:44
 #, kde-format
 msgid "Extract to a subfolder if the archive has more than one top-level entry"
-msgstr ""
+msgstr "?????????????????????????????????????????? ?????? 
???????????????????????? ????????????????????????????????? 
??????????????????????????? ????????????-??????????????????????????? 
??????????????????????????????"
 
 #. i18n: ectx: property (text), widget (QLabel, label)
 #: kerfuffle/generalsettingspage.ui:17
 #, kde-format
 msgid "When clicking a file in an archive or pressing the Return key:"
-msgstr ""
+msgstr "????????????????????????????????????????????? ?????????????????? 
?????????????????? ???????????????????????????????????? Enter 
?????????????????? ???????????????????????????????????????:"
 
 #. i18n: ectx: property (text), widget (QRadioButton, radioButton)
 #: kerfuffle/generalsettingspage.ui:33
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-22.08.1/po/tr/ark.po new/ark-22.08.2/po/tr/ark.po
--- old/ark-22.08.1/po/tr/ark.po        2022-09-06 02:05:48.000000000 +0200
+++ new/ark-22.08.2/po/tr/ark.po        2022-10-11 06:51:07.000000000 +0200
@@ -20,7 +20,7 @@
 "Project-Id-Version: kdeutils-kde4\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-08-26 02:13+0000\n"
-"PO-Revision-Date: 2022-06-10 12:10+0300\n"
+"PO-Revision-Date: 2022-10-08 12:32+0300\n"
 "Last-Translator: Emir SARI <emir_s...@icloud.com>\n"
 "Language-Team: Turkish <kde-l10n...@kde.org>\n"
 "Language: tr\n"
@@ -28,7 +28,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 22.04.1\n"
+"X-Generator: Lokalize 22.08.1\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -126,14 +126,14 @@
 #, kde-format
 msgctxt "@action:inmenu Part of Compress submenu in Dolphin context menu"
 msgid "Compress to..."
-msgstr "??uraya s??k????t??r..."
+msgstr "??uraya S??k????t??r..."
 
 #: app/compressfileitemaction.cpp:97
 #, kde-format
 msgctxt ""
 "@action:inmenu Part of Compress submenu in Dolphin context menu, %1 filename"
 msgid "Here as \"%1\""
-msgstr "Buraya \"%1\" olarak"
+msgstr "Buraya \"%1\" Olarak"
 
 #: app/extractfileitemaction.cpp:63
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-22.08.1/po/uk/ark.po new/ark-22.08.2/po/uk/ark.po
--- old/ark-22.08.1/po/uk/ark.po        2022-09-06 02:05:48.000000000 +0200
+++ new/ark-22.08.2/po/uk/ark.po        2022-10-11 06:51:07.000000000 +0200
@@ -12,7 +12,7 @@
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-08-26 02:13+0000\n"
-"PO-Revision-Date: 2022-06-10 08:53+0300\n"
+"PO-Revision-Date: 2022-10-07 07:22+0300\n"
 "Last-Translator: Yuri Chornoivan <yurc...@ukr.net>\n"
 "Language-Team: Ukrainian <kde-i18n...@kde.org>\n"
 "Language: uk\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-22.08.1/po/zh_CN/ark.po 
new/ark-22.08.2/po/zh_CN/ark.po
--- old/ark-22.08.1/po/zh_CN/ark.po     2022-09-06 02:05:48.000000000 +0200
+++ new/ark-22.08.2/po/zh_CN/ark.po     2022-10-11 06:51:07.000000000 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-08-26 02:13+0000\n"
-"PO-Revision-Date: 2022-08-20 14:21\n"
+"PO-Revision-Date: 2022-10-02 15:52\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"

Reply via email to