Hello community,

here is the log from the commit of package kconfig for openSUSE:Factory checked 
in at 2020-12-15 12:28:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kconfig (Old)
 and      /work/SRC/openSUSE:Factory/.kconfig.new.2328 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kconfig"

Tue Dec 15 12:28:16 2020 rev:89 rq:855415 version:5.77.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kconfig/kconfig.changes  2020-11-23 
10:31:48.613448082 +0100
+++ /work/SRC/openSUSE:Factory/.kconfig.new.2328/kconfig.changes        
2020-12-15 12:30:05.995986553 +0100
@@ -1,0 +2,11 @@
+Sat Dec  5 18:56:19 UTC 2020 - Christophe Giboudeaux <[email protected]>
+
+- Update to 5.77.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.77.0
+- Changes since 5.76.0:
+  * Add KF6 TODO to use the just-approved (*) XDG_STATE_HOME env var.
+  * Fix KConfigGroup::copyTo with KConfigBase::Notify
+
+-------------------------------------------------------------------

Old:
----
  kconfig-5.76.0.tar.xz
  kconfig-5.76.0.tar.xz.sig

New:
----
  kconfig-5.77.0.tar.xz
  kconfig-5.77.0.tar.xz.sig

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

Other differences:
------------------
++++++ kconfig.spec ++++++
--- /var/tmp/diff_new_pack.3iIfvV/_old  2020-12-15 12:30:06.895987278 +0100
+++ /var/tmp/diff_new_pack.3iIfvV/_new  2020-12-15 12:30:06.903987284 +0100
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.76
+%define _tar_path 5.77
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without lang
 Name:           kconfig
-Version:        5.76.0
+Version:        5.77.0
 Release:        0
 Summary:        Advanced configuration system
 License:        LGPL-2.1-or-later AND GPL-2.0-or-later
@@ -41,12 +41,12 @@
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
-BuildRequires:  cmake(Qt5Core) >= 5.12.0
-BuildRequires:  cmake(Qt5DBus) >= 5.12.0
-BuildRequires:  cmake(Qt5Gui) >= 5.12.0
-BuildRequires:  cmake(Qt5Xml) >= 5.12.0
+BuildRequires:  cmake(Qt5Core) >= 5.13.0
+BuildRequires:  cmake(Qt5DBus) >= 5.13.0
+BuildRequires:  cmake(Qt5Gui) >= 5.13.0
+BuildRequires:  cmake(Qt5Xml) >= 5.13.0
 %if %{with lang}
-BuildRequires:  cmake(Qt5LinguistTools) >= 5.12.0
+BuildRequires:  cmake(Qt5LinguistTools) >= 5.13.0
 %endif
 
 %description
@@ -110,8 +110,8 @@
 Requires:       kconf_update5 = %{version}
 Requires:       libKF5ConfigCore%{sonum} = %{version}
 Requires:       libKF5ConfigGui%{sonum} = %{version}
-Requires:       cmake(Qt5DBus) >= 5.12.0
-Requires:       cmake(Qt5Xml) >= 5.12.0
+Requires:       cmake(Qt5DBus) >= 5.13.0
+Requires:       cmake(Qt5Xml) >= 5.13.0
 
 %description devel
 KConfig provides an advanced configuration system. It is made of two parts:


++++++ kconfig-5.76.0.tar.xz -> kconfig-5.77.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/CMakeLists.txt 
new/kconfig-5.77.0/CMakeLists.txt
--- old/kconfig-5.76.0/CMakeLists.txt   2020-11-07 13:00:32.000000000 +0100
+++ new/kconfig-5.77.0/CMakeLists.txt   2020-12-05 13:38:29.000000000 +0100
@@ -1,16 +1,16 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.76.0") # handled by release scripts
+set(KF5_VERSION "5.77.0") # handled by release scripts
 project(KConfig VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.76.0  NO_MODULE)
+find_package(ECM 5.77.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL "https://commits.kde.org/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
 
-set(REQUIRED_QT_VERSION 5.12.0)
+set(REQUIRED_QT_VERSION 5.13.0)
 
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Xml)
 option(KCONFIG_USE_GUI "Build components using Qt5Gui" ON)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/autotests/kconfigtest.cpp 
new/kconfig-5.77.0/autotests/kconfigtest.cpp
--- old/kconfig-5.76.0/autotests/kconfigtest.cpp        2020-11-07 
13:00:32.000000000 +0100
+++ new/kconfig-5.77.0/autotests/kconfigtest.cpp        2020-12-05 
13:38:29.000000000 +0100
@@ -1863,7 +1863,7 @@
     // QEXPECT_FAIL triggers race conditions, it should be fixed to use 
QThreadStorage...
     //futures << QtConcurrent::run(this, 
&KConfigTest::testDeleteWhenLocalized);
     //futures << QtConcurrent::run(this, &KConfigTest::testEntryMap);
-    for (QFuture<void> f : qAsConst(futures)) { // krazy:exclude=foreach
+    for (QFuture<void> f : qAsConst(futures)) {
         f.waitForFinished();
     }
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/af/kconfig5_qt.po 
new/kconfig-5.77.0/po/af/kconfig5_qt.po
--- old/kconfig-5.76.0/po/af/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/af/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/ar/kconfig5_qt.po 
new/kconfig-5.77.0/po/ar/kconfig5_qt.po
--- old/kconfig-5.76.0/po/ar/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/ar/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -16,7 +16,7 @@
 "X-Generator: Lokalize 2.0\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "رجاءً راسل مدير النظام."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/az/kconfig5_qt.po 
new/kconfig-5.77.0/po/az/kconfig5_qt.po
--- old/kconfig-5.76.0/po/az/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/az/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -13,7 +13,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 20.08.0\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Sistem adminstratorunuzla əlaqə saxlayın."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/be/kconfig5_qt.po 
new/kconfig-5.77.0/po/be/kconfig5_qt.po
--- old/kconfig-5.76.0/po/be/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/be/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -19,7 +19,7 @@
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/be@latin/kconfig5_qt.po 
new/kconfig-5.77.0/po/be@latin/kconfig5_qt.po
--- old/kconfig-5.76.0/po/be@latin/kconfig5_qt.po       2020-11-07 
13:00:32.000000000 +0100
+++ new/kconfig-5.77.0/po/be@latin/kconfig5_qt.po       2020-12-05 
13:38:29.000000000 +0100
@@ -20,7 +20,7 @@
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/bg/kconfig5_qt.po 
new/kconfig-5.77.0/po/bg/kconfig5_qt.po
--- old/kconfig-5.76.0/po/bg/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/bg/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -18,7 +18,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/bn/kconfig5_qt.po 
new/kconfig-5.77.0/po/bn/kconfig5_qt.po
--- old/kconfig-5.76.0/po/bn/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/bn/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -16,7 +16,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/bn_IN/kconfig5_qt.po 
new/kconfig-5.77.0/po/bn_IN/kconfig5_qt.po
--- old/kconfig-5.76.0/po/bn_IN/kconfig5_qt.po  2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/bn_IN/kconfig5_qt.po  2020-12-05 13:38:29.000000000 
+0100
@@ -19,7 +19,7 @@
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/br/kconfig5_qt.po 
new/kconfig-5.77.0/po/br/kconfig5_qt.po
--- old/kconfig-5.76.0/po/br/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/br/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -15,7 +15,7 @@
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/bs/kconfig5_qt.po 
new/kconfig-5.77.0/po/bs/kconfig5_qt.po
--- old/kconfig-5.76.0/po/bs/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/bs/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -13,7 +13,7 @@
 "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Obratite se sistem-administratoru."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/ca/kconfig5_qt.po 
new/kconfig-5.77.0/po/ca/kconfig5_qt.po
--- old/kconfig-5.76.0/po/ca/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/ca/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -23,7 +23,7 @@
 "X-Accelerator-Marker: &\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Si us plau, contacteu amb l'administrador del sistema."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/ca@valencia/kconfig5_qt.po 
new/kconfig-5.77.0/po/ca@valencia/kconfig5_qt.po
--- old/kconfig-5.76.0/po/ca@valencia/kconfig5_qt.po    2020-11-07 
13:00:32.000000000 +0100
+++ new/kconfig-5.77.0/po/ca@valencia/kconfig5_qt.po    2020-12-05 
13:38:29.000000000 +0100
@@ -25,7 +25,7 @@
 "X-Qt-Contexts: true\n"
 "X-Project-Style: kde\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Per favor, contacteu amb l'administrador del sistema."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/cs/kconfig5_qt.po 
new/kconfig-5.77.0/po/cs/kconfig5_qt.po
--- old/kconfig-5.76.0/po/cs/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/cs/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -17,7 +17,7 @@
 "X-Source-Language: en_US\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Prosím kontaktujte svého správce systému."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/csb/kconfig5_qt.po 
new/kconfig-5.77.0/po/csb/kconfig5_qt.po
--- old/kconfig-5.76.0/po/csb/kconfig5_qt.po    2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/csb/kconfig5_qt.po    2020-12-05 13:38:29.000000000 
+0100
@@ -19,7 +19,7 @@
 "|| n%100>=20) ? 1 : 2)\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/cy/kconfig5_qt.po 
new/kconfig-5.77.0/po/cy/kconfig5_qt.po
--- old/kconfig-5.76.0/po/cy/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/cy/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -18,7 +18,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/da/kconfig5_qt.po 
new/kconfig-5.77.0/po/da/kconfig5_qt.po
--- old/kconfig-5.76.0/po/da/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/da/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -21,7 +21,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Kontakt venligst din systemadministrator."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/de/kconfig5_qt.po 
new/kconfig-5.77.0/po/de/kconfig5_qt.po
--- old/kconfig-5.76.0/po/de/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/de/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -18,7 +18,7 @@
 "X-Qt-Contexts: true\n"
 "X-Generator: Lokalize 20.08.1\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Bitte nehmen Sie Kontakt zu Ihrer Systemverwaltung auf."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/el/kconfig5_qt.po 
new/kconfig-5.77.0/po/el/kconfig5_qt.po
--- old/kconfig-5.76.0/po/el/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/el/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -22,7 +22,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Παρακαλώ επικοινωνήστε με τον διαχειριστή του συστήματός σας."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/en_GB/kconfig5_qt.po 
new/kconfig-5.77.0/po/en_GB/kconfig5_qt.po
--- old/kconfig-5.76.0/po/en_GB/kconfig5_qt.po  2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/en_GB/kconfig5_qt.po  2020-12-05 13:38:29.000000000 
+0100
@@ -20,7 +20,7 @@
 "X-Generator: Lokalize 20.08.1\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Please contact your system administrator."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/eo/kconfig5_qt.po 
new/kconfig-5.77.0/po/eo/kconfig5_qt.po
--- old/kconfig-5.76.0/po/eo/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/eo/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -19,7 +19,7 @@
 "X-Poedit-Language: Esperanto\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/es/kconfig5_qt.po 
new/kconfig-5.77.0/po/es/kconfig5_qt.po
--- old/kconfig-5.76.0/po/es/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/es/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -23,7 +23,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Póngase en contacto con el administrador de su sistema."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/et/kconfig5_qt.po 
new/kconfig-5.77.0/po/et/kconfig5_qt.po
--- old/kconfig-5.76.0/po/et/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/et/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -19,7 +19,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Palun võta ühendust süsteemiadministraatoriga."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/eu/kconfig5_qt.po 
new/kconfig-5.77.0/po/eu/kconfig5_qt.po
--- old/kconfig-5.76.0/po/eu/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/eu/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -22,7 +22,7 @@
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Lokalize 20.08.1\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Jarri kontaktuan zure sistemaren administratzailearekin."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/fa/kconfig5_qt.po 
new/kconfig-5.77.0/po/fa/kconfig5_qt.po
--- old/kconfig-5.76.0/po/fa/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/fa/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -19,7 +19,7 @@
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/fi/kconfig5_qt.po 
new/kconfig-5.77.0/po/fi/kconfig5_qt.po
--- old/kconfig-5.76.0/po/fi/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/fi/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -16,7 +16,7 @@
 "X-Generator: Lokalize 20.04.2\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Ota yhteyttä järjestelmän ylläpitäjääsi."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/fr/kconfig5_qt.po 
new/kconfig-5.77.0/po/fr/kconfig5_qt.po
--- old/kconfig-5.76.0/po/fr/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/fr/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -32,7 +32,7 @@
 "X-Text-Markup: qtrich\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Veuillez contacter l'administrateur du système."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/fy/kconfig5_qt.po 
new/kconfig-5.77.0/po/fy/kconfig5_qt.po
--- old/kconfig-5.76.0/po/fy/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/fy/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/ga/kconfig5_qt.po 
new/kconfig-5.77.0/po/ga/kconfig5_qt.po
--- old/kconfig-5.76.0/po/ga/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/ga/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -18,7 +18,7 @@
 "3 : 4\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/gd/kconfig5_qt.po 
new/kconfig-5.77.0/po/gd/kconfig5_qt.po
--- old/kconfig-5.76.0/po/gd/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/gd/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -15,7 +15,7 @@
 "X-Generator: Poedit 1.8.4\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Cuir fios gu rianaire an t-siostaim agad."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/gl/kconfig5_qt.po 
new/kconfig-5.77.0/po/gl/kconfig5_qt.po
--- old/kconfig-5.76.0/po/gl/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/gl/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -23,7 +23,7 @@
 "X-Generator: Lokalize 19.08.3\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Contacte co administrador do sistema."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/gu/kconfig5_qt.po 
new/kconfig-5.77.0/po/gu/kconfig5_qt.po
--- old/kconfig-5.76.0/po/gu/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/gu/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -19,7 +19,7 @@
 "Plural-Forms: nplurals=2; plural=(n!=1);\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/he/kconfig5_qt.po 
new/kconfig-5.77.0/po/he/kconfig5_qt.po
--- old/kconfig-5.76.0/po/he/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/he/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -19,7 +19,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/hi/kconfig5_qt.po 
new/kconfig-5.77.0/po/hi/kconfig5_qt.po
--- old/kconfig-5.76.0/po/hi/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/hi/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -20,7 +20,7 @@
 "Plural-Forms: nplurals=2; plural=(n!=1);\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/hne/kconfig5_qt.po 
new/kconfig-5.77.0/po/hne/kconfig5_qt.po
--- old/kconfig-5.76.0/po/hne/kconfig5_qt.po    2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/hne/kconfig5_qt.po    2020-12-05 13:38:29.000000000 
+0100
@@ -20,7 +20,7 @@
 "Plural-Forms: nplurals=2; plural=(n!=1);\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/hr/kconfig5_qt.po 
new/kconfig-5.77.0/po/hr/kconfig5_qt.po
--- old/kconfig-5.76.0/po/hr/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/hr/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -21,7 +21,7 @@
 "X-Text-Markup: kde4\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/hsb/kconfig5_qt.po 
new/kconfig-5.77.0/po/hsb/kconfig5_qt.po
--- old/kconfig-5.76.0/po/hsb/kconfig5_qt.po    2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/hsb/kconfig5_qt.po    2020-12-05 13:38:29.000000000 
+0100
@@ -19,7 +19,7 @@
 "%100==4 ? 2 : 3;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/hu/kconfig5_qt.po 
new/kconfig-5.77.0/po/hu/kconfig5_qt.po
--- old/kconfig-5.76.0/po/hu/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/hu/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -19,7 +19,7 @@
 "X-Generator: Lokalize 2.0\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Lépjen kapcsolatba a rendszergazdával."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/ia/kconfig5_qt.po 
new/kconfig-5.77.0/po/ia/kconfig5_qt.po
--- old/kconfig-5.76.0/po/ia/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/ia/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -19,7 +19,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Pro favor, tu continge tu administrator de systema"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/id/kconfig5_qt.po 
new/kconfig-5.77.0/po/id/kconfig5_qt.po
--- old/kconfig-5.76.0/po/id/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/id/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -21,7 +21,7 @@
 "X-Generator: Lokalize 19.12.1\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Silakan kontak pengurus sistem anda."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/is/kconfig5_qt.po 
new/kconfig-5.77.0/po/is/kconfig5_qt.po
--- old/kconfig-5.76.0/po/is/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/is/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -20,7 +20,7 @@
 "X-Generator: Lokalize 1.5\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Vinsamlega hafðu sambandi við kerfisstjóra."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/it/kconfig5_qt.po 
new/kconfig-5.77.0/po/it/kconfig5_qt.po
--- old/kconfig-5.76.0/po/it/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/it/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -21,7 +21,7 @@
 "X-Generator: Lokalize 20.08.0\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Contatta il tuo amministratore di sistema."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/ja/kconfig5_qt.po 
new/kconfig-5.77.0/po/ja/kconfig5_qt.po
--- old/kconfig-5.76.0/po/ja/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/ja/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -15,7 +15,7 @@
 "X-Text-Markup: qtrich\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/kk/kconfig5_qt.po 
new/kconfig-5.77.0/po/kk/kconfig5_qt.po
--- old/kconfig-5.76.0/po/kk/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/kk/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/km/kconfig5_qt.po 
new/kconfig-5.77.0/po/km/kconfig5_qt.po
--- old/kconfig-5.76.0/po/km/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/km/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -18,7 +18,7 @@
 "X-Generator: KBabel 1.11.4\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/kn/kconfig5_qt.po 
new/kconfig-5.77.0/po/kn/kconfig5_qt.po
--- old/kconfig-5.76.0/po/kn/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/kn/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -19,7 +19,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/ko/kconfig5_qt.po 
new/kconfig-5.77.0/po/ko/kconfig5_qt.po
--- old/kconfig-5.76.0/po/ko/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/ko/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -19,7 +19,7 @@
 "X-Generator: Lokalize 19.12.3\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "시스템 관리자에게 연락하십시오."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/ku/kconfig5_qt.po 
new/kconfig-5.77.0/po/ku/kconfig5_qt.po
--- old/kconfig-5.76.0/po/ku/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/ku/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -21,7 +21,7 @@
 "X-Poedit-SourceCharset: utf8\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/lb/kconfig5_qt.po 
new/kconfig-5.77.0/po/lb/kconfig5_qt.po
--- old/kconfig-5.76.0/po/lb/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/lb/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -16,7 +16,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/lt/kconfig5_qt.po 
new/kconfig-5.77.0/po/lt/kconfig5_qt.po
--- old/kconfig-5.76.0/po/lt/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/lt/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -19,7 +19,7 @@
 "X-Qt-Contexts: true\n"
 "X-Generator: Poedit 2.0.6\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Susisiekite su sistemos administratoriumi."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/lv/kconfig5_qt.po 
new/kconfig-5.77.0/po/lv/kconfig5_qt.po
--- old/kconfig-5.76.0/po/lv/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/lv/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -21,7 +21,7 @@
 "2);\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/mai/kconfig5_qt.po 
new/kconfig-5.77.0/po/mai/kconfig5_qt.po
--- old/kconfig-5.76.0/po/mai/kconfig5_qt.po    2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/mai/kconfig5_qt.po    2020-12-05 13:38:29.000000000 
+0100
@@ -19,7 +19,7 @@
 "Plural-Forms: nplurals=2; plural=(n!=1);\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/mk/kconfig5_qt.po 
new/kconfig-5.77.0/po/mk/kconfig5_qt.po
--- old/kconfig-5.76.0/po/mk/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/mk/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -18,7 +18,7 @@
 "2;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/ml/kconfig5_qt.po 
new/kconfig-5.77.0/po/ml/kconfig5_qt.po
--- old/kconfig-5.76.0/po/ml/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/ml/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -17,11 +17,9 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Poedit-Country: INDIA\n"
-"X-Generator: Lokalize 0.3\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/mr/kconfig5_qt.po 
new/kconfig-5.77.0/po/mr/kconfig5_qt.po
--- old/kconfig-5.76.0/po/mr/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/mr/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -20,7 +20,7 @@
 "Plural-Forms: nplurals=2; plural=(n!=1);\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/ms/kconfig5_qt.po 
new/kconfig-5.77.0/po/ms/kconfig5_qt.po
--- old/kconfig-5.76.0/po/ms/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/ms/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -19,7 +19,7 @@
 "Plural-Forms: nplurals=2; plural=1;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/nb/kconfig5_qt.po 
new/kconfig-5.77.0/po/nb/kconfig5_qt.po
--- old/kconfig-5.76.0/po/nb/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/nb/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -22,7 +22,7 @@
 "X-Text-Markup: qtrich\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Kontakt systemadministratoren din."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/nds/kconfig5_qt.po 
new/kconfig-5.77.0/po/nds/kconfig5_qt.po
--- old/kconfig-5.76.0/po/nds/kconfig5_qt.po    2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/nds/kconfig5_qt.po    2020-12-05 13:38:29.000000000 
+0100
@@ -15,7 +15,7 @@
 "X-Generator: Lokalize 1.5\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Snack bitte Dien Systeempleger an."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/ne/kconfig5_qt.po 
new/kconfig-5.77.0/po/ne/kconfig5_qt.po
--- old/kconfig-5.76.0/po/ne/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/ne/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -19,7 +19,7 @@
 "X-Generator: KBabel 1.11.4\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/nl/kconfig5_qt.po 
new/kconfig-5.77.0/po/nl/kconfig5_qt.po
--- old/kconfig-5.76.0/po/nl/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/nl/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -13,7 +13,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 20.08.0\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Neem contact op met uw systeembeheerder."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/nn/kconfig5_qt.po 
new/kconfig-5.77.0/po/nn/kconfig5_qt.po
--- old/kconfig-5.76.0/po/nn/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/nn/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -22,7 +22,7 @@
 "X-Text-Markup: qtrich\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Ta kontakt med systemansvarleg."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/or/kconfig5_qt.po 
new/kconfig-5.77.0/po/or/kconfig5_qt.po
--- old/kconfig-5.76.0/po/or/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/or/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -19,7 +19,7 @@
 "Plural-Forms: nplurals=2; plural=(n!=1);\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/pa/kconfig5_qt.po 
new/kconfig-5.77.0/po/pa/kconfig5_qt.po
--- old/kconfig-5.76.0/po/pa/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/pa/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -18,7 +18,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "ਆਪਣੇ ਸਿਸਟਮ ਐਡਮਿਨਸਟੇਟਰ ਨਾਲ ਸੰਪਰਕ ਕਰੋ ਜੀ।"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/pl/kconfig5_qt.po 
new/kconfig-5.77.0/po/pl/kconfig5_qt.po
--- old/kconfig-5.76.0/po/pl/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/pl/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -20,7 +20,7 @@
 "|| n%100>=20) ? 1 : 2);\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Proszę skontaktować się z administratorem systemu."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/pt/kconfig5_qt.po 
new/kconfig-5.77.0/po/pt/kconfig5_qt.po
--- old/kconfig-5.76.0/po/pt/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/pt/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -15,7 +15,7 @@
 "X-POFile-SpellExtra: kreadconfig Hat Red Inc\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Contacte por favor o seu administrador do sistema."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/pt_BR/kconfig5_qt.po 
new/kconfig-5.77.0/po/pt_BR/kconfig5_qt.po
--- old/kconfig-5.76.0/po/pt_BR/kconfig5_qt.po  2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/pt_BR/kconfig5_qt.po  2020-12-05 13:38:29.000000000 
+0100
@@ -23,7 +23,7 @@
 "X-Generator: Lokalize 20.04.3\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Contate o administrador do seu sistema."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/ro/kconfig5_qt.po 
new/kconfig-5.77.0/po/ro/kconfig5_qt.po
--- old/kconfig-5.76.0/po/ro/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/ro/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -23,7 +23,7 @@
 "X-Generator: Lokalize 19.12.3\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Contactați administratorul de sistem."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/ru/kconfig5_qt.po 
new/kconfig-5.77.0/po/ru/kconfig5_qt.po
--- old/kconfig-5.76.0/po/ru/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/ru/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -25,7 +25,7 @@
 "X-Text-Markup: kde4\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Обратитесь к системному администратору."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/se/kconfig5_qt.po 
new/kconfig-5.77.0/po/se/kconfig5_qt.po
--- old/kconfig-5.76.0/po/se/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/se/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -20,7 +20,7 @@
 "X-Text-Markup: qtrich\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/si/kconfig5_qt.po 
new/kconfig-5.77.0/po/si/kconfig5_qt.po
--- old/kconfig-5.76.0/po/si/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/si/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -19,7 +19,7 @@
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/sk/kconfig5_qt.po 
new/kconfig-5.77.0/po/sk/kconfig5_qt.po
--- old/kconfig-5.76.0/po/sk/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/sk/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -19,7 +19,7 @@
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Prosím, kontaktujte svojho správcu systému."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/sl/kconfig5_qt.po 
new/kconfig-5.77.0/po/sl/kconfig5_qt.po
--- old/kconfig-5.76.0/po/sl/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/sl/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -24,7 +24,7 @@
 "%100<=4 ? 2 : 3);\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Obvestite vašega sistemskega skrbnika."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/sq/kconfig5_qt.po 
new/kconfig-5.77.0/po/sq/kconfig5_qt.po
--- old/kconfig-5.76.0/po/sq/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/sq/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -20,7 +20,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/sv/kconfig5_qt.po 
new/kconfig-5.77.0/po/sv/kconfig5_qt.po
--- old/kconfig-5.76.0/po/sv/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/sv/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -20,7 +20,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr " Kontakta systemadministratören."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/ta/kconfig5_qt.po 
new/kconfig-5.77.0/po/ta/kconfig5_qt.po
--- old/kconfig-5.76.0/po/ta/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/ta/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -19,7 +19,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/te/kconfig5_qt.po 
new/kconfig-5.77.0/po/te/kconfig5_qt.po
--- old/kconfig-5.76.0/po/te/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/te/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -22,7 +22,7 @@
 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "దయచేసి మీ సిస్టమ్ నిర్వాహకుడిని సంప్రదించండి."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/tg/kconfig5_qt.po 
new/kconfig-5.77.0/po/tg/kconfig5_qt.po
--- old/kconfig-5.76.0/po/tg/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/tg/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -19,7 +19,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Лутфан, бо маъмури низоми худ дар тамос шавед."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/th/kconfig5_qt.po 
new/kconfig-5.77.0/po/th/kconfig5_qt.po
--- old/kconfig-5.76.0/po/th/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/th/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -20,7 +20,7 @@
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/tr/kconfig5_qt.po 
new/kconfig-5.77.0/po/tr/kconfig5_qt.po
--- old/kconfig-5.76.0/po/tr/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/tr/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -22,7 +22,7 @@
 "X-Generator: Lokalize 2.0\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Lütfen sistem yöneticinize başvurun."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/ug/kconfig5_qt.po 
new/kconfig-5.77.0/po/ug/kconfig5_qt.po
--- old/kconfig-5.76.0/po/ug/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/ug/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -18,7 +18,7 @@
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/uk/kconfig5_qt.po 
new/kconfig-5.77.0/po/uk/kconfig5_qt.po
--- old/kconfig-5.76.0/po/uk/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/uk/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -19,7 +19,7 @@
 "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 "X-Generator: Lokalize 20.11.70\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Будь ласка, зверніться до системного адміністратора."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/uz/kconfig5_qt.po 
new/kconfig-5.77.0/po/uz/kconfig5_qt.po
--- old/kconfig-5.76.0/po/uz/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/uz/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -18,7 +18,7 @@
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/uz@cyrillic/kconfig5_qt.po 
new/kconfig-5.77.0/po/uz@cyrillic/kconfig5_qt.po
--- old/kconfig-5.76.0/po/uz@cyrillic/kconfig5_qt.po    2020-11-07 
13:00:32.000000000 +0100
+++ new/kconfig-5.77.0/po/uz@cyrillic/kconfig5_qt.po    2020-12-05 
13:38:29.000000000 +0100
@@ -18,7 +18,7 @@
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/vi/kconfig5_qt.po 
new/kconfig-5.77.0/po/vi/kconfig5_qt.po
--- old/kconfig-5.76.0/po/vi/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/vi/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -9,18 +9,18 @@
 "Project-Id-Version: kwriteconfig\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2014-04-11 02:17+0000\n"
-"PO-Revision-Date: 2020-10-09 14:01+0200\n"
+"PO-Revision-Date: 2020-11-28 16:51+0100\n"
 "Last-Translator: Phu Hung Nguyen <[email protected]>\n"
 "Language-Team: Vietnamese <[email protected]>\n"
 "Language: vi\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 19.12.2\n"
+"X-Generator: Lokalize 20.08.1\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "Vui lòng liên hệ với quản trị viên hệ thống của bạn."
@@ -125,7 +125,7 @@
 #: gui/kstandardshortcut.cpp:88
 msgctxt "KStandardShortcut|@action"
 msgid "Find Next"
-msgstr "Tìm tiếp"
+msgstr "Tìm về sau"
 
 #: gui/kstandardshortcut.cpp:89
 msgctxt "KStandardShortcut|@action"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/wa/kconfig5_qt.po 
new/kconfig-5.77.0/po/wa/kconfig5_qt.po
--- old/kconfig-5.76.0/po/wa/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/wa/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -18,7 +18,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/xh/kconfig5_qt.po 
new/kconfig-5.77.0/po/xh/kconfig5_qt.po
--- old/kconfig-5.76.0/po/xh/kconfig5_qt.po     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/xh/kconfig5_qt.po     2020-12-05 13:38:29.000000000 
+0100
@@ -20,7 +20,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/zh_CN/kconfig5_qt.po 
new/kconfig-5.77.0/po/zh_CN/kconfig5_qt.po
--- old/kconfig-5.76.0/po/zh_CN/kconfig5_qt.po  2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/zh_CN/kconfig5_qt.po  2020-12-05 13:38:29.000000000 
+0100
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: kdeorg\n"
-"PO-Revision-Date: 2020-10-08 19:21\n"
+"PO-Revision-Date: 2020-11-10 15:00\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"
@@ -21,7 +21,7 @@
 "X-Crowdin-File: /kf5-trunk/messages/kconfig/kconfig5_qt.pot\n"
 "X-Crowdin-File-ID: 5586\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "请联系您的系统管理员。"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/po/zh_TW/kconfig5_qt.po 
new/kconfig-5.77.0/po/zh_TW/kconfig5_qt.po
--- old/kconfig-5.76.0/po/zh_TW/kconfig5_qt.po  2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/po/zh_TW/kconfig5_qt.po  2020-12-05 13:38:29.000000000 
+0100
@@ -20,7 +20,7 @@
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Qt-Contexts: true\n"
 
-#: core/kconfig.cpp:936
+#: core/kconfig.cpp:940
 msgctxt "KConfig|"
 msgid "Please contact your system administrator."
 msgstr "請聯絡您的系統管理員。"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/src/core/kconfig.cpp 
new/kconfig-5.77.0/src/core/kconfig.cpp
--- old/kconfig-5.76.0/src/core/kconfig.cpp     2020-11-07 13:00:32.000000000 
+0100
+++ new/kconfig-5.77.0/src/core/kconfig.cpp     2020-12-05 13:38:29.000000000 
+0100
@@ -128,7 +128,7 @@
     const int len = source.length();
     const bool sameName = (destination == source);
 
-    // we keep this bool outside the foreach loop so that if
+    // we keep this bool outside the for loop so that if
     // the group is empty, we don't end up marking the other config
     // as dirty erroneously
     bool dirtied = false;
@@ -162,6 +162,10 @@
             entry.bGlobal = true;
         }
 
+        if (flags & KConfigBase::Notify) {
+            entry.bNotify = true;
+        }
+
         otherMap[newKey] = entry;
     }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.76.0/src/core/ksharedconfig.cpp 
new/kconfig-5.77.0/src/core/ksharedconfig.cpp
--- old/kconfig-5.76.0/src/core/ksharedconfig.cpp       2020-11-07 
13:00:32.000000000 +0100
+++ new/kconfig-5.77.0/src/core/ksharedconfig.cpp       2020-12-05 
13:38:29.000000000 +0100
@@ -110,6 +110,8 @@
 
 KSharedConfig::Ptr KSharedConfig::openStateConfig(const QString &_fileName)
 {
+    // KF6 TODO: port this to XDG_STATE_HOME (default ~/.local/state)
+    // See 
https://gitlab.freedesktop.org/xdg/xdg-specs/-/blob/master/basedir/basedir-spec.xml
     QString fileName(_fileName);
 
     if (fileName.isEmpty()) {
_______________________________________________
openSUSE Commits mailing list -- [email protected]
To unsubscribe, email [email protected]
List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette
List Archives: 
https://lists.opensuse.org/archives/list/[email protected]

Reply via email to