Hello community,

here is the log from the commit of package kconfig for openSUSE:Leap:15.2 
checked in at 2020-06-17 11:35:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/kconfig (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.kconfig.new.3606 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kconfig"

Wed Jun 17 11:35:04 2020 rev:65 rq:814424 version:5.71.0

Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/kconfig/kconfig.changes        2020-05-12 
11:38:51.760558869 +0200
+++ /work/SRC/openSUSE:Leap:15.2/.kconfig.new.3606/kconfig.changes      
2020-06-17 11:36:17.887843940 +0200
@@ -1,0 +2,14 @@
+Sun Jun  7 08:06:24 UTC 2020 - Christophe Giboudeaux <[email protected]>
+
+- Update to 5.71.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.71.0
+- Changes since 5.70.0:
+  * Don't try to initalize deprecated SaveOptions enum value
+  * Add KStandardShortcut::findByName(const QString&) and deprecate find(const 
char*)
+  * Fix KStandardShortcut::find(const char*)
+  * Adjust name of internally-exported method as suggested in D29347
+  * KAuthorized: export method to reload restrictions
+
+-------------------------------------------------------------------

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

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

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

Other differences:
------------------
++++++ kconfig.spec ++++++
--- /var/tmp/diff_new_pack.RHwxZq/_old  2020-06-17 11:36:18.419845520 +0200
+++ /var/tmp/diff_new_pack.RHwxZq/_new  2020-06-17 11:36:18.423845531 +0200
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%define _tar_path 5.70
+%define _tar_path 5.71
 # 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.70.0
+Version:        5.71.0
 Release:        0
 Summary:        Advanced configuration system
 License:        LGPL-2.1-or-later AND GPL-2.0-or-later


++++++ kconfig-5.70.0.tar.xz -> kconfig-5.71.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.70.0/.arcconfig 
new/kconfig-5.71.0/.arcconfig
--- old/kconfig-5.70.0/.arcconfig       2020-05-03 00:15:48.000000000 +0200
+++ new/kconfig-5.71.0/.arcconfig       1970-01-01 01:00:00.000000000 +0100
@@ -1,3 +0,0 @@
-{
-  "phabricator.uri" : "https://phabricator.kde.org/";
-}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.70.0/CMakeLists.txt 
new/kconfig-5.71.0/CMakeLists.txt
--- old/kconfig-5.70.0/CMakeLists.txt   2020-05-03 00:15:48.000000000 +0200
+++ new/kconfig-5.71.0/CMakeLists.txt   2020-06-07 20:23:51.000000000 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.70.0") # handled by release scripts
+set(KF5_VERSION "5.71.0") # handled by release scripts
 project(KConfig VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.70.0  NO_MODULE)
+find_package(ECM 5.71.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)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.70.0/autotests/kstandardshortcuttest.cpp 
new/kconfig-5.71.0/autotests/kstandardshortcuttest.cpp
--- old/kconfig-5.70.0/autotests/kstandardshortcuttest.cpp      2020-05-03 
00:15:48.000000000 +0200
+++ new/kconfig-5.71.0/autotests/kstandardshortcuttest.cpp      2020-06-07 
20:23:51.000000000 +0200
@@ -44,3 +44,10 @@
     QCOMPARE(KStandardShortcut::find(QString("Ctrl+Shift+Alt+G")), 
KStandardShortcut::AccelNone);
 }
 
+void KStandardShortcutTest::testFindByName()
+{
+    for (int i = KStandardShortcut::AccelNone + 1; i < 
KStandardShortcut::StandardShortcutCount; ++i) {
+        const auto id = static_cast<KStandardShortcut::StandardShortcut>(i);
+        QCOMPARE(id, 
KStandardShortcut::findByName(KStandardShortcut::name(id)));
+    }
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.70.0/autotests/kstandardshortcuttest.h 
new/kconfig-5.71.0/autotests/kstandardshortcuttest.h
--- old/kconfig-5.70.0/autotests/kstandardshortcuttest.h        2020-05-03 
00:15:48.000000000 +0200
+++ new/kconfig-5.71.0/autotests/kstandardshortcuttest.h        2020-06-07 
20:23:51.000000000 +0200
@@ -19,6 +19,7 @@
     void testLabel();
     void testShortcut();
     void testFindStdAccel();
+    void testFindByName();
 };
 
 #endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.70.0/po/az/kconfig5_qt.po 
new/kconfig-5.71.0/po/az/kconfig5_qt.po
--- old/kconfig-5.70.0/po/az/kconfig5_qt.po     1970-01-01 01:00:00.000000000 
+0100
+++ new/kconfig-5.71.0/po/az/kconfig5_qt.po     2020-06-07 20:23:51.000000000 
+0200
@@ -0,0 +1,535 @@
+# Xəyyam <[email protected]>, 2020.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"PO-Revision-Date: 2020-05-10 03:17+0400\n"
+"Last-Translator: Xəyyam Qocayev <[email protected]>\n"
+"Language-Team: Azerbaijani\n"
+"Language: en_US\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Qt-Contexts: true\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Lokalize 20.04.0\n"
+
+#: core/kconfig.cpp:926
+msgctxt "KConfig|"
+msgid "Please contact your system administrator."
+msgstr "Sistem adminstratorunuzla əlaqə saxlayın."
+
+#: core/kconfigini.cpp:569
+#, qt-format
+msgctxt "KConfigIniBackend|"
+msgid "Configuration file \"%1\" not writable.\n"
+msgstr "%1 Konfiqurasiya faylı yazılmır.\n"
+
+#: core/kemailsettings.cpp:235 core/kemailsettings.cpp:238
+#: core/kemailsettings.cpp:246
+msgctxt "KEMailSettings|"
+msgid "Default"
+msgstr "Susmaya görə"
+
+#: gui/kstandardshortcut.cpp:62
+msgctxt "KStandardShortcut|@action"
+msgid "Open"
+msgstr "Aç"
+
+#: gui/kstandardshortcut.cpp:63
+msgctxt "KStandardShortcut|@action"
+msgid "New"
+msgstr "Yeni"
+
+#: gui/kstandardshortcut.cpp:64
+msgctxt "KStandardShortcut|@action"
+msgid "Close"
+msgstr "Bağla"
+
+#: gui/kstandardshortcut.cpp:65
+msgctxt "KStandardShortcut|@action"
+msgid "Save"
+msgstr "Saxla"
+
+#: gui/kstandardshortcut.cpp:66
+msgctxt "KStandardShortcut|@action"
+msgid "Print"
+msgstr "Çap et"
+
+#: gui/kstandardshortcut.cpp:67
+msgctxt "KStandardShortcut|@action"
+msgid "Quit"
+msgstr "Çıx"
+
+#: gui/kstandardshortcut.cpp:70
+msgctxt "KStandardShortcut|@action"
+msgid "Undo"
+msgstr "Geriyə al"
+
+#: gui/kstandardshortcut.cpp:71
+msgctxt "KStandardShortcut|@action"
+msgid "Redo"
+msgstr "Təkrar et"
+
+#: gui/kstandardshortcut.cpp:74
+msgctxt "KStandardShortcut|@action"
+msgid "Cut"
+msgstr "Kəs"
+
+#: gui/kstandardshortcut.cpp:75
+msgctxt "KStandardShortcut|@action"
+msgid "Copy"
+msgstr "Kopyala"
+
+#: gui/kstandardshortcut.cpp:76
+msgctxt "KStandardShortcut|@action"
+msgid "Paste"
+msgstr "Yerləşdir"
+
+#: gui/kstandardshortcut.cpp:77
+msgctxt "KStandardShortcut|@action"
+msgid "Paste Selection"
+msgstr "Seçiləni Yerləşdir"
+
+#: gui/kstandardshortcut.cpp:79
+msgctxt "KStandardShortcut|@action"
+msgid "Select All"
+msgstr "Hamısını Seç"
+
+#: gui/kstandardshortcut.cpp:80
+msgctxt "KStandardShortcut|@action"
+msgid "Deselect"
+msgstr "Seçimi ləğv et"
+
+#: gui/kstandardshortcut.cpp:81
+msgctxt "KStandardShortcut|@action"
+msgid "Delete Word Backwards"
+msgstr "Öncəki Sözü Sil"
+
+#: gui/kstandardshortcut.cpp:82
+msgctxt "KStandardShortcut|@action"
+msgid "Delete Word Forward"
+msgstr "Sonrakı Sözü Sil"
+
+#: gui/kstandardshortcut.cpp:84
+msgctxt "KStandardShortcut|@action"
+msgid "Find"
+msgstr "Tap"
+
+#: gui/kstandardshortcut.cpp:85
+msgctxt "KStandardShortcut|@action"
+msgid "Find Next"
+msgstr "Sonrakını Tap"
+
+#: gui/kstandardshortcut.cpp:86
+msgctxt "KStandardShortcut|@action"
+msgid "Find Prev"
+msgstr "Əvvəlkini Tap"
+
+#: gui/kstandardshortcut.cpp:87
+msgctxt "KStandardShortcut|@action"
+msgid "Replace"
+msgstr "Əvəzlə"
+
+#: gui/kstandardshortcut.cpp:90
+msgctxt "KStandardShortcut|@action Go to main page"
+msgid "Home"
+msgstr "Ev"
+
+#: gui/kstandardshortcut.cpp:91
+msgctxt "KStandardShortcut|@action Beginning of document"
+msgid "Begin"
+msgstr "Başla"
+
+#: gui/kstandardshortcut.cpp:92
+msgctxt "KStandardShortcut|@action End of document"
+msgid "End"
+msgstr "Son"
+
+#: gui/kstandardshortcut.cpp:93
+msgctxt "KStandardShortcut|@action"
+msgid "Prior"
+msgstr "Əvvəlki"
+
+#: gui/kstandardshortcut.cpp:94
+msgctxt "KStandardShortcut|@action Opposite to Prior"
+msgid "Next"
+msgstr "Sonrakı"
+
+#: gui/kstandardshortcut.cpp:96
+msgctxt "KStandardShortcut|@action"
+msgid "Up"
+msgstr "Yuxarı"
+
+#: gui/kstandardshortcut.cpp:97
+msgctxt "KStandardShortcut|@action"
+msgid "Back"
+msgstr "Geriyə"
+
+#: gui/kstandardshortcut.cpp:98
+msgctxt "KStandardShortcut|@action"
+msgid "Forward"
+msgstr "İrəli"
+
+#: gui/kstandardshortcut.cpp:99
+msgctxt "KStandardShortcut|@action"
+msgid "Reload"
+msgstr "Yenidən Aç"
+
+#: gui/kstandardshortcut.cpp:101
+msgctxt "KStandardShortcut|@action"
+msgid "Beginning of Line"
+msgstr "Sətir Başla"
+
+#: gui/kstandardshortcut.cpp:102
+msgctxt "KStandardShortcut|@action"
+msgid "End of Line"
+msgstr "Sətiri Bitir"
+
+#: gui/kstandardshortcut.cpp:103
+msgctxt "KStandardShortcut|@action"
+msgid "Go to Line"
+msgstr "Sətirə Keç"
+
+#: gui/kstandardshortcut.cpp:104
+msgctxt "KStandardShortcut|@action"
+msgid "Backward Word"
+msgstr "Bir Söz Geri"
+
+#: gui/kstandardshortcut.cpp:105
+msgctxt "KStandardShortcut|@action"
+msgid "Forward Word"
+msgstr "Bir Soz İrəli"
+
+#: gui/kstandardshortcut.cpp:107
+msgctxt "KStandardShortcut|@action"
+msgid "Add Bookmark"
+msgstr "Əlfəcin Əlavə Et"
+
+#: gui/kstandardshortcut.cpp:108
+msgctxt "KStandardShortcut|@action"
+msgid "Zoom In"
+msgstr "Böyüt"
+
+#: gui/kstandardshortcut.cpp:109
+msgctxt "KStandardShortcut|@action"
+msgid "Zoom Out"
+msgstr "Kiçilt"
+
+#: gui/kstandardshortcut.cpp:110
+msgctxt "KStandardShortcut|@action"
+msgid "Full Screen Mode"
+msgstr "Tam Ekran"
+
+#: gui/kstandardshortcut.cpp:112
+msgctxt "KStandardShortcut|@action"
+msgid "Show Menu Bar"
+msgstr "Menu Çubuğunu Göstər"
+
+#: gui/kstandardshortcut.cpp:113
+msgctxt "KStandardShortcut|@action"
+msgid "Activate Next Tab"
+msgstr "Növbəti Çubuğu Aktivləşdir"
+
+#: gui/kstandardshortcut.cpp:114
+msgctxt "KStandardShortcut|@action"
+msgid "Activate Previous Tab"
+msgstr "Əvvəlki Çubuğu Aktivləşdir"
+
+#: gui/kstandardshortcut.cpp:117
+msgctxt "KStandardShortcut|@action"
+msgid "Help"
+msgstr "Kömək"
+
+#: gui/kstandardshortcut.cpp:118
+msgctxt "KStandardShortcut|@action"
+msgid "What's This"
+msgstr "Bu Nədir"
+
+#: gui/kstandardshortcut.cpp:121
+msgctxt "KStandardShortcut|@action"
+msgid "Text Completion"
+msgstr "Mətin Tamamlama"
+
+#: gui/kstandardshortcut.cpp:122
+msgctxt "KStandardShortcut|@action"
+msgid "Previous Completion Match"
+msgstr "Əvvəlki Tamamlama Variantı"
+
+#: gui/kstandardshortcut.cpp:123
+msgctxt "KStandardShortcut|@action"
+msgid "Next Completion Match"
+msgstr "Sonrakı Tamamlama Variantı"
+
+#: gui/kstandardshortcut.cpp:124
+msgctxt "KStandardShortcut|@action"
+msgid "Substring Completion"
+msgstr "Sətiraltı Tamamlama"
+
+#: gui/kstandardshortcut.cpp:126
+msgctxt "KStandardShortcut|@action"
+msgid "Previous Item in List"
+msgstr "Siyahıdakı Əvvəlki Element"
+
+#: gui/kstandardshortcut.cpp:127
+msgctxt "KStandardShortcut|@action"
+msgid "Next Item in List"
+msgstr "Siyahıdakı sonrakı Element"
+
+#: gui/kstandardshortcut.cpp:129
+msgctxt "KStandardShortcut|@action"
+msgid "Open Recent"
+msgstr "Sonuncunu Aç"
+
+#: gui/kstandardshortcut.cpp:130
+msgctxt "KStandardShortcut|@action"
+msgid "Save As"
+msgstr "Fərqli Saxla"
+
+#: gui/kstandardshortcut.cpp:131
+msgctxt "KStandardShortcut|@action"
+msgid "Revert"
+msgstr "Bərpa Et"
+
+#: gui/kstandardshortcut.cpp:132
+msgctxt "KStandardShortcut|@action"
+msgid "Print Preview"
+msgstr "Çapa Önbaxış"
+
+#: gui/kstandardshortcut.cpp:133
+msgctxt "KStandardShortcut|@action"
+msgid "Mail"
+msgstr "E-Poçtla Göndər"
+
+#: gui/kstandardshortcut.cpp:134
+msgctxt "KStandardShortcut|@action"
+msgid "Clear"
+msgstr "Təmizlə"
+
+#: gui/kstandardshortcut.cpp:135
+msgctxt "KStandardShortcut|@action"
+msgid "Actual Size"
+msgstr "Faktiki Ölçü"
+
+#: gui/kstandardshortcut.cpp:136
+msgctxt "KStandardShortcut|@action"
+msgid "Fit To Page"
+msgstr "Səhifəyə Sığışdır"
+
+#: gui/kstandardshortcut.cpp:137
+msgctxt "KStandardShortcut|@action"
+msgid "Fit To Width"
+msgstr "Eninə Sığışdır"
+
+#: gui/kstandardshortcut.cpp:138
+msgctxt "KStandardShortcut|@action"
+msgid "Fit To Height"
+msgstr "Hündürlüyə Sığışdır"
+
+#: gui/kstandardshortcut.cpp:139
+msgctxt "KStandardShortcut|@action"
+msgid "Zoom"
+msgstr "Böyütmə"
+
+#: gui/kstandardshortcut.cpp:140
+msgctxt "KStandardShortcut|@action"
+msgid "Goto"
+msgstr "Keç"
+
+#: gui/kstandardshortcut.cpp:141
+msgctxt "KStandardShortcut|@action"
+msgid "Goto Page"
+msgstr "Səhifəyə Keç"
+
+#: gui/kstandardshortcut.cpp:142
+msgctxt "KStandardShortcut|@action"
+msgid "Document Back"
+msgstr "Geri"
+
+#: gui/kstandardshortcut.cpp:143
+msgctxt "KStandardShortcut|@action"
+msgid "Document Forward"
+msgstr "İrəli"
+
+#: gui/kstandardshortcut.cpp:144
+msgctxt "KStandardShortcut|@action"
+msgid "Edit Bookmarks"
+msgstr "Əlvəcini Düzəlt"
+
+#: gui/kstandardshortcut.cpp:145
+msgctxt "KStandardShortcut|@action"
+msgid "Spelling"
+msgstr "Orfoqrafiyanı Yoxla"
+
+#: gui/kstandardshortcut.cpp:146
+msgctxt "KStandardShortcut|@action"
+msgid "Show Toolbar"
+msgstr "Alətlər Çubuğunu Göstər"
+
+#: gui/kstandardshortcut.cpp:147
+msgctxt "KStandardShortcut|@action"
+msgid "Show Statusbar"
+msgstr "Status Çubuğunu Göstər"
+
+#: gui/kstandardshortcut.cpp:149
+msgctxt "KStandardShortcut|@action"
+msgid "Save Options"
+msgstr "Seçimi Saxla"
+
+#: gui/kstandardshortcut.cpp:154
+msgctxt "KStandardShortcut|@action"
+msgid "Key Bindings"
+msgstr "Klaviş Kombinasiyaları"
+
+#: gui/kstandardshortcut.cpp:155
+msgctxt "KStandardShortcut|@action"
+msgid "Configure Application"
+msgstr "Tətbiqi Ayarla"
+
+#: gui/kstandardshortcut.cpp:156
+msgctxt "KStandardShortcut|@action"
+msgid "Configure Toolbars"
+msgstr "Alətlər Çubuğunu Ayarla"
+
+#: gui/kstandardshortcut.cpp:157
+msgctxt "KStandardShortcut|@action"
+msgid "Configure Notifications"
+msgstr "Bildirişləri Ayarla"
+
+#: gui/kstandardshortcut.cpp:158
+msgctxt "KStandardShortcut|@action"
+msgid "Tip Of Day"
+msgstr "Günün Məsləhəti"
+
+#: gui/kstandardshortcut.cpp:159
+msgctxt "KStandardShortcut|@action"
+msgid "Report Bug"
+msgstr "Xətaları Göndər"
+
+#: gui/kstandardshortcut.cpp:160
+msgctxt "KStandardShortcut|@action"
+msgid "Switch Application Language"
+msgstr "Tətbiqin Dilini Dəyiş"
+
+#: gui/kstandardshortcut.cpp:161
+msgctxt "KStandardShortcut|@action"
+msgid "About Application"
+msgstr "Tətbiq Haqqında"
+
+#: gui/kstandardshortcut.cpp:162
+msgctxt "KStandardShortcut|@action"
+msgid "About KDE"
+msgstr "KDE Haqqında"
+
+#: gui/kstandardshortcut.cpp:165
+msgctxt "KStandardShortcut|@action"
+msgid "Delete"
+msgstr "Sil"
+
+#: gui/kstandardshortcut.cpp:166
+msgctxt "KStandardShortcut|@action"
+msgid "Rename"
+msgstr "Adını Dəyiş"
+
+#: gui/kstandardshortcut.cpp:167
+msgctxt "KStandardShortcut|@action"
+msgid "Move to Trash"
+msgstr "Səbət At"
+
+#: gui/kstandardshortcut.cpp:168
+msgctxt "KStandardShortcut|@action"
+msgid "Donate"
+msgstr "Maddi Dəstək"
+
+#: gui/kstandardshortcut.cpp:169
+msgctxt "KStandardShortcut|@action"
+msgid "Show/Hide Hidden Files"
+msgstr "Gizli faylları gizlət/göstər"
+
+#: kconf_update/kconf_update.cpp:934
+msgctxt "main|"
+msgid "KDE Tool for updating user configuration files"
+msgstr "İstifadəçi konfiqurasiya fayllarını yeniləmək üçün KDE Vasitələri"
+
+#: kconf_update/kconf_update.cpp:936
+msgctxt "main|"
+msgid "Keep output results from scripts"
+msgstr "İşlək seansların çıxarış nəticələrini saxla"
+
+#: kconf_update/kconf_update.cpp:937
+msgctxt "main|"
+msgid ""
+"For unit tests only: use test directories to stay away from the user's real "
+"files"
+msgstr ""
+"Yalnız vahid testlər üçün: Test qovluqlarını həqiqi isitifadəçı fayllarında "
+"ayrı yerləşdir"
+
+#: kconf_update/kconf_update.cpp:938
+msgctxt "main|"
+msgid "Check whether config file itself requires updating"
+msgstr "Konfiqurasiya faylının yenilənmə tələb edib etməməsini yoxla"
+
+#: kconf_update/kconf_update.cpp:939
+msgctxt "main|"
+msgid "File(s) to read update instructions from"
+msgstr "Yenilənmə təlimatlarını oxumaq üçün fayllar"
+
+#: kconfig_compiler/kconfig_compiler.cpp:715
+msgctxt "main|"
+msgid "Directory to generate files in [.]"
+msgstr "Faylları yaratmaq üçün qovluq [.]"
+
+#: kconfig_compiler/kconfig_compiler.cpp:716
+msgctxt "main|"
+msgid "directory"
+msgstr "qovluq"
+
+#: kconfig_compiler/kconfig_compiler.cpp:720
+msgctxt "main|"
+msgid "Display software license."
+msgstr "Tətbiq lisenziyalarını göstər"
+
+#: kreadconfig/kreadconfig.cpp:44 kreadconfig/kwriteconfig.cpp:24
+msgctxt "main|"
+msgid "Use <file> instead of global config"
+msgstr "Qlobal konfiqurasiya əvəzinə <file> istifadə et"
+
+#: kreadconfig/kreadconfig.cpp:45 kreadconfig/kwriteconfig.cpp:25
+msgctxt "main|"
+msgid "Group to look in. Use repeatedly for nested groups."
+msgstr "Qrupda axtar. iç-içə qruplar üçün təkrar istifadə et"
+
+#: kreadconfig/kreadconfig.cpp:46 kreadconfig/kwriteconfig.cpp:26
+msgctxt "main|"
+msgid "Key to look for"
+msgstr "Axtarılacaq açar"
+
+#: kreadconfig/kreadconfig.cpp:47
+msgctxt "main|"
+msgid "Default value"
+msgstr "Susmaya görə ölçü"
+
+#: kreadconfig/kreadconfig.cpp:48
+msgctxt "main|"
+msgid "Type of variable"
+msgstr "Dəyişkən növ"
+
+#: kreadconfig/kwriteconfig.cpp:27
+msgctxt "main|"
+msgid ""
+"Type of variable. Use \"bool\" for a boolean, otherwise it is treated as a "
+"string"
+msgstr ""
+"Dəyişkən növ. Məntiqi dəyişkələr üçün \"bool\" istifadə et, əks halda "
+"dəyişkən sətir kimi qəbul ediləcək"
+
+#: kreadconfig/kwriteconfig.cpp:28
+msgctxt "main|"
+msgid "Delete the designated key if enabled"
+msgstr "Aktiv edildikdə təyin olunmuş açarı silin"
+
+#: kreadconfig/kwriteconfig.cpp:29
+msgctxt "main|"
+msgid "The value to write. Mandatory, on a shell use '' for empty"
+msgstr ""
+"Yazı üçün göstərici. Mütləq göstərilir, üzlükdə böşluq üçün \" istifadə edin"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.70.0/po/cs/kconfig5_qt.po 
new/kconfig-5.71.0/po/cs/kconfig5_qt.po
--- old/kconfig-5.70.0/po/cs/kconfig5_qt.po     2020-05-03 00:15:48.000000000 
+0200
+++ new/kconfig-5.71.0/po/cs/kconfig5_qt.po     2020-06-07 20:23:51.000000000 
+0200
@@ -1,10 +1,10 @@
-# Vít Pelčák <[email protected]>, 2014, 2016, 2017, 2018, 2019.
+# Vít Pelčák <[email protected]>, 2014, 2016, 2017, 2018, 2019, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2014-04-11 02:17+0000\n"
-"PO-Revision-Date: 2019-11-15 17:12+0100\n"
+"PO-Revision-Date: 2020-05-18 20:56+0200\n"
 "Last-Translator: Vit Pelcak <[email protected]>\n"
 "Language-Team: Czech <[email protected]>\n"
 "Language: cs\n"
@@ -12,7 +12,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Lokalize 19.08.2\n"
+"X-Generator: Lokalize 20.04.0\n"
 "X-Language: cs_CZ\n"
 "X-Source-Language: en_US\n"
 "X-Qt-Contexts: true\n"
@@ -447,7 +447,7 @@
 #: gui/kstandardshortcut.cpp:169
 msgctxt "KStandardShortcut|@action"
 msgid "Show/Hide Hidden Files"
-msgstr ""
+msgstr "Zobrazit/skrýt skryté soubory"
 
 #: kconf_update/kconf_update.cpp:934
 msgctxt "main|"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.70.0/po/en_GB/kconfig5_qt.po 
new/kconfig-5.71.0/po/en_GB/kconfig5_qt.po
--- old/kconfig-5.70.0/po/en_GB/kconfig5_qt.po  2020-05-03 00:15:48.000000000 
+0200
+++ new/kconfig-5.71.0/po/en_GB/kconfig5_qt.po  2020-06-07 20:23:51.000000000 
+0200
@@ -3,13 +3,13 @@
 #
 # Malcolm Hunter <[email protected]>, 2003, 2008.
 # Andrew Coles <[email protected]>, 2009.
-# Steve Allewell <[email protected]>, 2014, 2015, 2016, 2017, 2018, 
2019.
+# Steve Allewell <[email protected]>, 2014, 2015, 2016, 2017, 2018, 
2019, 2020.
 msgid ""
 msgstr ""
 "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: 2019-11-17 12:06+0000\n"
+"PO-Revision-Date: 2020-06-06 12:22+0100\n"
 "Last-Translator: Steve Allewell <[email protected]>\n"
 "Language-Team: British English <[email protected]>\n"
 "Language: en_GB\n"
@@ -17,7 +17,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 19.07.70\n"
+"X-Generator: Lokalize 20.04.1\n"
 "X-Qt-Contexts: true\n"
 
 #: core/kconfig.cpp:926
@@ -450,7 +450,7 @@
 #: gui/kstandardshortcut.cpp:169
 msgctxt "KStandardShortcut|@action"
 msgid "Show/Hide Hidden Files"
-msgstr ""
+msgstr "Show/Hide Hidden Files"
 
 #: kconf_update/kconf_update.cpp:934
 msgctxt "main|"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.70.0/po/pl/kconfig5_qt.po 
new/kconfig-5.71.0/po/pl/kconfig5_qt.po
--- old/kconfig-5.70.0/po/pl/kconfig5_qt.po     2020-05-03 00:15:48.000000000 
+0200
+++ new/kconfig-5.71.0/po/pl/kconfig5_qt.po     2020-06-07 20:23:51.000000000 
+0200
@@ -2,20 +2,20 @@
 # Copyright (C) 2003, 2008 Free Software Foundation, Inc.
 #
 # Michal Rudolf <[email protected]>, 2003, 2008.
-# Łukasz Wojniłowicz <[email protected]>, 2014, 2015, 2016, 2017, 
2018.
+# Łukasz Wojniłowicz <[email protected]>, 2014, 2015, 2016, 2017, 
2018, 2020.
 msgid ""
 msgstr ""
 "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: 2018-02-24 07:32+0100\n"
+"PO-Revision-Date: 2020-05-16 08:53+0200\n"
 "Last-Translator: Łukasz Wojniłowicz <[email protected]>\n"
 "Language-Team: Polish <[email protected]>\n"
 "Language: pl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 20.07.70\n"
 "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
 "|| n%100>=20) ? 1 : 2);\n"
 "X-Qt-Contexts: true\n"
@@ -85,7 +85,7 @@
 #: gui/kstandardshortcut.cpp:75
 msgctxt "KStandardShortcut|@action"
 msgid "Copy"
-msgstr "Kopiuj"
+msgstr "Skopiuj"
 
 #: gui/kstandardshortcut.cpp:76
 msgctxt "KStandardShortcut|@action"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.70.0/po/se/kconfig5_qt.po 
new/kconfig-5.71.0/po/se/kconfig5_qt.po
--- old/kconfig-5.70.0/po/se/kconfig5_qt.po     2020-05-03 00:15:48.000000000 
+0200
+++ new/kconfig-5.71.0/po/se/kconfig5_qt.po     2020-06-07 20:23:51.000000000 
+0200
@@ -479,17 +479,17 @@
 msgid "File(s) to read update instructions from"
 msgstr ""
 
-#: kconfig_compiler/kconfig_compiler.cpp:713
+#: kconfig_compiler/kconfig_compiler.cpp:715
 msgctxt "main|"
 msgid "Directory to generate files in [.]"
 msgstr ""
 
-#: kconfig_compiler/kconfig_compiler.cpp:714
+#: kconfig_compiler/kconfig_compiler.cpp:716
 msgctxt "main|"
 msgid "directory"
 msgstr ""
 
-#: kconfig_compiler/kconfig_compiler.cpp:718
+#: kconfig_compiler/kconfig_compiler.cpp:720
 msgctxt "main|"
 msgid "Display software license."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.70.0/po/sl/kconfig5_qt.po 
new/kconfig-5.71.0/po/sl/kconfig5_qt.po
--- old/kconfig-5.70.0/po/sl/kconfig5_qt.po     2020-05-03 00:15:48.000000000 
+0200
+++ new/kconfig-5.71.0/po/sl/kconfig5_qt.po     2020-06-07 20:23:51.000000000 
+0200
@@ -5,19 +5,21 @@
 # Gregor Rakar <[email protected]>, 2003.
 # Jure Repinc <[email protected]>, 2007, 2008.
 # Andrej Mernik <[email protected]>, 2013, 2014, 2015, 2016, 2018.
+# Matjaž Jeran <[email protected]>, 2020.
 msgid ""
 msgstr ""
 "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: 2018-01-14 10:27+0100\n"
-"Last-Translator: Andrej Mernik <[email protected]>\n"
+"PO-Revision-Date: 2020-05-19 08:58+0200\n"
+"Last-Translator: Matjaž Jeran <[email protected]>\n"
 "Language-Team: Slovenian <[email protected]>\n"
 "Language: sl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 2.0\n"
+"Translator: Andrej Mernik <[email protected]>\n"
+"X-Generator: Poedit 2.3\n"
 "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
 "%100<=4 ? 2 : 3);\n"
 "X-Qt-Contexts: true\n"
@@ -31,7 +33,7 @@
 #, qt-format
 msgctxt "KConfigIniBackend|"
 msgid "Configuration file \"%1\" not writable.\n"
-msgstr "Nastavitvena datoteka »%1« ni zapisljiva.\n"
+msgstr "Nastavitvena datoteka \"%1\" ni zapisljiva.\n"
 
 #: core/kemailsettings.cpp:235 core/kemailsettings.cpp:238
 #: core/kemailsettings.cpp:246
@@ -452,7 +454,7 @@
 #: gui/kstandardshortcut.cpp:169
 msgctxt "KStandardShortcut|@action"
 msgid "Show/Hide Hidden Files"
-msgstr ""
+msgstr "Prikaži/Skrij skrite datoteke"
 
 #: kconf_update/kconf_update.cpp:934
 msgctxt "main|"
@@ -486,12 +488,12 @@
 #: kconfig_compiler/kconfig_compiler.cpp:715
 msgctxt "main|"
 msgid "Directory to generate files in [.]"
-msgstr "Mapa v kateri bodo ustvarjene datoteke [.]"
+msgstr "Direktorij kjer bodo ustvarjene datoteke [.]"
 
 #: kconfig_compiler/kconfig_compiler.cpp:716
 msgctxt "main|"
 msgid "directory"
-msgstr "mapa"
+msgstr "direktorij"
 
 #: kconfig_compiler/kconfig_compiler.cpp:720
 msgctxt "main|"
@@ -529,12 +531,12 @@
 "Type of variable. Use \"bool\" for a boolean, otherwise it is treated as a "
 "string"
 msgstr ""
-"Vrsta spremenljivke. Uporabite »bool« za logično, sicer se obravnava kot niz"
+"Vrsta spremenljivke. Uporabite »bool« za Boolovo, sicer se obravnava kot niz"
 
 #: kreadconfig/kwriteconfig.cpp:28
 msgctxt "main|"
 msgid "Delete the designated key if enabled"
-msgstr ""
+msgstr "Izbriši označen ključ, če je omogočeno"
 
 #: kreadconfig/kwriteconfig.cpp:29
 msgctxt "main|"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.70.0/po/zh_CN/kconfig5_qt.po 
new/kconfig-5.71.0/po/zh_CN/kconfig5_qt.po
--- old/kconfig-5.70.0/po/zh_CN/kconfig5_qt.po  2020-05-03 00:15:48.000000000 
+0200
+++ new/kconfig-5.71.0/po/zh_CN/kconfig5_qt.po  2020-06-07 20:23:51.000000000 
+0200
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: kdeorg\n"
-"PO-Revision-Date: 2020-03-25 19:51\n"
+"PO-Revision-Date: 2020-05-09 13:50\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"
@@ -449,7 +449,7 @@
 #: gui/kstandardshortcut.cpp:169
 msgctxt "KStandardShortcut|@action"
 msgid "Show/Hide Hidden Files"
-msgstr ""
+msgstr "显示/隐藏隐藏的文件"
 
 #: kconf_update/kconf_update.cpp:934
 msgctxt "main|"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.70.0/src/core/kauthorized.cpp 
new/kconfig-5.71.0/src/core/kauthorized.cpp
--- old/kconfig-5.70.0/src/core/kauthorized.cpp 2020-05-03 00:15:48.000000000 
+0200
+++ new/kconfig-5.71.0/src/core/kauthorized.cpp 2020-06-07 20:23:51.000000000 
+0200
@@ -244,7 +244,8 @@
     return result;
 }
 
-static void initUrlActionRestrictions()
+// Exported for unittests (e.g. in KIO, we're missing tests for this in 
kconfig)
+KCONFIGCORE_EXPORT void loadUrlActionRestrictions(const KConfigGroup &cg)
 {
     MY_D
     const QString Any;
@@ -290,7 +291,6 @@
     d->urlActionRestrictions.append(
         URLActionRule("redirect", QStringLiteral("about"), Any, Any, Any, Any, 
Any, true));
 
-    KConfigGroup cg(KSharedConfig::openConfig(), "KDE URL Restrictions");
     int count = cg.readEntry("rule_count", 0);
     QString keyFormat = QStringLiteral("rule_%1");
     for (int i = 1; i <= count; i++) {
@@ -368,7 +368,8 @@
 
     bool result = false;
     if (d->urlActionRestrictions.isEmpty()) {
-        initUrlActionRestrictions();
+        KConfigGroup cg(KSharedConfig::openConfig(), "KDE URL Restrictions");
+        loadUrlActionRestrictions(cg);
     }
 
     QUrl baseURL(_baseURL);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.70.0/src/core/kconfigbackend.desktop 
new/kconfig-5.71.0/src/core/kconfigbackend.desktop
--- old/kconfig-5.70.0/src/core/kconfigbackend.desktop  2020-05-03 
00:15:48.000000000 +0200
+++ new/kconfig-5.71.0/src/core/kconfigbackend.desktop  2020-06-07 
20:23:51.000000000 +0200
@@ -5,6 +5,7 @@
 Comment=Storage backend for KConfig
 Comment[ar]=سند «ضبطك» للتخزين
 Comment[as]=KConfig ৰ বাবে ভঁৰালৰ বেকএন্ড
+Comment[az]=KConfig Ayarlarını Saxlama Modulu
 Comment[be@latin]=Słužba schovišča dla systemy „KConfig”
 Comment[bg]=Storage backend for KConfig
 Comment[bn]=KConfig-এর স্টোরেজ ব্যাকেন্ড
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.70.0/src/gui/CMakeLists.txt 
new/kconfig-5.71.0/src/gui/CMakeLists.txt
--- old/kconfig-5.70.0/src/gui/CMakeLists.txt   2020-05-03 00:15:48.000000000 
+0200
+++ new/kconfig-5.71.0/src/gui/CMakeLists.txt   2020-06-07 20:23:51.000000000 
+0200
@@ -15,7 +15,7 @@
     GROUP_BASE_NAME KF
     VERSION ${KF5_VERSION}
     DEPRECATED_BASE_VERSION 0
-    DEPRECATION_VERSIONS 5.11 5.39
+    DEPRECATION_VERSIONS 5.11 5.39 5.71
     EXCLUDE_DEPRECATED_BEFORE_AND_AT ${EXCLUDE_DEPRECATED_BEFORE_AND_AT}
 )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.70.0/src/gui/kstandardshortcut.cpp 
new/kconfig-5.71.0/src/gui/kstandardshortcut.cpp
--- old/kconfig-5.70.0/src/gui/kstandardshortcut.cpp    2020-05-03 
00:15:48.000000000 +0200
+++ new/kconfig-5.71.0/src/gui/kstandardshortcut.cpp    2020-06-07 
20:23:51.000000000 +0200
@@ -305,7 +305,11 @@
     if (!seq.isEmpty()) {
         for (const KStandardShortcutInfo &shortcutInfo : 
g_infoStandardShortcut) {
             const StandardShortcut id = shortcutInfo.id;
+#if KCONFIGGUI_BUILD_DEPRECATED_SINCE(5, 39)
             if (id != AccelNone) {
+#else
+            if (id != AccelNone && id != SaveOptions_DEPRECATED_DO_NOT_USE) {
+#endif
                 if (!shortcutInfo.isInitialized) {
                     initialize(id);
                 }
@@ -318,16 +322,30 @@
     return AccelNone;
 }
 
+
+#if KCONFIGGUI_BUILD_DEPRECATED_SINCE(5, 71)
 StandardShortcut find(const char *keyName)
 {
     for (const KStandardShortcutInfo &shortcutInfo : g_infoStandardShortcut) {
-        if (qstrcmp(shortcutInfo.name, keyName)) {
+        if (qstrcmp(shortcutInfo.name, keyName) == 0) {
             return shortcutInfo.id;
         }
     }
 
     return AccelNone;
 }
+#endif
+
+StandardShortcut findByName(const QString &name)
+{
+
+    for (const KStandardShortcutInfo &shortcutInfo : g_infoStandardShortcut) {
+        if (QString::fromLatin1(shortcutInfo.name) == name) {
+            return shortcutInfo.id;
+        }
+    }
+    return AccelNone;
+}
 
 QList<QKeySequence> hardcodedDefaultShortcut(StandardShortcut id)
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kconfig-5.70.0/src/gui/kstandardshortcut.h 
new/kconfig-5.71.0/src/gui/kstandardshortcut.h
--- old/kconfig-5.70.0/src/gui/kstandardshortcut.h      2020-05-03 
00:15:48.000000000 +0200
+++ new/kconfig-5.71.0/src/gui/kstandardshortcut.h      2020-06-07 
20:23:51.000000000 +0200
@@ -186,6 +186,7 @@
  */
 KCONFIGGUI_EXPORT StandardShortcut find(const QKeySequence &keySeq);
 
+#if KCONFIGGUI_ENABLE_DEPRECATED_SINCE(5, 71)
 /**
  * Return the StandardShortcut id of the standard accel action which
  * has \a keyName as its name, or AccelNone if none of them do.
@@ -193,8 +194,21 @@
  * @param keyName the key sequence to search
  * @return the id of the standard accelerator, or AccelNone if there
  *          is none
+ * @deprecated since 5.71, use findByName(const QString &name) instead
  */
+KCONFIGGUI_DEPRECATED_VERSION(5, 71, "Use findByName(const QString &name) 
instead")
 KCONFIGGUI_EXPORT StandardShortcut find(const char *keyName);
+#endif
+
+/**
+ * Return the StandardShortcut id of the standard accelerator action which
+ * has \p name as its name, or AccelNone if none of them do.
+ * @param name the name as returned by  name(StandardShortcut id)
+ * @return the id of the standard accelerator with the given name or AccelNone
+ * if there is no such accelerator
+ * @since 5.71
+ */
+KCONFIGGUI_EXPORT StandardShortcut findByName(const QString &name);
 
 /**
  * Returns the hardcoded default shortcut for @p id.


Reply via email to