Hello community,

here is the log from the commit of package kscreenlocker for openSUSE:Factory 
checked in at 2017-02-19 01:10:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kscreenlocker (Old)
 and      /work/SRC/openSUSE:Factory/.kscreenlocker.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kscreenlocker"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kscreenlocker/kscreenlocker.changes      
2017-02-10 09:56:49.403680073 +0100
+++ /work/SRC/openSUSE:Factory/.kscreenlocker.new/kscreenlocker.changes 
2017-02-19 01:10:30.295707807 +0100
@@ -1,0 +2,10 @@
+Tue Feb 14 17:58:12 CET 2017 - [email protected]
+
+- Update to 5.9.2
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.9.2.php
+- Changes since 5.9.1:
+  * Fix crash in Screen Locker KCM on teardown
+
+-------------------------------------------------------------------

Old:
----
  kscreenlocker-5.9.1.tar.xz

New:
----
  kscreenlocker-5.9.2.tar.xz

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

Other differences:
------------------
++++++ kscreenlocker.spec ++++++
--- /var/tmp/diff_new_pack.aLNtD4/_old  2017-02-19 01:10:30.715648762 +0100
+++ /var/tmp/diff_new_pack.aLNtD4/_new  2017-02-19 01:10:30.719648199 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:           kscreenlocker
-Version:        5.9.1
+Version:        5.9.2
 Release:        0
 Summary:        Library and components for secure lock screen architecture
 License:        GPL-2.0+

++++++ kscreenlocker-5.9.1.tar.xz -> kscreenlocker-5.9.2.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/CMakeLists.txt 
new/kscreenlocker-5.9.2/CMakeLists.txt
--- old/kscreenlocker-5.9.1/CMakeLists.txt      2017-02-07 12:21:29.000000000 
+0100
+++ new/kscreenlocker-5.9.2/CMakeLists.txt      2017-02-14 14:19:50.000000000 
+0100
@@ -1,4 +1,4 @@
-set(PROJECT_VERSION "5.9.1")
+set(PROJECT_VERSION "5.9.2")
 set(PROJECT_VERSION_MAJOR 5)
 
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/kcm/kcm.cpp 
new/kscreenlocker-5.9.2/kcm/kcm.cpp
--- old/kscreenlocker-5.9.1/kcm/kcm.cpp 2017-02-07 12:21:11.000000000 +0100
+++ new/kscreenlocker-5.9.2/kcm/kcm.cpp 2017-02-14 14:19:14.000000000 +0100
@@ -87,7 +87,12 @@
     m_ui->wallpaperCombo->installEventFilter(this);
 
     
m_ui->wallpaperConfigWidget->setClearColor(m_ui->palette().color(QPalette::Active,
 QPalette::Window));
-    
m_ui->wallpaperConfigWidget->rootContext()->setContextProperty("configDialog", 
this);
+    auto proxy = new ScreenLockerProxy(this);
+    
m_ui->wallpaperConfigWidget->rootContext()->setContextProperty("configDialog", 
proxy);
+
+    connect(this, &ScreenLockerKcm::wallpaperConfigurationChanged, proxy, 
&ScreenLockerProxy::wallpaperConfigurationChanged);
+    connect(this, &ScreenLockerKcm::currentWallpaperChanged, proxy, 
&ScreenLockerProxy::currentWallpaperChanged);
+
     
m_ui->wallpaperConfigWidget->setSource(QUrl(QStringLiteral("qrc:/kscreenlocker-kcm-resources/config.qml")));
     connect(m_ui->wallpaperConfigWidget->rootObject(), 
SIGNAL(configurationChanged()), this, SLOT(changed()));
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/kcm/kcm.h 
new/kscreenlocker-5.9.2/kcm/kcm.h
--- old/kscreenlocker-5.9.1/kcm/kcm.h   2017-02-07 12:21:11.000000000 +0100
+++ new/kscreenlocker-5.9.2/kcm/kcm.h   2017-02-14 14:19:14.000000000 +0100
@@ -37,12 +37,10 @@
 class ConfigPropertyMap;
 }
 
+
 class ScreenLockerKcm : public KCModule
 {
     Q_OBJECT
-    Q_PROPERTY(KDeclarative::ConfigPropertyMap *wallpaperConfiguration READ 
wallpaperConfiguration NOTIFY wallpaperConfigurationChanged)
-    Q_PROPERTY(QString currentWallpaper READ currentWallpaper NOTIFY 
currentWallpaperChanged)
-
 public:
     enum Roles {
         PluginNameRole = Qt::UserRole +1,
@@ -76,3 +74,32 @@
     ScreenLockerKcmForm *m_ui;
     ScreenLocker::WallpaperIntegration *m_wallpaperIntegration = nullptr;
 };
+
+//see https://bugreports.qt.io/browse/QTBUG-57714, don't expose a QWidget as a 
context property
+class ScreenLockerProxy : public QObject
+{
+    Q_OBJECT
+    Q_PROPERTY(KDeclarative::ConfigPropertyMap *wallpaperConfiguration READ 
wallpaperConfiguration NOTIFY wallpaperConfigurationChanged)
+    Q_PROPERTY(QString currentWallpaper READ currentWallpaper NOTIFY 
currentWallpaperChanged)
+public:
+    ScreenLockerProxy(ScreenLockerKcm *parent) :
+        QObject(parent),
+        q(parent)
+    {
+    }
+
+    KDeclarative::ConfigPropertyMap *wallpaperConfiguration() const {
+        return q->wallpaperConfiguration();
+    }
+
+    QString currentWallpaper() const {
+        return q->currentWallpaper();
+    }
+
+signals:
+    void wallpaperConfigurationChanged();
+    void currentWallpaperChanged();
+
+private:
+    ScreenLockerKcm* q;
+};
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/ar/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/ar/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/ar/screenlocker_kcm.po   2017-02-07 
12:21:12.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/ar/screenlocker_kcm.po   2017-02-14 
14:19:17.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2015-01-09 18:20+0300\n"
 "Last-Translator: Safa Alfulaij <[email protected]>\n"
 "Language-Team: Arabic <[email protected]>\n"
@@ -49,12 +49,12 @@
 msgid "Lock Session"
 msgstr ""
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "خطأ"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "فشل اختبار قافل الشّاشة بنجاح."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/ast/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/ast/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/ast/screenlocker_kcm.po  2017-02-07 
12:21:12.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/ast/screenlocker_kcm.po  2017-02-14 
14:19:16.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-12-19 04:06+0100\n"
 "Last-Translator: enolp <[email protected]>\n"
 "Language-Team: Asturian <[email protected]>\n"
@@ -38,12 +38,12 @@
 msgid "Lock Session"
 msgstr ""
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Fallu"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/bs/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/bs/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/bs/screenlocker_kcm.po   2017-02-07 
12:21:13.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/bs/screenlocker_kcm.po   2017-02-14 
14:19:19.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: bosnianuniversetranslation\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2015-02-15 19:44+0000\n"
 "Last-Translator: Samir Ribić <Unknown>\n"
 "Language-Team: Bosnian <[email protected]>\n"
@@ -45,12 +45,12 @@
 msgid "Lock Session"
 msgstr ""
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Greška"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Neuspjelo uspješno testiranje zaključavanja ekrana:"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/ca/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/ca/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/ca/screenlocker_kcm.po   2017-02-07 
12:21:14.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/ca/screenlocker_kcm.po   2017-02-14 
14:19:20.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: screenlocker_kcm\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-09-14 22:08+0200\n"
 "Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
@@ -42,12 +42,12 @@
 msgid "Lock Session"
 msgstr "Bloqueja la sessió"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Error"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Ha fallat en provar el bloqueig de la pantalla."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kscreenlocker-5.9.1/po/ca@valencia/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/ca@valencia/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/ca@valencia/screenlocker_kcm.po  2017-02-07 
12:21:14.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/ca@valencia/screenlocker_kcm.po  2017-02-14 
14:19:20.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: screenlocker_kcm\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-09-14 22:08+0200\n"
 "Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
@@ -42,12 +42,12 @@
 msgid "Lock Session"
 msgstr "Bloqueja la sessió"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Error"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Ha fallat en provar el bloqueig de la pantalla."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/cs/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/cs/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/cs/screenlocker_kcm.po   2017-02-07 
12:21:14.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/cs/screenlocker_kcm.po   2017-02-14 
14:19:20.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-11-03 15:50+0100\n"
 "Last-Translator: Vít Pelčák <[email protected]>\n"
 "Language-Team: Czech <[email protected]>\n"
@@ -42,12 +42,12 @@
 msgid "Lock Session"
 msgstr "Uzamknout sezení"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Chyba"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Otestování zámku obrazovky selhalo."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/da/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/da/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/da/screenlocker_kcm.po   2017-02-07 
12:21:15.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/da/screenlocker_kcm.po   2017-02-14 
14:19:21.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-09-24 21:54+0100\n"
 "Last-Translator: Martin Schlander <[email protected]>\n"
 "Language-Team: Danish <[email protected]>\n"
@@ -38,12 +38,12 @@
 msgid "Lock Session"
 msgstr "Lås session"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Fejl"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Kunne ikke teste skærmlåsningen."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/de/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/de/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/de/screenlocker_kcm.po   2017-02-07 
12:21:15.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/de/screenlocker_kcm.po   2017-02-14 
14:19:22.000000000 +0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-09-18 20:47+0100\n"
 "Last-Translator: Burkhard Lück <[email protected]>\n"
 "Language-Team: German <[email protected]>\n"
@@ -36,12 +36,12 @@
 msgid "Lock Session"
 msgstr "Sitzung sperren"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Fehler"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Fehler beim Testen der Bildschirmsperre."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/el/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/el/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/el/screenlocker_kcm.po   2017-02-07 
12:21:15.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/el/screenlocker_kcm.po   2017-02-14 
14:19:22.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-09-20 12:16+0200\n"
 "Last-Translator: Dimitris Kardarakos <[email protected]>\n"
 "Language-Team: Greek <[email protected]>\n"
@@ -38,12 +38,12 @@
 msgid "Lock Session"
 msgstr "Κλείδωμα συνεδρίας"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Σφάλμα"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Αποτυχία επιτυχούς δοκιμής του κλειδώματος οθόνης."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/en_GB/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/en_GB/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/en_GB/screenlocker_kcm.po        2017-02-07 
12:21:15.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/en_GB/screenlocker_kcm.po        2017-02-14 
14:19:22.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-09-16 13:08+0000\n"
 "Last-Translator: Steve Allewell <[email protected]>\n"
 "Language-Team: English <[email protected]>\n"
@@ -38,12 +38,12 @@
 msgid "Lock Session"
 msgstr "Lock Session"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Error"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Failed to successfully test the screen locker."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/es/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/es/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/es/screenlocker_kcm.po   2017-02-07 
12:21:15.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/es/screenlocker_kcm.po   2017-02-14 
14:19:23.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: screenlocker_kcm\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-09-14 18:49+0200\n"
 "Last-Translator: Eloy Cuadra <[email protected]>\n"
 "Language-Team: Spanish <[email protected]>\n"
@@ -40,12 +40,12 @@
 msgid "Lock Session"
 msgstr "Bloquear sesión"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Error"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "No se ha podido probar con éxito el bloqueador de la pantalla."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/et/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/et/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/et/screenlocker_kcm.po   2017-02-07 
12:21:16.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/et/screenlocker_kcm.po   2017-02-14 
14:19:24.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-12-09 00:50+0200\n"
 "Last-Translator: Marek Laane <[email protected]>\n"
 "Language-Team: Estonian <[email protected]>\n"
@@ -38,12 +38,12 @@
 msgid "Lock Session"
 msgstr "Seansi lukustamine"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Tõrge"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Ekraanilukustaja edukas testimine nurjus."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/fi/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/fi/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/fi/screenlocker_kcm.po   2017-02-07 
12:21:16.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/fi/screenlocker_kcm.po   2017-02-14 
14:19:24.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-09-26 23:44+0200\n"
 "Last-Translator: Lasse Liehu <[email protected]>\n"
 "Language-Team: Finnish <[email protected]>\n"
@@ -39,12 +39,12 @@
 msgid "Lock Session"
 msgstr "Lukitse istunto"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Virhe"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Näyttölukon kokeileminen epäonnistui."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/fr/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/fr/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/fr/screenlocker_kcm.po   2017-02-07 
12:21:16.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/fr/screenlocker_kcm.po   2017-02-14 
14:19:26.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-11-23 12:28+0100\n"
 "Last-Translator: Vincent Pinon <[email protected]>\n"
 "Language-Team: French <[email protected]>\n"
@@ -42,12 +42,12 @@
 msgid "Lock Session"
 msgstr "Verrouiller la session"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Erreur"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Impossible de tester l'écran de verrouillage."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/gl/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/gl/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/gl/screenlocker_kcm.po   2017-02-07 
12:21:17.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/gl/screenlocker_kcm.po   2017-02-14 
14:19:27.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-04-21 06:53+0100\n"
 "Last-Translator: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail."
 "com>\n"
@@ -39,12 +39,12 @@
 msgid "Lock Session"
 msgstr "Bloquear a sesión"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Erro"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Non foi posíbel probar satisfactoriamente o bloqueador da pantalla."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/he/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/he/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/he/screenlocker_kcm.po   2017-02-07 
12:21:17.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/he/screenlocker_kcm.po   2017-02-14 
14:19:28.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-10-23 11:02+0200\n"
 "Last-Translator: Elkana Bardugo <[email protected]>\n"
 "Language-Team: Hebrew <[email protected]>\n"
@@ -38,12 +38,12 @@
 msgid "Lock Session"
 msgstr "נעל הפעלה"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "שגיאה"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "נכשל בבדיקת מסך הנעילה"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/hu/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/hu/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/hu/screenlocker_kcm.po   2017-02-07 
12:21:18.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/hu/screenlocker_kcm.po   2017-02-14 
14:19:29.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2015-03-23 16:08+0100\n"
 "Last-Translator: Kristóf Kiszel <[email protected]>\n"
 "Language-Team: Hungarian <[email protected]>\n"
@@ -40,12 +40,12 @@
 msgid "Lock Session"
 msgstr "Munkamenet zárolása"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Hiba"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Nem sikerült kipróbálni a képernyőzárat."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/ia/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/ia/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/ia/screenlocker_kcm.po   2017-02-07 
12:21:18.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/ia/screenlocker_kcm.po   2017-02-14 
14:19:29.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2014-07-25 14:58+0200\n"
 "Last-Translator: Giovanni Sora <[email protected]>\n"
 "Language-Team: Interlingua <[email protected]>\n"
@@ -38,12 +38,12 @@
 msgid "Lock Session"
 msgstr ""
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr ""
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/it/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/it/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/it/screenlocker_kcm.po   2017-02-07 
12:21:19.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/it/screenlocker_kcm.po   2017-02-14 
14:19:32.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-09-17 08:42+0200\n"
 "Last-Translator: Vincenzo Reale <[email protected]>\n"
 "Language-Team: Italian <[email protected]>\n"
@@ -38,12 +38,12 @@
 msgid "Lock Session"
 msgstr "Blocco sessione"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Errore"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Prova della schermata di blocco non riuscita"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/ja/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/ja/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/ja/screenlocker_kcm.po   2017-02-07 
12:21:19.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/ja/screenlocker_kcm.po   2017-02-14 
14:19:31.000000000 +0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: screenlocker_kcm\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2014-06-07 02:34-0700\n"
 "Last-Translator: Japanese KDE translation team <[email protected]>\n"
 "Language-Team: Japanese <[email protected]>\n"
@@ -35,12 +35,12 @@
 msgid "Lock Session"
 msgstr ""
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr ""
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/ko/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/ko/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/ko/screenlocker_kcm.po   2017-02-07 
12:21:20.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/ko/screenlocker_kcm.po   2017-02-14 
14:19:33.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-10-20 22:59+0100\n"
 "Last-Translator: Shinjo Park <[email protected]>\n"
 "Language-Team: Korean <[email protected]>\n"
@@ -36,12 +36,12 @@
 msgid "Lock Session"
 msgstr "세션 잠금"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "오류"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "잠금 화면을 테스트하는 데 실패했습니다."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/lt/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/lt/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/lt/screenlocker_kcm.po   2017-02-07 
12:21:20.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/lt/screenlocker_kcm.po   2017-02-14 
14:19:34.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: trunk-kf 5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2015-08-30 15:39+0200\n"
 "Last-Translator: Liudas Ališauskas <[email protected]>\n"
 "Language-Team: Lithuanian <[email protected]>\n"
@@ -48,12 +48,12 @@
 msgid "Lock Session"
 msgstr "Užrakinti sesiją"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Klaida"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Nepavyko sėkmingai išbandyti ekrano užrakto."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/nds/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/nds/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/nds/screenlocker_kcm.po  2017-02-07 
12:21:21.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/nds/screenlocker_kcm.po  2017-02-14 
14:19:36.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2014-08-11 12:49+0200\n"
 "Last-Translator: Sönke Dibbern <[email protected]>\n"
 "Language-Team: Low Saxon <[email protected]>\n"
@@ -40,12 +40,12 @@
 msgid "Lock Session"
 msgstr ""
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Fehler"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Dat Schirmslott lett sik nich mit Spood utproberen"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/nl/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/nl/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/nl/screenlocker_kcm.po   2017-02-07 
12:21:22.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/nl/screenlocker_kcm.po   2017-02-14 
14:19:37.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-09-14 11:41+0200\n"
 "Last-Translator: Freek de Kruijf <[email protected]>\n"
 "Language-Team: Dutch <[email protected]>\n"
@@ -38,12 +38,12 @@
 msgid "Lock Session"
 msgstr "Sessie vergrendelen"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Fout"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Testen van de schermvergrendeling is mislukt"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/pa/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/pa/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/pa/screenlocker_kcm.po   2017-02-07 
12:21:23.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/pa/screenlocker_kcm.po   2017-02-14 
14:19:38.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2014-12-23 18:17-0600\n"
 "Last-Translator: A S Alam <[email protected]>\n"
 "Language-Team: Punjabi/Panjabi <[email protected]>\n"
@@ -40,12 +40,12 @@
 msgid "Lock Session"
 msgstr ""
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "ਗਲਤੀ"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/pl/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/pl/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/pl/screenlocker_kcm.po   2017-02-07 
12:21:23.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/pl/screenlocker_kcm.po   2017-02-14 
14:19:39.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-09-17 09:43+0100\n"
 "Last-Translator: Łukasz Wojniłowicz <[email protected]>\n"
 "Language-Team: Polish <[email protected]>\n"
@@ -41,12 +41,12 @@
 msgid "Lock Session"
 msgstr "Zablokuj sesję"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Błąd"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Próba blokowania ekranu zakończyła się niepowodzeniem."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/pt/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/pt/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/pt/screenlocker_kcm.po   2017-02-07 
12:21:23.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/pt/screenlocker_kcm.po   2017-02-14 
14:19:39.000000000 +0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: screenlocker_kcm\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-09-14 11:48+0100\n"
 "Last-Translator: José Nuno Coelho Pires <[email protected]>\n"
 "Language-Team: Portuguese <[email protected]>\n"
@@ -34,12 +34,12 @@
 msgid "Lock Session"
 msgstr "Bloquear a Sessão"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Erro"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Não foi possível testar o bloqueio do ecrã com sucesso."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/pt_BR/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/pt_BR/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/pt_BR/screenlocker_kcm.po        2017-02-07 
12:21:23.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/pt_BR/screenlocker_kcm.po        2017-02-14 
14:19:40.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: screenlocker_kcm\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-09-12 09:00-0300\n"
 "Last-Translator: Luiz Fernando Ranghetti <[email protected]>\n"
 "Language-Team: Portuguese <[email protected]>\n"
@@ -43,12 +43,12 @@
 msgid "Lock Session"
 msgstr "Bloquear sessão"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Erro"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Não foi possível testar com sucesso o bloqueador de tela."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/ro/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/ro/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/ro/screenlocker_kcm.po   2017-02-07 
12:21:28.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/ro/screenlocker_kcm.po   2017-02-14 
14:19:40.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2015-04-20 14:36+0300\n"
 "Last-Translator: Sergiu Bivol <[email protected]>\n"
 "Language-Team: Romanian <[email protected]>\n"
@@ -43,12 +43,12 @@
 msgid "Lock Session"
 msgstr "Blochează sesiunea"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Eroare"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Testarea blocării ecranului a eșuat."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/ru/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/ru/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/ru/screenlocker_kcm.po   2017-02-07 
12:21:24.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/ru/screenlocker_kcm.po   2017-02-14 
14:19:41.000000000 +0100
@@ -1,13 +1,13 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Alexander Potashev <[email protected]>, 2014, 2015, 2016.
+# Alexander Potashev <[email protected]>, 2014, 2015, 2016, 2017.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
-"PO-Revision-Date: 2016-09-28 22:52+0300\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
+"PO-Revision-Date: 2017-02-13 00:58+0300\n"
 "Last-Translator: Alexander Potashev <[email protected]>\n"
 "Language-Team: Russian <[email protected]>\n"
 "Language: ru\n"
@@ -45,12 +45,12 @@
 msgid "Lock Session"
 msgstr "Заблокировать сеанс"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Ошибка"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Не удалось продемонстрировать блокировщик экрана."
@@ -67,7 +67,6 @@
 msgid "Lock screen automatically after:"
 msgstr "Блокировать экран автоматически после:"
 
-# BUGME: this "&" is visible in the UI --aspotashev
 #. i18n: ectx: property (text), widget (QLabel, label_2)
 #: kcm.ui:73
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/sk/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/sk/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/sk/screenlocker_kcm.po   2017-02-07 
12:21:24.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/sk/screenlocker_kcm.po   2017-02-14 
14:19:42.000000000 +0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: screenlocker_kcm\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-09-15 15:47+0100\n"
 "Last-Translator: Roman Paholik <[email protected]>\n"
 "Language-Team: Slovak <[email protected]>\n"
@@ -38,12 +38,12 @@
 msgid "Lock Session"
 msgstr "Zamknúť sedenie"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Chyba"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Zlyhalo úspešne otestovať zamykač obrazovky."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/sl/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/sl/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/sl/screenlocker_kcm.po   2017-02-07 
12:21:25.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/sl/screenlocker_kcm.po   2017-02-14 
14:19:42.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-09-16 17:33+0200\n"
 "Last-Translator: Andrej Mernik <[email protected]>\n"
 "Language-Team: Slovenian <[email protected]>\n"
@@ -43,12 +43,12 @@
 msgid "Lock Session"
 msgstr "Zakleni sejo"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Napaka"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Ni bilo mogoče uspešno preizkusiti zaklepa zaslona."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/sv/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/sv/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/sv/screenlocker_kcm.po   2017-02-07 
12:21:26.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/sv/screenlocker_kcm.po   2017-02-14 
14:19:44.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-09-14 17:47+0100\n"
 "Last-Translator: Stefan Asserhäll <[email protected]>\n"
 "Language-Team: Swedish <[email protected]>\n"
@@ -38,12 +38,12 @@
 msgid "Lock Session"
 msgstr "Lås session"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Fel"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Misslyckades testa skärmlåsning med lyckat resultat."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/uk/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/uk/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/uk/screenlocker_kcm.po   2017-02-07 
12:21:27.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/uk/screenlocker_kcm.po   2017-02-14 
14:19:47.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: screenlocker_kcm\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-09-14 17:55+0300\n"
 "Last-Translator: Yuri Chornoivan <[email protected]>\n"
 "Language-Team: Ukrainian <[email protected]>\n"
@@ -45,12 +45,12 @@
 msgid "Lock Session"
 msgstr "Заблокувати сеанс"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "Помилка"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "Не вдалося успішно перевірити засіб блокування екрана."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/zh_CN/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/zh_CN/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/zh_CN/screenlocker_kcm.po        2017-02-07 
12:21:28.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/zh_CN/screenlocker_kcm.po        2017-02-14 
14:19:49.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-10-04 11:53-0800\n"
 "Last-Translator: Weng Xuetian <[email protected]>\n"
 "Language-Team: Chinese <[email protected]>\n"
@@ -38,12 +38,12 @@
 msgid "Lock Session"
 msgstr "锁定会话"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "错误"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "测试锁屏失败。"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.9.1/po/zh_TW/screenlocker_kcm.po 
new/kscreenlocker-5.9.2/po/zh_TW/screenlocker_kcm.po
--- old/kscreenlocker-5.9.1/po/zh_TW/screenlocker_kcm.po        2017-02-07 
12:21:29.000000000 +0100
+++ new/kscreenlocker-5.9.2/po/zh_TW/screenlocker_kcm.po        2017-02-14 
14:19:49.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2016-11-19 20:20+0100\n"
+"POT-Creation-Date: 2017-02-11 07:08+0100\n"
 "PO-Revision-Date: 2016-09-21 21:38+0800\n"
 "Last-Translator: Jeff Huang <[email protected]>\n"
 "Language-Team: Chinese <[email protected]>\n"
@@ -38,12 +38,12 @@
 msgid "Lock Session"
 msgstr "鎖定工作階段"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Error"
 msgstr "錯誤"
 
-#: kcm.cpp:138
+#: kcm.cpp:143
 #, kde-format
 msgid "Failed to successfully test the screen locker."
 msgstr "測試螢幕鎖定程式失敗。"


Reply via email to