Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kscreen5 for openSUSE:Factory 
checked in at 2023-10-25 18:01:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kscreen5 (Old)
 and      /work/SRC/openSUSE:Factory/.kscreen5.new.24901 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kscreen5"

Wed Oct 25 18:01:25 2023 rev:153 rq:1120072 version:5.27.9

Changes:
--------
--- /work/SRC/openSUSE:Factory/kscreen5/kscreen5.changes        2023-09-14 
16:25:07.225413477 +0200
+++ /work/SRC/openSUSE:Factory/.kscreen5.new.24901/kscreen5.changes     
2023-10-25 18:01:38.579826527 +0200
@@ -1,0 +2,11 @@
+Tue Oct 24 14:24:30 UTC 2023 - Fabian Vogt <[email protected]>
+
+- Update to 5.27.9
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma/5/5.27.9
+- Changes since 5.27.8:
+  * Only modify `Coordinate Transformation Matrix` (kde#474110)
+  * Drop unused KIconThemes dependency
+
+-------------------------------------------------------------------

Old:
----
  kscreen-5.27.8.tar.xz
  kscreen-5.27.8.tar.xz.sig

New:
----
  kscreen-5.27.9.tar.xz
  kscreen-5.27.9.tar.xz.sig

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

Other differences:
------------------
++++++ kscreen5.spec ++++++
--- /var/tmp/diff_new_pack.LGqR6A/_old  2023-10-25 18:01:39.939876731 +0200
+++ /var/tmp/diff_new_pack.LGqR6A/_new  2023-10-25 18:01:39.939876731 +0200
@@ -20,7 +20,7 @@
 
 %bcond_without released
 Name:           kscreen5
-Version:        5.27.8
+Version:        5.27.9
 Release:        0
 # Full Plasma 5 version (e.g. 5.8.95)
 %{!?_plasma5_bugfix: %define _plasma5_bugfix %{version}}

++++++ kscreen-5.27.8.tar.xz -> kscreen-5.27.9.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreen-5.27.8/CMakeLists.txt 
new/kscreen-5.27.9/CMakeLists.txt
--- old/kscreen-5.27.8/CMakeLists.txt   2023-09-12 12:30:54.000000000 +0200
+++ new/kscreen-5.27.9/CMakeLists.txt   2023-10-24 14:56:20.000000000 +0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.16)
 
 project(KScreen)
-set(PROJECT_VERSION "5.27.8")
+set(PROJECT_VERSION "5.27.9")
 set(KSCREEN_VERSION ${PROJECT_VERSION})
 
 add_definitions("-DKSCREEN_VERSION=\"${KSCREEN_VERSION}\"")
@@ -38,7 +38,6 @@
     Declarative
     GlobalAccel
     I18n
-    IconThemes
     KCMUtils
     Plasma
     PlasmaQuick
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreen-5.27.8/kded/daemon.cpp 
new/kscreen-5.27.9/kded/daemon.cpp
--- old/kscreen-5.27.8/kded/daemon.cpp  2023-09-12 12:30:54.000000000 +0200
+++ new/kscreen-5.27.9/kded/daemon.cpp  2023-10-24 14:56:20.000000000 +0200
@@ -483,7 +483,6 @@
     if (matrixAtom == 0) {
         return;
     }
-    auto calibrationMatrixAtom = getAtom(connection, "libinput Calibration 
Matrix");
     auto floatAtom = getAtom(connection, "FLOAT");
     if (floatAtom == 0) {
         return;
@@ -532,23 +531,17 @@
         std::unique_ptr<Atom, XDeleter> properties(XIListProperties(display, 
info->id, &nProperties));
 
         bool matrixAtomFound = false;
-        bool libInputCalibrationAtomFound = false;
 
         Atom *atom = properties.get();
         Atom *atomEnd = properties.get() + nProperties;
         for (; atom != atomEnd; atom++) {
             if (!internalOutputRect.isEmpty() && *atom == matrixAtom) {
                 matrixAtomFound = true;
-            } else if (!internalOutputRect.isEmpty() && *atom == 
calibrationMatrixAtom) {
-                libInputCalibrationAtomFound = true;
             }
         }
 
-        if (libInputCalibrationAtomFound) {
-            setMatrixAtom(info, calibrationMatrixAtom, transform);
-        }
         if (matrixAtomFound) {
-            setMatrixAtom(info, matrixAtom, libInputCalibrationAtomFound ? 
QTransform() : transform);
+            setMatrixAtom(info, matrixAtom, transform);
         }
 
         // For now we assume there is only one touchscreen
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreen-5.27.8/po/ca@valencia/kcm_kscreen.po 
new/kscreen-5.27.9/po/ca@valencia/kcm_kscreen.po
--- old/kscreen-5.27.8/po/ca@valencia/kcm_kscreen.po    2023-09-12 
12:30:54.000000000 +0200
+++ new/kscreen-5.27.9/po/ca@valencia/kcm_kscreen.po    2023-10-24 
14:56:20.000000000 +0200
@@ -189,7 +189,7 @@
 "no effect on what screen notifications or other windows appear on."
 msgstr ""
 "Determina en quina pantalla apareixeran l'escriptori i el tauler principals. "
-"Alguns jocs més antics també l'utilitzen per decidir en quina pantalla "
+"Alguns jocs més antics també l'utilitzen per a decidir en quina pantalla "
 "apareixeran.<nl/><nl/>No té cap efecte sobre a on apareixeran les "
 "notificacions de pantalla o les altres finestres."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreen-5.27.8/po/gl/kcm_kscreen.po 
new/kscreen-5.27.9/po/gl/kcm_kscreen.po
--- old/kscreen-5.27.8/po/gl/kcm_kscreen.po     2023-09-12 12:30:55.000000000 
+0200
+++ new/kscreen-5.27.9/po/gl/kcm_kscreen.po     2023-10-24 14:56:20.000000000 
+0200
@@ -101,7 +101,7 @@
 #: package/contents/ui/main.qml:181
 #, kde-format
 msgid "Outputs could not be saved due to error."
-msgstr "Non se puideron gardar as saídas por mor dun erro."
+msgstr "Non foi posíbel gardar as saídas por mor dun erro."
 
 #: package/contents/ui/main.qml:191
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreen-5.27.8/po/ja/kcm_kscreen.po 
new/kscreen-5.27.9/po/ja/kcm_kscreen.po
--- old/kscreen-5.27.8/po/ja/kcm_kscreen.po     2023-09-12 12:30:55.000000000 
+0200
+++ new/kscreen-5.27.9/po/ja/kcm_kscreen.po     2023-10-24 14:56:20.000000000 
+0200
@@ -1,12 +1,13 @@
 # Fuminobu TAKEYAMA <[email protected]>, 2015.
 # Fumiaki Okushi <[email protected]>, 2015.
+# Ryuichi Yamada <[email protected]>, 2023.
 msgid ""
 msgstr ""
 "Project-Id-Version: kcm_displayconfiguration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2023-04-26 02:49+0000\n"
-"PO-Revision-Date: 2015-05-02 14:55-0700\n"
-"Last-Translator: Fumiaki Okushi <[email protected]>\n"
+"PO-Revision-Date: 2023-09-20 01:32+0900\n"
+"Last-Translator: Ryuichi Yamada <[email protected]>\n"
 "Language-Team: Japanese <[email protected]>\n"
 "Language: ja\n"
 "MIME-Version: 1.0\n"
@@ -15,7 +16,7 @@
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 23.04.3\n"
 
 #: output_model.cpp:98
 #, kde-format
@@ -26,51 +27,52 @@
 #, kde-format
 msgctxt "Width x height"
 msgid "%1x%2"
-msgstr ""
+msgstr "%1x%2"
 
 #: output_model.cpp:657
 #, kde-format
 msgctxt "Width x height (aspect ratio)"
 msgid "%1x%2 (%3:%4)"
-msgstr ""
+msgstr "%1x%2 (%3:%4)"
 
 #: output_model.cpp:738
 #, kde-format
 msgid "None"
-msgstr ""
+msgstr "なし"
 
 #: output_model.cpp:745
 #, kde-format
 msgid "Replicated by other output"
-msgstr ""
+msgstr "他の出力による複製"
 
 #: package/contents/ui/main.qml:40
-#, fuzzy, kde-format
-#| msgid "Display Configuration"
+#, kde-format
 msgid "Keep display configuration?"
-msgstr "ディスプレイの設定"
+msgstr "ディスプレイの設定を保持しますか?"
 
 #: package/contents/ui/main.qml:55
 #, kde-format
 msgid "Will revert to previous configuration in %1 second."
 msgid_plural "Will revert to previous configuration in %1 seconds."
-msgstr[0] ""
+msgstr[0] "%1 秒後に元の設定に戻ります。"
 
 #: package/contents/ui/main.qml:72
 #, kde-format
 msgid "&Keep"
-msgstr ""
+msgstr "保持(&K)"
 
 #: package/contents/ui/main.qml:85
 #, kde-format
 msgid "&Revert"
-msgstr ""
+msgstr "元に戻す(&R)"
 
 #: package/contents/ui/main.qml:105 package/contents/ui/main.qml:287
 #, kde-format
 msgctxt "@info"
 msgid "All displays are disabled. Enable at least one."
 msgstr ""
+"すべてのディスプレイが無効化されています。少なくとも一つのディスプレイを有効"
+"化してください。"
 
 #: package/contents/ui/main.qml:107 package/contents/ui/main.qml:289
 #, kde-format
@@ -78,68 +80,67 @@
 msgid ""
 "Gaps between displays are not supported. Make sure all displays are touching."
 msgstr ""
+"ディスプレイ間の間隔はサポートされていません。すべてのディスプレイを接触させ"
+"てください。"
 
 #: package/contents/ui/main.qml:119 package/contents/ui/main.qml:302
 #, kde-format
 msgid "A new output has been added. Settings have been reloaded."
-msgstr ""
+msgstr "新しい出力が追加
されました。設定が再読み込みされました。"
 
 #: package/contents/ui/main.qml:121 package/contents/ui/main.qml:304
 #, kde-format
 msgid "An output has been removed. Settings have been reloaded."
-msgstr ""
+msgstr 
"出力が削除されました。設定が再読み込みされました。"
 
 #: package/contents/ui/main.qml:171
-#, fuzzy, kde-format
-#| msgid "No kscreen backend found. Please check your kscreen installation."
+#, kde-format
 msgid "No KScreen backend found. Please check your KScreen installation."
 msgstr ""
-"kscreen バックエンドが見つかりません。kscreen 
のインストールを確認してくださ"
-"い。"
+"KScreen バックエンドが見つかりません。KScreen 
がインストールされていることを"
+"確認してください。"
 
 #: package/contents/ui/main.qml:181
 #, kde-format
 msgid "Outputs could not be saved due to error."
-msgstr ""
+msgstr 
"エラーが発生したため、出力を保存できませんでした。"
 
 #: package/contents/ui/main.qml:191
 #, kde-format
 msgid ""
 "Global scale changes will come into effect after the system is restarted."
-msgstr ""
+msgstr "グローバルスケールの変更はシステム
の再起動後に有効になります。"
 
 #: package/contents/ui/main.qml:197
 #, kde-format
 msgid "Restart"
-msgstr ""
+msgstr "再起動"
 
 #: package/contents/ui/main.qml:217
-#, fuzzy, kde-format
-#| msgid "Display Configuration"
+#, kde-format
 msgid "Display configuration reverted."
-msgstr "ディスプレイの設定"
+msgstr "ディスプレイの設定が元に戻されました。"
 
 #: package/contents/ui/main.qml:225
 #, kde-format
 msgctxt "@title:window"
 msgid "Change Priorities"
-msgstr ""
+msgstr "優先度を変更"
 
 #: package/contents/ui/main.qml:254 package/contents/ui/OutputPanel.qml:42
-#, fuzzy, kde-format
-#| msgid "Primary display:"
+#, kde-format
 msgid "Primary"
-msgstr "プライマリディスプレイ:"
+msgstr "プライマリ"
 
 #: package/contents/ui/main.qml:260
 #, kde-format
 msgid "Raise priority"
-msgstr ""
+msgstr "優先度を上げる"
 
 #: package/contents/ui/main.qml:270
 #, kde-format
 msgid "Lower priority"
-msgstr ""
+msgstr "優先度を下げる"
 
 #: package/contents/ui/Orientation.qml:12
 #, kde-format
@@ -149,25 +150,24 @@
 #: package/contents/ui/Orientation.qml:26
 #: package/contents/ui/OutputPanel.qml:154
 #: package/contents/ui/OutputPanel.qml:195
-#, fuzzy, kde-format
-#| msgid "Auto"
+#, kde-format
 msgid "Automatic"
 msgstr "自動"
 
 #: package/contents/ui/Orientation.qml:35
 #, kde-format
 msgid "Only when in tablet mode"
-msgstr ""
+msgstr "タブレットモード時のみ"
 
 #: package/contents/ui/Orientation.qml:44
 #, kde-format
 msgid "Manual"
-msgstr ""
+msgstr "手動"
 
 #: package/contents/ui/Output.qml:238
 #, kde-format
 msgid "Replicas"
-msgstr ""
+msgstr "複製"
 
 #: package/contents/ui/OutputPanel.qml:24
 #, kde-format
@@ -177,7 +177,7 @@
 #: package/contents/ui/OutputPanel.qml:35
 #, kde-format
 msgid "Change Screen Priorities…"
-msgstr ""
+msgstr "優先度を変更…"
 
 #: package/contents/ui/OutputPanel.qml:48
 #, kde-kuit-format
@@ -187,6 +187,10 @@
 "older games also use it to decide which screen to appear on.<nl/><nl/>It has "
 "no effect on what screen notifications or other windows appear on."
 msgstr ""
+"メインのデスクトップとパネルを表示するスクリーンを決定します。いくつかの古い"
+"ゲーム
は、この設定を利用してウィンドウを出現させるスクリーンを選択します。"
+"<nl/><nl/>スクリーン通知やその他のウィンドウがどのスクリーンに出現するかは決"
+"定されません。"
 
 #: package/contents/ui/OutputPanel.qml:53
 #, kde-format
@@ -202,17 +206,20 @@
 "they were never guaranteed to work and are not available in this Plasma "
 "Wayland session."
 msgstr ""
+"&quot;%1&quot; 
は、このディスプレイによってサポートされている唯一の解像度で"
+"す。<nl/><nl/>サポートされていない解像度の使用は Plasma 
X11 セッションでは可"
+"能でしたが、Plasma Wayland セッションでは不可能です。"
 
 #: package/contents/ui/OutputPanel.qml:83
 #, kde-format
 msgid "Scale:"
-msgstr ""
+msgstr "スケール:"
 
 #: package/contents/ui/OutputPanel.qml:112 package/contents/ui/Panel.qml:107
 #, kde-format
 msgctxt "Global scale factor expressed in percentage form"
 msgid "%1%"
-msgstr ""
+msgstr "%1%"
 
 #: package/contents/ui/OutputPanel.qml:124
 #, kde-format
@@ -223,67 +230,69 @@
 #, kde-format
 msgid "\"%1\" is the only refresh rate supported by this display."
 msgstr ""
+"\"%1\" 
は、このディスプレイによってサポートされている唯一のリフレッシュレート"
+"です。"
 
 #: package/contents/ui/OutputPanel.qml:149
 #, kde-format
 msgid "Adaptive sync:"
-msgstr ""
+msgstr "アダプティブ同期:"
 
 #: package/contents/ui/OutputPanel.qml:152
 #, kde-format
 msgid "Never"
-msgstr ""
+msgstr "しない"
 
 #: package/contents/ui/OutputPanel.qml:153
 #, kde-format
 msgid "Always"
-msgstr ""
+msgstr "常に"
 
 #: package/contents/ui/OutputPanel.qml:165
 #, kde-format
 msgid "Overscan:"
-msgstr ""
+msgstr "オーバースキャン:"
 
 #: package/contents/ui/OutputPanel.qml:189
 #, kde-format
 msgid "RGB Range:"
-msgstr ""
+msgstr "RGB レンジ:"
 
 #: package/contents/ui/OutputPanel.qml:196
 #, kde-format
 msgid "Full"
-msgstr ""
+msgstr "フル"
 
 #: package/contents/ui/OutputPanel.qml:197
 #, kde-format
 msgid "Limited"
-msgstr ""
+msgstr "リミテッド"
 
 #: package/contents/ui/OutputPanel.qml:213
 #, kde-format
 msgid "Replica of:"
-msgstr ""
+msgstr "複製するディスプレイ:"
 
 #: package/contents/ui/Panel.qml:29
 #, kde-format
 msgid "Device:"
-msgstr ""
+msgstr "デバイス:"
 
 #: package/contents/ui/Panel.qml:71
 #, kde-format
 msgid "Global scale:"
-msgstr ""
+msgstr "グローバルスケール:"
 
 #: package/contents/ui/Panel.qml:131 package/contents/ui/Panel.qml:151
 #, kde-format
 msgid "Legacy Applications (X11):"
-msgstr ""
+msgstr "レガシーなアプリケーション (X11):"
 
 #: package/contents/ui/Panel.qml:136
 #, kde-format
 msgctxt "The apps themselves should scale to fit the displays"
 msgid "Apply scaling themselves"
-msgstr ""
+msgstr "アプリケーションによるスケーリング"
 
 #: package/contents/ui/Panel.qml:141
 #, kde-format
@@ -291,12 +300,14 @@
 "Legacy applications that support scaling will use it and look crisp, however "
 "those that don't will not be scaled at all."
 msgstr ""
+"スケーリングをサポートするレガシーなアプリケーションは明瞭にスケールされま"
+"す。しかし、サポートしないアプリケーションはå…
¨ãã‚¹ã‚±ãƒ¼ãƒ«ã•れません。"
 
 #: package/contents/ui/Panel.qml:152
 #, kde-format
 msgctxt "The system will perform the x11 apps scaling"
 msgid "Scaled by the system"
-msgstr ""
+msgstr "システムによるスケーリング"
 
 #: package/contents/ui/Panel.qml:157
 #, kde-format
@@ -304,6 +315,8 @@
 "All legacy applications will be scaled by the system to the correct size, "
 "however they will always look slightly blurry."
 msgstr ""
+"すべてのレガシーなアプリケーションがシステム
によってスケールされます。正しい"
+"サイズにスケールされますが、常に少しぼやけて見えるようになります。"
 
 #: package/contents/ui/Panel.qml:171
 #, kde-format
@@ -311,21 +324,23 @@
 "The global scale factor is limited to multiples of 6.25% to minimize visual "
 "glitches in applications using the X11 windowing system."
 msgstr ""
+"X11 ウィンドウシステム
を使用するアプリケーションにおける視覚的な不å…
·åˆã‚’最小"
+"化するために、グローバルスケールの数値は 6.25% 
の倍数のみに制限されています。"
 
 #: package/contents/ui/Panel.qml:183
 #, kde-format
 msgid "Save displays' properties:"
-msgstr ""
+msgstr "ディスプレイの設定を保存する:"
 
 #: package/contents/ui/Panel.qml:189
 #, kde-format
 msgid "For any display arrangement"
-msgstr ""
+msgstr "すべてのディスプレイの配置で"
 
 #: package/contents/ui/Panel.qml:196
 #, kde-format
 msgid "For only this specific display arrangement"
-msgstr ""
+msgstr "このディスプレイの配置でのみ"
 
 #: package/contents/ui/RotationButton.qml:50
 #, kde-format
@@ -345,15 +360,14 @@
 #: package/contents/ui/RotationButton.qml:63
 #, kde-format
 msgid "No Rotation"
-msgstr ""
+msgstr "回転なし"
 
 #: package/contents/ui/Screen.qml:48
 #, kde-format
 msgid "Drag screens to re-arrange them"
-msgstr ""
+msgstr "スクリーンをドラッグして再配置"
 
 #: package/contents/ui/Screen.qml:61
-#, fuzzy, kde-format
-#| msgid "Identify outputs"
+#, kde-format
 msgid "Identify"
-msgstr "出力を特定する"
+msgstr "特定する"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreen-5.27.8/po/zh_CN/kcm_kscreen.po 
new/kscreen-5.27.9/po/zh_CN/kcm_kscreen.po
--- old/kscreen-5.27.8/po/zh_CN/kcm_kscreen.po  2023-09-12 12:30:55.000000000 
+0200
+++ new/kscreen-5.27.9/po/zh_CN/kcm_kscreen.po  2023-10-24 14:56:20.000000000 
+0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2023-04-26 02:49+0000\n"
-"PO-Revision-Date: 2023-09-02 02:59\n"
+"PO-Revision-Date: 2023-10-21 13:58\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreen-5.27.8/po/zh_CN/kscreen.po 
new/kscreen-5.27.9/po/zh_CN/kscreen.po
--- old/kscreen-5.27.8/po/zh_CN/kscreen.po      2023-09-12 12:30:55.000000000 
+0200
+++ new/kscreen-5.27.9/po/zh_CN/kscreen.po      2023-10-24 14:56:20.000000000 
+0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-11-05 00:47+0000\n"
-"PO-Revision-Date: 2023-09-02 02:59\n"
+"PO-Revision-Date: 2023-10-21 13:58\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreen-5.27.8/po/zh_CN/kscreen_common.po 
new/kscreen-5.27.9/po/zh_CN/kscreen_common.po
--- old/kscreen-5.27.8/po/zh_CN/kscreen_common.po       2023-09-12 
12:30:55.000000000 +0200
+++ new/kscreen-5.27.9/po/zh_CN/kscreen_common.po       2023-10-24 
14:56:20.000000000 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2023-01-25 02:55+0000\n"
-"PO-Revision-Date: 2023-09-02 02:59\n"
+"PO-Revision-Date: 2023-10-21 13:58\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kscreen-5.27.8/po/zh_CN/plasma_applet_org.kde.kscreen.po 
new/kscreen-5.27.9/po/zh_CN/plasma_applet_org.kde.kscreen.po
--- old/kscreen-5.27.8/po/zh_CN/plasma_applet_org.kde.kscreen.po        
2023-09-12 12:30:55.000000000 +0200
+++ new/kscreen-5.27.9/po/zh_CN/plasma_applet_org.kde.kscreen.po        
2023-10-24 14:56:20.000000000 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2023-01-14 11:31+0000\n"
-"PO-Revision-Date: 2023-09-02 02:59\n"
+"PO-Revision-Date: 2023-10-21 13:58\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"

Reply via email to