Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kio-extras5 for openSUSE:Factory 
checked in at 2021-11-06 18:14:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kio-extras5 (Old)
 and      /work/SRC/openSUSE:Factory/.kio-extras5.new.1890 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kio-extras5"

Sat Nov  6 18:14:07 2021 rev:103 rq:929320 version:21.08.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/kio-extras5/kio-extras5.changes  2021-10-13 
18:02:58.894982571 +0200
+++ /work/SRC/openSUSE:Factory/.kio-extras5.new.1890/kio-extras5.changes        
2021-11-06 18:15:25.580803659 +0100
@@ -1,0 +2,11 @@
+Tue Nov  2 21:34:00 UTC 2021 - Christophe Giboudeaux <[email protected]>
+
+- Update to 21.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/21.08.3/
+- Changes since 21.08.2:
+  * man kio: fix crash due to bad memory pointer on REQ_ps handling 
(kde#443983)
+  * kio_filenamesearch: fix crash due to KCoreDirLister changes (kde#438187)
+
+-------------------------------------------------------------------

Old:
----
  kio-extras-21.08.2.tar.xz
  kio-extras-21.08.2.tar.xz.sig

New:
----
  kio-extras-21.08.3.tar.xz
  kio-extras-21.08.3.tar.xz.sig

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

Other differences:
------------------
++++++ kio-extras5.spec ++++++
--- /var/tmp/diff_new_pack.we3g21/_old  2021-11-06 18:15:26.288804029 +0100
+++ /var/tmp/diff_new_pack.we3g21/_new  2021-11-06 18:15:26.292804032 +0100
@@ -22,7 +22,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:           kio-extras5
-Version:        21.08.2
+Version:        21.08.3
 Release:        0
 Summary:        Additional KIO slaves for KDE applications
 License:        GPL-2.0-or-later


++++++ kio-extras-21.08.2.tar.xz -> kio-extras-21.08.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/CMakeLists.txt 
new/kio-extras-21.08.3/CMakeLists.txt
--- old/kio-extras-21.08.2/CMakeLists.txt       2021-10-05 07:42:34.000000000 
+0200
+++ new/kio-extras-21.08.3/CMakeLists.txt       2021-11-02 01:15:15.000000000 
+0100
@@ -3,7 +3,7 @@
 # KDE Applications Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "21")
 set (RELEASE_SERVICE_VERSION_MINOR "08")
-set (RELEASE_SERVICE_VERSION_MICRO "2")
+set (RELEASE_SERVICE_VERSION_MICRO "3")
 set (RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 project(kio-extras VERSION ${RELEASE_SERVICE_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kio-extras-21.08.2/filenamesearch/kio_filenamesearch.cpp 
new/kio-extras-21.08.3/filenamesearch/kio_filenamesearch.cpp
--- old/kio-extras-21.08.2/filenamesearch/kio_filenamesearch.cpp        
2021-10-05 00:07:41.000000000 +0200
+++ new/kio-extras-21.08.3/filenamesearch/kio_filenamesearch.cpp        
2021-10-31 11:10:31.000000000 +0100
@@ -102,6 +102,7 @@
     QScopedPointer<KCoreDirLister> dirLister(new KCoreDirLister);
     dirLister->setDelayedMimeTypes(true);
     dirLister->openUrl(directory);
+    dirLister->setAutoErrorHandlingEnabled(false);
 
     QEventLoop eventLoop;
     QObject::connect(dirLister.data(), 
static_cast<void(KCoreDirLister::*)()>(&KCoreDirLister::canceled),
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/man/man2html.cpp 
new/kio-extras-21.08.3/man/man2html.cpp
--- old/kio-extras-21.08.2/man/man2html.cpp     2021-10-05 00:07:41.000000000 
+0200
+++ new/kio-extras-21.08.3/man/man2html.cpp     2021-10-31 11:10:31.000000000 
+0100
@@ -3941,23 +3941,24 @@
                 else
                 {
                     char *h = args[0].data();
-                    j = 0;
+                    int sign = 0;
                     i = 0;
                     if (*h == '-')
                     {
-                        j = -1;
+                        sign = -1;
+                        h++;
+                    }
+                    else if (*h == '+') {
+                        sign = 1;
                         h++;
                     }
-                    else if (*h == '+')
-                        j = 1;
-                    h++;
                     scan_expression(h, &i);
-                    if (!j)
+                    if (sign == 0)
                     {
-                        j = 1;
+                        sign = 1;
                         if (i > 5) i = i - 10;
                     }
-                    out_html(change_to_size(i*j));
+                    out_html(change_to_size(sign * i));
                 }
                 break;
             }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/ca/kfileaudiopreview5.po 
new/kio-extras-21.08.3/po/ca/kfileaudiopreview5.po
--- old/kio-extras-21.08.2/po/ca/kfileaudiopreview5.po  2021-10-05 
07:42:32.000000000 +0200
+++ new/kio-extras-21.08.3/po/ca/kfileaudiopreview5.po  2021-11-02 
01:15:13.000000000 +0100
@@ -4,14 +4,14 @@
 # version 3 or later versions approved by the membership of KDE e.V.
 #
 # Antoni Bella P??rez <[email protected]>, 2003.
-# Josep Ma. Ferrer <[email protected]>, 2007, 2009, 2020.
+# Josep M. Ferrer <[email protected]>, 2007, 2009, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio-extras\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-01 00:18+0000\n"
 "PO-Revision-Date: 2020-10-13 20:49+0200\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/ca/kio5_activities.po 
new/kio-extras-21.08.3/po/ca/kio5_activities.po
--- old/kio-extras-21.08.2/po/ca/kio5_activities.po     2021-10-05 
07:42:32.000000000 +0200
+++ new/kio-extras-21.08.3/po/ca/kio5_activities.po     2021-11-02 
01:15:13.000000000 +0100
@@ -3,7 +3,7 @@
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
-# Josep Ma. Ferrer <[email protected]>, 2014, 2015, 2019.
+# Josep M. Ferrer <[email protected]>, 2014, 2015, 2019.
 # Antoni Bella P??rez <[email protected]>, 2014, 2015, 2016.
 msgid ""
 msgstr ""
@@ -11,7 +11,7 @@
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-30 00:17+0000\n"
 "PO-Revision-Date: 2019-11-09 11:33+0100\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/ca/kio5_archive.po 
new/kio-extras-21.08.3/po/ca/kio5_archive.po
--- old/kio-extras-21.08.2/po/ca/kio5_archive.po        2021-10-05 
07:42:32.000000000 +0200
+++ new/kio-extras-21.08.3/po/ca/kio5_archive.po        2021-11-02 
01:15:13.000000000 +0100
@@ -4,14 +4,14 @@
 # version 3 or later versions approved by the membership of KDE e.V.
 #
 # Aleix Pol Gonz??lez <[email protected]>, 2005.
-# Josep Ma. Ferrer <[email protected]>, 2013, 2016.
+# Josep M. Ferrer <[email protected]>, 2013, 2016.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio-extras\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-07-07 00:17+0000\n"
 "PO-Revision-Date: 2016-06-05 15:09+0200\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/ca/kio5_bookmarks.po 
new/kio-extras-21.08.3/po/ca/kio5_bookmarks.po
--- old/kio-extras-21.08.2/po/ca/kio5_bookmarks.po      2021-10-05 
07:42:32.000000000 +0200
+++ new/kio-extras-21.08.3/po/ca/kio5_bookmarks.po      2021-11-02 
01:15:13.000000000 +0100
@@ -3,14 +3,14 @@
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
-# Josep Ma. Ferrer <[email protected]>, 2008, 2009, 2020.
+# Josep M. Ferrer <[email protected]>, 2008, 2009, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio-extras\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-30 00:17+0000\n"
 "PO-Revision-Date: 2020-10-31 10:19+0100\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/ca/kio5_fish.po 
new/kio-extras-21.08.3/po/ca/kio5_fish.po
--- old/kio-extras-21.08.2/po/ca/kio5_fish.po   2021-10-05 07:42:32.000000000 
+0200
+++ new/kio-extras-21.08.3/po/ca/kio5_fish.po   2021-11-02 01:15:13.000000000 
+0100
@@ -5,14 +5,14 @@
 #
 # Antoni Bella P??rez <[email protected]>, 2003.
 # Sebasti?? Pla i Sanz <[email protected]>, 2004.
-# Josep Ma. Ferrer <[email protected]>, 2009, 2012.
+# Josep M. Ferrer <[email protected]>, 2009, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio-extras\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-30 00:17+0000\n"
 "PO-Revision-Date: 2012-10-14 19:09+0200\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/ca/kio5_info.po 
new/kio-extras-21.08.3/po/ca/kio5_info.po
--- old/kio-extras-21.08.2/po/ca/kio5_info.po   2021-10-05 07:42:32.000000000 
+0200
+++ new/kio-extras-21.08.3/po/ca/kio5_info.po   2021-11-02 01:15:13.000000000 
+0100
@@ -3,7 +3,7 @@
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
-# Josep Ma. Ferrer <[email protected]>, 2009.
+# Josep M. Ferrer <[email protected]>, 2009.
 # Antoni Bella P??rez <[email protected]>, 2016, 2021.
 msgid ""
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/ca/kio5_man.po 
new/kio-extras-21.08.3/po/ca/kio5_man.po
--- old/kio-extras-21.08.2/po/ca/kio5_man.po    2021-10-05 07:42:32.000000000 
+0200
+++ new/kio-extras-21.08.3/po/ca/kio5_man.po    2021-11-02 01:15:13.000000000 
+0100
@@ -6,14 +6,14 @@
 # Sebasti?? Pla i Sanz <[email protected]>, 2000, 2001, 2004, 2006.
 # Antoni Bella P??rez <[email protected]>, 2002, 2003, 2016, 2020.
 # Albert Astals Cid <[email protected]>, 2005.
-# Josep Ma. Ferrer <[email protected]>, 2007, 2008, 2009, 2012, 2013, 2015, 
2019, 2020.
+# Josep M. Ferrer <[email protected]>, 2007, 2008, 2009, 2012, 2013, 2015, 
2019, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio-extras\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-07-07 00:17+0000\n"
 "PO-Revision-Date: 2020-09-13 10:23+0100\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/ca/kio5_mtp.po 
new/kio-extras-21.08.3/po/ca/kio5_mtp.po
--- old/kio-extras-21.08.2/po/ca/kio5_mtp.po    2021-10-05 07:42:32.000000000 
+0200
+++ new/kio-extras-21.08.3/po/ca/kio5_mtp.po    2021-11-02 01:15:13.000000000 
+0100
@@ -3,7 +3,7 @@
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
-# Josep Ma. Ferrer <[email protected]>, 2014, 2016, 2018, 2019.
+# Josep M. Ferrer <[email protected]>, 2014, 2016, 2018, 2019.
 # Antoni Bella P??rez <[email protected]>, 2014.
 msgid ""
 msgstr ""
@@ -11,7 +11,7 @@
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-30 00:17+0000\n"
 "PO-Revision-Date: 2019-02-16 13:36+0100\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/ca/kio5_nfs.po 
new/kio-extras-21.08.3/po/ca/kio5_nfs.po
--- old/kio-extras-21.08.2/po/ca/kio5_nfs.po    2021-10-05 07:42:32.000000000 
+0200
+++ new/kio-extras-21.08.3/po/ca/kio5_nfs.po    2021-11-02 01:15:13.000000000 
+0100
@@ -4,7 +4,7 @@
 # version 3 or later versions approved by the membership of KDE e.V.
 #
 # Antoni Bella P??rez <[email protected]>, 2002, 2014, 2016, 2020, 2021.
-# Josep Ma. Ferrer <[email protected]>, 2014, 2016.
+# Josep M. Ferrer <[email protected]>, 2014, 2016.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio-extras\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/ca/kio5_recentdocuments.po 
new/kio-extras-21.08.3/po/ca/kio5_recentdocuments.po
--- old/kio-extras-21.08.2/po/ca/kio5_recentdocuments.po        2021-10-05 
07:42:32.000000000 +0200
+++ new/kio-extras-21.08.3/po/ca/kio5_recentdocuments.po        2021-11-02 
01:15:13.000000000 +0100
@@ -3,14 +3,14 @@
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
-# Josep Ma. Ferrer <[email protected]>, 2012.
+# Josep M. Ferrer <[email protected]>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio-extras\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-30 00:17+0000\n"
 "PO-Revision-Date: 2012-04-28 23:47+0200\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/ca/kio5_sftp.po 
new/kio-extras-21.08.3/po/ca/kio5_sftp.po
--- old/kio-extras-21.08.2/po/ca/kio5_sftp.po   2021-10-05 07:42:32.000000000 
+0200
+++ new/kio-extras-21.08.3/po/ca/kio5_sftp.po   2021-11-02 01:15:13.000000000 
+0100
@@ -6,20 +6,20 @@
 # Antoni Bella P??rez <[email protected]>, 2002, 2003, 2014, 2016, 2020.
 # Sebasti?? Pla i Sanz <[email protected]>, 2004.
 # Albert Astals Cid <[email protected]>, 2005.
-# Josep Ma. Ferrer <[email protected]>, 2008, 2009, 2010, 2012, 2013, 2014, 
2015, 2018.
+# Josep M. Ferrer <[email protected]>, 2008, 2009, 2010, 2012, 2013, 2014, 
2015, 2018, 2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio-extras\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-30 00:17+0000\n"
-"PO-Revision-Date: 2020-08-05 17:02+0200\n"
-"Last-Translator: Antoni Bella P??rez <[email protected]>\n"
+"PO-Revision-Date: 2021-10-31 20:57+0100\n"
+"Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 20.04.3\n"
+"X-Generator: Lokalize 20.12.0\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: &\n"
 
@@ -195,7 +195,7 @@
 "Authentication failed. The server didn't send any authentication methods"
 msgstr ""
 "Ha fallat en l'autenticaci??. El servidor no ha enviat cap m??tode "
-"d'autenticaci??."
+"d'autenticaci??"
 
 #: kio_sftp.cpp:892 kio_sftp.cpp:1186
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/ca/kio5_smb.po 
new/kio-extras-21.08.3/po/ca/kio5_smb.po
--- old/kio-extras-21.08.2/po/ca/kio5_smb.po    2021-10-05 07:42:32.000000000 
+0200
+++ new/kio-extras-21.08.3/po/ca/kio5_smb.po    2021-11-02 01:15:13.000000000 
+0100
@@ -6,20 +6,20 @@
 # Antoni Bella P??rez <[email protected]>, 2002, 2003, 2014, 2016, 2017, 
2020.
 # Sebasti?? Pla i Sanz <[email protected]>, 2004, 2006.
 # Albert Astals Cid <[email protected]>, 2005.
-# Josep Ma. Ferrer <[email protected]>, 2006, 2007, 2008, 2009, 2010, 2015, 
2020.
+# Josep M. Ferrer <[email protected]>, 2006, 2007, 2008, 2009, 2010, 2015, 
2020, 2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio-extras\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-07-07 00:17+0000\n"
-"PO-Revision-Date: 2020-11-10 14:07+0100\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"PO-Revision-Date: 2021-10-31 20:58+0100\n"
+"Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 20.12.0\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: &\n"
 
@@ -171,8 +171,8 @@
 "Make sure that the samba package is installed properly on your system."
 msgstr ""
 "\n"
-"Assegureu-vos que el paquet samba est?? adequadament instal??lat en el vostre 
"
-"sistema."
+"Assegureu-vos que el paquet ??samba?? est?? instal??lat adequadament en el "
+"vostre sistema."
 
 #: kio_smb_mount.cpp:101
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/ca/kio5_thumbnail.po 
new/kio-extras-21.08.3/po/ca/kio5_thumbnail.po
--- old/kio-extras-21.08.2/po/ca/kio5_thumbnail.po      2021-10-05 
07:42:32.000000000 +0200
+++ new/kio-extras-21.08.3/po/ca/kio5_thumbnail.po      2021-11-02 
01:15:13.000000000 +0100
@@ -4,7 +4,7 @@
 # version 3 or later versions approved by the membership of KDE e.V.
 #
 # Aleix Pol Gonz??lez <[email protected]>, 2005.
-# Josep Ma. Ferrer <[email protected]>, 2007, 2009, 2011.
+# Josep M. Ferrer <[email protected]>, 2007, 2009, 2011.
 # Antoni Bella P??rez <[email protected]>, 2016, 2020.
 msgid ""
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kio-extras-21.08.2/po/ca@valencia/kfileaudiopreview5.po 
new/kio-extras-21.08.3/po/ca@valencia/kfileaudiopreview5.po
--- old/kio-extras-21.08.2/po/ca@valencia/kfileaudiopreview5.po 2021-10-05 
07:42:32.000000000 +0200
+++ new/kio-extras-21.08.3/po/ca@valencia/kfileaudiopreview5.po 2021-11-02 
01:15:13.000000000 +0100
@@ -4,14 +4,14 @@
 # version 3 or later versions approved by the membership of KDE e.V.
 #
 # Antoni Bella P??rez <[email protected]>, 2003.
-# Josep Ma. Ferrer <[email protected]>, 2007, 2009, 2020.
+# Josep M. Ferrer <[email protected]>, 2007, 2009, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio-extras\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-01 00:18+0000\n"
 "PO-Revision-Date: 2020-10-13 20:49+0200\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
 "Language: ca@valencia\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/ca@valencia/kio5_activities.po 
new/kio-extras-21.08.3/po/ca@valencia/kio5_activities.po
--- old/kio-extras-21.08.2/po/ca@valencia/kio5_activities.po    2021-10-05 
07:42:32.000000000 +0200
+++ new/kio-extras-21.08.3/po/ca@valencia/kio5_activities.po    2021-11-02 
01:15:13.000000000 +0100
@@ -3,7 +3,7 @@
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
-# Josep Ma. Ferrer <[email protected]>, 2014, 2015, 2019.
+# Josep M. Ferrer <[email protected]>, 2014, 2015, 2019.
 # Antoni Bella P??rez <[email protected]>, 2014, 2015, 2016.
 msgid ""
 msgstr ""
@@ -11,7 +11,7 @@
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-30 00:17+0000\n"
 "PO-Revision-Date: 2019-11-09 11:33+0100\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
 "Language: ca@valencia\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/ca@valencia/kio5_archive.po 
new/kio-extras-21.08.3/po/ca@valencia/kio5_archive.po
--- old/kio-extras-21.08.2/po/ca@valencia/kio5_archive.po       2021-10-05 
07:42:32.000000000 +0200
+++ new/kio-extras-21.08.3/po/ca@valencia/kio5_archive.po       2021-11-02 
01:15:13.000000000 +0100
@@ -4,14 +4,14 @@
 # version 3 or later versions approved by the membership of KDE e.V.
 #
 # Aleix Pol Gonz??lez <[email protected]>, 2005.
-# Josep Ma. Ferrer <[email protected]>, 2013, 2016.
+# Josep M. Ferrer <[email protected]>, 2013, 2016.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio-extras\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-07-07 00:17+0000\n"
 "PO-Revision-Date: 2016-06-05 15:09+0200\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
 "Language: ca@valencia\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/ca@valencia/kio5_bookmarks.po 
new/kio-extras-21.08.3/po/ca@valencia/kio5_bookmarks.po
--- old/kio-extras-21.08.2/po/ca@valencia/kio5_bookmarks.po     2021-10-05 
07:42:32.000000000 +0200
+++ new/kio-extras-21.08.3/po/ca@valencia/kio5_bookmarks.po     2021-11-02 
01:15:13.000000000 +0100
@@ -3,14 +3,14 @@
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
-# Josep Ma. Ferrer <[email protected]>, 2008, 2009, 2020.
+# Josep M. Ferrer <[email protected]>, 2008, 2009, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio-extras\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-30 00:17+0000\n"
 "PO-Revision-Date: 2020-10-31 10:19+0100\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
 "Language: ca@valencia\n"
 "MIME-Version: 1.0\n"
@@ -63,12 +63,3 @@
 #, kde-format
 msgid "My Bookmarks"
 msgstr "Les meues adreces d'inter??s"
-
-#~ msgid "My bookmarks"
-#~ msgstr "Les meves adreces d'inter??s"
-
-#~ msgid "Xavier Vello"
-#~ msgstr "Xavier Vello"
-
-#~ msgid "Initial developer"
-#~ msgstr "Desenvolupador inicial"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/ca@valencia/kio5_fish.po 
new/kio-extras-21.08.3/po/ca@valencia/kio5_fish.po
--- old/kio-extras-21.08.2/po/ca@valencia/kio5_fish.po  2021-10-05 
07:42:32.000000000 +0200
+++ new/kio-extras-21.08.3/po/ca@valencia/kio5_fish.po  2021-11-02 
01:15:13.000000000 +0100
@@ -5,14 +5,14 @@
 #
 # Antoni Bella P??rez <[email protected]>, 2003.
 # Sebasti?? Pla i Sanz <[email protected]>, 2004.
-# Josep Ma. Ferrer <[email protected]>, 2009, 2012.
+# Josep M. Ferrer <[email protected]>, 2009, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio-extras\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-30 00:17+0000\n"
 "PO-Revision-Date: 2012-10-14 19:09+0200\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
 "Language: ca@valencia\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/ca@valencia/kio5_info.po 
new/kio-extras-21.08.3/po/ca@valencia/kio5_info.po
--- old/kio-extras-21.08.2/po/ca@valencia/kio5_info.po  2021-10-05 
07:42:32.000000000 +0200
+++ new/kio-extras-21.08.3/po/ca@valencia/kio5_info.po  2021-11-02 
01:15:13.000000000 +0100
@@ -3,7 +3,7 @@
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
-# Josep Ma. Ferrer <[email protected]>, 2009.
+# Josep M. Ferrer <[email protected]>, 2009.
 # Antoni Bella P??rez <[email protected]>, 2016, 2021.
 msgid ""
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/ca@valencia/kio5_man.po 
new/kio-extras-21.08.3/po/ca@valencia/kio5_man.po
--- old/kio-extras-21.08.2/po/ca@valencia/kio5_man.po   2021-10-05 
07:42:32.000000000 +0200
+++ new/kio-extras-21.08.3/po/ca@valencia/kio5_man.po   2021-11-02 
01:15:13.000000000 +0100
@@ -6,14 +6,14 @@
 # Sebasti?? Pla i Sanz <[email protected]>, 2000, 2001, 2004, 2006.
 # Antoni Bella P??rez <[email protected]>, 2002, 2003, 2016, 2020.
 # Albert Astals Cid <[email protected]>, 2005.
-# Josep Ma. Ferrer <[email protected]>, 2007, 2008, 2009, 2012, 2013, 2015, 
2019, 2020.
+# Josep M. Ferrer <[email protected]>, 2007, 2008, 2009, 2012, 2013, 2015, 
2019, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio-extras\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-07-07 00:17+0000\n"
 "PO-Revision-Date: 2020-09-13 10:23+0100\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
 "Language: ca@valencia\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/ca@valencia/kio5_mtp.po 
new/kio-extras-21.08.3/po/ca@valencia/kio5_mtp.po
--- old/kio-extras-21.08.2/po/ca@valencia/kio5_mtp.po   2021-10-05 
07:42:32.000000000 +0200
+++ new/kio-extras-21.08.3/po/ca@valencia/kio5_mtp.po   2021-11-02 
01:15:13.000000000 +0100
@@ -3,7 +3,7 @@
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
-# Josep Ma. Ferrer <[email protected]>, 2014, 2016, 2018, 2019.
+# Josep M. Ferrer <[email protected]>, 2014, 2016, 2018, 2019.
 # Antoni Bella P??rez <[email protected]>, 2014.
 msgid ""
 msgstr ""
@@ -11,7 +11,7 @@
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-30 00:17+0000\n"
 "PO-Revision-Date: 2019-02-16 13:36+0100\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
 "Language: ca@valencia\n"
 "MIME-Version: 1.0\n"
@@ -34,8 +34,3 @@
 #, kde-format
 msgid "Cannot copy/move files on the device itself"
 msgstr "No es poden copiar/moure fitxers sobre el mateix dispositiu"
-
-#~ msgid "No Storages found. Maybe you need to unlock your device?"
-#~ msgstr ""
-#~ "No s'ha trobat cap emmagatzemament. Potser cal que desbloquegeu el "
-#~ "dispositiu?"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/ca@valencia/kio5_nfs.po 
new/kio-extras-21.08.3/po/ca@valencia/kio5_nfs.po
--- old/kio-extras-21.08.2/po/ca@valencia/kio5_nfs.po   2021-10-05 
07:42:32.000000000 +0200
+++ new/kio-extras-21.08.3/po/ca@valencia/kio5_nfs.po   2021-11-02 
01:15:13.000000000 +0100
@@ -4,7 +4,7 @@
 # version 3 or later versions approved by the membership of KDE e.V.
 #
 # Antoni Bella P??rez <[email protected]>, 2002, 2014, 2016, 2020, 2021.
-# Josep Ma. Ferrer <[email protected]>, 2014, 2016.
+# Josep M. Ferrer <[email protected]>, 2014, 2016.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio-extras\n"
@@ -60,18 +60,3 @@
 #, kde-format
 msgid "Unknown target"
 msgstr "Objectiu desconegut"
-
-#~ msgid "%1: Unsupported NFS version"
-#~ msgstr "%1: Versi?? no admesa de l'NFS"
-
-#~ msgid "No space left on device"
-#~ msgstr "No queda espai al dispositiu"
-
-#~ msgid "Read only file system"
-#~ msgstr "Sistema de nom??s lectura"
-
-#~ msgid "Failed to mount %1"
-#~ msgstr "Ha fallat en muntar %1"
-
-#~ msgid "An RPC error occurred."
-#~ msgstr "S'ha produ??t un error RPC."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kio-extras-21.08.2/po/ca@valencia/kio5_recentdocuments.po 
new/kio-extras-21.08.3/po/ca@valencia/kio5_recentdocuments.po
--- old/kio-extras-21.08.2/po/ca@valencia/kio5_recentdocuments.po       
2021-10-05 07:42:32.000000000 +0200
+++ new/kio-extras-21.08.3/po/ca@valencia/kio5_recentdocuments.po       
2021-11-02 01:15:13.000000000 +0100
@@ -3,14 +3,14 @@
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
-# Josep Ma. Ferrer <[email protected]>, 2012.
+# Josep M. Ferrer <[email protected]>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio-extras\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-30 00:17+0000\n"
 "PO-Revision-Date: 2012-04-28 23:47+0200\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
 "Language: ca@valencia\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/ca@valencia/kio5_sftp.po 
new/kio-extras-21.08.3/po/ca@valencia/kio5_sftp.po
--- old/kio-extras-21.08.2/po/ca@valencia/kio5_sftp.po  2021-10-05 
07:42:32.000000000 +0200
+++ new/kio-extras-21.08.3/po/ca@valencia/kio5_sftp.po  2021-11-02 
01:15:13.000000000 +0100
@@ -6,7 +6,7 @@
 # Antoni Bella P??rez <[email protected]>, 2002, 2003, 2014, 2016, 2020.
 # Sebasti?? Pla i Sanz <[email protected]>, 2004.
 # Albert Astals Cid <[email protected]>, 2005.
-# Josep Ma. Ferrer <[email protected]>, 2008, 2009, 2010, 2012, 2013, 2014, 
2015, 2018.
+# Josep M. Ferrer <[email protected]>, 2008, 2009, 2010, 2012, 2013, 2014, 
2015, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio-extras\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/ca@valencia/kio5_smb.po 
new/kio-extras-21.08.3/po/ca@valencia/kio5_smb.po
--- old/kio-extras-21.08.2/po/ca@valencia/kio5_smb.po   2021-10-05 
07:42:32.000000000 +0200
+++ new/kio-extras-21.08.3/po/ca@valencia/kio5_smb.po   2021-11-02 
01:15:13.000000000 +0100
@@ -6,14 +6,14 @@
 # Antoni Bella P??rez <[email protected]>, 2002, 2003, 2014, 2016, 2017, 
2020.
 # Sebasti?? Pla i Sanz <[email protected]>, 2004, 2006.
 # Albert Astals Cid <[email protected]>, 2005.
-# Josep Ma. Ferrer <[email protected]>, 2006, 2007, 2008, 2009, 2010, 2015, 
2020.
+# Josep M. Ferrer <[email protected]>, 2006, 2007, 2008, 2009, 2010, 2015, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio-extras\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-07-07 00:17+0000\n"
 "PO-Revision-Date: 2020-11-10 14:07+0100\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
 "Language: ca@valencia\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/ca@valencia/kio5_thumbnail.po 
new/kio-extras-21.08.3/po/ca@valencia/kio5_thumbnail.po
--- old/kio-extras-21.08.2/po/ca@valencia/kio5_thumbnail.po     2021-10-05 
07:42:32.000000000 +0200
+++ new/kio-extras-21.08.3/po/ca@valencia/kio5_thumbnail.po     2021-11-02 
01:15:13.000000000 +0100
@@ -4,7 +4,7 @@
 # version 3 or later versions approved by the membership of KDE e.V.
 #
 # Aleix Pol Gonz??lez <[email protected]>, 2005.
-# Josep Ma. Ferrer <[email protected]>, 2007, 2009, 2011.
+# Josep M. Ferrer <[email protected]>, 2007, 2009, 2011.
 # Antoni Bella P??rez <[email protected]>, 2016, 2020.
 msgid ""
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/fi/kio5_man.po 
new/kio-extras-21.08.3/po/fi/kio5_man.po
--- old/kio-extras-21.08.2/po/fi/kio5_man.po    2021-10-05 07:42:32.000000000 
+0200
+++ new/kio-extras-21.08.3/po/fi/kio5_man.po    2021-11-02 01:15:14.000000000 
+0100
@@ -6,13 +6,13 @@
 # Ilpo Kantonen <[email protected]>, 2005.
 # Teemu Rytilahti <[email protected]>, 2008.
 # Lasse Liehu <[email protected]>, 2011, 2012, 2013.
-# Tommi Nieminen <[email protected]>, 2019, 2020.
+# Tommi Nieminen <[email protected]>, 2019, 2020, 2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio_man\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-07-07 00:17+0000\n"
-"PO-Revision-Date: 2020-12-21 17:59+0200\n"
+"PO-Revision-Date: 2021-10-11 14:53+0300\n"
 "Last-Translator: Tommi Nieminen <[email protected]>\n"
 "Language-Team: Finnish <[email protected]>\n"
 "Language: fi\n"
@@ -89,12 +89,12 @@
 #: kio_man.cpp:752
 #, kde-format
 msgid "Header files"
-msgstr "Otsikkotiedostot"
+msgstr "Otsaketiedostot"
 
 #: kio_man.cpp:753
 #, kde-format
 msgid "Header files (POSIX)"
-msgstr "Otsikkotiedostot (POSIX)"
+msgstr "Otsaketiedostot (POSIX)"
 
 #: kio_man.cpp:754
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/fr/kio5_sftp.po 
new/kio-extras-21.08.3/po/fr/kio5_sftp.po
--- old/kio-extras-21.08.2/po/fr/kio5_sftp.po   2021-10-05 07:42:32.000000000 
+0200
+++ new/kio-extras-21.08.3/po/fr/kio5_sftp.po   2021-11-02 01:15:14.000000000 
+0100
@@ -31,7 +31,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 20.12.0\n"
+"X-Generator: Lokalize 21.08.1\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/vi/kfileaudiopreview5.po 
new/kio-extras-21.08.3/po/vi/kfileaudiopreview5.po
--- old/kio-extras-21.08.2/po/vi/kfileaudiopreview5.po  2021-10-05 
07:42:33.000000000 +0200
+++ new/kio-extras-21.08.3/po/vi/kfileaudiopreview5.po  2021-11-02 
01:15:15.000000000 +0100
@@ -3,14 +3,14 @@
 #
 # Clytie Siddall <[email protected]>, 2006.
 # Ho??ng ?????c Hi???u <[email protected]>, 2008.
-# Phu Hung Nguyen <[email protected]>, 2021.
+# Phu Hung Nguyen <[email protected]>, 2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: kfileaudiopreview4\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-01 00:18+0000\n"
 "PO-Revision-Date: 2021-08-01 18:30+0200\n"
-"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
+"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
 "Language-Team: Vietnamese <[email protected]>\n"
 "Language: vi\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/vi/kio5_activities.po 
new/kio-extras-21.08.3/po/vi/kio5_activities.po
--- old/kio-extras-21.08.2/po/vi/kio5_activities.po     2021-10-05 
07:42:33.000000000 +0200
+++ new/kio-extras-21.08.3/po/vi/kio5_activities.po     2021-11-02 
01:15:15.000000000 +0100
@@ -1,14 +1,14 @@
 # Copyright (C) YEAR This file is copyright:
 # This file is distributed under the same license as the kio-extras package.
 #
-# Phu Hung Nguyen <[email protected]>, 2021.
+# Phu Hung Nguyen <[email protected]>, 2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio-extras\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-30 00:17+0000\n"
 "PO-Revision-Date: 2021-08-01 18:14+0200\n"
-"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
+"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
 "Language-Team: Vietnamese <[email protected]>\n"
 "Language: vi\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/vi/kio5_archive.po 
new/kio-extras-21.08.3/po/vi/kio5_archive.po
--- old/kio-extras-21.08.2/po/vi/kio5_archive.po        2021-10-05 
07:42:33.000000000 +0200
+++ new/kio-extras-21.08.3/po/vi/kio5_archive.po        2021-11-02 
01:15:15.000000000 +0100
@@ -2,14 +2,14 @@
 # Copyright ?? 2006 Free Software Foundation, Inc.
 #
 # Phan Vinh Thinh <[email protected]>, 2006.
-# Phu Hung Nguyen <[email protected]>, 2021.
+# Phu Hung Nguyen <[email protected]>, 2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio_tar\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-07-07 00:17+0000\n"
 "PO-Revision-Date: 2021-08-03 10:03+0200\n"
-"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
+"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
 "Language-Team: Vietnamese <[email protected]>\n"
 "Language: vi\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/vi/kio5_bookmarks.po 
new/kio-extras-21.08.3/po/vi/kio5_bookmarks.po
--- old/kio-extras-21.08.2/po/vi/kio5_bookmarks.po      2021-10-05 
07:42:33.000000000 +0200
+++ new/kio-extras-21.08.3/po/vi/kio5_bookmarks.po      2021-11-02 
01:15:15.000000000 +0100
@@ -2,14 +2,14 @@
 # This file is distributed under the same license as the PACKAGE package.
 #
 # L?? Ho??ng Ph????ng <[email protected]>, 2011.
-# Phu Hung Nguyen <[email protected]>, 2021.
+# Phu Hung Nguyen <[email protected]>, 2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-30 00:17+0000\n"
 "PO-Revision-Date: 2021-08-01 18:23+0200\n"
-"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
+"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
 "Language-Team: Vietnamese <[email protected]>\n"
 "Language: vi\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/vi/kio5_fish.po 
new/kio-extras-21.08.3/po/vi/kio5_fish.po
--- old/kio-extras-21.08.2/po/vi/kio5_fish.po   2021-10-05 07:42:33.000000000 
+0200
+++ new/kio-extras-21.08.3/po/vi/kio5_fish.po   2021-11-02 01:15:15.000000000 
+0100
@@ -2,14 +2,14 @@
 # Copyright ?? 2006 Free Software Foundation, Inc.
 #
 # Phan V??nh Th???nh <[email protected]>, 2006.
-# Phu Hung Nguyen <[email protected]>, 2021.
+# Phu Hung Nguyen <[email protected]>, 2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio_fish\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-30 00:17+0000\n"
 "PO-Revision-Date: 2021-08-01 14:28+0200\n"
-"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
+"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
 "Language-Team: Vietnamese <[email protected]>\n"
 "Language: vi\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/vi/kio5_info.po 
new/kio-extras-21.08.3/po/vi/kio5_info.po
--- old/kio-extras-21.08.2/po/vi/kio5_info.po   2021-10-05 07:42:33.000000000 
+0200
+++ new/kio-extras-21.08.3/po/vi/kio5_info.po   2021-11-02 01:15:15.000000000 
+0100
@@ -2,14 +2,14 @@
 # This file is distributed under the same license as the PACKAGE package.
 #
 # L?? Ho??ng Ph????ng <[email protected]>, 2011.
-# Phu Hung Nguyen <[email protected]>, 2021.
+# Phu Hung Nguyen <[email protected]>, 2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-07-10 00:16+0000\n"
 "PO-Revision-Date: 2021-08-01 14:30+0200\n"
-"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
+"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
 "Language-Team: Vietnamese <[email protected]>\n"
 "Language: vi\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/vi/kio5_man.po 
new/kio-extras-21.08.3/po/vi/kio5_man.po
--- old/kio-extras-21.08.2/po/vi/kio5_man.po    2021-10-05 07:42:33.000000000 
+0200
+++ new/kio-extras-21.08.3/po/vi/kio5_man.po    2021-11-02 01:15:15.000000000 
+0100
@@ -4,14 +4,14 @@
 # Nguy???n H??ng V?? <[email protected]>, 2002.
 # Phan V??nh Th???nh <[email protected]>, 2006.
 # L?? Ho??ng Ph????ng <[email protected]>, 2011, 2012.
-# Phu Hung Nguyen <[email protected]>, 2021.
+# Phu Hung Nguyen <[email protected]>, 2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio_man\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-07-07 00:17+0000\n"
 "PO-Revision-Date: 2021-08-03 11:08+0200\n"
-"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
+"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
 "Language-Team: Vietnamese <[email protected]>\n"
 "Language: vi\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/vi/kio5_mtp.po 
new/kio-extras-21.08.3/po/vi/kio5_mtp.po
--- old/kio-extras-21.08.2/po/vi/kio5_mtp.po    2021-10-05 07:42:33.000000000 
+0200
+++ new/kio-extras-21.08.3/po/vi/kio5_mtp.po    2021-11-02 01:15:15.000000000 
+0100
@@ -1,14 +1,14 @@
 # Copyright (C) YEAR This file is copyright:
 # This file is distributed under the same license as the kio-extras package.
 #
-# Phu Hung Nguyen <[email protected]>, 2021.
+# Phu Hung Nguyen <[email protected]>, 2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio-extras\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-30 00:17+0000\n"
 "PO-Revision-Date: 2021-08-01 18:33+0200\n"
-"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
+"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
 "Language-Team: Vietnamese <[email protected]>\n"
 "Language: vi\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/vi/kio5_nfs.po 
new/kio-extras-21.08.3/po/vi/kio5_nfs.po
--- old/kio-extras-21.08.2/po/vi/kio5_nfs.po    2021-10-05 07:42:33.000000000 
+0200
+++ new/kio-extras-21.08.3/po/vi/kio5_nfs.po    2021-11-02 01:15:15.000000000 
+0100
@@ -3,14 +3,14 @@
 #
 # Nguy???n H??ng V?? <[email protected]>, 2002.
 # Phan V??nh Th???nh <[email protected]>, 2006.
-# Phu Hung Nguyen <[email protected]>, 2021.
+# Phu Hung Nguyen <[email protected]>, 2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio_nfs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-30 00:17+0000\n"
 "PO-Revision-Date: 2021-08-01 18:28+0200\n"
-"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
+"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
 "Language-Team: Vietnamese <[email protected]>\n"
 "Language: vi\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/vi/kio5_recentdocuments.po 
new/kio-extras-21.08.3/po/vi/kio5_recentdocuments.po
--- old/kio-extras-21.08.2/po/vi/kio5_recentdocuments.po        2021-10-05 
07:42:33.000000000 +0200
+++ new/kio-extras-21.08.3/po/vi/kio5_recentdocuments.po        2021-11-02 
01:15:15.000000000 +0100
@@ -1,14 +1,14 @@
 # Copyright (C) YEAR This file is copyright:
 # This file is distributed under the same license as the kio-extras package.
 #
-# Phu Hung Nguyen <[email protected]>, 2021.
+# Phu Hung Nguyen <[email protected]>, 2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio-extras\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-30 00:17+0000\n"
 "PO-Revision-Date: 2021-08-01 18:33+0200\n"
-"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
+"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
 "Language-Team: Vietnamese <[email protected]>\n"
 "Language: vi\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/vi/kio5_sftp.po 
new/kio-extras-21.08.3/po/vi/kio5_sftp.po
--- old/kio-extras-21.08.2/po/vi/kio5_sftp.po   2021-10-05 07:42:33.000000000 
+0200
+++ new/kio-extras-21.08.3/po/vi/kio5_sftp.po   2021-11-02 01:15:15.000000000 
+0100
@@ -3,14 +3,14 @@
 #
 # Phan V??nh Th???nh <[email protected]>, 2006.
 # L?? Ho??ng Ph????ng <[email protected]>, 2013.
-# Phu Hung Nguyen <[email protected]>, 2021.
+# Phu Hung Nguyen <[email protected]>, 2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio_sftp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-30 00:17+0000\n"
 "PO-Revision-Date: 2021-08-01 17:17+0200\n"
-"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
+"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
 "Language-Team: Vietnamese <[email protected]>\n"
 "Language: vi\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/vi/kio5_smb.po 
new/kio-extras-21.08.3/po/vi/kio5_smb.po
--- old/kio-extras-21.08.2/po/vi/kio5_smb.po    2021-10-05 07:42:33.000000000 
+0200
+++ new/kio-extras-21.08.3/po/vi/kio5_smb.po    2021-11-02 01:15:15.000000000 
+0100
@@ -2,14 +2,14 @@
 # Copyright ?? 2006 Free Software Foundation, Inc.
 #
 # Phan V??nh Th???nh <[email protected]>, 2006.
-# Phu Hung Nguyen <[email protected]>, 2021.
+# Phu Hung Nguyen <[email protected]>, 2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio_smb\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-07-07 00:17+0000\n"
 "PO-Revision-Date: 2021-08-01 15:38+0200\n"
-"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
+"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
 "Language-Team: Vietnamese <[email protected]>\n"
 "Language: vi\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/vi/kio5_thumbnail.po 
new/kio-extras-21.08.3/po/vi/kio5_thumbnail.po
--- old/kio-extras-21.08.2/po/vi/kio5_thumbnail.po      2021-10-05 
07:42:33.000000000 +0200
+++ new/kio-extras-21.08.3/po/vi/kio5_thumbnail.po      2021-11-02 
01:15:15.000000000 +0100
@@ -3,14 +3,14 @@
 #
 # Phan V??nh Th???nh <[email protected]>, 2006.
 # L?? Ho??ng Ph????ng <[email protected]>, 2011.
-# Phu Hung Nguyen <[email protected]>, 2021.
+# Phu Hung Nguyen <[email protected]>, 2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio_thumbnail\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-07-11 01:37+0000\n"
 "PO-Revision-Date: 2021-08-03 11:40+0200\n"
-"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
+"Last-Translator: Phu Hung Nguyen <[email protected]>\n"
 "Language-Team: Vietnamese <[email protected]>\n"
 "Language: vi\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/zh_CN/kfileaudiopreview5.po 
new/kio-extras-21.08.3/po/zh_CN/kfileaudiopreview5.po
--- old/kio-extras-21.08.2/po/zh_CN/kfileaudiopreview5.po       2021-10-05 
07:42:33.000000000 +0200
+++ new/kio-extras-21.08.3/po/zh_CN/kfileaudiopreview5.po       2021-11-02 
01:15:15.000000000 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-01 00:18+0000\n"
-"PO-Revision-Date: 2021-09-27 13:11\n"
+"PO-Revision-Date: 2021-10-29 13:28\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/zh_CN/kio5_activities.po 
new/kio-extras-21.08.3/po/zh_CN/kio5_activities.po
--- old/kio-extras-21.08.2/po/zh_CN/kio5_activities.po  2021-10-05 
07:42:33.000000000 +0200
+++ new/kio-extras-21.08.3/po/zh_CN/kio5_activities.po  2021-11-02 
01:15:15.000000000 +0100
@@ -9,7 +9,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-30 00:17+0000\n"
-"PO-Revision-Date: 2021-09-27 13:11\n"
+"PO-Revision-Date: 2021-10-29 13:28\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/zh_CN/kio5_archive.po 
new/kio-extras-21.08.3/po/zh_CN/kio5_archive.po
--- old/kio-extras-21.08.2/po/zh_CN/kio5_archive.po     2021-10-05 
07:42:33.000000000 +0200
+++ new/kio-extras-21.08.3/po/zh_CN/kio5_archive.po     2021-11-02 
01:15:15.000000000 +0100
@@ -6,7 +6,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-07-07 00:17+0000\n"
-"PO-Revision-Date: 2021-09-27 13:11\n"
+"PO-Revision-Date: 2021-10-29 13:28\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/zh_CN/kio5_bookmarks.po 
new/kio-extras-21.08.3/po/zh_CN/kio5_bookmarks.po
--- old/kio-extras-21.08.2/po/zh_CN/kio5_bookmarks.po   2021-10-05 
07:42:33.000000000 +0200
+++ new/kio-extras-21.08.3/po/zh_CN/kio5_bookmarks.po   2021-11-02 
01:15:15.000000000 +0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-30 00:17+0000\n"
-"PO-Revision-Date: 2021-09-27 13:11\n"
+"PO-Revision-Date: 2021-10-29 13:28\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/zh_CN/kio5_fish.po 
new/kio-extras-21.08.3/po/zh_CN/kio5_fish.po
--- old/kio-extras-21.08.2/po/zh_CN/kio5_fish.po        2021-10-05 
07:42:33.000000000 +0200
+++ new/kio-extras-21.08.3/po/zh_CN/kio5_fish.po        2021-11-02 
01:15:15.000000000 +0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-30 00:17+0000\n"
-"PO-Revision-Date: 2021-09-27 13:11\n"
+"PO-Revision-Date: 2021-10-29 13:28\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/zh_CN/kio5_info.po 
new/kio-extras-21.08.3/po/zh_CN/kio5_info.po
--- old/kio-extras-21.08.2/po/zh_CN/kio5_info.po        2021-10-05 
07:42:33.000000000 +0200
+++ new/kio-extras-21.08.3/po/zh_CN/kio5_info.po        2021-11-02 
01:15:15.000000000 +0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-07-10 00:16+0000\n"
-"PO-Revision-Date: 2021-09-27 13:11\n"
+"PO-Revision-Date: 2021-10-29 13:28\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/zh_CN/kio5_man.po 
new/kio-extras-21.08.3/po/zh_CN/kio5_man.po
--- old/kio-extras-21.08.2/po/zh_CN/kio5_man.po 2021-10-05 07:42:33.000000000 
+0200
+++ new/kio-extras-21.08.3/po/zh_CN/kio5_man.po 2021-11-02 01:15:15.000000000 
+0100
@@ -10,7 +10,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-07-07 00:17+0000\n"
-"PO-Revision-Date: 2021-09-27 13:11\n"
+"PO-Revision-Date: 2021-10-29 13:28\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/zh_CN/kio5_mtp.po 
new/kio-extras-21.08.3/po/zh_CN/kio5_mtp.po
--- old/kio-extras-21.08.2/po/zh_CN/kio5_mtp.po 2021-10-05 07:42:33.000000000 
+0200
+++ new/kio-extras-21.08.3/po/zh_CN/kio5_mtp.po 2021-11-02 01:15:15.000000000 
+0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-30 00:17+0000\n"
-"PO-Revision-Date: 2021-09-27 13:11\n"
+"PO-Revision-Date: 2021-10-29 13:28\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/zh_CN/kio5_nfs.po 
new/kio-extras-21.08.3/po/zh_CN/kio5_nfs.po
--- old/kio-extras-21.08.2/po/zh_CN/kio5_nfs.po 2021-10-05 07:42:33.000000000 
+0200
+++ new/kio-extras-21.08.3/po/zh_CN/kio5_nfs.po 2021-11-02 01:15:15.000000000 
+0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-30 00:17+0000\n"
-"PO-Revision-Date: 2021-09-27 13:11\n"
+"PO-Revision-Date: 2021-10-29 13:28\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/zh_CN/kio5_recentdocuments.po 
new/kio-extras-21.08.3/po/zh_CN/kio5_recentdocuments.po
--- old/kio-extras-21.08.2/po/zh_CN/kio5_recentdocuments.po     2021-10-05 
07:42:33.000000000 +0200
+++ new/kio-extras-21.08.3/po/zh_CN/kio5_recentdocuments.po     2021-11-02 
01:15:15.000000000 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-30 00:17+0000\n"
-"PO-Revision-Date: 2021-09-27 13:11\n"
+"PO-Revision-Date: 2021-10-29 13:28\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/zh_CN/kio5_sftp.po 
new/kio-extras-21.08.3/po/zh_CN/kio5_sftp.po
--- old/kio-extras-21.08.2/po/zh_CN/kio5_sftp.po        2021-10-05 
07:42:33.000000000 +0200
+++ new/kio-extras-21.08.3/po/zh_CN/kio5_sftp.po        2021-11-02 
01:15:15.000000000 +0100
@@ -13,7 +13,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-05-30 00:17+0000\n"
-"PO-Revision-Date: 2021-09-27 13:11\n"
+"PO-Revision-Date: 2021-10-29 13:28\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/zh_CN/kio5_smb.po 
new/kio-extras-21.08.3/po/zh_CN/kio5_smb.po
--- old/kio-extras-21.08.2/po/zh_CN/kio5_smb.po 2021-10-05 07:42:33.000000000 
+0200
+++ new/kio-extras-21.08.3/po/zh_CN/kio5_smb.po 2021-11-02 01:15:15.000000000 
+0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-07-07 00:17+0000\n"
-"PO-Revision-Date: 2021-09-27 13:11\n"
+"PO-Revision-Date: 2021-10-29 13:28\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.08.2/po/zh_CN/kio5_thumbnail.po 
new/kio-extras-21.08.3/po/zh_CN/kio5_thumbnail.po
--- old/kio-extras-21.08.2/po/zh_CN/kio5_thumbnail.po   2021-10-05 
07:42:33.000000000 +0200
+++ new/kio-extras-21.08.3/po/zh_CN/kio5_thumbnail.po   2021-11-02 
01:15:15.000000000 +0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-07-11 01:37+0000\n"
-"PO-Revision-Date: 2021-09-27 13:11\n"
+"PO-Revision-Date: 2021-10-29 13:28\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"

Reply via email to