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 2022-01-11 21:15:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kio-extras5 (Old)
 and      /work/SRC/openSUSE:Factory/.kio-extras5.new.1892 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kio-extras5"

Tue Jan 11 21:15:05 2022 rev:105 rq:944335 version:21.12.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/kio-extras5/kio-extras5.changes  2021-12-13 
20:40:29.492456378 +0100
+++ /work/SRC/openSUSE:Factory/.kio-extras5.new.1892/kio-extras5.changes        
2022-01-11 21:15:56.784818581 +0100
@@ -1,0 +2,17 @@
+Wed Jan  5 13:50:36 UTC 2022 - Fabian Vogt <fab...@ritter-vogt.de>
+
+- Add patch to fix sftp connection if the server requires compression
+  (boo#1192731):
+  * 0001-sftp-Allow-compression-if-necessary.patch
+
+-------------------------------------------------------------------
+Tue Jan  4 10:25:44 UTC 2022 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 21.12.1
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/21.12.1/
+- Changes since 21.12.0:
+  * Fix SMB URL (kde#447319)
+
+-------------------------------------------------------------------

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

New:
----
  0001-sftp-Allow-compression-if-necessary.patch
  kio-extras-21.12.1.tar.xz
  kio-extras-21.12.1.tar.xz.sig

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

Other differences:
------------------
++++++ kio-extras5.spec ++++++
--- /var/tmp/diff_new_pack.s5obQf/_old  2022-01-11 21:15:57.316818956 +0100
+++ /var/tmp/diff_new_pack.s5obQf/_new  2022-01-11 21:15:57.324818961 +0100
@@ -19,20 +19,22 @@
 %define rname kio-extras
 # Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA)
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
-%bcond_without lang
+%bcond_without released
 Name:           kio-extras5
-Version:        21.12.0
+Version:        21.12.1
 Release:        0
 Summary:        Additional KIO slaves for KDE applications
 License:        GPL-2.0-or-later
 Group:          System/GUI/KDE
 URL:            https://www.kde.org
 Source:         
https://download.kde.org/stable/release-service/%{version}/src/%{rname}-%{version}.tar.xz
-%if %{with lang}
+%if %{with released}
 Source1:        
https://download.kde.org/stable/release-service/%{version}/src/%{rname}-%{version}.tar.xz.sig
 Source2:        applications.keyring
 %endif
 Source99:       %{name}-rpmlintrc
+# PATCH-FIX-UPSTREAM
+Patch1:         0001-sftp-Allow-compression-if-necessary.patch
 # openEXR causes build issues for Leap 15.2 & 15.3
 %if 0%{?suse_version} > 1500
 BuildRequires:  OpenEXR-devel
@@ -112,7 +114,7 @@
 
 %install
   %kf5_makeinstall -C build
-  %if %{with lang}
+  %if %{with released}
     %{kf5_find_lang}
     %{kf5_find_htmldocs}
   %endif
@@ -148,7 +150,7 @@
 %license LICENSES/*
 %{_libdir}/libkioarchive.so.5*
 
-%if %{with lang}
+%if %{with released}
 %files lang -f %{name}.lang
 %endif
 

++++++ 0001-sftp-Allow-compression-if-necessary.patch ++++++
>From f3ad370f237c69c018c968bab6f79b16c27edbba Mon Sep 17 00:00:00 2001
From: Fabian Vogt <fab...@ritter-vogt.de>
Date: Tue, 16 Nov 2021 08:35:45 +0100
Subject: [PATCH] sftp: Allow compression if necessary

Specifying only "none" as compression method causes the exchange to fail if
the server doesn't support "none".

Use the same options as OpenSSH does by default. The Compression=yes/no option
in the config file overrides them if specified.

Setting the options explicitly can be dropped in the future after libssh
adjusts its built-in defaults.

(cherry picked from commit c5a9722de86f111ded36488e9bb676a70e80aea0)
---
 sftp/kio_sftp.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sftp/kio_sftp.cpp b/sftp/kio_sftp.cpp
index 1afc51f5..c90aab76 100644
--- a/sftp/kio_sftp.cpp
+++ b/sftp/kio_sftp.cpp
@@ -592,13 +592,13 @@ Result SFTPInternal::sftpOpenConnection(const AuthInfo 
&info)
         return Result::fail(KIO::ERR_INTERNAL, i18n("Could not disable Nagle's 
Algorithm."));
     }
 
-    // Don't use any compression
-    rc = ssh_options_set(mSession, SSH_OPTIONS_COMPRESSION_C_S, "none");
+    // Prefer not to use compression
+    rc = ssh_options_set(mSession, SSH_OPTIONS_COMPRESSION_C_S, 
"none,z...@openssh.com,zlib");
     if (rc < 0) {
         return Result::fail(KIO::ERR_INTERNAL, i18n("Could not set 
compression."));
     }
 
-    rc = ssh_options_set(mSession, SSH_OPTIONS_COMPRESSION_S_C, "none");
+    rc = ssh_options_set(mSession, SSH_OPTIONS_COMPRESSION_S_C, 
"none,z...@openssh.com,zlib");
     if (rc < 0) {
         return Result::fail(KIO::ERR_INTERNAL, i18n("Could not set 
compression."));
     }
-- 
2.33.1



++++++ kio-extras-21.12.0.tar.xz -> kio-extras-21.12.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.12.0/CMakeLists.txt 
new/kio-extras-21.12.1/CMakeLists.txt
--- old/kio-extras-21.12.0/CMakeLists.txt       2021-12-03 01:14:47.000000000 
+0100
+++ new/kio-extras-21.12.1/CMakeLists.txt       2022-01-04 01:21:14.000000000 
+0100
@@ -3,7 +3,7 @@
 # KDE Applications Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "21")
 set (RELEASE_SERVICE_VERSION_MINOR "12")
-set (RELEASE_SERVICE_VERSION_MICRO "0")
+set (RELEASE_SERVICE_VERSION_MICRO "1")
 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.12.0/po/eu/kio5_sftp.po 
new/kio-extras-21.12.1/po/eu/kio5_sftp.po
--- old/kio-extras-21.12.0/po/eu/kio5_sftp.po   2021-12-03 01:14:46.000000000 
+0100
+++ new/kio-extras-21.12.1/po/eu/kio5_sftp.po   2022-01-04 01:21:12.000000000 
+0100
@@ -1,13 +1,13 @@
 # Translation of kio_sftp.po to Euskara/Basque (eu).
 # Copyright (C) 2003-2014, Free Software Foundation, Inc.
-# Copyright (C) 2015-2019, This file is copyright:
+# Copyright (C) 2015-2021, This file is copyright:
 # This file is distributed under the same license as the kio-extras package.
-# KDE euskaratzeko proiektuaren arduraduna <xa...@euskalnet.net>.
+# KDE euskaratzeko proiektuaren arduraduna <xa...@ni.eus>.
 #
 # Translators:
 # Marcos  <mar...@euskalgnu.org>, 2003, 2005, 2006, 2008, 2009.
 # Juan Irigoien <juanirigo...@irakasle.net>, 2004.
-# I??igo Salvador Azurmendi <xa...@euskalnet.net>, 2011, 2013, 2014, 2019.
+# I??igo Salvador Azurmendi <xa...@euskalnet.net>, 2011, 2013, 2014, 2019, 
2021.
 # Hizkuntza Politikarako Sailburuordetza <hiz...@ej-gv.es>, 2013.
 # Gontzal M. Pujana <juc...@gmail.com>, 2018.
 msgid ""
@@ -15,14 +15,14 @@
 "Project-Id-Version: kio-extras\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-11-04 00:18+0000\n"
-"PO-Revision-Date: 2019-07-14 23:13+0200\n"
-"Last-Translator: I??igo Salvador Azurmendi <xa...@euskalnet.net>\n"
+"PO-Revision-Date: 2021-12-28 20:14+0100\n"
+"Last-Translator: I??igo Salvador Azurmendi <xa...@ni.eus>\n"
 "Language-Team: Basque <kde-i18n...@kde.org>\n"
 "Language: eu\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 19.04.3\n"
+"X-Generator: Lokalize 21.12.0\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: kio_sftp.cpp:208
@@ -72,11 +72,10 @@
 msgstr "Gunea:"
 
 #: kio_sftp.cpp:432
-#, fuzzy, kde-format
-#| msgid "Could not read link: %1"
+#, kde-format
 msgctxt "error message. %1 is a path, %2 is a numeric error code"
 msgid "Could not read link: %1 [%2]"
-msgstr "Ezin izan da irakurri esteka hau: %1"
+msgstr "Ezin izan da esteka irakurri: %1 [%2]"
 
 #: kio_sftp.cpp:570
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.12.0/po/fr/kio5_man.po 
new/kio-extras-21.12.1/po/fr/kio5_man.po
--- old/kio-extras-21.12.0/po/fr/kio5_man.po    2021-12-03 01:14:46.000000000 
+0100
+++ new/kio-extras-21.12.1/po/fr/kio5_man.po    2022-01-04 01:21:12.000000000 
+0100
@@ -15,7 +15,7 @@
 "Project-Id-Version: kio_man\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-09-03 00:17+0000\n"
-"PO-Revision-Date: 2021-09-04 12:41+0200\n"
+"PO-Revision-Date: 2021-12-27 22:04+0100\n"
 "Last-Translator: Xavier Besnard <xavier.besn...@neuf.fr>\n"
 "Language-Team: French <kde-francoph...@kde.org>\n"
 "Language: fr\n"
@@ -23,7 +23,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 21.08.0\n"
+"X-Generator: Lokalize 21.12.0\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
@@ -211,7 +211,7 @@
 msgstr ""
 "Impossible de trouver le programme <command>%1</command> sur votre syst??me. "
 "Veuillez l'installer, si n??cessaire, et vous assurer qu'il est accessible "
-"gr??ce ?? la variable d'environnement  <envar>PATH</envar>."
+"gr??ce ?? la variable d'environnement <envar>PATH</envar>."
 
 #~ msgid "Open of %1 failed."
 #~ msgstr "Impossible d'ouvrir ????%1????."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.12.0/po/nn/kio5_sftp.po 
new/kio-extras-21.12.1/po/nn/kio5_sftp.po
--- old/kio-extras-21.12.0/po/nn/kio5_sftp.po   2021-12-03 01:14:47.000000000 
+0100
+++ new/kio-extras-21.12.1/po/nn/kio5_sftp.po   2022-01-04 01:21:13.000000000 
+0100
@@ -3,19 +3,20 @@
 # Gaute Hvoslef Kvalnes <ga...@verdsveven.com>, 1999, 2000, 2001, 2002, 2003, 
2004.
 # Karl Ove Hufthammer <k...@huftis.org>, 2007, 2008, 2010, 2013, 2015, 2018, 
2019.
 # Eirik U. Birkeland <eir...@gmail.com>, 2008, 2009, 2010.
+# Oystein Steffensen-Alvaervik <yst...@posteo.net>, 2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio_sftp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-11-04 00:18+0000\n"
-"PO-Revision-Date: 2019-03-16 11:49+0100\n"
-"Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n"
+"PO-Revision-Date: 2021-12-15 13:01+0100\n"
+"Last-Translator: Oystein Steffensen-Alvaervik <yst...@posteo.net>\n"
 "Language-Team: Norwegian Nynorsk <l10n...@lister.huftis.org>\n"
 "Language: nn\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 18.12.3\n"
+"X-Generator: Lokalize 21.12.0\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
@@ -70,7 +71,7 @@
 #, kde-format
 msgctxt "error message. %1 is a path, %2 is a numeric error code"
 msgid "Could not read link: %1 [%2]"
-msgstr ""
+msgstr "Klarte ikkje lesa lenkja: %1??[%2]"
 
 #: kio_sftp.cpp:570
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kio-extras-21.12.0/po/zh_CN/kfileaudiopreview5.po 
new/kio-extras-21.12.1/po/zh_CN/kfileaudiopreview5.po
--- old/kio-extras-21.12.0/po/zh_CN/kfileaudiopreview5.po       2021-12-03 
01:14:47.000000000 +0100
+++ new/kio-extras-21.12.1/po/zh_CN/kfileaudiopreview5.po       2022-01-04 
01:21:13.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-11-30 15:24\n"
+"PO-Revision-Date: 2021-12-22 14:10\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.12.0/po/zh_CN/kio5_activities.po 
new/kio-extras-21.12.1/po/zh_CN/kio5_activities.po
--- old/kio-extras-21.12.0/po/zh_CN/kio5_activities.po  2021-12-03 
01:14:47.000000000 +0100
+++ new/kio-extras-21.12.1/po/zh_CN/kio5_activities.po  2022-01-04 
01:21:13.000000000 +0100
@@ -9,7 +9,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-09-24 00:16+0000\n"
-"PO-Revision-Date: 2021-11-30 15:24\n"
+"PO-Revision-Date: 2021-12-22 14:10\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.12.0/po/zh_CN/kio5_archive.po 
new/kio-extras-21.12.1/po/zh_CN/kio5_archive.po
--- old/kio-extras-21.12.0/po/zh_CN/kio5_archive.po     2021-12-03 
01:14:47.000000000 +0100
+++ new/kio-extras-21.12.1/po/zh_CN/kio5_archive.po     2022-01-04 
01:21:13.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-11-30 15:24\n"
+"PO-Revision-Date: 2021-12-22 14:10\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.12.0/po/zh_CN/kio5_bookmarks.po 
new/kio-extras-21.12.1/po/zh_CN/kio5_bookmarks.po
--- old/kio-extras-21.12.0/po/zh_CN/kio5_bookmarks.po   2021-12-03 
01:14:47.000000000 +0100
+++ new/kio-extras-21.12.1/po/zh_CN/kio5_bookmarks.po   2022-01-04 
01:21:13.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-11-30 15:24\n"
+"PO-Revision-Date: 2021-12-22 14:10\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.12.0/po/zh_CN/kio5_fish.po 
new/kio-extras-21.12.1/po/zh_CN/kio5_fish.po
--- old/kio-extras-21.12.0/po/zh_CN/kio5_fish.po        2021-12-03 
01:14:47.000000000 +0100
+++ new/kio-extras-21.12.1/po/zh_CN/kio5_fish.po        2022-01-04 
01:21:13.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-11-30 15:24\n"
+"PO-Revision-Date: 2021-12-22 14:10\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.12.0/po/zh_CN/kio5_info.po 
new/kio-extras-21.12.1/po/zh_CN/kio5_info.po
--- old/kio-extras-21.12.0/po/zh_CN/kio5_info.po        2021-12-03 
01:14:47.000000000 +0100
+++ new/kio-extras-21.12.1/po/zh_CN/kio5_info.po        2022-01-04 
01:21:13.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-11-30 15:24\n"
+"PO-Revision-Date: 2021-12-22 14:10\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.12.0/po/zh_CN/kio5_man.po 
new/kio-extras-21.12.1/po/zh_CN/kio5_man.po
--- old/kio-extras-21.12.0/po/zh_CN/kio5_man.po 2021-12-03 01:14:47.000000000 
+0100
+++ new/kio-extras-21.12.1/po/zh_CN/kio5_man.po 2022-01-04 01:21:13.000000000 
+0100
@@ -10,7 +10,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-09-03 00:17+0000\n"
-"PO-Revision-Date: 2021-11-30 15:24\n"
+"PO-Revision-Date: 2021-12-22 14:10\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.12.0/po/zh_CN/kio5_mtp.po 
new/kio-extras-21.12.1/po/zh_CN/kio5_mtp.po
--- old/kio-extras-21.12.0/po/zh_CN/kio5_mtp.po 2021-12-03 01:14:47.000000000 
+0100
+++ new/kio-extras-21.12.1/po/zh_CN/kio5_mtp.po 2022-01-04 01:21:13.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-11-30 15:24\n"
+"PO-Revision-Date: 2021-12-22 14:10\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.12.0/po/zh_CN/kio5_nfs.po 
new/kio-extras-21.12.1/po/zh_CN/kio5_nfs.po
--- old/kio-extras-21.12.0/po/zh_CN/kio5_nfs.po 2021-12-03 01:14:47.000000000 
+0100
+++ new/kio-extras-21.12.1/po/zh_CN/kio5_nfs.po 2022-01-04 01:21:13.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-11-30 15:24\n"
+"PO-Revision-Date: 2021-12-22 14:10\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.12.0/po/zh_CN/kio5_recentdocuments.po 
new/kio-extras-21.12.1/po/zh_CN/kio5_recentdocuments.po
--- old/kio-extras-21.12.0/po/zh_CN/kio5_recentdocuments.po     2021-12-03 
01:14:47.000000000 +0100
+++ new/kio-extras-21.12.1/po/zh_CN/kio5_recentdocuments.po     2022-01-04 
01:21:13.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-11-30 15:24\n"
+"PO-Revision-Date: 2021-12-22 14:10\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.12.0/po/zh_CN/kio5_sftp.po 
new/kio-extras-21.12.1/po/zh_CN/kio5_sftp.po
--- old/kio-extras-21.12.0/po/zh_CN/kio5_sftp.po        2021-12-03 
01:14:47.000000000 +0100
+++ new/kio-extras-21.12.1/po/zh_CN/kio5_sftp.po        2022-01-04 
01:21:13.000000000 +0100
@@ -13,7 +13,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-11-04 00:18+0000\n"
-"PO-Revision-Date: 2021-11-30 15:24\n"
+"PO-Revision-Date: 2021-12-22 14:10\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.12.0/po/zh_CN/kio5_smb.po 
new/kio-extras-21.12.1/po/zh_CN/kio5_smb.po
--- old/kio-extras-21.12.0/po/zh_CN/kio5_smb.po 2021-12-03 01:14:47.000000000 
+0100
+++ new/kio-extras-21.12.1/po/zh_CN/kio5_smb.po 2022-01-04 01:21:13.000000000 
+0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-10-01 00:18+0000\n"
-"PO-Revision-Date: 2021-11-30 15:24\n"
+"PO-Revision-Date: 2021-12-22 14:10\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.12.0/po/zh_CN/kio5_thumbnail.po 
new/kio-extras-21.12.1/po/zh_CN/kio5_thumbnail.po
--- old/kio-extras-21.12.0/po/zh_CN/kio5_thumbnail.po   2021-12-03 
01:14:47.000000000 +0100
+++ new/kio-extras-21.12.1/po/zh_CN/kio5_thumbnail.po   2022-01-04 
01:21:13.000000000 +0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-09-02 00:17+0000\n"
-"PO-Revision-Date: 2021-11-30 15:24\n"
+"PO-Revision-Date: 2021-12-22 14:10\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.12.0/smb/smb-network.desktop 
new/kio-extras-21.12.1/smb/smb-network.desktop
--- old/kio-extras-21.12.0/smb/smb-network.desktop      2021-12-02 
22:37:51.000000000 +0100
+++ new/kio-extras-21.12.1/smb/smb-network.desktop      2022-01-03 
22:14:01.000000000 +0100
@@ -39,4 +39,4 @@
 Name[zh_TW]=?????????????????? (SMB)
 # Open=false
 Type=Link
-URL=smb:/
+URL=smb://

Reply via email to