Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package akonadi-notes for openSUSE:Factory 
checked in at 2024-08-26 22:03:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/akonadi-notes (Old)
 and      /work/SRC/openSUSE:Factory/.akonadi-notes.new.2698 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "akonadi-notes"

Mon Aug 26 22:03:36 2024 rev:96 rq:1195304 version:24.08.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/akonadi-notes/akonadi-notes.changes      
2024-07-05 19:50:38.501188200 +0200
+++ /work/SRC/openSUSE:Factory/.akonadi-notes.new.2698/akonadi-notes.changes    
2024-08-26 22:03:46.729848199 +0200
@@ -1,0 +2,14 @@
+Mon Aug 19 07:13:03 UTC 2024 - Christophe Marin <[email protected]>
+
+- Update to 24.08.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/gear/24.08.0/
+- Changes since 24.05.2:
+  * Port away from KMime::ContentTransferEncoding::setDecoded
+  * fix some cmakelint warning
+  * Fix reuse lint
+  * Add build-ftime support
+  * It compiles fine without deprecated kf methods
+
+-------------------------------------------------------------------

Old:
----
  akonadi-notes-24.05.2.tar.xz
  akonadi-notes-24.05.2.tar.xz.sig

New:
----
  akonadi-notes-24.08.0.tar.xz
  akonadi-notes-24.08.0.tar.xz.sig

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

Other differences:
------------------
++++++ akonadi-notes.spec ++++++
--- /var/tmp/diff_new_pack.H67xpa/_old  2024-08-26 22:03:47.457878617 +0200
+++ /var/tmp/diff_new_pack.H67xpa/_new  2024-08-26 22:03:47.461878783 +0200
@@ -16,13 +16,13 @@
 #
 
 
-%define kf6_version 6.0.0
+%define kf6_version 6.3.0
 %define qt6_version 6.6.0
-%define kpim6_version 6.1.2
+%define kpim6_version 6.2.0
 
 %bcond_without released
 Name:           akonadi-notes
-Version:        24.05.2
+Version:        24.08.0
 Release:        0
 Summary:        Library to implement management of notes in Akonadi
 License:        LGPL-2.1-or-later

++++++ akonadi-notes-24.05.2.tar.xz -> akonadi-notes-24.08.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/.gitlab-ci.yml 
new/akonadi-notes-24.08.0/.gitlab-ci.yml
--- old/akonadi-notes-24.05.2/.gitlab-ci.yml    2024-06-15 17:25:22.000000000 
+0200
+++ new/akonadi-notes-24.08.0/.gitlab-ci.yml    2024-08-16 07:00:01.000000000 
+0200
@@ -8,3 +8,4 @@
       - /gitlab-templates/freebsd-qt6.yml
       - /gitlab-templates/windows-qt6.yml
       - /gitlab-templates/reuse-lint.yml
+      - /gitlab-templates/cppcheck.yml
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/CMakeLists.txt 
new/akonadi-notes-24.08.0/CMakeLists.txt
--- old/akonadi-notes-24.05.2/CMakeLists.txt    2024-06-15 17:25:22.000000000 
+0200
+++ new/akonadi-notes-24.08.0/CMakeLists.txt    2024-08-16 07:00:01.000000000 
+0200
@@ -1,12 +1,12 @@
 # SPDX-FileCopyrightText: none
 # SPDX-License-Identifier: BSD-3-Clause
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "6.1.2")
+set(PIM_VERSION "6.2.0")
 
 project(Akonadi-Notes VERSION ${PIM_VERSION})
 
 # ECM setup
-set(KF_MIN_VERSION "6.0.0")
+set(KF_MIN_VERSION "6.3.0")
 set(QT_REQUIRED_VERSION "6.6.0")
 find_package(ECM ${KF_MIN_VERSION} CONFIG REQUIRED)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
@@ -35,8 +35,8 @@
 
 set(AKONADI_NOTES_VERSION ${PIM_VERSION})
 
-set(KMIMELIB_VERSION "6.1.2")
-set(AKONADI_VERSION "6.1.2")
+set(KMIMELIB_VERSION "6.1.90")
+set(AKONADI_VERSION "6.1.90")
 
 ecm_setup_version(PROJECT VARIABLE_PREFIX AKONADINOTES
     VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/akonadi-notes_version.h"
@@ -54,19 +54,19 @@
 option(USE_UNITY_CMAKE_SUPPORT "Use UNITY cmake support (speedup compile 
time)" OFF)
 
 set(COMPILE_WITH_UNITY_CMAKE_SUPPORT OFF)
-if (USE_UNITY_CMAKE_SUPPORT)
+if(USE_UNITY_CMAKE_SUPPORT)
     set(COMPILE_WITH_UNITY_CMAKE_SUPPORT ON)
 endif()
 
 add_definitions(-DTRANSLATION_DOMAIN=\"akonadinotes6\")
 
 add_definitions(-DQT_NO_CONTEXTLESS_CONNECT)
-ecm_set_disabled_deprecation_versions(QT 6.7.0 KF 6.1.0)
+ecm_set_disabled_deprecation_versions(QT 6.7.2 KF 6.4.0)
 
 set(CMAKECONFIG_INSTALL_DIR "${KDE_INSTALL_CMAKEPACKAGEDIR}/KPim6AkonadiNotes")
 
 add_subdirectory(src)
-if (BUILD_TESTING)
+if(BUILD_TESTING)
     add_subdirectory(autotests)
 endif()
 ########### CMake Config Files ###########
@@ -79,7 +79,7 @@
 kde_configure_git_pre_commit_hook(CHECKS CLANG_FORMAT)
 ki18n_install(po)
 
-if (BUILD_QCH)
+if(BUILD_QCH)
     ecm_install_qch_export(
         TARGETS KPim6AkonadiNotes_QCH
         FILE KPim6AkonadiNotesQchTargets.cmake
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/CMakePresets.json 
new/akonadi-notes-24.08.0/CMakePresets.json
--- old/akonadi-notes-24.05.2/CMakePresets.json 2024-06-15 17:25:22.000000000 
+0200
+++ new/akonadi-notes-24.08.0/CMakePresets.json 2024-08-16 07:00:01.000000000 
+0200
@@ -130,6 +130,24 @@
             "inherits": [
                 "base"
             ]
+        },
+        {
+            "name": "ftime-trace",
+            "displayName": "ftime-trace",
+            "cacheVariables": {
+                "CMAKE_BUILD_TYPE": "Debug",
+                "USE_DEVELOPER_MODE": "ON",
+                "CMAKE_C_FLAGS_INIT": "-ftime-trace",
+                "CMAKE_CXX_FLAGS_INIT": "-ftime-trace"
+            },
+            "environment": {
+                "CC": "/usr/bin/clang",
+                "CXX": "/usr/bin/clang++",
+                "CCACHE_DISABLE": "ON"
+            },
+            "inherits": [
+                "base"
+            ]
         }
     ],
     "buildPresets": [
@@ -138,6 +156,10 @@
             "configurePreset": "dev"
         },
         {
+            "name": "ftime-trace",
+            "configurePreset": "ftime-trace"
+        },     
+        {
             "name": "dev-mold",
             "configurePreset": "dev-mold"
         },
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/autotests/notestest.cpp 
new/akonadi-notes-24.08.0/autotests/notestest.cpp
--- old/akonadi-notes-24.05.2/autotests/notestest.cpp   2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/autotests/notestest.cpp   2024-08-16 
07:00:01.000000000 +0200
@@ -10,7 +10,7 @@
 #include <QHash>
 #include <QTest>
 
-#include <KMime/KMimeMessage>
+#include <KMime/Message>
 #include <QDateTime>
 #include <QTimeZone>
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/ar/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/ar/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/ar/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/ar/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2014-09-12 14:20+0300\n"
 "Last-Translator: Safa Alfulaij <[email protected]>\n"
 "Language-Team: Arabic <[email protected]>\n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
 "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/ast/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/ast/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/ast/akonadinotes6.po   2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/ast/akonadinotes6.po   2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: akonadi-notes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2022-12-03 22:50+0100\n"
 "Last-Translator: Enol P. <[email protected]>\n"
 "Language-Team: \n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 22.08.3\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/az/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/az/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/az/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/az/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: akonadi-notes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2020-06-18 23:45+0400\n"
 "Last-Translator: Xəyyam Qocayev <[email protected]>\n"
 "Language-Team: Azerbaijani <[email protected]>\n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Lokalize 20.04.1\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/bg/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/bg/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/bg/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/bg/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: akonadi-notes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2021-01-06 18:21+0200\n"
 "Last-Translator: Yasen Pramatarov <[email protected]>\n"
 "Language-Team: Bulgarian <[email protected]>\n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 20.08.2\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/bs/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/bs/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/bs/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/bs/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: bosnianuniversetranslation\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2012-10-05 19:44+0000\n"
 "Last-Translator: Samir Ribić <Unknown>\n"
 "Language-Team: Bosnian <[email protected]>\n"
@@ -20,7 +20,7 @@
 "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/ca/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/ca/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/ca/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/ca/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: akonadi-notes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2012-01-07 22:09+0100\n"
 "Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
@@ -20,7 +20,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: &\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/akonadi-notes-24.05.2/po/ca@valencia/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/ca@valencia/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/ca@valencia/akonadinotes6.po   2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/ca@valencia/akonadinotes6.po   2024-08-16 
07:00:01.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: akonadi-notes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2012-01-07 22:09+0100\n"
 "Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
@@ -20,7 +20,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: &\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/cs/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/cs/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/cs/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/cs/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2011-09-08 10:53+0200\n"
 "Last-Translator: Vít Pelčák <[email protected]>\n"
 "Language-Team: Czech <[email protected]>\n"
@@ -17,7 +17,7 @@
 "X-Generator: Lokalize 1.2\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/da/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/da/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/da/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/da/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2011-12-29 19:31+0100\n"
 "Last-Translator: Martin Schlander <[email protected]>\n"
 "Language-Team: Danish <[email protected]>\n"
@@ -17,7 +17,7 @@
 "X-Generator: Lokalize 1.2\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/de/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/de/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/de/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/de/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -3,7 +3,7 @@
 msgstr ""
 "Project-Id-Version: akonadinotes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2011-10-31 23:48+0100\n"
 "Last-Translator: Frederik Schwarzer <[email protected]>\n"
 "Language-Team: German <[email protected]>\n"
@@ -13,7 +13,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/el/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/el/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/el/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/el/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: akonadinotes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2012-10-25 18:28+0300\n"
 "Last-Translator: Stelios <[email protected]>\n"
 "Language-Team: Greek <[email protected]>\n"
@@ -18,7 +18,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 1.4\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/en_GB/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/en_GB/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/en_GB/akonadinotes6.po 2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/en_GB/akonadinotes6.po 2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2014-08-17 13:13+0100\n"
 "Last-Translator: Steve Allewell <[email protected]>\n"
 "Language-Team: British English <[email protected]>\n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/eo/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/eo/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/eo/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/eo/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: akonadi-notes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2023-06-29 23:19+0100\n"
 "Last-Translator: Oliver Kellogg <[email protected]>\n"
 "Language-Team: Esperanto <[email protected]>\n"
@@ -17,7 +17,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/es/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/es/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/es/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/es/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2013-11-25 14:08+0100\n"
 "Last-Translator: Javier Vinal <[email protected]>\n"
 "Language-Team: Spanish <[email protected]>\n"
@@ -17,7 +17,7 @@
 "X-Generator: Lokalize 1.5\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/et/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/et/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/et/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/et/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2011-12-22 04:12+0200\n"
 "Last-Translator: Marek Laane <[email protected]>\n"
 "Language-Team: Estonian <[email protected]>\n"
@@ -17,7 +17,7 @@
 "X-Generator: Lokalize 1.2\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/eu/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/eu/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/eu/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/eu/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: akonadi-notes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2020-08-04 22:51+0200\n"
 "Last-Translator: Iñigo Salvador Azurmendi <[email protected]>\n"
 "Language-Team: Basque <[email protected]>\n"
@@ -20,7 +20,7 @@
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Lokalize 20.04.3\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/fa/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/fa/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/fa/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/fa/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: akonadi-notes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2023-10-04 22:22+0300\n"
 "Last-Translator: Alosra <[email protected]>\n"
 "Language-Team: English <[email protected]>\n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 "X-Generator: Lokalize 23.08.1\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/fi/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/fi/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/fi/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/fi/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: akonadinotes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2013-01-20 20:04:09+0000\n"
 "Last-Translator: Tommi Nieminen <[email protected]>\n"
 "Language-Team: Finnish <[email protected]>\n"
@@ -19,7 +19,7 @@
 "X-POT-Import-Date: 2012-12-01 22:25:16+0000\n"
 "X-Generator: MediaWiki 1.21alpha (963ddae); Translate 2012-11-08\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/fr/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/fr/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/fr/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/fr/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: akonadinotes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2012-04-15 15:54+0200\n"
 "Last-Translator: Joëlle Cornavin <[email protected]>\n"
 "Language-Team: French <[email protected]>\n"
@@ -20,7 +20,7 @@
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/ga/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/ga/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/ga/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/ga/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: akonadinotes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2011-12-28 12:28-0500\n"
 "Last-Translator: Kevin Scannell <[email protected]>\n"
 "Language-Team: Irish <[email protected]>\n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n < 11 ? "
 "3 : 4\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/gl/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/gl/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/gl/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/gl/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2013-01-01 11:28+0100\n"
 "Last-Translator: Marce Villarino <[email protected]>\n"
 "Language-Team: Galician <[email protected]>\n"
@@ -16,7 +16,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/he/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/he/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/he/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/he/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: akonadinotes5\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2017-05-16 07:04-0400\n"
 "Last-Translator: Copied by Zanata <[email protected]>\n"
 "Language-Team: Hebrew <[email protected]>\n"
@@ -19,7 +19,7 @@
 "n % 10 == 0) ? 2 : 3));\n"
 "X-Generator: Zanata 3.9.6\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/hi/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/hi/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/hi/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/hi/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: akonadi-notes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2020-08-20 19:13+0530\n"
 "Last-Translator: Raghavendra Kamath <[email protected]>\n"
 "Language-Team: Kde-hindi\n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=2; plural=(n!=1);\n"
 "X-Generator: Lokalize 20.04.3\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/hsb/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/hsb/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/hsb/akonadinotes6.po   2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/hsb/akonadinotes6.po   2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: akonadi-notes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2021-10-25 17:58+0200\n"
 "Last-Translator: Edward Wornar <[email protected]>\n"
 "Language-Team: Upper Sorbian <[email protected]>\n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
 "%100==4 ? 2 : 3;\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/hu/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/hu/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/hu/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/hu/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2011-10-25 13:03+0200\n"
 "Last-Translator: Kristóf Kiszel <[email protected]>\n"
 "Language-Team: Hungarian <[email protected]>\n"
@@ -17,7 +17,7 @@
 "X-Generator: Lokalize 1.2\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/ia/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/ia/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/ia/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/ia/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2011-11-07 11:28+0100\n"
 "Last-Translator: g.sora <[email protected]>\n"
 "Language-Team: Interlingua <[email protected]>\n"
@@ -17,7 +17,7 @@
 "X-Generator: Lokalize 1.2\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/is/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/is/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/is/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/is/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: akonadi-notes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2023-10-05 14:24+0000\n"
 "Last-Translator: Guðmundur Erlingsson <[email protected]>\n"
 "Language-Team: Icelandic <[email protected]>\n"
@@ -18,7 +18,7 @@
 "Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 23.04.3\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/it/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/it/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/it/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/it/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: akonadinotes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2012-01-12 01:23+0100\n"
 "Last-Translator: Luigi Toscano <[email protected]>\n"
 "Language-Team: Italian <[email protected]>\n"
@@ -17,7 +17,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/ja/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/ja/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/ja/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/ja/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: akonadi-notes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2011-09-10 22:32-0700\n"
 "Last-Translator: Japanese KDE translation team <[email protected]>\n"
 "Language-Team: Japanese <[email protected]>\n"
@@ -14,7 +14,7 @@
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/ka/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/ka/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/ka/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/ka/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: akonadi-notes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2022-05-09 06:53+0200\n"
 "Last-Translator: Temuri Doghonadze <[email protected]>\n"
 "Language-Team: Georgian <[email protected]>\n"
@@ -18,7 +18,7 @@
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Poedit 3.0.1\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/kk/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/kk/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/kk/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/kk/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2011-12-13 02:37+0600\n"
 "Last-Translator: Sairan Kikkarin <[email protected]>\n"
 "Language-Team: Kazakh <[email protected]>\n"
@@ -17,7 +17,7 @@
 "X-Generator: Lokalize 1.1\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/km/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/km/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/km/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/km/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: akonadinotes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2012-06-08 09:39+0700\n"
 "Last-Translator: Khoem Sokhem <[email protected]>\n"
 "Language-Team: Khmer\n"
@@ -18,7 +18,7 @@
 "X-Generator: KBabel 1.11.4\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/ko/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/ko/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/ko/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/ko/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2014-03-03 00:24+0900\n"
 "Last-Translator: Shinjo Park <[email protected]>\n"
 "Language-Team: Korean <[email protected]>\n"
@@ -16,7 +16,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/lt/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/lt/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/lt/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/lt/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: akonadinotes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2011-09-25 12:28+0300\n"
 "Last-Translator: Remigijus Jarmalavičius <[email protected]>\n"
 "Language-Team: Lithuanian <[email protected]>\n"
@@ -20,7 +20,7 @@
 "%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n"
 "X-Generator: Lokalize 1.2\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/lv/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/lv/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/lv/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/lv/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: akonadi-notes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2024-02-12 09:32+0200\n"
 "Last-Translator: Toms TrasÅ«ns <[email protected]>\n"
 "Language-Team: Latvian <[email protected]>\n"
@@ -18,7 +18,7 @@
 "2);\n"
 "X-Generator: Lokalize 23.08.4\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/mr/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/mr/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/mr/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/mr/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2013-03-13 15:18+0530\n"
 "Last-Translator: Chetan Khona <[email protected]>\n"
 "Language-Team: Marathi <[email protected]>\n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=2; plural=(n!=1);\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/nb/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/nb/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/nb/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/nb/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2011-09-10 19:33+0200\n"
 "Last-Translator: Bjørn Steensrud <[email protected]>\n"
 "Language-Team: Norwegian BokmÃ¥l <[email protected]>\n"
@@ -19,7 +19,7 @@
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/nds/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/nds/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/nds/akonadinotes6.po   2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/nds/akonadinotes6.po   2024-08-16 
07:00:01.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: akonadinotes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2011-09-07 22:33+0200\n"
 "Last-Translator: Manfred Wiese <[email protected]>\n"
 "Language-Team: Low Saxon <[email protected]>\n"
@@ -18,7 +18,7 @@
 "X-Generator: Lokalize 1.0\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/nl/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/nl/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/nl/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/nl/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2011-09-12 16:56+0200\n"
 "Last-Translator: Freek de Kruijf <[email protected]>\n"
 "Language-Team: Dutch <[email protected]>\n"
@@ -17,7 +17,7 @@
 "X-Generator: Lokalize 1.2\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/nn/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/nn/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/nn/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/nn/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: akonadi-notes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2020-06-14 13:18+0200\n"
 "Last-Translator: Karl Ove Hufthammer <[email protected]>\n"
 "Language-Team: Norwegian Nynorsk <[email protected]>\n"
@@ -19,7 +19,7 @@
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/pl/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/pl/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/pl/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/pl/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2014-08-16 07:55+0200\n"
 "Last-Translator: Łukasz Wojniłowicz <[email protected]>\n"
 "Language-Team: Polish <[email protected]>\n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
 "|| n%100>=20) ? 1 : 2);\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/pt/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/pt/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/pt/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/pt/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: akonadinotes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2011-09-07 11:18+0100\n"
 "Last-Translator: José Nuno Coelho Pires <[email protected]>\n"
 "Language-Team: Portuguese <[email protected]>\n"
@@ -12,7 +12,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/pt_BR/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/pt_BR/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/pt_BR/akonadinotes6.po 2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/pt_BR/akonadinotes6.po 2024-08-16 
07:00:01.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: akonadinotes5\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2014-08-16 10:47-0300\n"
 "Last-Translator: André Marcelo Alvarenga <[email protected]>\n"
 "Language-Team: Brazilian Portuguese <[email protected]>\n"
@@ -18,7 +18,7 @@
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/ro/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/ro/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/ro/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/ro/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: akonadi-notes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2024-02-18 14:29+0000\n"
 "Last-Translator: Sergiu Bivol <[email protected]>\n"
 "Language-Team: Romanian <[email protected]>\n"
@@ -18,7 +18,7 @@
 "20)) ? 1 : 2;\n"
 "X-Generator: Lokalize 21.12.3\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/ru/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/ru/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/ru/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/ru/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2013-05-25 14:40+0400\n"
 "Last-Translator: Alexander Lakhin <[email protected]>\n"
 "Language-Team: Russian <[email protected]>\n"
@@ -21,7 +21,7 @@
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/sa/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/sa/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/sa/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/sa/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: akonadi-notes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2023-09-26 16:11+0530\n"
 "Last-Translator: \n"
 "Language-Team: Sanskrit <[email protected]>\n"
@@ -18,7 +18,7 @@
 "X-Generator: Poedit 3.3.2\n"
 "Plural-Forms: nplurals=2; plural=(n>2);\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/sk/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/sk/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/sk/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/sk/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: akonadinotes5\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2014-08-14 14:17+0200\n"
 "Last-Translator: Roman Paholik <[email protected]>\n"
 "Language-Team: Slovak <[email protected]>\n"
@@ -15,7 +15,7 @@
 "X-Generator: Lokalize 1.5\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/sl/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/sl/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/sl/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/sl/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2023-11-20 09:07+0100\n"
 "Last-Translator: Matjaž Jeran <[email protected]>\n"
 "Language-Team: Slovenian <[email protected]>\n"
@@ -18,7 +18,7 @@
 "%100==4 ? 3 : 0);\n"
 "X-Generator: Poedit 3.4.1\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/sr/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/sr/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/sr/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/sr/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: akonadinotes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2011-12-26 22:39+0100\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
@@ -18,7 +18,7 @@
 "X-Text-Markup: kde4\n"
 "X-Environment: kde\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/akonadi-notes-24.05.2/po/sr@ijekavian/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/sr@ijekavian/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/sr@ijekavian/akonadinotes6.po  2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/sr@ijekavian/akonadinotes6.po  2024-08-16 
07:00:01.000000000 +0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: akonadinotes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2011-12-26 22:39+0100\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
@@ -18,7 +18,7 @@
 "X-Text-Markup: kde4\n"
 "X-Environment: kde\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/akonadi-notes-24.05.2/po/sr@ijekavianlatin/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/sr@ijekavianlatin/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/sr@ijekavianlatin/akonadinotes6.po     
2024-06-15 17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/sr@ijekavianlatin/akonadinotes6.po     
2024-08-16 07:00:01.000000000 +0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: akonadinotes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2011-12-26 22:39+0100\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
@@ -18,7 +18,7 @@
 "X-Text-Markup: kde4\n"
 "X-Environment: kde\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/sr@latin/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/sr@latin/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/sr@latin/akonadinotes6.po      2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/sr@latin/akonadinotes6.po      2024-08-16 
07:00:01.000000000 +0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: akonadinotes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2011-12-26 22:39+0100\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
@@ -18,7 +18,7 @@
 "X-Text-Markup: kde4\n"
 "X-Environment: kde\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/sv/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/sv/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/sv/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/sv/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2011-09-07 14:39+0200\n"
 "Last-Translator: Stefan Asserhall <[email protected]>\n"
 "Language-Team: Swedish <[email protected]>\n"
@@ -17,7 +17,7 @@
 "X-Generator: Lokalize 1.2\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/tg/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/tg/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/tg/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/tg/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: akonadi-notes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2020-08-24 23:28+0500\n"
 "Last-Translator: Victor Ibragimov <[email protected]>\n"
 "Language-Team: English <[email protected]>\n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 20.04.2\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/tr/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/tr/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/tr/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/tr/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kdepimlibs-kde4\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2014-11-12 01:06+0200\n"
 "Last-Translator: Kaan Ozdincer <[email protected]>\n"
 "Language-Team: Turkish <[email protected]>\n"
@@ -20,7 +20,7 @@
 "X-Generator: Lokalize 1.4\n"
 "(http: //www.transifex.com/projects/p/kdepimlibs-k-tr/language/tr/)\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/ug/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/ug/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/ug/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/ug/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: akonadinotes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2013-09-08 07:05+0900\n"
 "Last-Translator: Gheyret Kenji <[email protected]>\n"
 "Language-Team: Uyghur <[email protected]>\n"
@@ -17,7 +17,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/uk/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/uk/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/uk/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/uk/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: akonadinotes5\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2011-09-07 07:53+0300\n"
 "Last-Translator: Yuri Chornoivan <[email protected]>\n"
 "Language-Team: Ukrainian <[email protected]>\n"
@@ -20,7 +20,7 @@
 "Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n"
 "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/vi/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/vi/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/vi/akonadinotes6.po    2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/vi/akonadinotes6.po    2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: akonadi-notes\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2021-12-23 11:29+0100\n"
 "Last-Translator: Phu Hung Nguyen <[email protected]>\n"
 "Language-Team: Vietnamese <[email protected]>\n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Lokalize 20.12.2\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/zh_CN/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/zh_CN/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/zh_CN/akonadinotes6.po 2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/zh_CN/akonadinotes6.po 2024-08-16 
07:00:01.000000000 +0200
@@ -2,8 +2,8 @@
 msgstr ""
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
-"PO-Revision-Date: 2024-04-22 16:01\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
+"PO-Revision-Date: 2024-04-22 15:58\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
@@ -17,7 +17,7 @@
 "X-Crowdin-File: /kf6-stable/messages/akonadi-notes/akonadinotes6.pot\n"
 "X-Crowdin-File-ID: 51714\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/po/zh_TW/akonadinotes6.po 
new/akonadi-notes-24.08.0/po/zh_TW/akonadinotes6.po
--- old/akonadi-notes-24.05.2/po/zh_TW/akonadinotes6.po 2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/po/zh_TW/akonadinotes6.po 2024-08-16 
07:00:01.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2023-11-20 01:59+0000\n"
+"POT-Creation-Date: 2024-06-25 00:38+0000\n"
 "PO-Revision-Date: 2011-09-16 09:25+0800\n"
 "Last-Translator: Franklin Weng <[email protected]>\n"
 "Language-Team: Chinese Traditional <[email protected]>\n"
@@ -17,7 +17,7 @@
 "X-Generator: Lokalize 1.2\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: noteutils.cpp:372
+#: noteutils.cpp:373
 #, kde-format
 msgctxt "The default name for new notes."
 msgid "New Note"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/readme-build-ftime.txt 
new/akonadi-notes-24.08.0/readme-build-ftime.txt
--- old/akonadi-notes-24.05.2/readme-build-ftime.txt    1970-01-01 
01:00:00.000000000 +0100
+++ new/akonadi-notes-24.08.0/readme-build-ftime.txt    2024-08-16 
07:00:01.000000000 +0200
@@ -0,0 +1,26 @@
+# Analyzing Build Performance
+
+For debug build time:
+We need ClangBuildAnalyzer
+`
+git clone https://github.com/aras-p/ClangBuildAnalyzer
+mkdir build
+cd build
+cmake -DCMAKE_INSTALL_PREFIX=<path> ../
+make install
+`
+
+## Command line
+
+cmake -preset ftime-trace
+
+ClangBuildAnalyzer --start $PWD/build-ftime-trace
+cmake --build --preset ftime-trace
+
+ClangBuildAnalyzer --stop $PWD/build-ftime-trace build-ftime.txt
+
+ClangBuildAnalyzer --analyze build-ftime.txt > analyze-build-ftime.txt
+
+
+see https://aras-p.info/blog/2019/09/28/Clang-Build-Analyzer/
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/readme-build-ftime.txt.license 
new/akonadi-notes-24.08.0/readme-build-ftime.txt.license
--- old/akonadi-notes-24.05.2/readme-build-ftime.txt.license    1970-01-01 
01:00:00.000000000 +0100
+++ new/akonadi-notes-24.08.0/readme-build-ftime.txt.license    2024-08-16 
07:00:01.000000000 +0200
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: 2016 Daniel Vrátil <[email protected]>
+SPDX-License-Identifier: CC0-1.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/src/CMakeLists.txt 
new/akonadi-notes-24.08.0/src/CMakeLists.txt
--- old/akonadi-notes-24.05.2/src/CMakeLists.txt        2024-06-15 
17:25:22.000000000 +0200
+++ new/akonadi-notes-24.08.0/src/CMakeLists.txt        2024-08-16 
07:00:01.000000000 +0200
@@ -59,7 +59,7 @@
     COMPONENT Devel
     )
 
-if (BUILD_QCH)
+if(BUILD_QCH)
     ecm_add_qch(
         KPim6AkonadiNotes_QCH
         NAME KPim6AkonadiNotes
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akonadi-notes-24.05.2/src/noteutils.cpp 
new/akonadi-notes-24.08.0/src/noteutils.cpp
--- old/akonadi-notes-24.05.2/src/noteutils.cpp 2024-06-15 17:25:22.000000000 
+0200
+++ new/akonadi-notes-24.08.0/src/noteutils.cpp 2024-08-16 07:00:01.000000000 
+0200
@@ -8,7 +8,7 @@
 
 #include "akonadi_notes_debug.h"
 #include <KLocalizedString>
-#include <KMime/KMimeMessage>
+#include <KMime/Message>
 #include <QDateTime>
 
 #include <QRegularExpression>
@@ -313,7 +313,11 @@
         header->fromUnicodeString(a.url().toString(), ENCODING);
         content->appendHeader(header);
     } else {
-        content->setBody(a.data());
+        if (a.dataBase64Encoded()) {
+            content->setEncodedBody(a.data());
+        } else {
+            content->setBody(a.data());
+        }
     }
     content->contentType()->setMimeType(a.mimetype().toLatin1());
     if (!a.label().isEmpty()) {
@@ -322,9 +326,6 @@
         content->appendHeader(header);
     }
     content->contentTransferEncoding()->setEncoding(KMime::Headers::CEbase64);
-    if (a.dataBase64Encoded()) {
-        content->contentTransferEncoding()->setDecoded(false);
-    }
     
content->contentDisposition()->setDisposition(KMime::Headers::CDattachment);
     content->contentDisposition()->setFilename(QStringLiteral("attachment"));
     if (!a.contentID().isEmpty()) {

Reply via email to