diff -pruN 24.12.3-1/.gitignore 25.08.1-0ubuntu1/.gitignore
--- 24.12.3-1/.gitignore	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/.gitignore	2025-08-21 03:31:35.000000000 +0000
@@ -29,3 +29,4 @@ compile_commands.json
 __pycache__
 Testing/
 /.vscode/
+.qtcreator/
diff -pruN 24.12.3-1/.gitlab-ci.yml 25.08.1-0ubuntu1/.gitlab-ci.yml
--- 24.12.3-1/.gitlab-ci.yml	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/.gitlab-ci.yml	2025-08-21 03:31:35.000000000 +0000
@@ -1,11 +1,14 @@
-# SPDX-FileCopyrightText: 2020-2024 Laurent Montel <montel@kde.org>
+# SPDX-FileCopyrightText: 2020-2025 Laurent Montel <montel@kde.org>
 # SPDX-License-Identifier: CC0-1.0
 
 include:
   - project: sysadmin/ci-utilities
     file:
       - /gitlab-templates/linux-qt6.yml
+      - /gitlab-templates/linux-qt6-next.yml
       - /gitlab-templates/json-validation.yml
       - /gitlab-templates/freebsd-qt6.yml
       - /gitlab-templates/windows-qt6.yml
       - /gitlab-templates/cppcheck.yml
+      - /gitlab-templates/xml-lint.yml
+      - /gitlab-templates/yaml-lint.yml
diff -pruN 24.12.3-1/.kde-ci.yml 25.08.1-0ubuntu1/.kde-ci.yml
--- 24.12.3-1/.kde-ci.yml	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/.kde-ci.yml	2025-08-21 03:31:35.000000000 +0000
@@ -2,12 +2,13 @@
 # SPDX-License-Identifier: CC0-1.0
 
 Dependencies:
-- 'on': ['Linux', 'FreeBSD', 'Windows']
-  'require':
+ - 'on': ['Linux', 'FreeBSD', 'Windows']
+   'require':
     'frameworks/extra-cmake-modules': '@latest-kf6'
-    'frameworks/kcontacts' : '@latest-kf6'
-    'frameworks/kcalendarcore' : '@latest-kf6'
-    'frameworks/kwallet' : '@latest-kf6'
+    'frameworks/kcontacts': '@latest-kf6'
+    'frameworks/kcalendarcore': '@latest-kf6'
+    'frameworks/kwallet': '@latest-kf6'
 
 Options:
-  require-passing-tests-on: [ 'Linux', 'FreeBSD' ]
+ require-passing-tests-on: ['Linux', 'FreeBSD']
+ allow-failing-tests-on: ['Windows']
diff -pruN 24.12.3-1/CMakeLists.txt 25.08.1-0ubuntu1/CMakeLists.txt
--- 24.12.3-1/CMakeLists.txt	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/CMakeLists.txt	2025-08-21 03:31:35.000000000 +0000
@@ -1,13 +1,13 @@
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "6.3.3")
+set(PIM_VERSION "6.5.1")
 
 set(KGAPI_LIB_VERSION ${PIM_VERSION})
 
 project(kgapi VERSION ${KGAPI_LIB_VERSION})
 
 # ECM setup
-set(KF_MIN_VERSION "6.6.0")
-set(QT_REQUIRED_VERSION "6.7.0")
+set(KF_MIN_VERSION "6.14.0")
+set(QT_REQUIRED_VERSION "6.8.0")
 find_package(ECM ${KF_MIN_VERSION} CONFIG REQUIRED)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
 
@@ -23,7 +23,6 @@ include(ECMFeatureSummary)
 
 include(ECMPoQmTools)
 include(ECMSetupVersion)
-include(FeatureSummary)
 include(KDEGitCommitHooks)
 include(KDEClangFormat)
 include(ECMAddQch)
@@ -66,7 +65,7 @@ ecm_setup_version(PROJECT
 
 
 add_definitions(-DQT_NO_CONTEXTLESS_CONNECT)
-ecm_set_disabled_deprecation_versions(QT 6.8.0 KF 6.8.0)
+ecm_set_disabled_deprecation_versions(QT 6.10.0 KF 6.16.0)
 
 
 option(USE_UNITY_CMAKE_SUPPORT "Use UNITY cmake support (speedup compile time)" OFF)
diff -pruN 24.12.3-1/CMakePresets.json 25.08.1-0ubuntu1/CMakePresets.json
--- 24.12.3-1/CMakePresets.json	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/CMakePresets.json	2025-08-21 03:31:35.000000000 +0000
@@ -40,7 +40,7 @@
             "displayName": "Build with Asan support.",
             "cacheVariables": {
                 "CMAKE_BUILD_TYPE": "Debug",
-                "ECM_ENABLE_SANITIZERS" : "'address;undefined'"
+                "ECM_ENABLE_SANITIZERS": "'address;undefined'"
             },
             "inherits": [
                 "base"
@@ -120,18 +120,6 @@
             ]
         },
         {
-            "name": "pch",
-            "displayName": "pch",
-            "cacheVariables": {
-                "CMAKE_BUILD_TYPE": "Debug",
-                "USE_PRECOMPILED_HEADERS": "ON",
-                "BUILD_COVERAGE": "ON"
-            },
-            "inherits": [
-                "base"
-            ]
-        },
-        {
             "name": "ftime-trace",
             "displayName": "ftime-trace",
             "cacheVariables": {
@@ -158,7 +146,7 @@
         {
             "name": "ftime-trace",
             "configurePreset": "ftime-trace"
-        },	
+        },
         {
             "name": "dev-mold",
             "configurePreset": "dev-mold"
@@ -168,10 +156,6 @@
             "configurePreset": "dev-clang"
         },
         {
-            "name": "pch",
-            "configurePreset": "pch"
-        },
-        {
             "name": "release",
             "configurePreset": "release"
         },
@@ -191,35 +175,55 @@
             "name": "clazy",
             "configurePreset": "clazy",
             "environment": {
-                "CLAZY_CHECKS" : "level0,level1,detaching-member,ifndef-define-typo,isempty-vs-count,qrequiredresult-candidates,reserve-candidates,signal-with-return-value,unneeded-cast,function-args-by-ref,function-args-by-value,returning-void-expression,no-ctor-missing-parent-argument,isempty-vs-count,qhash-with-char-pointer-key,raw-environment-function,qproperty-type-mismatch,old-style-connect,qstring-allocations,container-inside-loop,heap-allocated-small-trivial-type,inefficient-qlist,qstring-varargs,level2,detaching-member,heap-allocated-small-trivial-type,isempty-vs-count,qstring-varargs,qvariant-template-instantiation,raw-environment-function,reserve-candidates,signal-with-return-value,thread-with-slots,no-ctor-missing-parent-argument,no-missing-typeinfo",
-                "CCACHE_DISABLE" : "ON"
+                "CLAZY_CHECKS": "level0,level1,detaching-member,ifndef-define-typo,isempty-vs-count,qrequiredresult-candidates,reserve-candidates,signal-with-return-value,unneeded-cast,function-args-by-ref,function-args-by-value,returning-void-expression,no-ctor-missing-parent-argument,isempty-vs-count,qhash-with-char-pointer-key,raw-environment-function,qproperty-type-mismatch,old-style-connect,qstring-allocations,container-inside-loop,heap-allocated-small-trivial-type,inefficient-qlist,qstring-varargs,level2,detaching-member,heap-allocated-small-trivial-type,isempty-vs-count,qstring-varargs,qvariant-template-instantiation,raw-environment-function,reserve-candidates,signal-with-return-value,thread-with-slots,no-ctor-missing-parent-argument,no-missing-typeinfo",
+                "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}
-    }
-  ]
+        {
+            "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 -pruN 24.12.3-1/CMakePresets.json.license 25.08.1-0ubuntu1/CMakePresets.json.license
--- 24.12.3-1/CMakePresets.json.license	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/CMakePresets.json.license	2025-08-21 03:31:35.000000000 +0000
@@ -1,2 +1,2 @@
-# SPDX-FileCopyrightText: 2021-2024 Laurent Montel <montel@kde.org>
+# SPDX-FileCopyrightText: 2021-2025 Laurent Montel <montel@kde.org>
 # SPDX-License-Identifier: BSD-3-Clause
diff -pruN 24.12.3-1/debian/changelog 25.08.1-0ubuntu1/debian/changelog
--- 24.12.3-1/debian/changelog	2025-03-29 17:47:42.000000000 +0000
+++ 25.08.1-0ubuntu1/debian/changelog	2025-09-11 05:58:38.000000000 +0000
@@ -1,10 +1,56 @@
-libkgapi (24.12.3-1) unstable; urgency=medium
+libkgapi (25.08.1-0ubuntu1) questing; urgency=medium
 
-  [ Patrick Franz ]
-  * New upstream release (24.12.3).
-  * Bump Standards-Version to 4.7.2 (No changes needed).
+  * New upstream release (25.08.1)
 
- -- Patrick Franz <deltaone@debian.org>  Sat, 29 Mar 2025 18:47:42 +0100
+ -- Rik Mills <rikmills@kde.org>  Thu, 11 Sep 2025 06:58:38 +0100
+
+libkgapi (25.08.0-0ubuntu1) questing; urgency=medium
+
+  * New upstream release (25.08.0)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 14 Aug 2025 11:33:52 +0100
+
+libkgapi (25.07.90-0ubuntu1) questing; urgency=medium
+
+  * New upstream (RC) release (25.07.90)
+
+ -- Rik Mills <rikmills@kde.org>  Fri, 25 Jul 2025 17:59:41 +0100
+
+libkgapi (25.07.80-0ubuntu1) questing; urgency=medium
+
+  * New upstream (beta) release (25.07.80)
+
+ -- Rik Mills <rikmills@kde.org>  Mon, 14 Jul 2025 06:44:36 +0100
+
+libkgapi (25.04.3-0ubuntu1) questing; urgency=medium
+
+  * New upstream release (25.04.3)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 03 Jul 2025 07:54:54 +0100
+
+libkgapi (25.04.2-0ubuntu1) questing; urgency=medium
+
+  * New upstream release (25.04.2)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 05 Jun 2025 11:59:48 +0100
+
+libkgapi (25.04.1-0ubuntu1) questing; urgency=medium
+
+  * New upstream release (25.04.1)
+
+ -- Rik Mills <rikmills@kde.org>  Wed, 07 May 2025 22:17:03 +0100
+
+libkgapi (25.04.0-0ubuntu1) questing; urgency=medium
+
+  * New upstream release (25.04.0)
+
+ -- Rik Mills <rikmills@kde.org>  Wed, 30 Apr 2025 20:02:04 +0100
+
+libkgapi (24.12.3-0ubuntu1) plucky; urgency=medium
+
+  * New upstream release.
+
+ -- Simon Quigley <tsimonq2@ubuntu.com>  Sat, 15 Mar 2025 14:15:31 -0500
 
 libkgapi (24.12.2-1) unstable; urgency=medium
 
diff -pruN 24.12.3-1/debian/control 25.08.1-0ubuntu1/debian/control
--- 24.12.3-1/debian/control	2025-03-29 08:42:08.000000000 +0000
+++ 25.08.1-0ubuntu1/debian/control	2025-09-11 05:58:38.000000000 +0000
@@ -1,12 +1,13 @@
 Source: libkgapi
 Section: libs
 Priority: optional
-Maintainer: Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
+Maintainer: Kubuntu Developers <kubuntu-devel@lists.ubuntu.com>
+XSBC-Original-Maintainer: Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
 Uploaders: Sandro Knauß <hefee@debian.org>, Patrick Franz <deltaone@debian.org>,
-Build-Depends: debhelper-compat (= 13),
+Build-Depends: cmake (>= 3.16~),
+               debhelper-compat (= 13),
                dh-sequence-kf6,
                dh-sequence-pkgkde-symbolshelper,
-               cmake (>= 3.16~),
                extra-cmake-modules (>= 6.6.0~),
                libkf6calendarcore-dev (>= 6.6.0~),
                libkf6contacts-dev (>= 6.6.0~),
@@ -16,10 +17,10 @@ Build-Depends: debhelper-compat (= 13),
                qt6-base-dev (>= 6.7.0~),
                xauth,
                xvfb,
-Standards-Version: 4.7.2
+Standards-Version: 4.7.0
 Homepage: https://invent.kde.org/pim/libkgapi
-Vcs-Git: https://salsa.debian.org/qt-kde-team/kde/libkgapi.git
-Vcs-Browser: https://salsa.debian.org/qt-kde-team/kde/libkgapi
+Vcs-Git: https://git.launchpad.net/~kubuntu-packagers/kubuntu-packaging/+git/libkgapi
+Vcs-Browser: https://code.launchpad.net/~kubuntu-packagers/kubuntu-packaging/+git/libkgapi
 Rules-Requires-Root: no
 
 Package: libkgapi-data
diff -pruN 24.12.3-1/metainfo.yaml 25.08.1-0ubuntu1/metainfo.yaml
--- 24.12.3-1/metainfo.yaml	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/metainfo.yaml	2025-08-21 03:31:35.000000000 +0000
@@ -7,14 +7,14 @@ portingAid: false
 deprecated: false
 release: false
 libraries:
- - cmake: "KPim::GAPICore"
- - cmake: "KPim::GAPIBlogger"
- - cmake: "KPim::GAPICalendar"
- - cmake: "KPim::GAPIContacts"
- - cmake: "KPim::GAPIDrive"
- - cmake: "KPim::GAPILatitude"
- - cmake: "KPim::GAPIStaticMaps"
- - cmake: "KPim::GAPITasks"
+    - cmake: "KPim::GAPICore"
+    - cmake: "KPim::GAPIBlogger"
+    - cmake: "KPim::GAPICalendar"
+    - cmake: "KPim::GAPIContacts"
+    - cmake: "KPim::GAPIDrive"
+    - cmake: "KPim::GAPILatitude"
+    - cmake: "KPim::GAPIStaticMaps"
+    - cmake: "KPim::GAPITasks"
 cmakename: KPimGAPI
 
 public_lib: true
diff -pruN 24.12.3-1/poqm/ar/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/ar/libkgapi6_qt.po
--- 24.12.3-1/poqm/ar/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/ar/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -1,15 +1,15 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
-#
 # Abdalrahim G. Fakhouri <abdilra7eem@yahoo.com>, 2014.
 # Safa Alfulaij <safa1996alfulaij@gmail.com>, 2016, 2018.
-# Zayed Al-Saidi <zayed.alsaidi@gmail.com>, 2021, 2023.
+# SPDX-FileCopyrightText: 2021, 2023, 2025 Zayed Al-Saidi <zayed.alsaidi@gmail.com>
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n"
 "POT-Creation-Date: 2014-08-23 01:46+0000\n"
-"PO-Revision-Date: 2023-03-16 09:53+0400\n"
+"PO-Revision-Date: 2025-08-20 20:50+0400\n"
 "Last-Translator: Zayed Al-Saidi <zayed.alsaidi@gmail.com>\n"
 "Language-Team: ar\n"
 "Language: ar\n"
@@ -18,6 +18,7 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
 "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
+"X-Generator: Lokalize 23.08.5\n"
 "X-Qt-Contexts: true\n"
 
 #: src/blogger/blogfetchjob.cpp:82
@@ -100,7 +101,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "نوع محتوى الرّدّ غير صالح"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "نوع محتوى الرّدّ غير صالح"
@@ -212,7 +213,7 @@ msgid ""
 "\n"
 "Google replied '%1'"
 msgstr ""
-"خطأ داخليّ في الخادوم. أعِد المحاولة لاحقًا.\n"
+"خطأ داخليّ في الخادم. أعِد المحاولة لاحقًا.\n"
 "\n"
 "ردّ «غوغل» بِ‍’%1‘"
 
@@ -249,7 +250,7 @@ msgstr "خطأ في جلب الرّدّ:
 #: src/core/private/fullauthenticationjob.cpp:61
 msgctxt "KGAPI2::FullAuthenticationJob|"
 msgid "Authentication successful"
-msgstr "نجحت المصادقة"
+msgstr "نجح استيثاق"
 
 #: src/core/private/fullauthenticationjob.cpp:62
 msgctxt "KGAPI2::FullAuthenticationJob|"
@@ -279,12 +280,12 @@ msgstr "لا نطاقات لاستيثا
 #: src/core/private/fullauthenticationjob.cpp:202
 msgctxt "KGAPI2::FullAuthenticationJob|"
 msgid "Could not start OAuth HTTP server"
-msgstr "تعذّر بدء خادوم HTTP لِ‍ OAuth"
+msgstr "تعذّر بدء خادم HTTP لِ‍ OAuth"
 
 #: src/core/private/newtokensfetchjob.cpp:115
 msgctxt "KGAPI2::NewTokensFetchJob|"
 msgid "Failed to parse server response."
-msgstr "فشل تحليل ردّ الخادوم."
+msgstr "فشل تحليل ردّ الخادم."
 
 #: src/core/private/refreshtokensjob.cpp:92
 msgctxt "KGAPI2::RefreshTokensJob|"
diff -pruN 24.12.3-1/poqm/ast/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/ast/libkgapi6_qt.po
--- 24.12.3-1/poqm/ast/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/ast/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -93,7 +93,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr ""
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr ""
diff -pruN 24.12.3-1/poqm/bs/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/bs/libkgapi6_qt.po
--- 24.12.3-1/poqm/bs/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/bs/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -133,7 +133,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Neispravan tip sadržaja odgovor a"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 #, fuzzy
 #| msgid "Invalid response content type"
 msgctxt "KGAPI2::EventFetchJob|"
diff -pruN 24.12.3-1/poqm/ca/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/ca/libkgapi6_qt.po
--- 24.12.3-1/poqm/ca/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/ca/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -101,7 +101,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Tipus no vàlid del contingut de la resposta"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Tipus no vàlid del contingut de la resposta"
diff -pruN 24.12.3-1/poqm/ca@valencia/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/ca@valencia/libkgapi6_qt.po
--- 24.12.3-1/poqm/ca@valencia/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/ca@valencia/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -101,7 +101,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Tipus no vàlid del contingut de la resposta"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Tipus no vàlid del contingut de la resposta"
diff -pruN 24.12.3-1/poqm/cs/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/cs/libkgapi6_qt.po
--- 24.12.3-1/poqm/cs/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/cs/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -100,7 +100,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Neplatný typ obsahu odpovědi"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Neplatný typ obsahu odpovědi"
diff -pruN 24.12.3-1/poqm/da/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/da/libkgapi6_qt.po
--- 24.12.3-1/poqm/da/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/da/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -98,7 +98,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Ugyldig type af svarindhold"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Ugyldig type af svarindhold"
diff -pruN 24.12.3-1/poqm/de/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/de/libkgapi6_qt.po
--- 24.12.3-1/poqm/de/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/de/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -97,7 +97,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Antwort mit ungültigem Inhaltstyp"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Antwort mit ungültigem Inhaltstyp"
diff -pruN 24.12.3-1/poqm/el/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/el/libkgapi6_qt.po
--- 24.12.3-1/poqm/el/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/el/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -99,7 +99,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Μη έγκυρος τύπος περιεχομένου απόκρισης"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Μη έγκυρος τύπος περιεχομένου απόκρισης"
diff -pruN 24.12.3-1/poqm/en_GB/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/en_GB/libkgapi6_qt.po
--- 24.12.3-1/poqm/en_GB/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/en_GB/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -98,7 +98,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Invalid response content type"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Invalid response content type"
diff -pruN 24.12.3-1/poqm/eo/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/eo/libkgapi6_qt.po
--- 24.12.3-1/poqm/eo/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/eo/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -99,7 +99,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Nevalida responda enhavo-tipo"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Nevalida responda enhavo-tipo"
diff -pruN 24.12.3-1/poqm/es/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/es/libkgapi6_qt.po
--- 24.12.3-1/poqm/es/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/es/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -99,7 +99,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Tipo de contenido de respuesta no válido"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Tipo de contenido de respuesta no válido"
diff -pruN 24.12.3-1/poqm/et/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/et/libkgapi6_qt.po
--- 24.12.3-1/poqm/et/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/et/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -98,7 +98,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Vigane vastuse sisu tüüp"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Vigane vastuse sisu tüüp"
diff -pruN 24.12.3-1/poqm/eu/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/eu/libkgapi6_qt.po
--- 24.12.3-1/poqm/eu/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/eu/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -99,7 +99,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Erantzunaren eduki-mota baliogabea"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Erantzunaren eduki-mota baliogabea"
diff -pruN 24.12.3-1/poqm/fi/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/fi/libkgapi6_qt.po
--- 24.12.3-1/poqm/fi/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/fi/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -118,7 +118,7 @@ msgid "Invalid response content type"
 msgstr "Virheellinen vastaussisältötyyppi"
 
 # TARKISTA onko toi yhdyssana hankala?
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Virheellinen vastaussisältötyyppi"
diff -pruN 24.12.3-1/poqm/fr/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/fr/libkgapi6_qt.po
--- 24.12.3-1/poqm/fr/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/fr/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -108,7 +108,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Type de contenu non valable pour la réponse."
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Type de contenu non valable pour la réponse."
diff -pruN 24.12.3-1/poqm/ga/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/ga/libkgapi6_qt.po
--- 24.12.3-1/poqm/ga/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/ga/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -98,7 +98,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr ""
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr ""
diff -pruN 24.12.3-1/poqm/gl/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/gl/libkgapi6_qt.po
--- 24.12.3-1/poqm/gl/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/gl/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -101,7 +101,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Tipo de contido da resposta incorrecto"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Tipo de contido da resposta incorrecto"
diff -pruN 24.12.3-1/poqm/he/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/he/libkgapi6_qt.po
--- 24.12.3-1/poqm/he/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/he/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -94,7 +94,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "סוג תוכן תגובה שגוי"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "סוג תוכן תגובה שגוי"
diff -pruN 24.12.3-1/poqm/hi/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/hi/libkgapi6_qt.po
--- 24.12.3-1/poqm/hi/libkgapi6_qt.po	1970-01-01 00:00:00.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/hi/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -0,0 +1,488 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: libkgapi6_qt\n"
+"PO-Revision-Date: 2024-12-15 17:36+0530\n"
+"Last-Translator: Kali <EMAIL@ADDRESS>\n"
+"Language-Team: Hindi <fedora-trans-hi@redhat.com>\n"
+"Language: hi\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"
+
+#: src/blogger/blogfetchjob.cpp:82
+msgctxt "KGAPI2::Blogger::BlogFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/blogger/commentapprovejob.cpp:79
+msgctxt "KGAPI2::Blogger::CommentApproveJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/blogger/commentdeletecontentjob.cpp:69
+msgctxt "KGAPI2::Blogger::CommentDeleteContentJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/blogger/commentfetchjob.cpp:154
+msgctxt "KGAPI2::Blogger::CommentFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/blogger/pagecreatejob.cpp:59
+msgctxt "KGAPI2::Blogger::PageCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/blogger/pagefetchjob.cpp:109
+msgctxt "KGAPI2::Blogger::PageFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/blogger/pagemodifyjob.cpp:58
+msgctxt "KGAPI2::Blogger::PageModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/blogger/postcreatejob.cpp:67
+msgctxt "KGAPI2::Blogger::PostCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/blogger/postfetchjob.cpp:186
+msgctxt "KGAPI2::Blogger::PostFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/blogger/postmodifyjob.cpp:58
+msgctxt "KGAPI2::Blogger::PostModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/blogger/postpublishjob.cpp:105
+msgctxt "KGAPI2::Blogger::PostPublishJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/blogger/postsearchjob.cpp:85
+msgctxt "KGAPI2::Blogger::PostSearchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/calendar/calendarcreatejob.cpp:66
+msgctxt "KGAPI2::CalendarCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/calendar/calendarfetchjob.cpp:70
+msgctxt "KGAPI2::CalendarFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/calendar/calendarmodifyjob.cpp:63
+msgctxt "KGAPI2::CalendarModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/calendar/eventcreatejob.cpp:92
+msgctxt "KGAPI2::EventCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/calendar/eventfetchjob.cpp:201
+msgctxt "KGAPI2::EventFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/calendar/eventmodifyjob.cpp:80
+msgctxt "KGAPI2::EventModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/calendar/eventmovejob.cpp:112
+msgctxt "KGAPI2::EventMoveJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/calendar/freebusyqueryjob.cpp:96
+msgctxt "KGAPI2::FreeBusyQueryJob|"
+msgid "FreeBusy information is not available"
+msgstr "FreeBusy जानकारी उपलब्ध नहीं है"
+
+#: src/calendar/freebusyqueryjob.cpp:107
+msgctxt "KGAPI2::FreeBusyQueryJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/core/accountinfo/accountinfofetchjob.cpp:60
+msgctxt "KGAPI2::AccountInfoFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/core/accountmanager.cpp:94
+msgctxt "KGAPI2::AccountManager|"
+msgid "Failed to authenticate additional scopes"
+msgstr "अतिरिक्त स्कोप प्रमाणित करने में विफल"
+
+#: src/core/accountmanager.cpp:210 src/core/accountmanager.cpp:249
+#: src/core/accountmanager.cpp:272
+msgctxt "KGAPI2::AccountManager|"
+msgid "Failed to open account store"
+msgstr "खाता स्टोर खोलने में विफल"
+
+#: src/core/authjob.cpp:105
+msgctxt "KGAPI2::AuthJob|"
+msgid "Account name is empty"
+msgstr "खाता नाम रिक्त है"
+
+#: src/core/job.cpp:191
+msgctxt "KGAPI2::Job|"
+msgid "Bad request."
+msgstr "खराब अनुरोध।"
+
+#: src/core/job.cpp:201
+msgctxt "KGAPI2::Job|"
+msgid "Invalid authentication."
+msgstr "अमान्य प्रमाणीकरण."
+
+#: src/core/job.cpp:212
+#, qt-format
+msgctxt "KGAPI2::Job|"
+msgid ""
+"Requested resource is forbidden.\n"
+"\n"
+"Google replied '%1'"
+msgstr ""
+"अनुरोधित संसाधन निषिद्ध है।\n"
+"\n"
+"Google ने उत्तर दिया '%1'"
+
+#: src/core/job.cpp:223
+#, qt-format
+msgctxt "KGAPI2::Job|"
+msgid ""
+"Requested resource does not exist.\n"
+"\n"
+"Google replied '%1'"
+msgstr ""
+"अनुरोधित संसाधन मौजूद नहीं है।\n"
+"\n"
+"Google ने उत्तर दिया '%1'"
+
+#: src/core/job.cpp:234
+#, qt-format
+msgctxt "KGAPI2::Job|"
+msgid ""
+"Conflict. Remote resource is newer than local.\n"
+"\n"
+"Google replied '%1'"
+msgstr ""
+"संघर्ष। दूरस्थ संसाधन स्थानीय संसाधन से नया है।\n"
+"\n"
+"Google ने उत्तर दिया '%1'"
+
+#: src/core/job.cpp:245
+#, qt-format
+msgctxt "KGAPI2::Job|"
+msgid ""
+"Requested resource does not exist anymore.\n"
+"\n"
+"Google replied '%1'"
+msgstr ""
+"अनुरोधित संसाधन अब मौजूद नहीं है।\n"
+"\n"
+"Google ने उत्तर दिया '%1'"
+
+#: src/core/job.cpp:256
+#, qt-format
+msgctxt "KGAPI2::Job|"
+msgid ""
+"Internal server error. Try again later.\n"
+"\n"
+"Google replied '%1'"
+msgstr ""
+"आंतरिक सर्वर त्रुटि। बाद में पुनः प्रयास करें।\n"
+"\n"
+"Google ने उत्तर दिया '%1'"
+
+#: src/core/job.cpp:275
+#, qt-format
+msgctxt "KGAPI2::Job|"
+msgid ""
+"Maximum quota exceeded. Try again later.\n"
+"\n"
+"Google replied '%1'"
+msgstr ""
+"अधिकतम कोटा पार हो गया। बाद में पुनः प्रयास करें।\n"
+"\n"
+"Google ने उत्तर दिया '%1'"
+
+#: src/core/job.cpp:299
+#, qt-format
+msgctxt "KGAPI2::Job|"
+msgid ""
+"Unknown error.\n"
+"\n"
+"Google replied '%1'"
+msgstr ""
+"अज्ञात त्रुटि.\n"
+"\n"
+"Google ने उत्तर दिया '%1'"
+
+#: src/core/private/fullauthenticationjob.cpp:54
+#, qt-format
+msgctxt "KGAPI2::FullAuthenticationJob|"
+msgid "Error receiving response: %1"
+msgstr "प्रतिक्रिया प्राप्त करने में त्रुटि: %1"
+
+#: src/core/private/fullauthenticationjob.cpp:61
+msgctxt "KGAPI2::FullAuthenticationJob|"
+msgid "Authentication successful"
+msgstr "प्रमाणीकरण सफल"
+
+#: src/core/private/fullauthenticationjob.cpp:62
+msgctxt "KGAPI2::FullAuthenticationJob|"
+msgid "You can close this tab and return to the application now."
+msgstr "अब आप इस टैब को बंद कर सकते हैं और एप्लिकेशन पर वापस आ सकते हैं।"
+
+#: src/core/private/fullauthenticationjob.cpp:77
+msgctxt "KGAPI2::FullAuthenticationJob|"
+msgid "Token response invalid"
+msgstr "टोकन प्रतिक्रिया अमान्य"
+
+#: src/core/private/fullauthenticationjob.cpp:92
+msgctxt "KGAPI2::FullAuthenticationJob|"
+msgid "Could not extract token from HTTP answer"
+msgstr "HTTP उत्तर से टोकन निकाला नहीं जा सका"
+
+#: src/core/private/fullauthenticationjob.cpp:185
+msgctxt "KGAPI2::FullAuthenticationJob|"
+msgid "Invalid account"
+msgstr "अवैध खाता"
+
+#: src/core/private/fullauthenticationjob.cpp:189
+msgctxt "KGAPI2::FullAuthenticationJob|"
+msgid "No scopes to authenticate for"
+msgstr "प्रमाणीकृत करने के लिए कोई गुंजाइश नहीं"
+
+#: src/core/private/fullauthenticationjob.cpp:202
+msgctxt "KGAPI2::FullAuthenticationJob|"
+msgid "Could not start OAuth HTTP server"
+msgstr "OAuth HTTP सर्वर प्रारंभ नहीं किया जा सका"
+
+#: src/core/private/newtokensfetchjob.cpp:115
+msgctxt "KGAPI2::NewTokensFetchJob|"
+msgid "Failed to parse server response."
+msgstr "सर्वर प्रतिक्रिया पार्स करने में विफल."
+
+#: src/core/private/refreshtokensjob.cpp:92
+msgctxt "KGAPI2::RefreshTokensJob|"
+msgid "Failed to parse newly fetched tokens"
+msgstr "नए प्राप्त टोकन को पार्स करने में विफल"
+
+#: src/drive/aboutfetchjob.cpp:119
+msgctxt "KGAPI2::Drive::AboutFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/drive/appfetchjob.cpp:71
+msgctxt "KGAPI2::Drive::AppFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/drive/changefetchjob.cpp:187
+msgctxt "KGAPI2::Drive::ChangeFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/drive/childreferencecreatejob.cpp:123
+msgctxt "KGAPI2::Drive::ChildReferenceCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/drive/childreferencefetchjob.cpp:85
+msgctxt "KGAPI2::Drive::ChildReferenceFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/drive/drivescreatejob.cpp:103
+msgctxt "KGAPI2::Drive::DrivesCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/drive/drivesfetchjob.cpp:154
+msgctxt "KGAPI2::Drive::DrivesFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/drive/driveshidejob.cpp:88
+msgctxt "KGAPI2::Drive::DrivesHideJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/drive/drivesmodifyjob.cpp:112
+msgctxt "KGAPI2::Drive::DrivesModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/drive/fileabstractmodifyjob.cpp:118
+msgctxt "KGAPI2::Drive::FileAbstractModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/drive/fileabstractresumablejob.cpp:313
+msgctxt "KGAPI2::Drive::FileAbstractResumableJob|"
+msgid "Failed opening upload session"
+msgstr "अपलोड सत्र खोलने में विफल"
+
+#: src/drive/fileabstractresumablejob.cpp:342
+msgctxt "KGAPI2::Drive::FileAbstractResumableJob|"
+msgid "Failed uploading chunk"
+msgstr "खंड अपलोड करने में विफल"
+
+#: src/drive/fileabstractresumablejob.cpp:363
+msgctxt "KGAPI2::Drive::FileAbstractResumableJob|"
+msgid "Failed completing upload session"
+msgstr "अपलोड सत्र पूरा करने में विफल"
+
+#: src/drive/fileabstractuploadjob.cpp:282
+msgctxt "KGAPI2::Drive::FileAbstractUploadJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/drive/filecopyjob.cpp:121
+msgctxt "KGAPI2::Drive::FileCopyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/drive/filefetchjob.cpp:252
+msgctxt "KGAPI2::Drive::FileFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/drive/parentreferencecreatejob.cpp:123
+msgctxt "KGAPI2::Drive::ParentReferenceCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/drive/parentreferencefetchjob.cpp:74
+msgctxt "KGAPI2::Drive::ParentReferenceFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/drive/permissioncreatejob.cpp:156
+msgctxt "KGAPI2::Drive::PermissionCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/drive/permissionfetchjob.cpp:129
+msgctxt "KGAPI2::Drive::PermissionFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/drive/permissionmodifyjob.cpp:158
+msgctxt "KGAPI2::Drive::PermissionModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/drive/revisionfetchjob.cpp:73
+msgctxt "KGAPI2::Drive::RevisionFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/drive/revisionmodifyjob.cpp:89
+msgctxt "KGAPI2::Drive::RevisionModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/drive/teamdrivecreatejob.cpp:103
+msgctxt "KGAPI2::Drive::TeamdriveCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/drive/teamdrivefetchjob.cpp:155
+msgctxt "KGAPI2::Drive::TeamdriveFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/drive/teamdrivemodifyjob.cpp:83
+msgctxt "KGAPI2::Drive::TeamdriveModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/latitude/locationcreatejob.cpp:80
+msgctxt "KGAPI2::LocationCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/latitude/locationfetchhistoryjob.cpp:128
+msgctxt "KGAPI2::LocationFetchHistoryJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/latitude/locationfetchjob.cpp:88
+msgctxt "KGAPI2::LocationFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/people/contactgroupcreatejob.cpp:93
+msgctxt "KGAPI2::People::ContactGroupCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/people/contactgroupmodifyjob.cpp:91
+msgctxt "KGAPI2::People::ContactGroupModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/people/personcreatejob.cpp:89
+msgctxt "KGAPI2::People::PersonCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/people/personmodifyjob.cpp:104
+msgctxt "KGAPI2::People::PersonModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/people/personphotodeletejob.cpp:87
+msgctxt "KGAPI2::People::PersonPhotoDeleteJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/people/personphotoupdatejob.cpp:97
+msgctxt "KGAPI2::People::PersonPhotoUpdateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/tasks/taskcreatejob.cpp:118
+msgctxt "KGAPI2::TaskCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/tasks/taskfetchjob.cpp:216
+msgctxt "KGAPI2::TaskFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/tasks/tasklistcreatejob.cpp:73
+msgctxt "KGAPI2::TaskListCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/tasks/tasklistfetchjob.cpp:71
+msgctxt "KGAPI2::TaskListFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/tasks/tasklistmodifyjob.cpp:73
+msgctxt "KGAPI2::TaskListModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
+
+#: src/tasks/taskmodifyjob.cpp:75
+msgctxt "KGAPI2::TaskModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्य प्रतिक्रिया सामग्री प्रकार"
diff -pruN 24.12.3-1/poqm/hu/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/hu/libkgapi6_qt.po
--- 24.12.3-1/poqm/hu/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/hu/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -100,7 +100,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Érvénytelen tartalomtípus a válaszban"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Érvénytelen tartalomtípus a válaszban"
diff -pruN 24.12.3-1/poqm/ia/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/ia/libkgapi6_qt.po
--- 24.12.3-1/poqm/ia/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/ia/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -93,7 +93,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Invalide typo de contento de responsa"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Invalide typo de contento de responsa"
diff -pruN 24.12.3-1/poqm/it/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/it/libkgapi6_qt.po
--- 24.12.3-1/poqm/it/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/it/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -97,7 +97,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Tipo di contenuto di risposta non valido"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Tipo di contenuto di risposta non valido"
diff -pruN 24.12.3-1/poqm/ja/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/ja/libkgapi6_qt.po
--- 24.12.3-1/poqm/ja/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/ja/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -95,7 +95,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr ""
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr ""
diff -pruN 24.12.3-1/poqm/ka/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/ka/libkgapi6_qt.po
--- 24.12.3-1/poqm/ka/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/ka/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -93,7 +93,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "პასუხის შემცველობის არასწორი ტიპი"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "პასუხის შემცველობის არასწორი ტიპი"
diff -pruN 24.12.3-1/poqm/kk/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/kk/libkgapi6_qt.po
--- 24.12.3-1/poqm/kk/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/kk/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -130,7 +130,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Жауап мазмұнын түрі беймәлім."
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 #, fuzzy
 #| msgid "Unknown reply content type."
 msgctxt "KGAPI2::EventFetchJob|"
diff -pruN 24.12.3-1/poqm/km/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/km/libkgapi6_qt.po
--- 24.12.3-1/poqm/km/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/km/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -132,7 +132,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "មិន​ស្គាល់​ប្រភេទ​មាតិកា​ឆ្លើយតប !"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 #, fuzzy
 #| msgid "Unknown reply content type!"
 msgctxt "KGAPI2::EventFetchJob|"
diff -pruN 24.12.3-1/poqm/ko/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/ko/libkgapi6_qt.po
--- 24.12.3-1/poqm/ko/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/ko/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -98,7 +98,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "잘못된 응답 내용 형식"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "잘못된 응답 내용 형식"
diff -pruN 24.12.3-1/poqm/lt/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/lt/libkgapi6_qt.po
--- 24.12.3-1/poqm/lt/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/lt/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -102,7 +102,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr ""
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr ""
diff -pruN 24.12.3-1/poqm/lv/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/lv/libkgapi6_qt.po
--- 24.12.3-1/poqm/lv/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/lv/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -94,7 +94,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Nederīgs atbildes satura tips"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Nederīgs atbildes satura tips"
diff -pruN 24.12.3-1/poqm/mr/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/mr/libkgapi6_qt.po
--- 24.12.3-1/poqm/mr/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/mr/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -98,7 +98,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr ""
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr ""
diff -pruN 24.12.3-1/poqm/nb/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/nb/libkgapi6_qt.po
--- 24.12.3-1/poqm/nb/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/nb/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -100,7 +100,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr ""
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr ""
diff -pruN 24.12.3-1/poqm/nds/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/nds/libkgapi6_qt.po
--- 24.12.3-1/poqm/nds/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/nds/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -132,7 +132,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Leeg Antwoort-Inholttyp"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 #, fuzzy
 #| msgid "Invalid response content type"
 msgctxt "KGAPI2::EventFetchJob|"
diff -pruN 24.12.3-1/poqm/nl/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/nl/libkgapi6_qt.po
--- 24.12.3-1/poqm/nl/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/nl/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -93,7 +93,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Ongeldig type inhoud van antwoord"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Ongeldig type inhoud van antwoord"
diff -pruN 24.12.3-1/poqm/nn/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/nn/libkgapi6_qt.po
--- 24.12.3-1/poqm/nn/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/nn/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -98,7 +98,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Ugyldig innhaldstype på svar"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Ugyldig innhaldstype på svar"
diff -pruN 24.12.3-1/poqm/pl/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/pl/libkgapi6_qt.po
--- 24.12.3-1/poqm/pl/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/pl/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -98,7 +98,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Nieznany rodzaj treści odpowiedzi"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Nieznany rodzaj treści odpowiedzi"
diff -pruN 24.12.3-1/poqm/pt/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/pt/libkgapi6_qt.po
--- 24.12.3-1/poqm/pt/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/pt/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -99,7 +99,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Tipo de conteúdo da resposta inválido"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Tipo de conteúdo da resposta inválido"
diff -pruN 24.12.3-1/poqm/pt_BR/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/pt_BR/libkgapi6_qt.po
--- 24.12.3-1/poqm/pt_BR/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/pt_BR/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -100,7 +100,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Tipo de conteúdo de resposta inválido"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Tipo de conteúdo de resposta inválido"
diff -pruN 24.12.3-1/poqm/ro/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/ro/libkgapi6_qt.po
--- 24.12.3-1/poqm/ro/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/ro/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -99,7 +99,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Tip de conținut nevalid al răspunsului"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Tip de conținut nevalid al răspunsului"
diff -pruN 24.12.3-1/poqm/ru/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/ru/libkgapi6_qt.po
--- 24.12.3-1/poqm/ru/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/ru/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -105,7 +105,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Неизвестный тип содержимого ответа"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Неизвестный тип содержимого ответа"
diff -pruN 24.12.3-1/poqm/sa/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/sa/libkgapi6_qt.po
--- 24.12.3-1/poqm/sa/libkgapi6_qt.po	1970-01-01 00:00:00.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/sa/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -0,0 +1,488 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: libkgapi6_qt\n"
+"PO-Revision-Date: 2024-12-13 19:09+0530\n"
+"Last-Translator: Kali <EMAIL@ADDRESS>\n"
+"Language-Team: Sanskrit <kde-i18n-doc@kde.org>\n"
+"Language: sa\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"
+
+#: src/blogger/blogfetchjob.cpp:82
+msgctxt "KGAPI2::Blogger::BlogFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/blogger/commentapprovejob.cpp:79
+msgctxt "KGAPI2::Blogger::CommentApproveJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/blogger/commentdeletecontentjob.cpp:69
+msgctxt "KGAPI2::Blogger::CommentDeleteContentJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/blogger/commentfetchjob.cpp:154
+msgctxt "KGAPI2::Blogger::CommentFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/blogger/pagecreatejob.cpp:59
+msgctxt "KGAPI2::Blogger::PageCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/blogger/pagefetchjob.cpp:109
+msgctxt "KGAPI2::Blogger::PageFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/blogger/pagemodifyjob.cpp:58
+msgctxt "KGAPI2::Blogger::PageModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/blogger/postcreatejob.cpp:67
+msgctxt "KGAPI2::Blogger::PostCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/blogger/postfetchjob.cpp:186
+msgctxt "KGAPI2::Blogger::PostFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/blogger/postmodifyjob.cpp:58
+msgctxt "KGAPI2::Blogger::PostModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/blogger/postpublishjob.cpp:105
+msgctxt "KGAPI2::Blogger::PostPublishJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/blogger/postsearchjob.cpp:85
+msgctxt "KGAPI2::Blogger::PostSearchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/calendar/calendarcreatejob.cpp:66
+msgctxt "KGAPI2::CalendarCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/calendar/calendarfetchjob.cpp:70
+msgctxt "KGAPI2::CalendarFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/calendar/calendarmodifyjob.cpp:63
+msgctxt "KGAPI2::CalendarModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/calendar/eventcreatejob.cpp:92
+msgctxt "KGAPI2::EventCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/calendar/eventfetchjob.cpp:201
+msgctxt "KGAPI2::EventFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/calendar/eventmodifyjob.cpp:80
+msgctxt "KGAPI2::EventModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/calendar/eventmovejob.cpp:112
+msgctxt "KGAPI2::EventMoveJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/calendar/freebusyqueryjob.cpp:96
+msgctxt "KGAPI2::FreeBusyQueryJob|"
+msgid "FreeBusy information is not available"
+msgstr "FreeBusy सूचना उपलब्धा नास्ति"
+
+#: src/calendar/freebusyqueryjob.cpp:107
+msgctxt "KGAPI2::FreeBusyQueryJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/core/accountinfo/accountinfofetchjob.cpp:60
+msgctxt "KGAPI2::AccountInfoFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/core/accountmanager.cpp:94
+msgctxt "KGAPI2::AccountManager|"
+msgid "Failed to authenticate additional scopes"
+msgstr "अतिरिक्तव्याप्तिप्रमाणीकरणे असफलम्"
+
+#: src/core/accountmanager.cpp:210 src/core/accountmanager.cpp:249
+#: src/core/accountmanager.cpp:272
+msgctxt "KGAPI2::AccountManager|"
+msgid "Failed to open account store"
+msgstr "खाताभण्डारं उद्घाटयितुं असफलम्"
+
+#: src/core/authjob.cpp:105
+msgctxt "KGAPI2::AuthJob|"
+msgid "Account name is empty"
+msgstr "खातानाम रिक्तम् अस्ति"
+
+#: src/core/job.cpp:191
+msgctxt "KGAPI2::Job|"
+msgid "Bad request."
+msgstr "दुष्टानुरोधः।"
+
+#: src/core/job.cpp:201
+msgctxt "KGAPI2::Job|"
+msgid "Invalid authentication."
+msgstr "अमान्य प्रमाणीकरणम् ।"
+
+#: src/core/job.cpp:212
+#, qt-format
+msgctxt "KGAPI2::Job|"
+msgid ""
+"Requested resource is forbidden.\n"
+"\n"
+"Google replied '%1'"
+msgstr ""
+"याचितं संसाधनं निषिद्धम् अस्ति।\n"
+"\n"
+"गूगलः '%1' इति उत्तरं दत्तवान् ।"
+
+#: src/core/job.cpp:223
+#, qt-format
+msgctxt "KGAPI2::Job|"
+msgid ""
+"Requested resource does not exist.\n"
+"\n"
+"Google replied '%1'"
+msgstr ""
+"अनुरोधितः संसाधनः नास्ति ।\n"
+"\n"
+"गूगलः '%1' इति उत्तरं दत्तवान् ।"
+
+#: src/core/job.cpp:234
+#, qt-format
+msgctxt "KGAPI2::Job|"
+msgid ""
+"Conflict. Remote resource is newer than local.\n"
+"\n"
+"Google replied '%1'"
+msgstr ""
+"द्वंद। दूरस्थः संसाधनः स्थानीयापेक्षया नूतनः अस्ति ।\n"
+"\n"
+"गूगलः '%1' इति उत्तरं दत्तवान् ।"
+
+#: src/core/job.cpp:245
+#, qt-format
+msgctxt "KGAPI2::Job|"
+msgid ""
+"Requested resource does not exist anymore.\n"
+"\n"
+"Google replied '%1'"
+msgstr ""
+"अनुरोधितः संसाधनः अधुना नास्ति ।\n"
+"\n"
+"गूगलः '%1' इति उत्तरं दत्तवान् ।"
+
+#: src/core/job.cpp:256
+#, qt-format
+msgctxt "KGAPI2::Job|"
+msgid ""
+"Internal server error. Try again later.\n"
+"\n"
+"Google replied '%1'"
+msgstr ""
+"आन्तरिकसर्वरदोषः। पश्चात् पुनः प्रयासं कुर्वन्तु।\n"
+"\n"
+"गूगलः '%1' इति उत्तरं दत्तवान् ।"
+
+#: src/core/job.cpp:275
+#, qt-format
+msgctxt "KGAPI2::Job|"
+msgid ""
+"Maximum quota exceeded. Try again later.\n"
+"\n"
+"Google replied '%1'"
+msgstr ""
+"अधिकतमं कोटा अतिक्रान्तम्। पश्चात् पुनः प्रयासं कुर्वन्तु।\n"
+"\n"
+"गूगलः '%1' इति उत्तरं दत्तवान् ।"
+
+#: src/core/job.cpp:299
+#, qt-format
+msgctxt "KGAPI2::Job|"
+msgid ""
+"Unknown error.\n"
+"\n"
+"Google replied '%1'"
+msgstr ""
+"अज्ञातदोषः ।\n"
+"\n"
+"गूगलः '%1' इति उत्तरं दत्तवान् ।"
+
+#: src/core/private/fullauthenticationjob.cpp:54
+#, qt-format
+msgctxt "KGAPI2::FullAuthenticationJob|"
+msgid "Error receiving response: %1"
+msgstr "प्रतिक्रियां प्राप्य त्रुटिः: %1"
+
+#: src/core/private/fullauthenticationjob.cpp:61
+msgctxt "KGAPI2::FullAuthenticationJob|"
+msgid "Authentication successful"
+msgstr "प्रमाणीकरणं सफलम्"
+
+#: src/core/private/fullauthenticationjob.cpp:62
+msgctxt "KGAPI2::FullAuthenticationJob|"
+msgid "You can close this tab and return to the application now."
+msgstr "भवान् एतत् ट्याब् पिधाय इदानीं अनुप्रयोगं प्रति प्रत्यागन्तुं शक्नोति ।"
+
+#: src/core/private/fullauthenticationjob.cpp:77
+msgctxt "KGAPI2::FullAuthenticationJob|"
+msgid "Token response invalid"
+msgstr "टोकन प्रतिक्रिया अमान्य"
+
+#: src/core/private/fullauthenticationjob.cpp:92
+msgctxt "KGAPI2::FullAuthenticationJob|"
+msgid "Could not extract token from HTTP answer"
+msgstr "HTTP उत्तरात् टोकनं निष्कासयितुं न शक्तवान्"
+
+#: src/core/private/fullauthenticationjob.cpp:185
+msgctxt "KGAPI2::FullAuthenticationJob|"
+msgid "Invalid account"
+msgstr "अमान्य खाता"
+
+#: src/core/private/fullauthenticationjob.cpp:189
+msgctxt "KGAPI2::FullAuthenticationJob|"
+msgid "No scopes to authenticate for"
+msgstr "प्रमाणीकरणार्थं व्याप्तिः नास्ति"
+
+#: src/core/private/fullauthenticationjob.cpp:202
+msgctxt "KGAPI2::FullAuthenticationJob|"
+msgid "Could not start OAuth HTTP server"
+msgstr "OAuth HTTP सर्वरं आरभुं न शक्तवान्"
+
+#: src/core/private/newtokensfetchjob.cpp:115
+msgctxt "KGAPI2::NewTokensFetchJob|"
+msgid "Failed to parse server response."
+msgstr "सर्वरप्रतिक्रियायाः विश्लेषणं कर्तुं असफलम्।"
+
+#: src/core/private/refreshtokensjob.cpp:92
+msgctxt "KGAPI2::RefreshTokensJob|"
+msgid "Failed to parse newly fetched tokens"
+msgstr "नवनीतानां टोकनानाम् विश्लेषणं कर्तुं असफलम्"
+
+#: src/drive/aboutfetchjob.cpp:119
+msgctxt "KGAPI2::Drive::AboutFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/drive/appfetchjob.cpp:71
+msgctxt "KGAPI2::Drive::AppFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/drive/changefetchjob.cpp:187
+msgctxt "KGAPI2::Drive::ChangeFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/drive/childreferencecreatejob.cpp:123
+msgctxt "KGAPI2::Drive::ChildReferenceCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/drive/childreferencefetchjob.cpp:85
+msgctxt "KGAPI2::Drive::ChildReferenceFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/drive/drivescreatejob.cpp:103
+msgctxt "KGAPI2::Drive::DrivesCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/drive/drivesfetchjob.cpp:154
+msgctxt "KGAPI2::Drive::DrivesFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/drive/driveshidejob.cpp:88
+msgctxt "KGAPI2::Drive::DrivesHideJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/drive/drivesmodifyjob.cpp:112
+msgctxt "KGAPI2::Drive::DrivesModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/drive/fileabstractmodifyjob.cpp:118
+msgctxt "KGAPI2::Drive::FileAbstractModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/drive/fileabstractresumablejob.cpp:313
+msgctxt "KGAPI2::Drive::FileAbstractResumableJob|"
+msgid "Failed opening upload session"
+msgstr "अपलोड् सत्रं उद्घाटयितुं असफलम्"
+
+#: src/drive/fileabstractresumablejob.cpp:342
+msgctxt "KGAPI2::Drive::FileAbstractResumableJob|"
+msgid "Failed uploading chunk"
+msgstr "खण्डं अपलोड् कर्तुं असफलम्"
+
+#: src/drive/fileabstractresumablejob.cpp:363
+msgctxt "KGAPI2::Drive::FileAbstractResumableJob|"
+msgid "Failed completing upload session"
+msgstr "अपलोड् सत्रं सम्पन्नं कर्तुं असफलम्"
+
+#: src/drive/fileabstractuploadjob.cpp:282
+msgctxt "KGAPI2::Drive::FileAbstractUploadJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/drive/filecopyjob.cpp:121
+msgctxt "KGAPI2::Drive::FileCopyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/drive/filefetchjob.cpp:252
+msgctxt "KGAPI2::Drive::FileFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/drive/parentreferencecreatejob.cpp:123
+msgctxt "KGAPI2::Drive::ParentReferenceCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/drive/parentreferencefetchjob.cpp:74
+msgctxt "KGAPI2::Drive::ParentReferenceFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/drive/permissioncreatejob.cpp:156
+msgctxt "KGAPI2::Drive::PermissionCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/drive/permissionfetchjob.cpp:129
+msgctxt "KGAPI2::Drive::PermissionFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/drive/permissionmodifyjob.cpp:158
+msgctxt "KGAPI2::Drive::PermissionModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/drive/revisionfetchjob.cpp:73
+msgctxt "KGAPI2::Drive::RevisionFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/drive/revisionmodifyjob.cpp:89
+msgctxt "KGAPI2::Drive::RevisionModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/drive/teamdrivecreatejob.cpp:103
+msgctxt "KGAPI2::Drive::TeamdriveCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/drive/teamdrivefetchjob.cpp:155
+msgctxt "KGAPI2::Drive::TeamdriveFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/drive/teamdrivemodifyjob.cpp:83
+msgctxt "KGAPI2::Drive::TeamdriveModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/latitude/locationcreatejob.cpp:80
+msgctxt "KGAPI2::LocationCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/latitude/locationfetchhistoryjob.cpp:128
+msgctxt "KGAPI2::LocationFetchHistoryJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/latitude/locationfetchjob.cpp:88
+msgctxt "KGAPI2::LocationFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/people/contactgroupcreatejob.cpp:93
+msgctxt "KGAPI2::People::ContactGroupCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/people/contactgroupmodifyjob.cpp:91
+msgctxt "KGAPI2::People::ContactGroupModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/people/personcreatejob.cpp:89
+msgctxt "KGAPI2::People::PersonCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/people/personmodifyjob.cpp:104
+msgctxt "KGAPI2::People::PersonModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/people/personphotodeletejob.cpp:87
+msgctxt "KGAPI2::People::PersonPhotoDeleteJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/people/personphotoupdatejob.cpp:97
+msgctxt "KGAPI2::People::PersonPhotoUpdateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/tasks/taskcreatejob.cpp:118
+msgctxt "KGAPI2::TaskCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/tasks/taskfetchjob.cpp:216
+msgctxt "KGAPI2::TaskFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/tasks/tasklistcreatejob.cpp:73
+msgctxt "KGAPI2::TaskListCreateJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/tasks/tasklistfetchjob.cpp:71
+msgctxt "KGAPI2::TaskListFetchJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/tasks/tasklistmodifyjob.cpp:73
+msgctxt "KGAPI2::TaskListModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
+
+#: src/tasks/taskmodifyjob.cpp:75
+msgctxt "KGAPI2::TaskModifyJob|"
+msgid "Invalid response content type"
+msgstr "अमान्यप्रतिक्रियासामग्रीप्रकारः"
diff -pruN 24.12.3-1/poqm/sk/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/sk/libkgapi6_qt.po
--- 24.12.3-1/poqm/sk/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/sk/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -97,7 +97,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Neznámy typ obsahu odpovede"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Neznámy typ obsahu odpovede"
diff -pruN 24.12.3-1/poqm/sl/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/sl/libkgapi6_qt.po
--- 24.12.3-1/poqm/sl/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/sl/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -102,7 +102,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Neveljavna vrsta vsebine odgovora"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Neveljavna vrsta vsebine odgovora"
diff -pruN 24.12.3-1/poqm/sr/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/sr/libkgapi6_qt.po
--- 24.12.3-1/poqm/sr/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/sr/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -97,7 +97,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Лош тип садржаја одзива"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Лош тип садржаја одзива"
diff -pruN 24.12.3-1/poqm/sr@ijekavian/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/sr@ijekavian/libkgapi6_qt.po
--- 24.12.3-1/poqm/sr@ijekavian/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/sr@ijekavian/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -97,7 +97,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Лош тип садржаја одзива"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Лош тип садржаја одзива"
diff -pruN 24.12.3-1/poqm/sr@ijekavianlatin/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/sr@ijekavianlatin/libkgapi6_qt.po
--- 24.12.3-1/poqm/sr@ijekavianlatin/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/sr@ijekavianlatin/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -97,7 +97,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Loš tip sadržaja odziva"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Loš tip sadržaja odziva"
diff -pruN 24.12.3-1/poqm/sr@latin/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/sr@latin/libkgapi6_qt.po
--- 24.12.3-1/poqm/sr@latin/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/sr@latin/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -97,7 +97,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Loš tip sadržaja odziva"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Loš tip sadržaja odziva"
diff -pruN 24.12.3-1/poqm/sv/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/sv/libkgapi6_qt.po
--- 24.12.3-1/poqm/sv/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/sv/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -93,7 +93,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Ogiltig typ av svarsinnehåll"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Ogiltig typ av svarsinnehåll"
diff -pruN 24.12.3-1/poqm/ta/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/ta/libkgapi6_qt.po
--- 24.12.3-1/poqm/ta/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/ta/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -93,7 +93,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr ""
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr ""
diff -pruN 24.12.3-1/poqm/tr/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/tr/libkgapi6_qt.po
--- 24.12.3-1/poqm/tr/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/tr/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -3,13 +3,13 @@
 #
 # Translators:
 # Volkan Gezer <volkangezer@gmail.com>, 2013-2014.
-# SPDX-FileCopyrightText: 2022, 2023, 2024 Emir SARI <emir_sari@icloud.com>
+# SPDX-FileCopyrightText: 2022, 2023, 2024, 2025 Emir SARI <emir_sari@icloud.com>
 msgid ""
 msgstr ""
 "Project-Id-Version: extragear-libs-kde4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n"
 "POT-Creation-Date: 2014-08-23 01:46+0000\n"
-"PO-Revision-Date: 2024-09-23 15:08+0300\n"
+"PO-Revision-Date: 2025-03-18 14:55+0300\n"
 "Last-Translator: Emir SARI <emir_sari@icloud.com>\n"
 "Language-Team: Turkish <kde-l10n-tr@kde.org>\n"
 "Language: tr\n"
@@ -18,7 +18,7 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 "X-Qt-Contexts: true\n"
-"X-Generator: Lokalize 24.11.70\n"
+"X-Generator: Lokalize 25.07.70\n"
 
 #: src/blogger/blogfetchjob.cpp:82
 msgctxt "KGAPI2::Blogger::BlogFetchJob|"
@@ -100,7 +100,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Geçersiz yanıt içerik türü"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Geçersiz yanıt içerik türü"
@@ -164,7 +164,7 @@ msgid ""
 "\n"
 "Google replied '%1'"
 msgstr ""
-"İstenen kaynak yasaklanmıştır.\n"
+"İstenen özkaynak yasaklanmıştır.\n"
 "\n"
 "Google şu şekilde yanıtladı: “%1”"
 
@@ -176,7 +176,7 @@ msgid ""
 "\n"
 "Google replied '%1'"
 msgstr ""
-"İstenen kaynak yok.\n"
+"İstenen özkaynak yok.\n"
 "\n"
 "Google şu şekilde yanıtladı: “%1”"
 
@@ -188,7 +188,7 @@ msgid ""
 "\n"
 "Google replied '%1'"
 msgstr ""
-"Çakışma. Uzaktaki kaynak yereldekinden daha yeni.\n"
+"Çakışma. Uzaktaki özkaynak yereldekinden daha yeni.\n"
 "\n"
 "Google şu şekilde yanıtladı: “%1”"
 
@@ -200,7 +200,7 @@ msgid ""
 "\n"
 "Google replied '%1'"
 msgstr ""
-"İstenen kaynak artık yok.\n"
+"İstenen özkaynak artık yok.\n"
 "\n"
 "Google şu şekilde yanıtladı: “%1”"
 
@@ -224,7 +224,7 @@ msgid ""
 "\n"
 "Google replied '%1'"
 msgstr ""
-"Azami kullanıcı kotası aşıldı. Daha sonra yeniden deneyin.\n"
+"En yüksek kullanıcı kotası aşıldı. Daha sonra yeniden deneyin.\n"
 "\n"
 "Google şu şekilde yanıtladı: “%1”"
 
diff -pruN 24.12.3-1/poqm/ug/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/ug/libkgapi6_qt.po
--- 24.12.3-1/poqm/ug/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/ug/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -98,7 +98,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr ""
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr ""
diff -pruN 24.12.3-1/poqm/uk/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/uk/libkgapi6_qt.po
--- 24.12.3-1/poqm/uk/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/uk/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -102,7 +102,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "Некоректний тип вмісту відповіді"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "Некоректний тип вмісту відповіді"
diff -pruN 24.12.3-1/poqm/zh_CN/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/zh_CN/libkgapi6_qt.po
--- 24.12.3-1/poqm/zh_CN/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/zh_CN/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -95,7 +95,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "无效的响应内容类型"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "无效的响应内容类型"
diff -pruN 24.12.3-1/poqm/zh_TW/libkgapi6_qt.po 25.08.1-0ubuntu1/poqm/zh_TW/libkgapi6_qt.po
--- 24.12.3-1/poqm/zh_TW/libkgapi6_qt.po	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/poqm/zh_TW/libkgapi6_qt.po	2025-08-21 03:31:35.000000000 +0000
@@ -100,7 +100,7 @@ msgctxt "KGAPI2::EventCreateJob|"
 msgid "Invalid response content type"
 msgstr "回覆內容型態無效"
 
-#: src/calendar/eventfetchjob.cpp:203
+#: src/calendar/eventfetchjob.cpp:201
 msgctxt "KGAPI2::EventFetchJob|"
 msgid "Invalid response content type"
 msgstr "回覆內容型態無效"
diff -pruN 24.12.3-1/sanitizers.supp 25.08.1-0ubuntu1/sanitizers.supp
--- 24.12.3-1/sanitizers.supp	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/sanitizers.supp	2025-08-21 03:31:35.000000000 +0000
@@ -1,4 +1,4 @@
-# SPDX-FileCopyrightText: 2021-2024 Laurent Montel <montel@kde.org>
+# SPDX-FileCopyrightText: 2021-2025 Laurent Montel <montel@kde.org>
 # SPDX-License-Identifier: CC0-1.0
 # Suppression file for ASAN/LSAN
 
diff -pruN 24.12.3-1/src/calendar/calendarservice.cpp 25.08.1-0ubuntu1/src/calendar/calendarservice.cpp
--- 24.12.3-1/src/calendar/calendarservice.cpp	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/src/calendar/calendarservice.cpp	2025-08-21 03:31:35.000000000 +0000
@@ -9,7 +9,6 @@
 #include "calendarservice.h"
 #include "calendar.h"
 #include "debug.h"
-#include "event.h"
 #include "reminder.h"
 #include "utils.h"
 
diff -pruN 24.12.3-1/src/calendar/eventfetchjob.cpp 25.08.1-0ubuntu1/src/calendar/eventfetchjob.cpp
--- 24.12.3-1/src/calendar/eventfetchjob.cpp	2025-03-03 03:20:17.000000000 +0000
+++ 25.08.1-0ubuntu1/src/calendar/eventfetchjob.cpp	2025-08-21 03:31:35.000000000 +0000
@@ -10,8 +10,6 @@
 #include "account.h"
 #include "calendarservice.h"
 #include "debug.h"
-#include "event.h"
-#include "fetchjob.h"
 #include "types.h"
 #include "utils.h"
 
