Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ktextwidgets for openSUSE:Factory 
checked in at 2022-09-13 15:09:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ktextwidgets (Old)
 and      /work/SRC/openSUSE:Factory/.ktextwidgets.new.2083 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ktextwidgets"

Tue Sep 13 15:09:07 2022 rev:107 rq:1002856 version:5.98.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/ktextwidgets/ktextwidgets.changes        
2022-08-15 19:59:46.273319594 +0200
+++ /work/SRC/openSUSE:Factory/.ktextwidgets.new.2083/ktextwidgets.changes      
2022-09-13 15:10:40.512859854 +0200
@@ -1,0 +2,10 @@
+Tue Sep  6 07:17:20 UTC 2022 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 5.98.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.98.0
+- Changes since 5.97.0:
+  * Add FreeBSD Qt6 CI support
+
+-------------------------------------------------------------------

Old:
----
  ktextwidgets-5.97.0.tar.xz
  ktextwidgets-5.97.0.tar.xz.sig

New:
----
  ktextwidgets-5.98.0.tar.xz
  ktextwidgets-5.98.0.tar.xz.sig

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

Other differences:
------------------
++++++ ktextwidgets.spec ++++++
--- /var/tmp/diff_new_pack.KnNPfg/_old  2022-09-13 15:10:40.972861149 +0200
+++ /var/tmp/diff_new_pack.KnNPfg/_new  2022-09-13 15:10:40.976861161 +0200
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5TextWidgets5
-%define _tar_path 5.97
+%define _tar_path 5.98
 # 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 released
 Name:           ktextwidgets
-Version:        5.97.0
+Version:        5.98.0
 Release:        0
 Summary:        KDE Text editing widgets
 License:        LGPL-2.1-or-later

++++++ ktextwidgets-5.97.0.tar.xz -> ktextwidgets-5.98.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.97.0/.gitlab-ci.yml 
new/ktextwidgets-5.98.0/.gitlab-ci.yml
--- old/ktextwidgets-5.97.0/.gitlab-ci.yml      2022-08-07 15:31:17.000000000 
+0200
+++ new/ktextwidgets-5.98.0/.gitlab-ci.yml      2022-09-05 14:14:25.000000000 
+0200
@@ -8,3 +8,4 @@
   - 
https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/linux-qt6.yml
   - 
https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/android-qt6.yml
   - 
https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/windows.yml
+  - 
https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/freebsd-qt6.yml
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.97.0/CMakeLists.txt 
new/ktextwidgets-5.98.0/CMakeLists.txt
--- old/ktextwidgets-5.97.0/CMakeLists.txt      2022-08-07 15:31:17.000000000 
+0200
+++ new/ktextwidgets-5.98.0/CMakeLists.txt      2022-09-05 14:14:25.000000000 
+0200
@@ -1,12 +1,12 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.97.0") # handled by release scripts
-set(KF_DEP_VERSION "5.97.0") # handled by release scripts
+set(KF_VERSION "5.98.0") # handled by release scripts
+set(KF_DEP_VERSION "5.98.0") # handled by release scripts
 project(KTextWidgets VERSION ${KF_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.97.0  NO_MODULE)
+find_package(ECM 5.98.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/ktextwidgets-5.97.0/autotests/kreplacetest.cpp 
new/ktextwidgets-5.98.0/autotests/kreplacetest.cpp
--- old/ktextwidgets-5.97.0/autotests/kreplacetest.cpp  2022-08-07 
15:31:17.000000000 +0200
+++ new/ktextwidgets-5.98.0/autotests/kreplacetest.cpp  2022-09-05 
14:14:25.000000000 +0200
@@ -93,7 +93,10 @@
         dlg->hide();
 
         QPushButton *button = dlg->findChild<QPushButton *>(m_buttonName);
-        QMetaObject::invokeMethod(button, "click", Qt::QueuedConnection);
+        auto clickFunc = [button]() {
+            button->click();
+        };
+        QMetaObject::invokeMethod(button, clickFunc, Qt::QueuedConnection);
 
         m_needEventLoop = true;
     }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.97.0/po/be/ktextwidgets5.po 
new/ktextwidgets-5.98.0/po/be/ktextwidgets5.po
--- old/ktextwidgets-5.97.0/po/be/ktextwidgets5.po      2022-08-07 
15:31:17.000000000 +0200
+++ new/ktextwidgets-5.98.0/po/be/ktextwidgets5.po      2022-09-05 
14:14:25.000000000 +0200
@@ -23,8 +23,9 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: Lokalize 1.0\n"
-"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"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || n%10>=5 && n%10<=9 || n"
+"%100>=11 && n%100<=14 ? 2 : 3);\n"
 
 #: dialogs/klinkdialog.cpp:39
 #, fuzzy, kde-format
@@ -379,7 +380,7 @@
 msgstr "?????????? ???? ????????????????."
 
 #: findreplace/kreplace.cpp:184 findreplace/kreplace.cpp:431
-#, kde-format
+#, fuzzy, kde-format
 msgid "1 replacement done."
 msgid_plural "%1 replacements done."
 msgstr[0] "???????????????? %1 ????????????."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.97.0/po/be@latin/ktextwidgets5.po 
new/ktextwidgets-5.98.0/po/be@latin/ktextwidgets5.po
--- old/ktextwidgets-5.97.0/po/be@latin/ktextwidgets5.po        2022-08-07 
15:31:17.000000000 +0200
+++ new/ktextwidgets-5.98.0/po/be@latin/ktextwidgets5.po        2022-09-05 
14:14:25.000000000 +0200
@@ -15,8 +15,9 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"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"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || n%10>=5 && n%10<=9 || n"
+"%100>=11 && n%100<=14 ? 2 : 3);\n"
 "X-Generator: KBabel 1.11.4\n"
 
 #: dialogs/klinkdialog.cpp:39
@@ -45,7 +46,7 @@
 msgstr "<qt>Znaj??ci nastupny adpaviednik dla ???<b>%1</b>????</qt>"
 
 #: findreplace/kfind.cpp:707 findreplace/kfind.cpp:728
-#, kde-format
+#, fuzzy, kde-format
 msgid "1 match found."
 msgid_plural "%1 matches found."
 msgstr[0] "Znojdzieny %1 adpaviednik."
@@ -368,7 +369,7 @@
 msgstr "Ni??oha nie by??o zamieniena."
 
 #: findreplace/kreplace.cpp:184 findreplace/kreplace.cpp:431
-#, kde-format
+#, fuzzy, kde-format
 msgid "1 replacement done."
 msgid_plural "%1 replacements done."
 msgstr[0] "Zroblenaja %1 zamiena."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.97.0/po/ka/ktextwidgets5.po 
new/ktextwidgets-5.98.0/po/ka/ktextwidgets5.po
--- old/ktextwidgets-5.97.0/po/ka/ktextwidgets5.po      2022-08-07 
15:31:17.000000000 +0200
+++ new/ktextwidgets-5.98.0/po/ka/ktextwidgets5.po      2022-09-05 
14:14:25.000000000 +0200
@@ -1,102 +1,101 @@
-# KDE3 - Georgian translation of kdelibs4.po
-# Gia Shervashidze <gias...@telenet.ge>, 2005.
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR This file is copyright:
+# This file is distributed under the same license as the ktextwidgets package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: kdelibs4\n"
+"Project-Id-Version: ktextwidgets\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-11-24 00:25+0000\n"
-"PO-Revision-Date: 2009-12-17 02:11+0400\n"
-"Last-Translator: George Machitidze <gio...@gmail.com>\n"
-"Language-Team: Georgian <http://www.gia.ge>\n"
+"PO-Revision-Date: 2022-08-17 08:20+0200\n"
+"Last-Translator: Temuri Doghonadze <temuri.doghona...@gmail.com>\n"
+"Language-Team: Georgian <kde-i18n-...@kde.org>\n"
 "Language: ka\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.9\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Poedit 3.1.1\n"
 
 #: dialogs/klinkdialog.cpp:39
-#, fuzzy, kde-format
-#| msgid "Save Link As"
+#, kde-format
 msgid "Manage Link"
-msgstr "???????????????????????? ????????? ??????????????????"
+msgstr "?????????????????? ??????????????????"
 
 #: dialogs/klinkdialog.cpp:46
-#, fuzzy, kde-format
-#| msgid "Find Text"
+#, kde-format
 msgid "Link Text:"
-msgstr "????????????????????? ???????????????"
+msgstr "?????????????????? ??????????????????:"
 
 #: dialogs/klinkdialog.cpp:49
-#, fuzzy, kde-format
-#| msgid "URL:"
+#, kde-format
 msgid "Link URL:"
-msgstr "???????????????????????????:"
+msgstr "?????????????????? URL:"
 
 #: findreplace/kfind.cpp:52
 #, kde-format
 msgid "Find Next"
-msgstr "???????????????????????? ???????????????"
+msgstr "??????????????????????????? ?????????????????????"
 
 #: findreplace/kfind.cpp:56
 #, kde-format
 msgid "<qt>Find next occurrence of '<b>%1</b>'?</qt>"
-msgstr "<qt>????????????????????? ?????????????????????????????? 
??????????????? '<b>%1</b>'?</qt>"
+msgstr "<qt>?????????????????? <b>%1</b>-?????? ????????????????????? 
???????????????????????????????</qt>"
 
 #: findreplace/kfind.cpp:707 findreplace/kfind.cpp:728
 #, kde-format
 msgid "1 match found."
 msgid_plural "%1 matches found."
-msgstr[0] "???????????????????????? %1 ???????????????????????????."
+msgstr[0] "???????????????????????? %1 ???????????????????????????."
 
 #: findreplace/kfind.cpp:709
 #, kde-format
 msgid "<qt>No matches found for '<b>%1</b>'.</qt>"
-msgstr "<qt>??????????????????????????? ????????? ???????????????????????? 
????????????????????????????????? '<b>%1</b>'.</qt>"
+msgstr ""
 
 #: findreplace/kfind.cpp:730
 #, kde-format
 msgid "No matches found for '<b>%1</b>'."
-msgstr "??????????????????????????? ????????? ???????????????????????? 
????????????????????????????????? '<b>%1</b>'."
+msgstr ""
 
 #: findreplace/kfind.cpp:734 findreplace/kreplace.cpp:435
 #, kde-format
 msgid "Beginning of document reached."
-msgstr "??????????????????????????? ?????????????????????????????? 
???????????????????????????."
+msgstr ""
 
 #: findreplace/kfind.cpp:736 findreplace/kreplace.cpp:437
 #, kde-format
 msgid "End of document reached."
-msgstr "??????????????????????????? ?????????????????????????????? 
????????????."
+msgstr ""
 
 #. i18n() of the first if() because of the plural form.
 #. Hope this word puzzle is ok, it's a different sentence
 #: findreplace/kfind.cpp:742
 #, kde-format
 msgid "Continue from the end?"
-msgstr "?????????????????????????????? ??????????????????????"
+msgstr ""
 
 #: findreplace/kfind.cpp:742
 #, kde-format
 msgid "Continue from the beginning?"
-msgstr "?????????????????????????????? ?????????????????????????????????????"
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:35
 #, kde-format
 msgid "Find Text"
-msgstr "????????????????????? ???????????????"
+msgstr "????????????????????? ???????????????"
 
 #: findreplace/kfinddialog.cpp:76
 #, kde-format
 msgctxt "@title:group"
 msgid "Find"
-msgstr "???????????????"
+msgstr "???????????????"
 
 #: findreplace/kfinddialog.cpp:79
 #, kde-format
 msgid "&Text to find:"
-msgstr "????????????????????? &??????????????????:"
+msgstr "&??????????????????????????? ??????????????????:"
 
 #: findreplace/kfinddialog.cpp:83
 #, kde-format
@@ -106,32 +105,32 @@
 #: findreplace/kfinddialog.cpp:84
 #, kde-format
 msgid "&Edit..."
-msgstr "&?????????????????????????????????..."
+msgstr "&???????????????????????????..."
 
 #: findreplace/kfinddialog.cpp:93
 #, kde-format
 msgid "Replace With"
-msgstr "??????????????????????????? ???????????????????????????"
+msgstr "??????????????????????????????"
 
 #: findreplace/kfinddialog.cpp:96
 #, kde-format
 msgid "Replace&ment text:"
-msgstr "??????&???????????????????????? ??????????????????:"
+msgstr "?????????????????????????????????????????? ??????????????????:"
 
 #: findreplace/kfinddialog.cpp:100
 #, kde-format
 msgid "Use p&laceholders"
-msgstr "&??????????????????????????????????????? 
??????????????????????????????"
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:101
 #, kde-format
 msgid "Insert Place&holder"
-msgstr "?????????????????????????????? &????????????????????????"
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:110
 #, kde-format
 msgid "Options"
-msgstr "?????????????????????"
+msgstr "?????????????????????????????????"
 
 #: findreplace/kfinddialog.cpp:113
 #, kde-format
@@ -151,7 +150,7 @@
 #: findreplace/kfinddialog.cpp:116
 #, kde-format
 msgid "Find &backwards"
-msgstr "&????????????????????????"
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:117
 #, kde-format
@@ -161,17 +160,17 @@
 #: findreplace/kfinddialog.cpp:124
 #, kde-format
 msgid "&Prompt on replace"
-msgstr "&??????????????????????????? ???????????????????????????"
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:204
 #, kde-format
 msgid "&Replace"
-msgstr "&??????????????????"
+msgstr "??????????????????????????????"
 
 #: findreplace/kfinddialog.cpp:206
 #, kde-format
 msgid "Start replace"
-msgstr "????????????????????? ?????????????????????"
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:207
 #, kde-format
@@ -180,18 +179,16 @@
 "searched for within the document and any occurrence is replaced with the "
 "replacement text.</qt>"
 msgstr ""
-"<qt>?????? ????????????????????? ?????????????????? 
<b>??????????????????</b>, ???????????????????????? ?????????????????? 
????????????????????????????????? ????????????????????? "
-"??????????????? ???????????? ?????????????????????????????? ?????? 
???????????????????????? ?????????????????????????????? ?????????????????? 
??????????????????????????? ?????????????????????.</qt>"
 
 #: findreplace/kfinddialog.cpp:212
 #, kde-format
 msgid "&Find"
-msgstr "&???????????????"
+msgstr "&???????????????"
 
 #: findreplace/kfinddialog.cpp:214
 #, kde-format
 msgid "Start searching"
-msgstr "?????????????????? ?????????????????????"
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:215
 #, kde-format
@@ -199,38 +196,30 @@
 "<qt>If you press the <b>Find</b> button, the text you entered above is "
 "searched for within the document.</qt>"
 msgstr ""
-"<qt>?????? ????????????????????? ?????????????????? 
<b>??????????????????</b>, ???????????????????????? ?????????????????? 
????????????????????????????????? ????????????????????? "
-"??????????????? ???????????? ??????????????????????????????.</qt>"
 
 #: findreplace/kfinddialog.cpp:220
 #, kde-format
 msgid ""
 "Enter a pattern to search for, or select a previous pattern from the list."
-msgstr "???????????????????????? ?????????????????? ?????????????????? ?????? 
????????????????????? ???????????? ??????????????????????????? 
??????????????????."
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:221
 #, kde-format
 msgid "If enabled, search for a regular expression."
-msgstr "?????? ????????????????????????, ????????????????????? 
??????????????????????????????????????? ???????????????."
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:222
 #, kde-format
 msgid "Click here to edit your regular expression using a graphical editor."
-msgstr "???????????????????????? ?????? ????????????????????? 
??????????????????????????????????????? ??????????????????????????? 
?????????????????????????????? ????????????????????????????????????."
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:223
 #, kde-format
 msgid "Enter a replacement string, or select a previous one from the list."
-msgstr "???????????????????????? ????????????????????? ?????????????????? 
?????? ????????????????????? ???????????? ?????????????????? 
??????????????????."
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:225
-#, fuzzy, kde-format
-#| msgid ""
-#| "<qt>If enabled, any occurrence of <code><b>\\N</b></code>, where "
-#| "<code><b>N</b></code> is a integer number, will be replaced with the "
-#| "corresponding capture (\"parenthesized substring\") from the pattern."
-#| "<p>To include (a literal <code><b>\\N</b></code> in your replacement, put "
-#| "an extra backslash in front of it, like <code><b>\\\\N</b></code>.</qt>"
+#, kde-format
 msgid ""
 "<qt>If enabled, any occurrence of <code><b>\\N</b></code>, where <code><b>N</"
 "b></code> is an integer number, will be replaced with the corresponding "
@@ -238,31 +227,26 @@
 "literal <code><b>\\N</b></code> in your replacement, put an extra backslash "
 "in front of it, like <code><b>\\\\N</b></code>.</p></qt>"
 msgstr ""
-"<qt>?????? ????????????????????????, ?????????????????????????????? 
??????????????????????????? <code><b>\\N</b></code>, ??????????????? "
-"<code><b>N</b></code> - ??????????????? ?????????????????????, 
??????????????????????????? ????????????????????? 
?????????????????????????????? "
-"?????????????????????????????? (\"?????????????????????????????? 
????????????????????? ??????????????????\").<p>????????????????????? 
?????????????????????????????? <code><b>"
-"\\N</b></code> ???????????????????????? ????????????????????????????????? 
????????? ????????? ???????????????????????? ??????????????? ???????????? 
????????????????????????, "
-"??????????????????????????? <code><b>\\\\N</b></code>.</qt>"
 
 #: findreplace/kfinddialog.cpp:231
 #, kde-format
 msgid "Click for a menu of available captures."
-msgstr "???????????????????????? ????????????????????? 
??????????????????????????? ?????????????????? 
??????????????????????????????????????????."
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:232
 #, kde-format
 msgid "Require word boundaries in both ends of a match to succeed."
-msgstr "???????????????????????????????????? ??????????????? 
????????????????????? ??????????????????????????? ???????????? 
????????????????????????????????????."
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:233
 #, kde-format
 msgid "Start searching at the current cursor location rather than at the top."
-msgstr "?????????????????????????????? ??????????????? ????????????????????? 
?????????????????? ???????????????????????? ?????????????????????????????? 
?????????????????????."
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:234
 #, kde-format
 msgid "Only search within the current selection."
-msgstr "??????????????? ?????????????????? ???????????????????????? 
??????????????????????????????."
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:235
 #, kde-format
@@ -270,46 +254,44 @@
 "Perform a case sensitive search: entering the pattern 'Joe' will not match "
 "'joe' or 'JOE', only 'Joe'."
 msgstr ""
-"??????????????? ??????????????????????????? 
?????????????????????????????????????????????. ?????? 
????????????????????????????????? ?????????????????? 'Joe' ????????? 
?????????????????????????????? "
-"??????????????????????????? 'joe' ?????? 'JOE', ?????? 
?????????????????????????????? ?????????????????? 'Joe'."
 
 #: findreplace/kfinddialog.cpp:236
 #, kde-format
 msgid "Search backwards."
-msgstr "????????????????????????."
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:237
 #, kde-format
 msgid "Ask before replacing each match found."
-msgstr "????????????????????????????????? ?????????????????? 
????????????????????? ?????????."
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:459
 msgid "Any Character"
-msgstr "?????????????????????????????? ?????????????????????"
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:460
 msgid "Start of Line"
-msgstr "??????????????????????????? ???????????????????????????"
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:461
 msgid "End of Line"
-msgstr "??????????????????????????? ???????????????"
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:462
 msgid "Set of Characters"
-msgstr "??????????????????????????? ?????????????????????"
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:463
 msgid "Repeats, Zero or More Times"
-msgstr "?????????????????????????????????, ???????????? ?????? 
??????????????????"
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:464
 msgid "Repeats, One or More Times"
-msgstr "?????????????????????????????????, ?????????????????? ?????? 
??????????????????"
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:465
 msgid "Optional"
-msgstr "???????????????????????????"
+msgstr "??????????????????????????????????????????"
 
 #: findreplace/kfinddialog.cpp:466
 msgid "Escape"
@@ -317,38 +299,38 @@
 
 #: findreplace/kfinddialog.cpp:467
 msgid "TAB"
-msgstr "???????????????????????????"
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:468
 msgid "Newline"
-msgstr "??????????????? ????????????????????????"
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:469
 msgid "Carriage Return"
-msgstr "??????????????? ???????????????????????????"
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:470
 msgid "White Space"
-msgstr "????????????(??????)???"
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:471
 msgid "Digit"
-msgstr "???????????????"
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:579
 #, kde-format
 msgid "Complete Match"
-msgstr "??????????????? ???????????????????????????"
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:583
 #, kde-format
 msgid "Captured Text (%1)"
-msgstr "????????????????????? ?????????????????? (%1)"
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:593
 #, kde-format
 msgid "You must enter some text to search for."
-msgstr "???????????? ???????????????????????? ????????????????????? 
??????????????????."
+msgstr ""
 
 #: findreplace/kfinddialog.cpp:600
 #, kde-format
@@ -358,7 +340,7 @@
 #: findreplace/kreplace.cpp:52 findreplace/kreplace.cpp:63
 #, kde-format
 msgid "Replace"
-msgstr "??????????????????"
+msgstr ""
 
 #: findreplace/kreplace.cpp:59
 #, kde-format
@@ -369,40 +351,39 @@
 #: findreplace/kreplace.cpp:61
 #, kde-format
 msgid "&Skip"
-msgstr "&??????????????????????????????"
+msgstr "????????????&??????????????????"
 
 #: findreplace/kreplace.cpp:80
 #, kde-format
 msgid "Replace '%1' with '%2'?"
-msgstr "???????????????????????? '%1' - '%2'?"
+msgstr ""
 
 #: findreplace/kreplace.cpp:182 findreplace/kreplace.cpp:429
 #, kde-format
 msgid "No text was replaced."
-msgstr "????????????????????? ????????????????????????."
+msgstr ""
 
 #: findreplace/kreplace.cpp:184 findreplace/kreplace.cpp:431
 #, kde-format
 msgid "1 replacement done."
 msgid_plural "%1 replacements done."
-msgstr[0] "???????????????????????? %1 ??????????????????."
+msgstr[0] ""
 
 #: findreplace/kreplace.cpp:444
 #, kde-format
 msgid "Do you want to restart search from the end?"
-msgstr "?????????????????????????????? ??????????????? ??????????????????????"
+msgstr ""
 
 #: findreplace/kreplace.cpp:444
 #, kde-format
 msgid "Do you want to restart search at the beginning?"
-msgstr "?????????????????????????????? ??????????????? 
?????????????????????????????????????"
+msgstr ""
 
 #: findreplace/kreplace.cpp:449
-#, fuzzy, kde-format
-#| msgid "Restart"
+#, kde-format
 msgctxt "@action:button Restart find & replace"
 msgid "Restart"
-msgstr "????????????????????? ?????????????????????"
+msgstr "??????????????????????????????"
 
 #: findreplace/kreplace.cpp:450
 #, kde-format
@@ -413,18 +394,18 @@
 #: findreplace/kreplacedialog.cpp:153
 #, kde-format
 msgid "Your replacement string is referencing a capture greater than '\\%1', "
-msgstr "??????????????????????????? ?????????????????? 
???????????????????????? ?????????????????? ????????????????????? 
??????????????? ??????????????? '\\%1', "
+msgstr ""
 
 #: findreplace/kreplacedialog.cpp:154
 #, kde-format
 msgid "but your pattern only defines 1 capture."
 msgid_plural "but your pattern only defines %1 captures."
-msgstr[0] "?????????????????? ?????????????????? ?????????????????? 
?????????????????? %1 ???????????????????????? ???????????????????????????."
+msgstr[0] ""
 
 #: findreplace/kreplacedialog.cpp:155
 #, kde-format
 msgid "but your pattern defines no captures."
-msgstr "?????????????????? ?????????????????? ?????????????????? 
???????????????????????? ?????? ???????????????????????????."
+msgstr ""
 
 #: findreplace/kreplacedialog.cpp:156
 #, kde-format
@@ -433,14 +414,13 @@
 "Please correct."
 msgstr ""
 "\n"
-"?????????????????? ???????????????????????????"
+"?????????????????? ???????????????????????????."
 
 #: widgets/krichtextwidget.cpp:207
-#, fuzzy, kde-format
-#| msgid "Text Completion"
+#, kde-format
 msgctxt "@action"
 msgid "Text &Color..."
-msgstr "????????????????????? ?????????????????????????????????"
+msgstr "????????????????????? &????????????..."
 
 #: widgets/krichtextwidget.cpp:208
 #, kde-format
@@ -452,93 +432,85 @@
 #, kde-format
 msgctxt "@action"
 msgid "Text &Highlight..."
-msgstr ""
+msgstr "????????????????????? &???????????????????????????..."
 
 #: widgets/krichtextwidget.cpp:234
 #, kde-format
 msgctxt "@action"
 msgid "&Font"
-msgstr "&??????????????????"
+msgstr "&???????????????"
 
 #: widgets/krichtextwidget.cpp:244
-#, fuzzy, kde-format
-#| msgid "Icon Size"
+#, kde-format
 msgctxt "@action"
 msgid "Font &Size"
-msgstr "??????????????????????????????????????? ????????????"
+msgstr "?????????????????? &????????????"
 
 #: widgets/krichtextwidget.cpp:253
-#, fuzzy, kde-format
-#| msgid "Bold"
+#, kde-format
 msgctxt "@action boldify selected text"
 msgid "&Bold"
-msgstr "????????????"
+msgstr "&???????????????"
 
 #: widgets/krichtextwidget.cpp:267
-#, fuzzy, kde-format
-#| msgid "Italic"
+#, kde-format
 msgctxt "@action italicize selected text"
 msgid "&Italic"
-msgstr "?????????????????????"
+msgstr "&?????????????????????"
 
 #: widgets/krichtextwidget.cpp:281
 #, kde-format
 msgctxt "@action underline selected text"
 msgid "&Underline"
-msgstr ""
+msgstr "&????????????????????????"
 
 #: widgets/krichtextwidget.cpp:294
-#, fuzzy, kde-format
+#, kde-format
 msgctxt "@action"
 msgid "&Strike Out"
-msgstr "????????????"
+msgstr ""
 
 #: widgets/krichtextwidget.cpp:308
 #, kde-format
 msgctxt "@action"
 msgid "Align &Left"
-msgstr ""
+msgstr "&????????????????????? ?????????????????????"
 
 #: widgets/krichtextwidget.cpp:309
-#, fuzzy, kde-format
-#| msgctxt "toolbar position string"
-#| msgid "Left"
+#, kde-format
 msgctxt "@label left justify"
 msgid "Left"
-msgstr "????????????????????????"
+msgstr "????????????????????????"
 
 #: widgets/krichtextwidget.cpp:314
 #, kde-format
 msgctxt "@action"
 msgid "Align &Center"
-msgstr ""
+msgstr "&????????????????????? ?????????????????????"
 
 #: widgets/krichtextwidget.cpp:315
-#, fuzzy, kde-format
-#| msgid "Other"
+#, kde-format
 msgctxt "@label center justify"
 msgid "Center"
-msgstr "????????????"
+msgstr "?????????????????????"
 
 #: widgets/krichtextwidget.cpp:320
 #, kde-format
 msgctxt "@action"
 msgid "Align &Right"
-msgstr ""
+msgstr "?????????&??????????????? ?????????????????????"
 
 #: widgets/krichtextwidget.cpp:321
-#, fuzzy, kde-format
-#| msgctxt "toolbar position string"
-#| msgid "Right"
+#, kde-format
 msgctxt "@label right justify"
 msgid "Right"
-msgstr "????????????????????????"
+msgstr "????????????????????????"
 
 #: widgets/krichtextwidget.cpp:326
 #, kde-format
 msgctxt "@action"
 msgid "&Justify"
-msgstr ""
+msgstr "????????????????????? ???????????????????????? ?????? 
???????????????????????? ???????????????????????????"
 
 #: widgets/krichtextwidget.cpp:327
 #, kde-format
@@ -550,58 +522,55 @@
 #, kde-format
 msgctxt "@action"
 msgid "Left-to-Right"
-msgstr ""
+msgstr "??????????????????????????????-????????????????????????"
 
 #: widgets/krichtextwidget.cpp:346
 #, kde-format
 msgctxt "@label left-to-right"
 msgid "Left-to-Right"
-msgstr ""
+msgstr "??????????????????????????????-????????????????????????"
 
 #: widgets/krichtextwidget.cpp:351
 #, kde-format
 msgctxt "@action"
 msgid "Right-to-Left"
-msgstr ""
+msgstr "??????????????????????????????-????????????????????????"
 
 #: widgets/krichtextwidget.cpp:352
 #, kde-format
 msgctxt "@label right-to-left"
 msgid "Right-to-Left"
-msgstr ""
+msgstr "??????????????????????????????-????????????????????????"
 
 #: widgets/krichtextwidget.cpp:366
 #, kde-format
 msgctxt "@title:menu"
 msgid "List Style"
-msgstr ""
+msgstr "???????????? ???????????????"
 
 #: widgets/krichtextwidget.cpp:369
-#, fuzzy, kde-format
-#| msgid "None"
+#, kde-format
 msgctxt "@item:inmenu no list style"
 msgid "None"
-msgstr "?????????"
+msgstr "?????????????????????"
 
 #: widgets/krichtextwidget.cpp:370
-#, fuzzy, kde-format
-#| msgid "&Discard"
+#, kde-format
 msgctxt "@item:inmenu disc list style"
 msgid "Disc"
-msgstr "&?????????????????????"
+msgstr "???????????????"
 
 #: widgets/krichtextwidget.cpp:371
-#, fuzzy, kde-format
-#| msgid "File"
+#, kde-format
 msgctxt "@item:inmenu circle list style"
 msgid "Circle"
-msgstr "???????????????"
+msgstr "?????????"
 
 #: widgets/krichtextwidget.cpp:372
-#, fuzzy, kde-format
+#, kde-format
 msgctxt "@item:inmenu square list style"
 msgid "Square"
-msgstr "?????????????????????"
+msgstr "????????????????????????"
 
 #: widgets/krichtextwidget.cpp:373
 #, kde-format
@@ -610,36 +579,34 @@
 msgstr "123"
 
 #: widgets/krichtextwidget.cpp:374
-#, fuzzy, kde-format
-#| msgid "Sab"
+#, kde-format
 msgctxt "@item:inmenu lowercase abc lists"
 msgid "abc"
-msgstr "?????????"
+msgstr "abc"
 
 #: widgets/krichtextwidget.cpp:375
-#, fuzzy, kde-format
-#| msgid "TAB"
+#, kde-format
 msgctxt "@item:inmenu uppercase abc lists"
 msgid "ABC"
-msgstr "???????????????????????????"
+msgstr "ABC"
 
 #: widgets/krichtextwidget.cpp:376
 #, kde-format
 msgctxt "@item:inmenu lower case roman numerals"
 msgid "i ii iii"
-msgstr ""
+msgstr "i ii iii"
 
 #: widgets/krichtextwidget.cpp:377
 #, kde-format
 msgctxt "@item:inmenu upper case roman numerals"
 msgid "I II III"
-msgstr ""
+msgstr "I II III"
 
 #: widgets/krichtextwidget.cpp:397
 #, kde-format
 msgctxt "@action"
 msgid "Increase Indent"
-msgstr ""
+msgstr "??????????????????????????? ??????????????????"
 
 #: widgets/krichtextwidget.cpp:409
 #, kde-format
@@ -654,11 +621,10 @@
 msgstr ""
 
 #: widgets/krichtextwidget.cpp:430
-#, fuzzy, kde-format
-#| msgid "License:"
+#, kde-format
 msgctxt "@action"
 msgid "Link"
-msgstr "????????????????????????:"
+msgstr "???????????????"
 
 #: widgets/krichtextwidget.cpp:442
 #, kde-format
@@ -667,72 +633,64 @@
 msgstr ""
 
 #: widgets/krichtextwidget.cpp:454
-#, fuzzy, kde-format
-#| msgid "Find Text"
+#, kde-format
 msgctxt "@action"
 msgid "To Plain Text"
-msgstr "????????????????????? ???????????????"
+msgstr ""
 
 #: widgets/krichtextwidget.cpp:463
-#, fuzzy, kde-format
-#| msgid "Submit"
+#, kde-format
 msgctxt "@action"
 msgid "Subscript"
-msgstr "????????????????????????"
+msgstr "??????????????? ???????????????"
 
 #: widgets/krichtextwidget.cpp:468
-#, fuzzy, kde-format
+#, kde-format
 msgctxt "@action"
 msgid "Superscript"
-msgstr "?????????&??????????????????"
+msgstr "???????????? ???????????????"
 
 #: widgets/krichtextwidget.cpp:480
-#, fuzzy, kde-format
-#| msgid "Print Previe&w..."
+#, kde-format
 msgctxt "@title:menu"
 msgid "Heading Level"
-msgstr "????????????????????? &??????????????????"
+msgstr ""
 
 #: widgets/krichtextwidget.cpp:481
-#, fuzzy, kde-format
-#| msgid "Basic Page Style"
+#, kde-format
 msgctxt "@item:inmenu no heading"
 msgid "Basic text"
-msgstr "????????????????????? ???????????????????????? ???????????????"
+msgstr ""
 
 #: widgets/krichtextwidget.cpp:482
-#, fuzzy, kde-format
-#| msgid "Title:"
+#, kde-format
 msgctxt "@item:inmenu heading level 1 (largest)"
 msgid "Title"
-msgstr "?????????????????????:"
+msgstr "?????????????????????"
 
 #: widgets/krichtextwidget.cpp:483
-#, fuzzy, kde-format
-#| msgid "Untitled"
+#, kde-format
 msgctxt "@item:inmenu heading level 2"
 msgid "Subtitle"
-msgstr "?????????????????????"
+msgstr "??????????????????????????????"
 
 #: widgets/krichtextwidget.cpp:484
-#, fuzzy, kde-format
-#| msgid "Action"
+#, kde-format
 msgctxt "@item:inmenu heading level 3"
 msgid "Section"
-msgstr "?????????????????????"
+msgstr "??????????????????"
 
 #: widgets/krichtextwidget.cpp:485
-#, fuzzy, kde-format
-#| msgid "Question"
+#, kde-format
 msgctxt "@item:inmenu heading level 4"
 msgid "Subsection"
-msgstr "????????????????????????"
+msgstr ""
 
 #: widgets/krichtextwidget.cpp:486
 #, kde-format
 msgctxt "@item:inmenu heading level 5"
 msgid "Paragraph"
-msgstr ""
+msgstr "???????????????????????????"
 
 #: widgets/krichtextwidget.cpp:487
 #, kde-format
@@ -741,9 +699,9 @@
 msgstr ""
 
 #: widgets/ktextedit.cpp:47
-#, fuzzy, kde-format
+#, kde-format
 msgid "Nothing to spell check."
-msgstr "????????????????????????????????? ?????? ????????????????????????."
+msgstr ""
 
 #: widgets/ktextedit.cpp:501
 #, kde-format
@@ -751,23 +709,21 @@
 msgstr "?????????????????????????????? ???????????????????????????..."
 
 #: widgets/ktextedit.cpp:506
-#, fuzzy, kde-format
-#| msgid "Spell Checking"
+#, kde-format
 msgid "Spell Checking Language"
-msgstr "?????????????????????????????? ???????????????????????????"
+msgstr "?????????????????????????????? ??????????????????????????????????????? 
?????????"
 
 #: widgets/ktextedit.cpp:527
 #, kde-format
 msgid "Auto Spell Check"
-msgstr "?????????????????????????????? ???????????????????????????????????????"
+msgstr "?????????????????????????????? ?????????????????????????????? 
???????????????????????????"
 
 #: widgets/ktextedit.cpp:533
 #, kde-format
 msgid "Allow Tabulations"
-msgstr "?????????????????????????????? ?????????????????????"
+msgstr "???????????????????????????????????? ??????????????????"
 
 #: widgets/ktextedit.cpp:566
-#, fuzzy, kde-format
-#| msgid "&Break at Next Statement"
+#, kde-format
 msgid "Speak Text"
-msgstr "&?????????????????? ?????????????????? 
??????????????????????????????????????????"
+msgstr "????????????????????? ????????????????????????"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.97.0/po/zh_CN/ktextwidgets5.po 
new/ktextwidgets-5.98.0/po/zh_CN/ktextwidgets5.po
--- old/ktextwidgets-5.97.0/po/zh_CN/ktextwidgets5.po   2022-08-07 
15:31:17.000000000 +0200
+++ new/ktextwidgets-5.98.0/po/zh_CN/ktextwidgets5.po   2022-09-05 
14:14:25.000000000 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-11-24 00:25+0000\n"
-"PO-Revision-Date: 2022-07-30 15:54\n"
+"PO-Revision-Date: 2022-08-20 14:17\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.97.0/src/widgets/krichtextedit.cpp 
new/ktextwidgets-5.98.0/src/widgets/krichtextedit.cpp
--- old/ktextwidgets-5.97.0/src/widgets/krichtextedit.cpp       2022-08-07 
15:31:17.000000000 +0200
+++ new/ktextwidgets-5.98.0/src/widgets/krichtextedit.cpp       2022-09-05 
14:14:25.000000000 +0200
@@ -304,7 +304,10 @@
     if (d->mMode == Rich) {
         d->mMode = Plain;
         // TODO: Warn the user about this?
-        QMetaObject::invokeMethod(this, "insertPlainTextImplementation");
+        auto insertPlainFunc = [this]() {
+            insertPlainTextImplementation();
+        };
+        QMetaObject::invokeMethod(this, insertPlainFunc);
         setAcceptRichText(false);
         Q_EMIT textModeChanged(d->mMode);
     }

++++++ ktextwidgets-5.97.0.tar.xz.sig -> ktextwidgets-5.98.0.tar.xz.sig ++++++
--- /work/SRC/openSUSE:Factory/ktextwidgets/ktextwidgets-5.97.0.tar.xz.sig      
2022-08-15 19:59:46.265319571 +0200
+++ 
/work/SRC/openSUSE:Factory/.ktextwidgets.new.2083/ktextwidgets-5.98.0.tar.xz.sig
    2022-09-13 15:10:40.504859832 +0200
@@ -1,11 +1,11 @@
 -----BEGIN PGP SIGNATURE-----
 
-iQEzBAABCgAdFiEEU+a0e0XOo+DVt0V3WNDuZIpIs7sFAmLvxxwACgkQWNDuZIpI
-s7tO8Af+OvMgG45IacrvwIHg+H9/xj3FqO6yKwE55vR2K3YiNkoN6qaw73CvB7jn
-Jcf50p1J5fTTY27JKPzkVfJ12RbPvrnDIsZ6+B4Bda9OZCUtn5TN6txjsNZ5Wdo6
-7FO7/HWp4EqrFfNZXun2HdjfWrYWCKwjQtmwLYTIe9R7dIBprMijXcQF9UK5Eb4/
-6mclhIN0Su2aaOMLfuPwBisyZecCcC8nuBl15LJwXHgHMMia5QlQ0a56cuD2PNjx
-mKzJwFe6+Uny6S0rwyzO7OrqAtSn1WYVP5rNr+Zcj0sB0ob7Sm+bYGLX/otKQGW5
-M6b5/RNib91Lg2W9X+iNAVW/mkGyQg==
-=fDJJ
+iQEzBAABCgAdFiEEU+a0e0XOo+DVt0V3WNDuZIpIs7sFAmMV9WMACgkQWNDuZIpI
+s7t/0gf/WBE8kA4xwcM/CYoyewTyWc9FuYXnlVbL+RCcTcROHngyYiQxQDOIzLUX
+T1oAG8/QOXs5LOaOmg9LEN86VbgOEu62gFgIH4R7C9kBeQqsA4BuogjKF/ohLEoc
+9vWB5WLj/bQ0Y/DaUPYDRGD0famFXBKZpBLcgjQW2csGzVMbY2GfE2klz/gsHicf
+JEJcadso0gccXG4ZJubZIx0J/ZwDuJ58XK/gILoSFuK3pUYC9cYaeFyuGa94I8qs
+eUyBw2ky9adgyniTHXzGgXOTq1y2tA9M8o/GMnMCxsbSoia7/Gx06VfN2hnpJP/A
+Rw87zT57dYIPyANe+dw02O4ROoCptQ==
+=3Adz
 -----END PGP SIGNATURE-----

Reply via email to