Hello community,

here is the log from the commit of package kcm_sddm for openSUSE:Factory 
checked in at 2020-06-08 23:52:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kcm_sddm (Old)
 and      /work/SRC/openSUSE:Factory/.kcm_sddm.new.3606 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kcm_sddm"

Mon Jun  8 23:52:19 2020 rev:88 rq:812304 version:5.19.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kcm_sddm/kcm_sddm.changes        2020-05-07 
15:08:42.368143354 +0200
+++ /work/SRC/openSUSE:Factory/.kcm_sddm.new.3606/kcm_sddm.changes      
2020-06-08 23:53:23.895098001 +0200
@@ -1,0 +2,22 @@
+Thu Jun  4 13:27:11 UTC 2020 - Fabian Vogt <[email protected]>
+
+- Update to 5.19.0
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.19.0.php
+- No code changes since 5.18.90
+
+-------------------------------------------------------------------
+Thu May 14 14:33:02 UTC 2020 - Fabian Vogt <[email protected]>
+
+- Update to 5.18.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.90.php
+- Changes since 5.18.5:
+  * bump to require Qt 5.14
+  * Make it compile against qt5.15. ::unite is deprecated.
+- Refresh patches:
+  * 0002-Replace-autologin-configuration-with-a-note-to-use-Y.patch
+
+-------------------------------------------------------------------

Old:
----
  sddm-kcm-5.18.5.tar.xz
  sddm-kcm-5.18.5.tar.xz.sig

New:
----
  sddm-kcm-5.19.0.tar.xz
  sddm-kcm-5.19.0.tar.xz.sig

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

Other differences:
------------------
++++++ kcm_sddm.spec ++++++
--- /var/tmp/diff_new_pack.sNm0sS/_old  2020-06-08 23:53:27.455108983 +0200
+++ /var/tmp/diff_new_pack.sNm0sS/_new  2020-06-08 23:53:27.455108983 +0200
@@ -18,15 +18,15 @@
 
 %bcond_without lang
 Name:           kcm_sddm
-Version:        5.18.5
+Version:        5.19.0
 Release:        0
 Summary:        A sddm control module for KDE
 License:        GPL-2.0-only
 Group:          System/GUI/KDE
 URL:            https://projects.kde.org/projects/kdereview/sddm-kcm/repository
-Source:         
https://download.kde.org/stable/plasma/%{version}/sddm-kcm-%{version}.tar.xz
+Source:         sddm-kcm-%{version}.tar.xz
 %if %{with lang}
-Source1:        
https://download.kde.org/stable/plasma/%{version}/sddm-kcm-%{version}.tar.xz.sig
+Source1:        sddm-kcm-%{version}.tar.xz.sig
 Source2:        plasma.keyring
 %endif
 # PATCH-FIX-OPENSUSE

++++++ 0002-Replace-autologin-configuration-with-a-note-to-use-Y.patch ++++++
--- /var/tmp/diff_new_pack.sNm0sS/_old  2020-06-08 23:53:27.475109044 +0200
+++ /var/tmp/diff_new_pack.sNm0sS/_new  2020-06-08 23:53:27.479109056 +0200
@@ -1,4 +1,4 @@
-From f605191a7833e9791711d2272e05b52d92bcfb18 Mon Sep 17 00:00:00 2001
+From 0e638de390c1629feba3ebd165e4c2a9d872b4f9 Mon Sep 17 00:00:00 2001
 From: Fabian Vogt <[email protected]>
 Date: Wed, 27 Dec 2017 18:54:36 +0100
 Subject: [PATCH 2/3] Replace autologin configuration with a note to use YaST
@@ -13,10 +13,10 @@
  2 files changed, 19 insertions(+), 6 deletions(-)
 
 diff --git a/src/advancedconfig.cpp b/src/advancedconfig.cpp
-index 3ac31dd..3bc01cd 100644
+index ac1acfd..e5ff047 100644
 --- a/src/advancedconfig.cpp
 +++ b/src/advancedconfig.cpp
-@@ -84,7 +84,7 @@ void AdvanceConfig::load()
+@@ -84,7 +84,7 @@ void AdvancedConfig::load()
      const QString currentUser = mConfig->group("Autologin").readEntry("User", 
"");
      configUi->userList->setCurrentIndex(userModel->indexOf(currentUser));
  
@@ -25,9 +25,9 @@
      
configUi->sessionList->setCurrentIndex(sessionModel->indexOf(autologinSession));
  
      configUi->autoLogin->setChecked(!currentUser.isEmpty());
-@@ -108,7 +108,7 @@ QVariantMap AdvanceConfig::save()
-     QVariantMap args;
- 
+@@ -106,7 +106,7 @@ void AdvancedConfig::load()
+ void AdvancedConfig::save(QVariantMap &args)
+ {
      args[QStringLiteral("kde_settings.conf/Autologin/User")] = ( 
configUi->autoLogin->isChecked() ) ? configUi->userList->currentText() : 
QString();
 -    args[QStringLiteral("kde_settings.conf/Autologin/Session")] = ( 
configUi->autoLogin->isChecked() ) ? configUi->sessionList->currentData() : 
QString();
 +    args[QStringLiteral("kde_settings.conf/Autologin/Session")] = 
configUi->sessionList->currentData();
@@ -35,7 +35,7 @@
      args[QStringLiteral("kde_settings.conf/Autologin/Relogin")] = 
configUi->reloginAfterQuit->isChecked();
      //TODO session
 diff --git a/src/ui/advancedconfig.ui b/src/ui/advancedconfig.ui
-index 537d932..85a73f9 100644
+index b4824e5..6941024 100644
 --- a/src/ui/advancedconfig.ui
 +++ b/src/ui/advancedconfig.ui
 @@ -19,7 +19,14 @@
@@ -100,5 +100,5 @@
         <property name="sizePolicy">
          <sizepolicy hsizetype="Minimum" vsizetype="Fixed">
 -- 
-2.22.0
+2.25.1
 


++++++ sddm-kcm-5.18.5.tar.xz -> sddm-kcm-5.19.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/.gitignore 
new/sddm-kcm-5.19.0/.gitignore
--- old/sddm-kcm-5.18.5/.gitignore      2020-05-05 17:04:24.000000000 +0200
+++ new/sddm-kcm-5.19.0/.gitignore      2020-06-04 13:36:34.000000000 +0200
@@ -2,3 +2,6 @@
 *~
 *.user
 
+.clang-format
+CMakeLists.txt.user*
+/build*/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/CMakeLists.txt 
new/sddm-kcm-5.19.0/CMakeLists.txt
--- old/sddm-kcm-5.18.5/CMakeLists.txt  2020-05-05 17:04:54.000000000 +0200
+++ new/sddm-kcm-5.19.0/CMakeLists.txt  2020-06-04 13:37:04.000000000 +0200
@@ -1,8 +1,8 @@
 project(sddm-kcm)
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
-set(PROJECT_VERSION "5.18.5")
+set(PROJECT_VERSION "5.19.0")
 
-set(QT_MIN_VERSION "5.12.0")
+set(QT_MIN_VERSION "5.14.0")
 set(KF5_MIN_VERSION "5.66.0")
 
 find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE)
@@ -27,6 +27,12 @@
     NewStuff
 )
 
+if (EXISTS "${CMAKE_SOURCE_DIR}/.git")
+   add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000)
+   add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x054200)
+endif()
+
+
 add_definitions(-DTRANSLATION_DOMAIN=\"kcm_sddm\")
 add_definitions(-DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/kcm_sddm.actions 
new/sddm-kcm-5.19.0/kcm_sddm.actions
--- old/sddm-kcm-5.18.5/kcm_sddm.actions        2020-05-05 17:04:24.000000000 
+0200
+++ new/sddm-kcm-5.19.0/kcm_sddm.actions        2020-06-04 13:36:34.000000000 
+0200
@@ -341,6 +341,7 @@
 Name[pt_BR]=Sincronizar configurações
 Name[ru]=Синхронизация параметров
 Name[sk]=Synchronizovať nastavenia
+Name[sl]=Sinhroniziraj nastavitve
 Name[sv]=Synkronisera inställningar
 Name[uk]=Синхронізувати параметри
 Name[x-test]=xxSynchronize Settingsxx
@@ -373,6 +374,7 @@
 Description[pt_BR]=Sincroniza as configurações do usuário com as do SDDM
 Description[ru]=Синхронизация парамеров SDDM с параметрами пользователя
 Description[sk]=Synchronizuje používateľské nastavenia s nastaveniami SDDM
+Description[sl]=Sinhroniziraj uporabniške nastavitve z nastavitvami SDDM
 Description[sv]=Synkroniserar användarinställningar med SDDM-inställningar
 Description[uk]=Синхронізація параметрів користувача із параметрами SDDM
 Description[x-test]=xxSynchronizes user settings with SDDM settingsxx
@@ -408,6 +410,7 @@
 Name[pt_BR]=Restaurar configurações
 Name[ru]=Сброс параметров
 Name[sk]=Obnoviť nastavenia
+Name[sl]=Ponovno postavi nastavitve
 Name[sv]=Nollställ inställningar
 Name[uk]=Скинути параметри
 Name[x-test]=xxReset Settingsxx
@@ -439,6 +442,7 @@
 Description[pt_BR]=Restaura as configurações do SDDM para não usar as do 
usuário
 Description[ru]=Сброс параметров SDDM, не являющихся параметрами пользователя
 Description[sk]=Obnoví nastavenia SDDM, takže neexistujú žiadne používateľské 
nastavenia
+Description[sl]=Ponovno nastavi SDDM tako da ni uporabnikovih nastavitev
 Description[sv]=Nollställer SDDM-inställningar så att det inte finns några 
användarinställningar
 Description[uk]=Скидання параметрів SDDM до типових
 Description[x-test]=xxResets SDDM settings so there are not user settingsxx
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/ar/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/ar/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/ar/kcm_sddm.po       2020-05-05 17:04:35.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/ar/kcm_sddm.po       2020-06-04 13:36:45.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2015-01-09 17:56+0300\n"
 "Last-Translator: Safa Alfulaij <[email protected]>\n"
 "Language-Team: Arabic <[email protected]>\n"
@@ -126,7 +126,7 @@
 msgid "%1 (Wayland)"
 msgstr ""
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/ast/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/ast/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/ast/kcm_sddm.po      2020-05-05 17:04:35.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/ast/kcm_sddm.po      2020-06-04 13:36:45.000000000 
+0200
@@ -1,13 +1,13 @@
 # Copyright (C) YEAR This file is copyright:
 # This file is distributed under the same license as the sddm-kcm package.
 #
-# enolp <[email protected]>, 2019.
+# enolp <[email protected]>, 2019, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: sddm-kcm\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
-"PO-Revision-Date: 2019-12-05 23:46+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
+"PO-Revision-Date: 2020-02-19 16:11+0100\n"
 "Last-Translator: enolp <[email protected]>\n"
 "Language-Team: Asturian <[email protected]>\n"
 "Language: ast\n"
@@ -15,7 +15,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 19.11.90\n"
+"X-Generator: Lokalize 19.12.2\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -124,7 +124,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Descarga d'estilos nuevos pa SDDM"
@@ -133,25 +133,25 @@
 #: src/ui/advancedconfig.ui:25
 #, kde-format
 msgid "Automatically log in:"
-msgstr ""
+msgstr "Aniciar sesión automáticamente:"
 
 #. i18n: ectx: property (text), widget (QCheckBox, autoLogin)
 #: src/ui/advancedconfig.ui:34
 #, kde-format
 msgid "as user:"
-msgstr ""
+msgstr "col usuariu:"
 
 #. i18n: ectx: property (text), widget (QLabel, label_4)
 #: src/ui/advancedconfig.ui:51
 #, kde-format
 msgid "with session:"
-msgstr "cola sesión:"
+msgstr "y la sesión:"
 
 #. i18n: ectx: property (text), widget (QCheckBox, reloginAfterQuit)
 #: src/ui/advancedconfig.ui:76
 #, kde-format
 msgid "Log in again immediately after logging off"
-msgstr ""
+msgstr "Volver aniciar la sesión darréu de zarrala"
 
 #. i18n: ectx: property (text), widget (QLabel, label_6)
 #: src/ui/advancedconfig.ui:99
@@ -211,7 +211,7 @@
 "Please note that theme files must be installed globally for settings "
 "synchronization to work."
 msgstr ""
-"Decátate que los ficheros d'estilu ha instalase globalmente pa que la "
+"Decátate que los ficheros d'estilu han instalase globalmente pa que la "
 "sincronización d'axustes funcione."
 
 #. i18n: ectx: property (text), widget (SelectImageButton, 
selectBackgroundButton)
@@ -242,4 +242,4 @@
 #: src/ui/themeconfig.ui:191
 #, kde-format
 msgid "Get New Login Screens..."
-msgstr "Consiguir pantalles nueves..."
\ No newline at end of file
+msgstr "Consiguir pantalles nueves…"
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/bs/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/bs/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/bs/kcm_sddm.po       2020-05-05 17:04:37.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/bs/kcm_sddm.po       2020-06-04 13:36:47.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kde5\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2015-02-24 20:33+0100\n"
 "Last-Translator: Samir Ribić <[email protected]>\n"
 "Language-Team: Bosnian\n"
@@ -127,7 +127,7 @@
 msgid "%1 (Wayland)"
 msgstr ""
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/ca/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/ca/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/ca/kcm_sddm.po       2020-05-05 17:04:37.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/ca/kcm_sddm.po       2020-06-04 13:36:47.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kcm_sddm\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-12-19 20:41+0100\n"
 "Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
@@ -127,7 +127,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Baixa temes nous de l'SDDM"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/ca@valencia/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/ca@valencia/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/ca@valencia/kcm_sddm.po      2020-05-05 
17:04:37.000000000 +0200
+++ new/sddm-kcm-5.19.0/po/ca@valencia/kcm_sddm.po      2020-06-04 
13:36:47.000000000 +0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: kcm_sddm\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-07-22 11:06+0200\n"
 "Last-Translator: Alfredo vicente <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
@@ -129,7 +129,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Baixa temes nous d'SDDM"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/cs/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/cs/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/cs/kcm_sddm.po       2020-05-05 17:04:37.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/cs/kcm_sddm.po       2020-06-04 13:36:48.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-08-21 14:31+0200\n"
 "Last-Translator: Vit Pelcak <[email protected]>\n"
 "Language-Team: Czech <[email protected]>\n"
@@ -125,7 +125,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Stáhnout nové motivy SDDM"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/da/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/da/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/da/kcm_sddm.po       2020-05-05 17:04:38.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/da/kcm_sddm.po       2020-06-04 13:36:48.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-11-22 20:47+0100\n"
 "Last-Translator: Martin Schlander <[email protected]>\n"
 "Language-Team: Danish <[email protected]>\n"
@@ -124,7 +124,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Download nye SDDM-temaer"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/de/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/de/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/de/kcm_sddm.po       2020-05-05 17:04:38.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/de/kcm_sddm.po       2020-06-04 13:36:48.000000000 
+0200
@@ -3,7 +3,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-09-09 06:58+0200\n"
 "Last-Translator: Burkhard Lück <[email protected]>\n"
 "Language-Team: German <[email protected]>\n"
@@ -121,7 +121,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Neue SDDM-Designs herunterladen"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/el/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/el/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/el/kcm_sddm.po       2020-05-05 17:04:38.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/el/kcm_sddm.po       2020-06-04 13:36:49.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2017-01-24 16:07+0200\n"
 "Last-Translator: Dimitris Kardarakos <[email protected]>\n"
 "Language-Team: Greek <[email protected]>\n"
@@ -126,7 +126,7 @@
 msgid "%1 (Wayland)"
 msgstr ""
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Λήψη νέων θεμάτων SDDM"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/en_GB/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/en_GB/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/en_GB/kcm_sddm.po    2020-05-05 17:04:39.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/en_GB/kcm_sddm.po    2020-06-04 13:36:49.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-09-21 12:40+0100\n"
 "Last-Translator: Steve Allewell <[email protected]>\n"
 "Language-Team: British English <[email protected]>\n"
@@ -124,7 +124,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Download New SDDM Themes"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/es/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/es/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/es/kcm_sddm.po       2020-05-05 17:04:39.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/es/kcm_sddm.po       2020-06-04 13:36:49.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kcm_sddm\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-09-04 04:42+0200\n"
 "Last-Translator: Eloy Cuadra <[email protected]>\n"
 "Language-Team: Spanish <[email protected]>\n"
@@ -126,7 +126,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Descargar nuevos temas SDDM"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/et/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/et/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/et/kcm_sddm.po       2020-05-05 17:04:39.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/et/kcm_sddm.po       2020-06-04 13:36:50.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-11-01 16:54+0200\n"
 "Last-Translator: Marek Laane <[email protected]>\n"
 "Language-Team: Estonian <[email protected]>\n"
@@ -124,7 +124,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Uute SDDM teemade allalaadimine"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/eu/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/eu/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/eu/kcm_sddm.po       2020-05-05 17:04:40.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/eu/kcm_sddm.po       2020-06-04 13:36:50.000000000 
+0200
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: sddm-kcm\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-09-03 22:13+0200\n"
 "Last-Translator: Iñigo Salvador Azurmendi <[email protected]>\n"
 "Language-Team: Basque <[email protected]>\n"
@@ -129,7 +129,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Jaitsi SDDM gai berriak"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/fi/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/fi/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/fi/kcm_sddm.po       2020-05-05 17:04:40.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/fi/kcm_sddm.po       2020-06-04 13:36:50.000000000 
+0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2020-01-01 15:41+0200\n"
 "Last-Translator: Tommi Nieminen <[email protected]>\n"
 "Language-Team: Finnish <[email protected]>\n"
@@ -127,7 +127,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Lataa uusia SDDM-teemoja"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/fr/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/fr/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/fr/kcm_sddm.po       2020-05-05 17:04:40.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/fr/kcm_sddm.po       2020-06-04 13:36:50.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-08-25 20:07+0800\n"
 "Last-Translator: Simon Depiets <[email protected]>\n"
 "Language-Team: French <[email protected]>\n"
@@ -129,7 +129,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Télécharger de nouveaux thèmes SDDM"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/gl/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/gl/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/gl/kcm_sddm.po       2020-05-05 17:04:40.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/gl/kcm_sddm.po       2020-06-04 13:36:51.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-11-17 09:49+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) <[email protected]>\n"
 "Language-Team: Galician <[email protected]>\n"
@@ -125,7 +125,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Descargar novos temas de SDDM"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/he/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/he/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/he/kcm_sddm.po       2020-05-05 17:04:41.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/he/kcm_sddm.po       2020-06-04 13:36:52.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kcm_sddm\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2017-05-16 11:58-0400\n"
 "Last-Translator: Elkana Bardugo <[email protected]>\n"
 "Language-Team: Hebrew <[email protected]>\n"
@@ -127,7 +127,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "הורד ערכת נושא חדשה ל־SDDM"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/hu/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/hu/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/hu/kcm_sddm.po       2020-05-05 17:04:42.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/hu/kcm_sddm.po       2020-06-04 13:36:53.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-11-08 08:51+0100\n"
 "Last-Translator: Kristóf Kiszel <[email protected]>\n"
 "Language-Team: Hungarian <[email protected]>\n"
@@ -125,7 +125,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Új SDDM témák letöltése"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/ia/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/ia/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/ia/kcm_sddm.po       2020-05-05 17:04:42.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/ia/kcm_sddm.po       2020-06-04 13:36:53.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2020-01-08 22:13+0100\n"
 "Last-Translator: Giovanni Sora <[email protected]>\n"
 "Language-Team: Interlingua <[email protected]>\n"
@@ -124,7 +124,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/id/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/id/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/id/kcm_sddm.po       2020-05-05 17:04:42.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/id/kcm_sddm.po       2020-06-04 13:36:53.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-12-22 11:51+0700\n"
 "Last-Translator: Wantoyo <[email protected]>\n"
 "Language-Team: Indonesian <[email protected]>\n"
@@ -124,7 +124,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Unduh Tema SDDM Baru"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/it/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/it/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/it/kcm_sddm.po       2020-05-05 17:04:43.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/it/kcm_sddm.po       2020-06-04 13:36:53.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kcm_sddm\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-09-07 18:24+0200\n"
 "Last-Translator: Vincenzo Reale <[email protected]>\n"
 "Language-Team: Italian <[email protected]>\n"
@@ -124,7 +124,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Scarica nuovi temi di SDDM"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/ja/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/ja/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/ja/kcm_sddm.po       2020-05-05 17:04:43.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/ja/kcm_sddm.po       2020-06-04 13:36:53.000000000 
+0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: kcm_sddm\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2020-01-17 19:39+0900\n"
 "Last-Translator: Tomohiro Hyakutake <[email protected]>\n"
 "Language-Team: Japanese <[email protected]>\n"
@@ -126,7 +126,7 @@
 msgid "%1 (Wayland)"
 msgstr ""
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/ko/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/ko/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/ko/kcm_sddm.po       2020-05-05 17:04:44.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/ko/kcm_sddm.po       2020-06-04 13:36:54.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-09-25 00:38+0200\n"
 "Last-Translator: Shinjo Park <[email protected]>\n"
 "Language-Team: Korean <[email protected]>\n"
@@ -124,7 +124,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1(Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "새 SDDM 테마 다운로드"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/lt/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/lt/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/lt/kcm_sddm.po       2020-05-05 17:04:44.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/lt/kcm_sddm.po       2020-06-04 13:36:55.000000000 
+0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: trunk-kf 5\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-12-16 16:52+0200\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian <[email protected]>\n"
@@ -128,7 +128,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Atsisiųsti naujus SDDM apipavidalinimus"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/ml/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/ml/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/ml/kcm_sddm.po       2020-05-05 17:04:45.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/ml/kcm_sddm.po       2020-06-04 13:36:55.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: sddm-kcm\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-12-12 22:32+0000\n"
 "Last-Translator: Vivek KJ Pazhedath <[email protected]>\n"
 "Language-Team: Swathanthra|സ്വതന്ത്ര Malayalam|മലയാളം 
Computing|കമ്പ്യൂട്ടിങ്ങ് <smc."
@@ -126,7 +126,7 @@
 msgid "%1 (Wayland)"
 msgstr ""
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/nb/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/nb/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/nb/kcm_sddm.po       2020-05-05 17:04:46.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/nb/kcm_sddm.po       2020-06-04 13:36:56.000000000 
+0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2015-01-08 21:37+0100\n"
 "Last-Translator: Bjørn Steensrud <[email protected]>\n"
 "Language-Team: Norwegian Bokmål <[email protected]>\n"
@@ -126,7 +126,7 @@
 msgid "%1 (Wayland)"
 msgstr ""
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/nl/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/nl/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/nl/kcm_sddm.po       2020-05-05 17:04:47.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/nl/kcm_sddm.po       2020-06-04 13:36:57.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-09-03 11:21+0100\n"
 "Last-Translator: Freek de Kruijf <[email protected]>\n"
 "Language-Team: Dutch <[email protected]>\n"
@@ -124,7 +124,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Nieuwe SDDM-thema's downloaden"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/nn/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/nn/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/nn/kcm_sddm.po       2020-05-05 17:04:47.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/nn/kcm_sddm.po       2020-06-04 13:36:57.000000000 
+0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-09-03 19:59+0200\n"
 "Last-Translator: Karl Ove Hufthammer <[email protected]>\n"
 "Language-Team: Norwegian Nynorsk <[email protected]>\n"
@@ -126,7 +126,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Last ned nye SDDM-tema"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/pa/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/pa/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/pa/kcm_sddm.po       2020-05-05 17:04:48.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/pa/kcm_sddm.po       2020-06-04 13:36:58.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-12-28 15:53-0800\n"
 "Last-Translator: A S Alam <[email protected]>\n"
 "Language-Team: Punjabi <[email protected]>\n"
@@ -124,7 +124,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (ਵੇਅਲੈਂਡ)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/pl/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/pl/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/pl/kcm_sddm.po       2020-05-05 17:04:48.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/pl/kcm_sddm.po       2020-06-04 13:36:58.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-09-20 15:48+0200\n"
 "Last-Translator: Łukasz Wojniłowicz <[email protected]>\n"
 "Language-Team: Polish <[email protected]>\n"
@@ -125,7 +125,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Pobierz nowy wygląd SDDM"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/pt/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/pt/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/pt/kcm_sddm.po       2020-05-05 17:04:48.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/pt/kcm_sddm.po       2020-06-04 13:36:58.000000000 
+0200
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: kcm_sddm\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-09-03 11:29+0100\n"
 "Last-Translator: José Nuno Coelho Pires <[email protected]>\n"
 "Language-Team: Portuguese <[email protected]>\n"
@@ -121,7 +121,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Obter Novos Temas do SDDM"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/pt_BR/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/pt_BR/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/pt_BR/kcm_sddm.po    2020-05-05 17:04:48.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/pt_BR/kcm_sddm.po    2020-06-04 13:36:58.000000000 
+0200
@@ -8,10 +8,10 @@
 msgstr ""
 "Project-Id-Version: sddm-kcm\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2020-03-20 19:01-0300\n"
 "Last-Translator: André Marcelo Alvarenga <[email protected]>\n"
-"Language-Team: Brazilian Portuguese <[email protected]>\n"
+"Language-Team: Brazilian Portuguese <[email protected]>\n"
 "Language: pt_BR\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -126,7 +126,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Baixar novos temas SDDM"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/ro/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/ro/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/ro/kcm_sddm.po       2020-05-05 17:04:49.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/ro/kcm_sddm.po       2020-06-04 13:36:59.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2015-04-20 14:26+0300\n"
 "Last-Translator: Sergiu Bivol <[email protected]>\n"
 "Language-Team: Romanian <[email protected]>\n"
@@ -126,7 +126,7 @@
 msgid "%1 (Wayland)"
 msgstr ""
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/ru/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/ru/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/ru/kcm_sddm.po       2020-05-05 17:04:49.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/ru/kcm_sddm.po       2020-06-04 13:36:59.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-10-08 09:31+0300\n"
 "Last-Translator: Alexander Yavorsky <[email protected]>\n"
 "Language-Team: Russian <[email protected]>\n"
@@ -129,7 +129,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Загрузка новых тем SDDM"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/sk/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/sk/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/sk/kcm_sddm.po       2020-05-05 17:04:50.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/sk/kcm_sddm.po       2020-06-04 13:37:00.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kcm_sddm\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2020-03-26 13:20+0100\n"
 "Last-Translator: Dusan Kazik <[email protected]>\n"
 "Language-Team: sk\n"
@@ -125,7 +125,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Prevziať nové témy pre SDDM"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/sl/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/sl/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/sl/kcm_sddm.po       2020-05-05 17:04:50.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/sl/kcm_sddm.po       2020-06-04 13:37:00.000000000 
+0200
@@ -2,31 +2,33 @@
 # This file is distributed under the same license as the PACKAGE package.
 #
 # Andrej Mernik <[email protected]>, 2014, 2017, 2018.
+# Matjaž Jeran <[email protected]>, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
-"PO-Revision-Date: 2018-01-11 20:46+0100\n"
-"Last-Translator: Andrej Mernik <[email protected]>\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
+"PO-Revision-Date: 2020-03-14 08:00+0100\n"
+"Last-Translator: Matjaž Jeran <[email protected]>\n"
 "Language-Team: Slovenian <[email protected]>\n"
 "Language: sl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Translator: Andrej Mernik <[email protected]>\n"
 "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n"
 "%100==4 ? 3 : 0);\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Poedit 2.3\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
 msgid "Your names"
-msgstr "Andrej Mernik"
+msgstr "Andrej Mernik,Matjaž Jeran"
 
 #, kde-format
 msgctxt "EMAIL OF TRANSLATORS"
 msgid "Your emails"
-msgstr "[email protected]"
+msgstr "[email protected],[email protected]"
 
 #: sddmauthhelper.cpp:341 sddmauthhelper.cpp:361 sddmauthhelper.cpp:368
 #, kde-format
@@ -34,10 +36,9 @@
 msgstr "Neveljaven paket teme"
 
 #: sddmauthhelper.cpp:346
-#, fuzzy, kde-format
-#| msgid "Could not decompress archive"
+#, kde-format
 msgid "Could not open file"
-msgstr "Ni bilo mogoče razširiti arhiva"
+msgstr "Ni bilo mogoče odpreti datoteke"
 
 #: sddmauthhelper.cpp:376
 #, kde-format
@@ -62,7 +63,7 @@
 #: sddmthemeinstaller.cpp:50
 #, kde-format
 msgid "The theme to install, must be an existing archive file."
-msgstr "Tema za namestitev. Mora biti obstoječa datoteka z arhivom."
+msgstr "Tema za namestitev, ki mora biti na datoteki z arhivom."
 
 #: sddmthemeinstaller.cpp:76
 #, kde-format
@@ -72,7 +73,7 @@
 #: src/configwidgets/selectimagebutton.cpp:41
 #, kde-format
 msgid "Load from file..."
-msgstr "Naloži iz datoteke ..."
+msgstr "Naloži iz datoteke..."
 
 #: src/configwidgets/selectimagebutton.cpp:42
 #, kde-format
@@ -93,7 +94,7 @@
 #: src/qml/main.qml:116
 #, kde-format
 msgid ", by "
-msgstr ""
+msgstr ", od "
 
 #: src/sddmkcm.cpp:43
 #, kde-format
@@ -126,62 +127,56 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
-msgstr "Prejmi nove teme za SDDM"
+msgstr "Prenesi nove teme za SDDM"
 
 #. i18n: ectx: property (text), widget (QLabel, label_3)
 #: src/ui/advancedconfig.ui:25
 #, kde-format
 msgid "Automatically log in:"
-msgstr ""
+msgstr "Avtomatska prijava:"
 
 #. i18n: ectx: property (text), widget (QCheckBox, autoLogin)
 #: src/ui/advancedconfig.ui:34
-#, fuzzy, kde-format
-#| msgid "User:"
+#, kde-format
 msgid "as user:"
-msgstr "Uporabnik:"
+msgstr "kot uporabnik:"
 
 #. i18n: ectx: property (text), widget (QLabel, label_4)
 #: src/ui/advancedconfig.ui:51
-#, fuzzy, kde-format
-#| msgid "Session:"
+#, kde-format
 msgid "with session:"
-msgstr "Seja:"
+msgstr "s sejo:"
 
 #. i18n: ectx: property (text), widget (QCheckBox, reloginAfterQuit)
 #: src/ui/advancedconfig.ui:76
 #, kde-format
 msgid "Log in again immediately after logging off"
-msgstr ""
+msgstr "Prijavi se takoj po odjavi"
 
 #. i18n: ectx: property (text), widget (QLabel, label_6)
 #: src/ui/advancedconfig.ui:99
-#, fuzzy, kde-format
-#| msgid "Minimum UID:"
+#, kde-format
 msgid "Minimum user UID:"
-msgstr "Najmanjši UID:"
+msgstr "Najmanjši UID uporabnika:"
 
 #. i18n: ectx: property (text), widget (QLabel, label_5)
 #: src/ui/advancedconfig.ui:119
-#, fuzzy, kde-format
-#| msgid "Maximum UID:"
+#, kde-format
 msgid "Maximum user UID:"
-msgstr "Največji UID:"
+msgstr "Največji UID uporabnika:"
 
 #. i18n: ectx: property (text), widget (QLabel, label)
 #: src/ui/advancedconfig.ui:155
-#, fuzzy, kde-format
-#| msgid "Halt Command:"
+#, kde-format
 msgid "Halt command:"
 msgstr "Ukaz za zaustavitev:"
 
 #. i18n: ectx: property (text), widget (QLabel, label_2)
 #: src/ui/advancedconfig.ui:172
-#, fuzzy, kde-format
-#| msgid "Reboot Command:"
+#, kde-format
 msgid "Reboot command:"
 msgstr "Ukaz za ponovni zagon:"
 
@@ -189,19 +184,19 @@
 #: src/ui/advancedconfig.ui:205
 #, kde-format
 msgid "Settings synchronization:"
-msgstr ""
+msgstr "Nastavitev sinhronizacije:"
 
 #. i18n: ectx: property (text), widget (QPushButton, syncSettings)
 #: src/ui/advancedconfig.ui:214
 #, kde-format
 msgid "Sync"
-msgstr ""
+msgstr "Sync"
 
 #. i18n: ectx: property (text), widget (QPushButton, resetSettings)
 #: src/ui/advancedconfig.ui:224
 #, kde-format
 msgid "Reset"
-msgstr ""
+msgstr "Ponovno nastavi"
 
 #. i18n: ectx: property (text), widget (QLabel, syncExplanation)
 #: src/ui/advancedconfig.ui:242
@@ -211,6 +206,9 @@
 "settings to SDDM: color scheme, cursor theme, font, font rendering, NumLock "
 "preference, Plasma theme, and scaling DPI."
 msgstr ""
+"Sinhronizacija nastavitev vam omogoča prenos naslednjih nastavitev Plasme za "
+"SDDM: barvna shema, tema kazalca, pisava, upodabljanje pisave, nastavitev "
+"tipke NumLock, tema in povečevanje resolucije."
 
 #. i18n: ectx: property (text), widget (QLabel, syncWarning)
 #: src/ui/advancedconfig.ui:255
@@ -219,6 +217,8 @@
 "Please note that theme files must be installed globally for settings "
 "synchronization to work."
 msgstr ""
+"Upoštevajte, da morajo biti teme nameščene globalno, da bi nastavitve "
+"sinhronizacija delovale."
 
 #. i18n: ectx: property (text), widget (SelectImageButton, 
selectBackgroundButton)
 #: src/ui/themeconfig.ui:127
@@ -234,21 +234,18 @@
 
 #. i18n: ectx: property (text), widget (QPushButton, removeThemeButton)
 #: src/ui/themeconfig.ui:156
-#, fuzzy, kde-format
-#| msgid "Remove Theme"
+#, kde-format
 msgid "Remove"
-msgstr "Odstrani temo"
+msgstr "Odstrani"
 
 #. i18n: ectx: property (text), widget (QPushButton, installFromFileButton)
 #: src/ui/themeconfig.ui:180
-#, fuzzy, kde-format
-#| msgid "Install From File"
+#, kde-format
 msgid "Install From File..."
-msgstr "Namesti iz datoteke"
+msgstr "Namesti iz datoteke..."
 
 #. i18n: ectx: property (text), widget (QPushButton, getNewButton)
 #: src/ui/themeconfig.ui:191
-#, fuzzy, kde-format
-#| msgid "Get New Theme"
+#, kde-format
 msgid "Get New Login Screens..."
-msgstr "Dobi novo temo"
\ No newline at end of file
+msgstr "Dobi nove prijavne zaslone..."
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/sv/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/sv/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/sv/kcm_sddm.po       2020-05-05 17:04:50.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/sv/kcm_sddm.po       2020-06-04 13:37:00.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-09-03 17:39+0100\n"
 "Last-Translator: Stefan Asserhäll <[email protected]>\n"
 "Language-Team: Swedish <[email protected]>\n"
@@ -124,7 +124,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Ladda ner nya SDDM-teman"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/tr/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/tr/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/tr/kcm_sddm.po       2020-05-05 17:04:51.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/tr/kcm_sddm.po       2020-06-04 13:37:01.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2017-10-23 11:20+0000\n"
 "Last-Translator: İşbaran <[email protected]>\n"
 "Language-Team: Turkish <[email protected]>\n"
@@ -125,7 +125,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Yeni SDDM Temalarını İndirin"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/uk/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/uk/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/uk/kcm_sddm.po       2020-05-05 17:04:52.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/uk/kcm_sddm.po       2020-06-04 13:37:02.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kcm_sddm\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-09-03 07:40+0300\n"
 "Last-Translator: Yuri Chornoivan <[email protected]>\n"
 "Language-Team: Ukrainian <[email protected]>\n"
@@ -127,7 +127,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "Отримати нові теми SDDM"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/zh_CN/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/zh_CN/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/zh_CN/kcm_sddm.po    2020-05-05 17:04:53.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/zh_CN/kcm_sddm.po    2020-06-04 13:37:03.000000000 
+0200
@@ -8,8 +8,8 @@
 msgstr ""
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
-"PO-Revision-Date: 2020-03-25 19:56\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
+"PO-Revision-Date: 2020-05-09 13:50\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
@@ -19,7 +19,7 @@
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Crowdin-Project: kdeorg\n"
 "X-Crowdin-Language: zh-CN\n"
-"X-Crowdin-File: /kf5-stable/messages/kde-workspace/kcm_sddm.pot\n"
+"X-Crowdin-File: /kf5-trunk/messages/kde-workspace/kcm_sddm.pot\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -128,7 +128,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "下载新的 SDDM 主题"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/po/zh_TW/kcm_sddm.po 
new/sddm-kcm-5.19.0/po/zh_TW/kcm_sddm.po
--- old/sddm-kcm-5.18.5/po/zh_TW/kcm_sddm.po    2020-05-05 17:04:53.000000000 
+0200
+++ new/sddm-kcm-5.19.0/po/zh_TW/kcm_sddm.po    2020-06-04 13:37:03.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2020-02-27 08:33+0100\n"
+"POT-Creation-Date: 2020-03-10 03:50+0100\n"
 "PO-Revision-Date: 2019-09-08 23:57+0800\n"
 "Last-Translator: pan93412 <[email protected]>\n"
 "Language-Team: Chinese <[email protected]>\n"
@@ -126,7 +126,7 @@
 msgid "%1 (Wayland)"
 msgstr "%1 (Wayland)"
 
-#: src/themeconfig.cpp:191
+#: src/themeconfig.cpp:188
 #, kde-format
 msgid "Download New SDDM Themes"
 msgstr "下載新的 SDDM 主題"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/sddmtheme.knsrc 
new/sddm-kcm-5.19.0/sddmtheme.knsrc
--- old/sddm-kcm-5.18.5/sddmtheme.knsrc 2020-05-05 17:04:24.000000000 +0200
+++ new/sddm-kcm-5.19.0/sddmtheme.knsrc 2020-06-04 13:36:34.000000000 +0200
@@ -27,6 +27,7 @@
 Name[pt_BR]=Tela de autenticação
 Name[ru]=Вход в систему
 Name[sk]=Prihlasovacia obrazovka (SDDM)
+Name[sl]=Prijavni zaslon
 Name[sv]=Inloggningsfönster
 Name[uk]=Вікно входу
 Name[x-test]=xxLogin Screenxx
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/src/advancedconfig.cpp 
new/sddm-kcm-5.19.0/src/advancedconfig.cpp
--- old/sddm-kcm-5.18.5/src/advancedconfig.cpp  2020-05-05 17:04:24.000000000 
+0200
+++ new/sddm-kcm-5.19.0/src/advancedconfig.cpp  2020-06-04 13:36:34.000000000 
+0200
@@ -103,10 +103,8 @@
     
configUi->rebootCommand->setUrl(QUrl::fromLocalFile(mConfig->group("General").readEntry("RebootCommand")));
 }
 
-QVariantMap AdvancedConfig::save()
+void AdvancedConfig::save(QVariantMap &args)
 {
-    QVariantMap args;
-
     args[QStringLiteral("kde_settings.conf/Autologin/User")] = ( 
configUi->autoLogin->isChecked() ) ? configUi->userList->currentText() : 
QString();
     args[QStringLiteral("kde_settings.conf/Autologin/Session")] = ( 
configUi->autoLogin->isChecked() ) ? configUi->sessionList->currentData() : 
QString();
 
@@ -122,8 +120,6 @@
 
     args[QStringLiteral("kde_settings.conf/General/HaltCommand")] = 
configUi->haltCommand->url().toLocalFile();
     args[QStringLiteral("kde_settings.conf/General/RebootCommand")] = 
configUi->rebootCommand->url().toLocalFile();
-
-    return args;
 }
 
 void AdvancedConfig::slotUidRangeChanged()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/src/advancedconfig.h 
new/sddm-kcm-5.19.0/src/advancedconfig.h
--- old/sddm-kcm-5.18.5/src/advancedconfig.h    2020-05-05 17:04:24.000000000 
+0200
+++ new/sddm-kcm-5.19.0/src/advancedconfig.h    2020-06-04 13:36:34.000000000 
+0200
@@ -37,7 +37,7 @@
     explicit AdvancedConfig(const KSharedConfigPtr &config, QWidget *parent = 
nullptr);
     ~AdvancedConfig();
 
-    QVariantMap save();
+    void save(QVariantMap &args);
 
 Q_SIGNALS:
     void changed(bool changed=true);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/src/sddmkcm.cpp 
new/sddm-kcm-5.19.0/src/sddmkcm.cpp
--- old/sddm-kcm-5.18.5/src/sddmkcm.cpp 2020-05-05 17:04:24.000000000 +0200
+++ new/sddm-kcm-5.19.0/src/sddmkcm.cpp 2020-06-04 13:36:34.000000000 +0200
@@ -82,8 +82,8 @@
     }
 
     qDebug() << "Ovr:" << args[QStringLiteral("theme.conf.user")].toString();
-    args.unite(mThemeConfig->save());
-    args.unite(mAdvancedConfig->save());
+    mThemeConfig->save(args);
+    mAdvancedConfig->save(args);
 
     KAuth::Action saveAction = authAction();
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/src/themeconfig.cpp 
new/sddm-kcm-5.19.0/src/themeconfig.cpp
--- old/sddm-kcm-5.18.5/src/themeconfig.cpp     2020-05-05 17:04:24.000000000 
+0200
+++ new/sddm-kcm-5.19.0/src/themeconfig.cpp     2020-06-04 13:36:34.000000000 
+0200
@@ -70,15 +70,13 @@
     delete configUi;
 }
 
-QVariantMap ThemeConfig::save()
+void ThemeConfig::save(QVariantMap &args)
 {
     QModelIndex index = configUi->themesListView->currentIndex();
     if (!index.isValid()) {
-        return QVariantMap();
+        return;
     }
 
-    QVariantMap args;
-
     args[QStringLiteral("kde_settings.conf/Theme/Current")] = 
index.data(ThemesModel::IdRole);
 
     if (!mThemeConfigPath.isEmpty()) {
@@ -89,7 +87,6 @@
             args[QStringLiteral("theme.conf.user/General/type")] = 
QStringLiteral("color");
         }
     }
-    return args;
 }
 
 QString ThemeConfig::themeConfigPath() const
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sddm-kcm-5.18.5/src/themeconfig.h 
new/sddm-kcm-5.19.0/src/themeconfig.h
--- old/sddm-kcm-5.18.5/src/themeconfig.h       2020-05-05 17:04:24.000000000 
+0200
+++ new/sddm-kcm-5.19.0/src/themeconfig.h       2020-06-04 13:36:34.000000000 
+0200
@@ -34,7 +34,7 @@
     explicit ThemeConfig(const KSharedConfigPtr &config, QWidget *parent = 
nullptr);
     ~ThemeConfig();
 
-    QVariantMap save();
+    void save(QVariantMap &args);
     QString themeConfigPath() const;
 
 Q_SIGNALS:


Reply via email to