Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package colord-kde for openSUSE:Factory 
checked in at 2023-08-31 13:43:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/colord-kde (Old)
 and      /work/SRC/openSUSE:Factory/.colord-kde.new.1766 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "colord-kde"

Thu Aug 31 13:43:56 2023 rev:15 rq:1105617 version:23.08.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/colord-kde/colord-kde.changes    2023-07-07 
15:49:37.461019466 +0200
+++ /work/SRC/openSUSE:Factory/.colord-kde.new.1766/colord-kde.changes  
2023-08-31 13:46:47.098511479 +0200
@@ -1,0 +2,25 @@
+Sun Aug 20 13:58:56 UTC 2023 - Christophe Marin <[email protected]>
+
+- Update to 23.08.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/gear/23.08.0/
+- No code change since 23.07.90
+
+-------------------------------------------------------------------
+Mon Aug 14 08:02:13 UTC 2023 - Christophe Marin <[email protected]>
+
+- Update to 23.07.90
+  * New feature release
+- No code change since 23.07.80
+
+-------------------------------------------------------------------
+Tue Aug  1 10:13:18 UTC 2023 - Christophe Marin <[email protected]>
+
+- Update to 23.07.80
+  * New feature release
+- Changes since 23.04.3:
+  * Improve CMakePresets.json
+  * Drop unused KIO dependency
+
+-------------------------------------------------------------------

Old:
----
  colord-kde-23.04.3.tar.xz
  colord-kde-23.04.3.tar.xz.sig

New:
----
  colord-kde-23.08.0.tar.xz
  colord-kde-23.08.0.tar.xz.sig

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

Other differences:
------------------
++++++ colord-kde.spec ++++++
--- /var/tmp/diff_new_pack.yaQ9TC/_old  2023-08-31 13:46:48.242552370 +0200
+++ /var/tmp/diff_new_pack.yaQ9TC/_new  2023-08-31 13:46:48.246552513 +0200
@@ -19,7 +19,7 @@
 %global __requires_exclude qmlimport\\(kcmcolord.*
 %bcond_without released
 Name:           colord-kde
-Version:        23.04.3
+Version:        23.08.0
 Release:        0
 Summary:        KDE interfaces and session daemon to colord
 License:        GPL-2.0-or-later
@@ -38,7 +38,6 @@
 BuildRequires:  cmake(KF5I18n)
 BuildRequires:  cmake(KF5ItemModels)
 BuildRequires:  cmake(KF5KCMUtils)
-BuildRequires:  cmake(KF5KIO)
 BuildRequires:  cmake(KF5Package)
 BuildRequires:  cmake(KF5WidgetsAddons)
 BuildRequires:  cmake(KF5WindowSystem)


++++++ colord-kde-23.04.3.tar.xz -> colord-kde-23.08.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colord-kde-23.04.3/CMakeLists.txt 
new/colord-kde-23.08.0/CMakeLists.txt
--- old/colord-kde-23.04.3/CMakeLists.txt       2023-07-04 06:57:57.000000000 
+0200
+++ new/colord-kde-23.08.0/CMakeLists.txt       2023-08-16 22:26:12.000000000 
+0200
@@ -4,8 +4,8 @@
 
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "23")
-set (RELEASE_SERVICE_VERSION_MINOR "04")
-set (RELEASE_SERVICE_VERSION_MICRO "3")
+set (RELEASE_SERVICE_VERSION_MINOR "08")
+set (RELEASE_SERVICE_VERSION_MICRO "0")
 set (RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
 project(colord-kde VERSION ${RELEASE_SERVICE_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colord-kde-23.04.3/CMakePresets.json 
new/colord-kde-23.08.0/CMakePresets.json
--- old/colord-kde-23.04.3/CMakePresets.json    2023-07-04 06:57:57.000000000 
+0200
+++ new/colord-kde-23.08.0/CMakePresets.json    2023-08-16 22:26:12.000000000 
+0200
@@ -1,80 +1,165 @@
 {
-    "version": 2,
+    "version": 3,
     "configurePresets": [
         {
+            "name": "base",
+            "displayName": "base preset",
+            "generator": "Ninja",
+            "binaryDir": "${sourceDir}/build-${presetName}",
+            "installDir": "$env{KF5}",
+            "hidden": true
+        },
+        {
+            "name": "base-qt6",
+            "displayName": "base preset",
+            "generator": "Ninja",
+            "binaryDir": "${sourceDir}/build-${presetName}",
+            "installDir": "$env{KF6}",
+            "hidden": true
+        },     
+       {
+            "name": "dev-mold",
+            "displayName": "Build as debug + using mold linker",
+            "cacheVariables": {
+                "CMAKE_BUILD_TYPE": "Debug",
+                "CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
+               "CMAKE_SHARED_LINKER_FLAGS": "-fuse-ld=mold"
+            },
+            "inherits": [
+                "base"
+            ]
+        },
+        {
             "name": "dev",
             "displayName": "Build as debug",
-            "generator": "Ninja",
-            "binaryDir": "${sourceDir}/build",
             "cacheVariables": {
                 "CMAKE_BUILD_TYPE": "Debug",
-               "CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
-            }
+                "CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
+            },
+            "inherits": [
+                "base"
+            ]
         },
         {
-            "name": "dev-disable-deprecated",
-            "displayName": "Build as without deprecated methods",
-            "generator": "Ninja",
-            "binaryDir": "${sourceDir}/build-disable-deprecated",
+            "name": "dev-qt6",
+            "displayName": "Build against qt6",
+            "binaryDir": "${sourceDir}/build-qt6",
             "cacheVariables": {
                 "CMAKE_BUILD_TYPE": "Debug",
-                "CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
-               "CMAKE_CXX_FLAGS_INIT": 
"-DQT_DISABLE_DEPRECATED_BEFORE=0x060000 
-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x060000"
-            }
+                "BUILD_WITH_QT6": "ON",
+                "CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
+            },
+            "inherits": [
+                "base-qt6"
+            ]
         },
         {
+            "name": "release-qt6",
+            "displayName": "Build as release mode.",
+            "cacheVariables": {
+                "CMAKE_BUILD_TYPE": "Release",
+                "BUILD_WITH_QT6": "ON",
+               "BUILD_TESTING": "OFF"
+            },
+            "inherits": [
+                "base-qt6"
+            ]
+        },     
+        {
             "name": "asan",
             "displayName": "Build with Asan support.",
-            "generator": "Ninja",
-            "binaryDir": "${sourceDir}/build-asan",
             "cacheVariables": {
                 "CMAKE_BUILD_TYPE": "Debug",
-                "ECM_ENABLE_SANITIZERS" : "'address;undefined'",
-               "CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
-            }
+                "ECM_ENABLE_SANITIZERS" : "'address;undefined'"
+            },
+            "inherits": [
+                "base"
+            ]
+        },
+        {
+            "name": "dev-clang",
+            "displayName": "dev-clang",
+            "cacheVariables": {
+                "CMAKE_BUILD_TYPE": "Debug",
+                "CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
+            },
+            "environment": {
+                "CXX": "clang++",
+                "CCACHE_DISABLE": "ON"
+            },
+            "inherits": [
+                "base"
+            ]
         },
         {
             "name": "unity",
             "displayName": "Build with CMake unity support.",
-            "generator": "Ninja",
-            "binaryDir": "${sourceDir}/build-unity",
             "cacheVariables": {
                 "CMAKE_BUILD_TYPE": "Debug",
-               "CMAKE_UNITY_BUILD": "ON",
-               "CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
-            }
+                "USE_UNITY_CMAKE_SUPPORT": "ON"
+            },
+            "inherits": [
+                "base"
+            ]
         },
         {
             "name": "release",
             "displayName": "Build as release mode.",
-            "generator": "Ninja",
-            "binaryDir": "${sourceDir}/build-release",
             "cacheVariables": {
-                "CMAKE_BUILD_TYPE": "Release"
-            }
+                "CMAKE_BUILD_TYPE": "Release",
+               "BUILD_TESTING": "OFF"
+            },
+            "inherits": [
+                "base"
+            ]
         },
         {
             "name": "profile",
             "displayName": "profile",
-            "generator": "Ninja",
-            "binaryDir": "${sourceDir}/build-profile",
             "cacheVariables": {
-                "CMAKE_BUILD_TYPE": "RelWithDebInfo",
-               "CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
-            }
+                "CMAKE_BUILD_TYPE": "RelWithDebInfo"
+            },
+            "inherits": [
+                "base"
+            ]
        },
+       {
+            "name": "coverage",
+            "displayName": "coverage",
+            "cacheVariables": {
+                "CMAKE_BUILD_TYPE": "Debug",
+                "USE_UNITY_CMAKE_SUPPORT": "OFF",
+                "BUILD_COVERAGE": "ON" 
+            },
+            "inherits": [
+                "base"
+            ]
+        },
         {
             "name": "clazy",
             "displayName": "clazy",
-            "generator": "Ninja",
-            "binaryDir": "${sourceDir}/build-clazy",
             "cacheVariables": {
                 "CMAKE_BUILD_TYPE": "Debug"
             },
             "environment": {
                 "CXX": "clazy",
                 "CCACHE_DISABLE": "ON"
-            }
+            },
+            "inherits": [
+                "base"
+            ]
+        },
+        {
+            "name": "pch",
+            "displayName": "pch",
+            "cacheVariables": {
+                "CMAKE_BUILD_TYPE": "Debug",
+                "USE_PRECOMPILED_HEADERS": "ON",
+                "BUILD_COVERAGE": "ON"
+            },
+            "inherits": [
+                "base"
+            ]
         }
     ],
     "buildPresets": [
@@ -82,19 +167,43 @@
             "name": "dev",
             "configurePreset": "dev"
         },
+       {
+            "name": "dev-mold",
+            "configurePreset": "dev-mold"
+        },
         {
-            "name": "asan",
-            "configurePreset": "asan"
+            "name": "dev-qt6",
+            "configurePreset": "dev-qt6"
         },
-       {
-            "name": "dev-disable-deprecated",
-            "configurePreset": "dev-disable-deprecated"
+        {       
+            "name": "release-qt6",
+            "configurePreset": "release-qt6"
         },
-       {
+        {
+            "name": "dev-clang",
+            "configurePreset": "dev-clang"
+        },
+        {
+            "name": "pch",
+            "configurePreset": "pch"
+        },
+        {
+            "name": "release",
+            "configurePreset": "release"
+        },
+        {
             "name": "unity",
             "configurePreset": "unity"
         },
         {
+            "name": "coverage",
+            "configurePreset": "coverage"
+        },
+       {
+            "name": "asan",
+            "configurePreset": "asan"
+        },
+        {
             "name": "clazy",
             "configurePreset": "clazy",
             "environment": {
@@ -102,5 +211,31 @@
                 "CCACHE_DISABLE" : "ON"
             }
         }
-    ]
+    ],
+    "testPresets": [
+    {
+      "name": "dev",
+      "configurePreset": "dev",
+      "output": {"outputOnFailure": true},
+      "execution": {"noTestsAction": "error", "stopOnFailure": false}
+    },
+    {
+      "name": "asan",
+      "configurePreset": "asan",
+      "output": {"outputOnFailure": true},
+      "execution": {"noTestsAction": "error", "stopOnFailure": true}
+    },
+    {
+      "name": "unity",
+      "configurePreset": "unity",
+      "output": {"outputOnFailure": true},
+      "execution": {"noTestsAction": "error", "stopOnFailure": true}
+    },
+    {
+      "name": "coverage",
+      "configurePreset": "coverage",
+      "output": {"outputOnFailure": true},
+      "execution": {"noTestsAction": "error", "stopOnFailure": true}
+    }
+  ]
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colord-kde-23.04.3/colord-kcm/kcm_colord.json 
new/colord-kde-23.08.0/colord-kcm/kcm_colord.json
--- old/colord-kde-23.04.3/colord-kcm/kcm_colord.json   2023-07-04 
06:57:57.000000000 +0200
+++ new/colord-kde-23.08.0/colord-kcm/kcm_colord.json   2023-08-16 
22:26:12.000000000 +0200
@@ -2,12 +2,14 @@
     "KPlugin": {
         "Description": "Manage color profile of devices",
         "Description[ar]": "أدر تشكيلات ألوان الأجهزة",
+        "Description[az]": "Rəng profillərinin və ya cihazlarının idarə 
edilməsi",
         "Description[bg]": "Управление на цветни 
профили на устройства",
         "Description[ca@valencia]": "Gestiona els perfils de color dels 
dispositius",
         "Description[ca]": "Gestiona els perfils de color dels dispositius",
         "Description[de]": "Farbprofile von Geräten verwalten",
         "Description[el]": "Διαχειρίζεται το χρωματικό 
προφίλ των συσκευών",
         "Description[en_GB]": "Manage colour profile of devices",
+        "Description[eo]": "Administri kolorprofilon de aparatoj",
         "Description[es]": "Gestión de perfiles de color de dispositivos",
         "Description[eu]": "Kudeatu gailuen kolore-profilak",
         "Description[fi]": "Hallitse laitteiden väriprofiileja",
@@ -27,6 +29,7 @@
         "Description[ru]": "Управление цветовыми 
профилями устройств",
         "Description[sk]": "Spravovať farebný profil zariadení",
         "Description[sl]": "Upravljaj barvne profile naprav",
+        "Description[sv]": "Hantera färgprofiler för enheter",
         "Description[tr]": "Aygıtların renk profilini yönet",
         "Description[uk]": "Керування профілем 
кольорів пристроїв",
         "Description[x-test]": "xxManage color profile of devicesxx",
@@ -35,6 +38,7 @@
         "Icon": "preferences-desktop-color",
         "Name": "Color Management",
         "Name[ar]": "إدارة الألوان",
+        "Name[az]": "Rənglərin idarə edilməsi",
         "Name[bg]": "Управление на цветовете",
         "Name[ca@valencia]": "Gestió del color",
         "Name[ca]": "Gestió del color",
@@ -42,6 +46,7 @@
         "Name[de]": "Farbverwaltung",
         "Name[el]": "Διαχείριση χρωμάτων",
         "Name[en_GB]": "Colour Management",
+        "Name[eo]": "Kolormastrumado",
         "Name[es]": "Gestión del color",
         "Name[eu]": "Kolore kudeaketa",
         "Name[fi]": "Värinhallinta",
@@ -61,6 +66,7 @@
         "Name[ru]": "Управление цветом",
         "Name[sk]": "Správa farieb",
         "Name[sl]": "Upravljanje barv",
+        "Name[sv]": "Färghantering",
         "Name[tr]": "Renk Yönetimi",
         "Name[uk]": "Керування кольорами",
         "Name[x-test]": "xxColor Managementxx",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colord-kde-23.04.3/colord-kded/colord.json 
new/colord-kde-23.08.0/colord-kded/colord.json
--- old/colord-kde-23.04.3/colord-kded/colord.json      2023-07-04 
06:57:57.000000000 +0200
+++ new/colord-kde-23.08.0/colord-kded/colord.json      2023-08-16 
22:26:12.000000000 +0200
@@ -10,6 +10,7 @@
         "Description[de]": "Bildschirm-Farbprofile verwalten",
         "Description[el]": "Διαχειρίζεται τα χρωματικά 
προφίλ της οθόνης",
         "Description[en_GB]": "Manage Screen Colour Profiles",
+        "Description[eo]": "Mastrumi Ekrankolorajn Profilojn",
         "Description[es]": "Gestión de perfiles de color de la pantalla",
         "Description[et]": "Ekraani värviprofiilide haldur",
         "Description[eu]": "Pantailako kolore-profilak kudeatu",
@@ -30,6 +31,7 @@
         "Description[ru]": "Управление цветовыми 
профилями монитора",
         "Description[sk]": "Spravovať profily farieb obrazovky",
         "Description[sl]": "Upravljaj profile barv zaslona",
+        "Description[sv]": "Hantera färgprofiler för skärmar",
         "Description[tr]": "Ekran Renk Profillerini Yönet",
         "Description[uk]": "Керування профілями 
кольорів екрана",
         "Description[x-test]": "xxManage Screen Color Profilesxx",
@@ -45,6 +47,7 @@
         "Name[de]": "Farben-Dienst",
         "Name[el]": "Δαίμων χρωμάτων",
         "Name[en_GB]": "Colour Daemon",
+        "Name[eo]": "Kolordemono",
         "Name[es]": "Servicio de colores",
         "Name[et]": "Värvideemon",
         "Name[eu]": "Kolore daimona",
@@ -65,6 +68,7 @@
         "Name[ru]": "Служба управления цветом",
         "Name[sk]": "Démon farby",
         "Name[sl]": "Color Daemon",
+        "Name[sv]": "Färgdemon",
         "Name[tr]": "Renk Ardalan Süreci",
         "Name[uk]": "Фонова служба керування 
кольорами",
         "Name[x-test]": "xxColor Daemonxx",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/colord-kde-23.04.3/icc-importer/colordkdeiccimporter.desktop 
new/colord-kde-23.08.0/icc-importer/colordkdeiccimporter.desktop
--- old/colord-kde-23.04.3/icc-importer/colordkdeiccimporter.desktop    
2023-07-04 06:57:57.000000000 +0200
+++ new/colord-kde-23.08.0/icc-importer/colordkdeiccimporter.desktop    
2023-08-16 22:26:12.000000000 +0200
@@ -20,6 +20,7 @@
 Name[de]=Installationsprogramm für ICC-Profile
 Name[el]=Εγκαταστάτης προφίλ ICC
 Name[en_GB]=ICC Profile Installer
+Name[eo]=ICC-Profila Instalilo
 Name[es]=Instalador de perfil ICC
 Name[et]=ICC profiili paigaldaja
 Name[eu]=ICC profilen instalatzailea
@@ -63,6 +64,7 @@
 Comment[de]=ICC-Profile installieren
 Comment[el]=Εγκατάσταση προφίλ ICC
 Comment[en_GB]=Install ICC profiles
+Comment[eo]=Instali ICC-Profilojn
 Comment[es]=Instalar perfiles ICC
 Comment[et]=ICC profiilide paigaldamine
 Comment[eu]=Instalatu ICC profilak
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colord-kde-23.04.3/po/az/colord-kde.po 
new/colord-kde-23.08.0/po/az/colord-kde.po
--- old/colord-kde-23.04.3/po/az/colord-kde.po  2023-07-04 06:57:57.000000000 
+0200
+++ new/colord-kde-23.08.0/po/az/colord-kde.po  2023-08-16 22:26:12.000000000 
+0200
@@ -1,13 +1,13 @@
 # Copyright (C) YEAR This file is copyright:
 # This file is distributed under the same license as the colord-kde package.
 #
-# Kheyyam Gojayev <[email protected]>, 2020, 2022.
+# Kheyyam Gojayev <[email protected]>, 2020, 2022, 2023.
 msgid ""
 msgstr ""
 "Project-Id-Version: colord-kde\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-12-10 00:43+0000\n"
-"PO-Revision-Date: 2022-10-18 12:25+0400\n"
+"PO-Revision-Date: 2023-03-12 18:39+0400\n"
 "Last-Translator: Kheyyam <[email protected]>\n"
 "Language-Team: Azerbaijani <[email protected]>\n"
 "Language: az\n"
@@ -15,7 +15,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 22.08.2\n"
+"X-Generator: Lokalize 22.12.2\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -107,19 +107,16 @@
 #: colord-kcm/DeviceDescription.cpp:185
 #, kde-format
 msgid "You can use 'displaycal' to calibrate this device"
-msgstr ""
+msgstr "Bu cihazı tənzimləmək üçün \"displaycal\" istifadə et"
 
 #: colord-kcm/DeviceDescription.cpp:194 colord-kcm/DeviceDescription.cpp:199
-#, fuzzy, kde-format
-#| msgid ""
-#| "The measuring instrument is not detected. Please check it is turned on "
-#| "and correctly connected."
+#, kde-format
 msgid ""
 "The measuring instrument for calibrating is not detected. Please check it is "
 "turned on and correctly connected."
 msgstr ""
-"Ölçü aləti aşkar edilmədi. Onun aktiv olduğuna və düzgün 
qoşulduğuna əmin "
-"olun."
+"Tənzimləmək üçün ölçü aləti aşkar edilmədi. Onun aktiv 
olunduğunu və ya "
+"düzgün qoşulduğunu yoxla."
 
 #: colord-kcm/DeviceDescription.cpp:218
 #, kde-format
@@ -127,10 +124,9 @@
 msgstr "Ölçü aləti printer profili yaradılmasını dəstəkləmir."
 
 #: colord-kcm/DeviceDescription.cpp:222
-#, fuzzy, kde-format
-#| msgid "The device type is not currently supported."
+#, kde-format
 msgid "The device type is not currently supported for calibrating."
-msgstr "Bu cihaz növü hal-hazırda dəstəklənmir."
+msgstr "Tənzimləmək üçün bu növ cihaz hal-hazırda dəstəklənmir."
 
 #: colord-kcm/DeviceModel.cpp:250
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colord-kde-23.04.3/po/ia/colord-kde.po 
new/colord-kde-23.08.0/po/ia/colord-kde.po
--- old/colord-kde-23.04.3/po/ia/colord-kde.po  2023-07-04 06:57:57.000000000 
+0200
+++ new/colord-kde-23.08.0/po/ia/colord-kde.po  2023-08-16 22:26:12.000000000 
+0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: colord-kde\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-12-10 00:43+0000\n"
-"PO-Revision-Date: 2023-05-10 10:23+0200\n"
+"PO-Revision-Date: 2023-05-10 10:26+0200\n"
 "Last-Translator: giovanni <[email protected]>\n"
 "Language-Team: Interlingua <[email protected]>\n"
 "Language: ia\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colord-kde-23.04.3/po/ko/colord-kde.po 
new/colord-kde-23.08.0/po/ko/colord-kde.po
--- old/colord-kde-23.04.3/po/ko/colord-kde.po  2023-07-04 06:57:57.000000000 
+0200
+++ new/colord-kde-23.08.0/po/ko/colord-kde.po  2023-08-16 22:26:12.000000000 
+0200
@@ -368,7 +368,7 @@
 #: icc-importer/main.cpp:64
 #, kde-format
 msgid "An application to install ICC profiles"
-msgstr "ICC 프로필을 설치하는 프로그램"
+msgstr "ICC 프로필을 설치하는 앱"
 
 #: icc-importer/main.cpp:66
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colord-kde-23.04.3/po/sk/colord-kde.po 
new/colord-kde-23.08.0/po/sk/colord-kde.po
--- old/colord-kde-23.04.3/po/sk/colord-kde.po  2023-07-04 06:57:57.000000000 
+0200
+++ new/colord-kde-23.08.0/po/sk/colord-kde.po  2023-08-16 22:26:12.000000000 
+0200
@@ -1,19 +1,19 @@
 # translation of colord-kde.po to Slovak
-# Roman Paholik <[email protected]>, 2012, 2013, 2015, 2016.
+# Roman Paholik <[email protected]>, 2012, 2013, 2015, 2016, 2023.
 # Matej Mrenica <[email protected]>, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: colord-kde\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-12-10 00:43+0000\n"
-"PO-Revision-Date: 2020-05-02 17:42+0200\n"
-"Last-Translator: Matej Mrenica <[email protected]>\n"
-"Language-Team: Slovak <[email protected]>\n"
+"PO-Revision-Date: 2023-03-12 09:13+0100\n"
+"Last-Translator: Roman Paholik <[email protected]>\n"
+"Language-Team: Slovak <[email protected]>\n"
 "Language: sk\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 20.04.0\n"
+"X-Generator: Lokalize 22.12.3\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
 #, kde-format
@@ -106,19 +106,16 @@
 #: colord-kcm/DeviceDescription.cpp:185
 #, kde-format
 msgid "You can use 'displaycal' to calibrate this device"
-msgstr ""
+msgstr "Môžete použiť 'displaycal' na kalibráciu vášho zariadenia"
 
 #: colord-kcm/DeviceDescription.cpp:194 colord-kcm/DeviceDescription.cpp:199
-#, fuzzy, kde-format
-#| msgid ""
-#| "The measuring instrument is not detected. Please check it is turned on "
-#| "and correctly connected."
+#, kde-format
 msgid ""
 "The measuring instrument for calibrating is not detected. Please check it is "
 "turned on and correctly connected."
 msgstr ""
-"Merací nástroj nebol detegovaný. Overte, prosím, že je zapnutý a 
správne "
-"pripojený."
+"Merací nástroj na kalibráciu nebol detegovaný. Overte, prosím, že je 
zapnutý "
+"a správne pripojený."
 
 #: colord-kcm/DeviceDescription.cpp:218
 #, kde-format
@@ -126,10 +123,9 @@
 msgstr "Merací nástroj nepodporuje profilovanie tlačiarne."
 
 #: colord-kcm/DeviceDescription.cpp:222
-#, fuzzy, kde-format
-#| msgid "The device type is not currently supported."
+#, kde-format
 msgid "The device type is not currently supported for calibrating."
-msgstr "Typ zariadenia momentálne nie je podporovaný."
+msgstr "Typ zariadenia momentálne nie je podporovaný na kalibráciu."
 
 #: colord-kcm/DeviceModel.cpp:250
 #, kde-format
@@ -429,7 +425,7 @@
 #: icc-importer/main.cpp:126
 #, kde-format
 msgid "import"
-msgstr ""
+msgstr "importovať"
 
 #: icc-importer/main.cpp:139
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colord-kde-23.04.3/po/sv/colord-kde.po 
new/colord-kde-23.08.0/po/sv/colord-kde.po
--- old/colord-kde-23.04.3/po/sv/colord-kde.po  2023-07-04 06:57:57.000000000 
+0200
+++ new/colord-kde-23.08.0/po/sv/colord-kde.po  2023-08-16 22:26:12.000000000 
+0200
@@ -1,13 +1,13 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Stefan Asserhäll <[email protected]>, 2012, 2013, 2015, 2016.
+# Stefan Asserhäll <[email protected]>, 2012, 2013, 2015, 2016, 
2023.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-12-10 00:43+0000\n"
-"PO-Revision-Date: 2016-10-10 17:13+0100\n"
+"PO-Revision-Date: 2023-07-24 11:14+0200\n"
 "Last-Translator: Stefan Asserhäll <[email protected]>\n"
 "Language-Team: Swedish <[email protected]>\n"
 "Language: sv\n"
@@ -15,7 +15,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 2.0\n"
+"X-Generator: Lokalize 20.08.1\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -107,19 +107,16 @@
 #: colord-kcm/DeviceDescription.cpp:185
 #, kde-format
 msgid "You can use 'displaycal' to calibrate this device"
-msgstr ""
+msgstr "Det går inte att använda 'displaycal' för att kalibrera enheten"
 
 #: colord-kcm/DeviceDescription.cpp:194 colord-kcm/DeviceDescription.cpp:199
-#, fuzzy, kde-format
-#| msgid ""
-#| "The measuring instrument is not detected. Please check it is turned on "
-#| "and correctly connected."
+#, kde-format
 msgid ""
 "The measuring instrument for calibrating is not detected. Please check it is "
 "turned on and correctly connected."
 msgstr ""
-"Mätinstrumentet kunde inte detekteras. Kontrollera att det är påslaget och 
"
-"riktigt anslutet."
+"Mätinstrumentet för kalibrering kunde inte detekteras. Kontrollera att det "
+"är påslaget och riktigt anslutet."
 
 #: colord-kcm/DeviceDescription.cpp:218
 #, kde-format
@@ -127,10 +124,9 @@
 msgstr "Mätinstrumentet stöder inte profilering av skrivare."
 
 #: colord-kcm/DeviceDescription.cpp:222
-#, fuzzy, kde-format
-#| msgid "The device type is not currently supported."
+#, kde-format
 msgid "The device type is not currently supported for calibrating."
-msgstr "Enhetstypen stöds för närvarande inte."
+msgstr "Enhetstypen stöds för närvarande inte för kalibrering."
 
 #: colord-kcm/DeviceModel.cpp:250
 #, kde-format
@@ -430,7 +426,7 @@
 #: icc-importer/main.cpp:126
 #, kde-format
 msgid "import"
-msgstr ""
+msgstr "Importera"
 
 #: icc-importer/main.cpp:139
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colord-kde-23.04.3/po/tr/colord-kde.po 
new/colord-kde-23.08.0/po/tr/colord-kde.po
--- old/colord-kde-23.04.3/po/tr/colord-kde.po  2023-07-04 06:57:57.000000000 
+0200
+++ new/colord-kde-23.08.0/po/tr/colord-kde.po  2023-08-16 22:26:12.000000000 
+0200
@@ -87,7 +87,7 @@
 #, kde-format
 msgctxt "colorspace"
 msgid "RGB"
-msgstr "KYM"
+msgstr "RGB"
 
 #: colord-kcm/DeviceDescription.cpp:159 colord-kcm/Profile.cpp:211
 #, kde-format
@@ -134,7 +134,7 @@
 #, kde-format
 msgctxt "colorspace"
 msgid "Default RGB"
-msgstr "Öntanımlı KYM"
+msgstr "Öntanımlı RGB"
 
 #: colord-kcm/DeviceModel.cpp:252
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colord-kde-23.04.3/po/zh_CN/colord-kde.po 
new/colord-kde-23.08.0/po/zh_CN/colord-kde.po
--- old/colord-kde-23.04.3/po/zh_CN/colord-kde.po       2023-07-04 
06:57:57.000000000 +0200
+++ new/colord-kde-23.08.0/po/zh_CN/colord-kde.po       2023-08-16 
22:26:12.000000000 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-12-10 00:43+0000\n"
-"PO-Revision-Date: 2023-07-03 11:41\n"
+"PO-Revision-Date: 2023-08-02 12:45\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"

Reply via email to