Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package knotes for openSUSE:Factory checked in at 2023-05-12 20:33:37 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/knotes (Old) and /work/SRC/openSUSE:Factory/.knotes.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "knotes" Fri May 12 20:33:37 2023 rev:81 rq:1086365 version:23.04.1 Changes: -------- --- /work/SRC/openSUSE:Factory/knotes/knotes.changes 2023-04-23 22:45:42.842118341 +0200 +++ /work/SRC/openSUSE:Factory/.knotes.new.1533/knotes.changes 2023-05-12 20:34:13.328922581 +0200 @@ -1,0 +2,11 @@ +Tue May 9 10:47:15 UTC 2023 - Christophe Marin <christo...@krop.fr> + +- Update to 23.04.1 + * New bugfix release + * For more details please see: + * https://kde.org/announcements/gear/23.04.1/ +- Changes since 23.04.0: + * Adapt to build against last textaddons + * Fix compilation with older ktextaddons versions + +------------------------------------------------------------------- Old: ---- knotes-23.04.0.tar.xz knotes-23.04.0.tar.xz.sig New: ---- knotes-23.04.1.tar.xz knotes-23.04.1.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ knotes.spec ++++++ --- /var/tmp/diff_new_pack.pwXEep/_old 2023-05-12 20:34:15.052928344 +0200 +++ /var/tmp/diff_new_pack.pwXEep/_new 2023-05-12 20:34:15.056928358 +0200 @@ -18,7 +18,7 @@ %bcond_without released Name: knotes -Version: 23.04.0 +Version: 23.04.1 Release: 0 Summary: Popup Notes License: GPL-2.0-or-later ++++++ knotes-23.04.0.tar.xz -> knotes-23.04.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotes-23.04.0/CMakeLists.txt new/knotes-23.04.1/CMakeLists.txt --- old/knotes-23.04.0/CMakeLists.txt 2023-04-12 18:51:04.000000000 +0200 +++ new/knotes-23.04.1/CMakeLists.txt 2023-05-10 09:27:22.000000000 +0200 @@ -1,9 +1,9 @@ # SPDX-FileCopyrightText: none # SPDX-License-Identifier: BSD-3-Clause -set(PIM_VERSION "5.23.0") +set(PIM_VERSION "5.23.1") cmake_minimum_required(VERSION 3.16 FATAL_ERROR) project(knotes VERSION ${PIM_VERSION}) -set(RELEASE_SERVICE_VERSION "23.04.0") +set(RELEASE_SERVICE_VERSION "23.04.1") set(KF_MIN_VERSION "5.103.0") @@ -56,16 +56,16 @@ set(KDEPIM_LIB_VERSION "${PIM_VERSION}") set(KDEPIM_LIB_SOVERSION "5") -set(AKONADINOTES_LIB_VERSION "5.23.0") -set(AKONADI_VERSION "5.23.0") -set(CALENDARUTILS_LIB_VERSION "5.23.0") -set(KONTACTINTERFACE_LIB_VERSION "5.23.0") -set(KPIMTEXTEDIT_LIB_VERSION "5.23.0") -set(LIBKDEPIM_LIB_VERSION "5.23.0") -set(KMIME_LIB_VERSION "5.23.0") -set(PIMCOMMON_LIB_VERSION "5.23.0") -set(GRANTLEETHEME_LIB_VERSION "5.23.0") -set(AKONADI_SEARCH_VERSION "5.23.0") +set(AKONADINOTES_LIB_VERSION "5.23.1") +set(AKONADI_VERSION "5.23.1") +set(CALENDARUTILS_LIB_VERSION "5.23.1") +set(KONTACTINTERFACE_LIB_VERSION "5.23.1") +set(KPIMTEXTEDIT_LIB_VERSION "5.23.1") +set(LIBKDEPIM_LIB_VERSION "5.23.1") +set(KMIME_LIB_VERSION "5.23.1") +set(PIMCOMMON_LIB_VERSION "5.23.1") +set(GRANTLEETHEME_LIB_VERSION "5.23.1") +set(AKONADI_SEARCH_VERSION "5.23.1") set(QT_REQUIRED_VERSION "5.15.2") if (QT_MAJOR_VERSION STREQUAL "6") @@ -116,7 +116,16 @@ find_package(KPim${KF_MAJOR_VERSION}TextEdit ${KPIMTEXTEDIT_LIB_VERSION} CONFIG REQUIRED) find_package(KPim${KF_MAJOR_VERSION}GrantleeTheme ${GRANTLEETHEME_LIB_VERSION} CONFIG REQUIRED) -find_package(KF${KF_MAJOR_VERSION}TextAutoCorrection ${KTEXTADDONS_MIN_VERSION} CONFIG REQUIRED) +find_package(KF${KF_MAJOR_VERSION}TextAutoCorrectionWidgets ${KTEXTADDONS_MIN_VERSION} CONFIG) +set_package_properties(KF${KF_MAJOR_VERSION}TextAutoCorrectionWidgets PROPERTIES DESCRIPTION + "Add support for text auto correction" + TYPE OPTIONAL +) +if (TARGET KF${KF_MAJOR_VERSION}::TextAutoCorrectionWidgets) + set(HAVE_TEXT_AUTOCORRECTION_WIDGETS TRUE) +else() + find_package(KF${KF_MAJOR_VERSION}TextAutoCorrection ${KTEXTADDONS_MIN_VERSION} CONFIG REQUIRED) +endif() find_package(KPim${KF_MAJOR_VERSION}AkonadiSearch ${AKONADI_SEARCH_VERSION} CONFIG REQUIRED) set_package_properties(KPim${KF_MAJOR_VERSION}AkonadiSearch PROPERTIES DESCRIPTION "The Akonadi Search libraries" URL "ttps://invent.kde.org/pim/akonadi-search" TYPE REQUIRED PURPOSE "Provides search capabilities in pim apps and Akonadi") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotes-23.04.0/noteshared/src/CMakeLists.txt new/knotes-23.04.1/noteshared/src/CMakeLists.txt --- old/knotes-23.04.0/noteshared/src/CMakeLists.txt 2023-04-12 18:51:04.000000000 +0200 +++ new/knotes-23.04.1/noteshared/src/CMakeLists.txt 2023-05-10 09:27:22.000000000 +0200 @@ -2,6 +2,7 @@ # SPDX-License-Identifier: BSD-3-Clause add_definitions(-DTRANSLATION_DOMAIN=\"libnoteshared\") +configure_file(config-noshared.h.in ${CMAKE_CURRENT_BINARY_DIR}/config-noshared.h) set(libnoteshared_SRCS @@ -97,7 +98,11 @@ if (TARGET Qt::Core5Compat) target_link_libraries(notesharedprivate PRIVATE Qt::Core5Compat) endif() - target_link_libraries(notesharedprivate PRIVATE KF${KF_MAJOR_VERSION}::TextAutoCorrection) + if (TARGET KF${KF_MAJOR_VERSION}::TextAutoCorrectionWidgets) + target_link_libraries(notesharedprivate PRIVATE KF${KF_MAJOR_VERSION}::TextAutoCorrectionWidgets) + else() + target_link_libraries(notesharedprivate PRIVATE KF${KF_MAJOR_VERSION}::TextAutoCorrection) + endif() set_target_properties(notesharedprivate PROPERTIES VERSION ${KDEPIM_LIB_VERSION} SOVERSION ${KDEPIM_LIB_SOVERSION} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotes-23.04.0/noteshared/src/config-noshared.h.in new/knotes-23.04.1/noteshared/src/config-noshared.h.in --- old/knotes-23.04.0/noteshared/src/config-noshared.h.in 1970-01-01 01:00:00.000000000 +0100 +++ new/knotes-23.04.1/noteshared/src/config-noshared.h.in 2023-05-10 09:27:22.000000000 +0200 @@ -0,0 +1,7 @@ +/* +SPDX-License-Identifier: CC0-1.0 +SPDX-FileCopyrightText: none +*/ +#pragma once + +#cmakedefine01 HAVE_TEXT_AUTOCORRECTION_WIDGETS diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotes-23.04.0/noteshared/src/widget/richtexteditwithautocorrection.cpp new/knotes-23.04.1/noteshared/src/widget/richtexteditwithautocorrection.cpp --- old/knotes-23.04.0/noteshared/src/widget/richtexteditwithautocorrection.cpp 2023-04-12 18:51:04.000000000 +0200 +++ new/knotes-23.04.1/noteshared/src/widget/richtexteditwithautocorrection.cpp 2023-05-10 09:27:22.000000000 +0200 @@ -5,7 +5,12 @@ */ #include "richtexteditwithautocorrection.h" + +#if HAVE_TEXT_AUTOCORRECTION_WIDGETS +#include <TextAutoCorrectionCore/AutoCorrection> +#else #include <TextAutoCorrection/AutoCorrection> +#endif #include <QKeyEvent> @@ -15,7 +20,11 @@ { public: RichTextEditWithAutoCorrectionPrivate() +#if HAVE_TEXT_AUTOCORRECTION_WIDGETS + : mAutoCorrection(new TextAutoCorrectionCore::AutoCorrection()) +#else : mAutoCorrection(new TextAutoCorrection::AutoCorrection()) +#endif { } @@ -25,7 +34,11 @@ delete mAutoCorrection; } } +#if HAVE_TEXT_AUTOCORRECTION_WIDGETS + TextAutoCorrectionCore::AutoCorrection *mAutoCorrection = nullptr; +#else TextAutoCorrection::AutoCorrection *mAutoCorrection = nullptr; +#endif bool mNeedToDelete = true; }; @@ -36,21 +49,34 @@ } RichTextEditWithAutoCorrection::~RichTextEditWithAutoCorrection() = default; + +#if HAVE_TEXT_AUTOCORRECTION_WIDGETS +void RichTextEditWithAutoCorrection::setAutocorrection(TextAutoCorrectionCore::AutoCorrection *autocorrect) +#else void RichTextEditWithAutoCorrection::setAutocorrection(TextAutoCorrection::AutoCorrection *autocorrect) +#endif { d->mNeedToDelete = false; delete d->mAutoCorrection; d->mAutoCorrection = autocorrect; } +#if HAVE_TEXT_AUTOCORRECTION_WIDGETS +TextAutoCorrectionCore::AutoCorrection *RichTextEditWithAutoCorrection::autocorrection() const +#else TextAutoCorrection::AutoCorrection *RichTextEditWithAutoCorrection::autocorrection() const +#endif { return d->mAutoCorrection; } void RichTextEditWithAutoCorrection::setAutocorrectionLanguage(const QString &language) { +#if HAVE_TEXT_AUTOCORRECTION_WIDGETS + TextAutoCorrectionCore::AutoCorrectionSettings *settings = d->mAutoCorrection->autoCorrectionSettings(); +#else TextAutoCorrection::AutoCorrectionSettings *settings = d->mAutoCorrection->autoCorrectionSettings(); +#endif settings->setLanguage(language); d->mAutoCorrection->setAutoCorrectionSettings(settings); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotes-23.04.0/noteshared/src/widget/richtexteditwithautocorrection.h new/knotes-23.04.1/noteshared/src/widget/richtexteditwithautocorrection.h --- old/knotes-23.04.0/noteshared/src/widget/richtexteditwithautocorrection.h 2023-04-12 18:51:04.000000000 +0200 +++ new/knotes-23.04.1/noteshared/src/widget/richtexteditwithautocorrection.h 2023-05-10 09:27:22.000000000 +0200 @@ -6,11 +6,17 @@ #pragma once +#include "config-noshared.h" #include <KPIMTextEdit/RichTextEditor> +#if HAVE_TEXT_AUTOCORRECTION_WIDGETS +namespace TextAutoCorrectionCore +#else namespace TextAutoCorrection +#endif { class AutoCorrection; } + namespace NoteShared { class RichTextEditWithAutoCorrectionPrivate; @@ -25,8 +31,13 @@ explicit RichTextEditWithAutoCorrection(QWidget *parent = nullptr); ~RichTextEditWithAutoCorrection() override; +#if HAVE_TEXT_AUTOCORRECTION_WIDGETS + Q_REQUIRED_RESULT TextAutoCorrectionCore::AutoCorrection *autocorrection() const; + void setAutocorrection(TextAutoCorrectionCore::AutoCorrection *autocorrect); +#else Q_REQUIRED_RESULT TextAutoCorrection::AutoCorrection *autocorrection() const; void setAutocorrection(TextAutoCorrection::AutoCorrection *autocorrect); +#endif void setAutocorrectionLanguage(const QString &language); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotes-23.04.0/po/de/akonadi_notes_agent.po new/knotes-23.04.1/po/de/akonadi_notes_agent.po --- old/knotes-23.04.0/po/de/akonadi_notes_agent.po 2023-04-12 18:51:04.000000000 +0200 +++ new/knotes-23.04.1/po/de/akonadi_notes_agent.po 2023-05-10 09:27:22.000000000 +0200 @@ -12,7 +12,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 21.08.0\n" #: notesagentalarmdialog.cpp:44 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotes-23.04.0/po/de/knotes.po new/knotes-23.04.1/po/de/knotes.po --- old/knotes-23.04.0/po/de/knotes.po 2023-04-12 18:51:04.000000000 +0200 +++ new/knotes-23.04.1/po/de/knotes.po 2023-05-10 09:27:22.000000000 +0200 @@ -18,7 +18,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 21.08.0\n" #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotes-23.04.0/po/de/libnoteshared.po new/knotes-23.04.1/po/de/libnoteshared.po --- old/knotes-23.04.0/po/de/libnoteshared.po 2023-04-12 18:51:04.000000000 +0200 +++ new/knotes-23.04.1/po/de/libnoteshared.po 2023-05-10 09:27:22.000000000 +0200 @@ -12,7 +12,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 21.08.0\n" #: alarms/notealarmdialog.cpp:41 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotes-23.04.0/po/gl/akonadi_notes_agent.po new/knotes-23.04.1/po/gl/akonadi_notes_agent.po --- old/knotes-23.04.0/po/gl/akonadi_notes_agent.po 2023-04-12 18:51:04.000000000 +0200 +++ new/knotes-23.04.1/po/gl/akonadi_notes_agent.po 2023-05-10 09:27:22.000000000 +0200 @@ -1,26 +1,26 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. -# # Xosé <xoseca...@gmail.com>, 2014. # Adrián Chaves Fernández <adriyeticha...@gmail.com>, 2015, 2016. -# Adrián Chaves (Gallaecio) <adr...@chaves.io>, 2017, 2018, 2019. +# Adrián Chaves (Gallaecio) <adr...@chaves.io>, 2017, 2018, 2019, 2023. +# msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-12-03 00:47+0000\n" -"PO-Revision-Date: 2019-01-05 10:46+0100\n" +"PO-Revision-Date: 2023-05-01 11:11+0200\n" "Last-Translator: Adrián Chaves (Gallaecio) <adr...@chaves.io>\n" -"Language-Team: Galician <kde-i18n-...@kde.org>\n" +"Language-Team: Galician <proxe...@trasno.gal>\n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 23.04.0\n" #: notesagentalarmdialog.cpp:44 -#, fuzzy, kde-format -#| msgid "Alarm" +#, kde-format msgctxt "@title:window" msgid "Alarm" msgstr "Alarma" @@ -67,8 +67,7 @@ msgstr "Alarma" #: notesagentsettingsdialog.cpp:33 -#, fuzzy, kde-format -#| msgid "Configure Notes Agent" +#, kde-format msgctxt "@title:window" msgid "Configure Notes Agent" msgstr "Configurar o Axente de Notas" @@ -94,10 +93,9 @@ msgstr "Axente de notas." #: notesagentsettingsdialog.cpp:62 -#, fuzzy, kde-format -#| msgid "Copyright (C) 2013-2019 Laurent Montel" +#, kde-format msgid "Copyright (C) 2013-%1 Laurent Montel" -msgstr "© 2013-2019 Laurent Montel" +msgstr "© 2013-%1 Laurent Montel" #: notesagentsettingsdialog.cpp:64 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotes-23.04.0/po/gl/knotes.po new/knotes-23.04.1/po/gl/knotes.po --- old/knotes-23.04.0/po/gl/knotes.po 2023-04-12 18:51:04.000000000 +0200 +++ new/knotes-23.04.1/po/gl/knotes.po 2023-05-10 09:27:22.000000000 +0200 @@ -10,7 +10,7 @@ # Marce Villarino <mvillar...@gmail.com>, 2010. # Marce Villarino <mvillar...@kde-espana.es>, 2012, 2013, 2014. # Adrián Chaves Fernández <adriyeticha...@gmail.com>, 2015, 2016, 2017. -# Adrián Chaves (Gallaecio) <adr...@chaves.io>, 2017, 2018, 2019. +# Adrián Chaves (Gallaecio) <adr...@chaves.io>, 2017, 2018, 2019, 2023. # # Proxecto Trasno - Adaptación do software libre á lingua galega: Se desexas # colaborar connosco, podes atopar máis información en http://trasno.gpul.org @@ -22,7 +22,7 @@ "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2023-03-24 02:40+0000\n" -"PO-Revision-Date: 2019-11-13 22:26+0100\n" +"PO-Revision-Date: 2023-05-01 11:12+0200\n" "Last-Translator: Adrián Chaves (Gallaecio) <adr...@chaves.io>\n" "Language-Team: Galician <proxe...@trasno.gal>\n" "Language: gl\n" @@ -30,7 +30,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 19.08.2\n" +"X-Generator: Lokalize 23.04.0\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -141,10 +141,9 @@ msgstr "Notas de KDE" #: apps/main.cpp:49 -#, fuzzy, kde-format -#| msgid "Copyright © 1997â2019 KNotes authors" +#, kde-format msgid "Copyright © 1997â%1 KNotes authors" -msgstr "© 1997â2019 Autores de KNotes" +msgstr "© 1997â%1 Xente autora de KNotes" #: apps/main.cpp:69 kontactplugin/kcmknotessummary.cpp:44 #, kde-format @@ -405,23 +404,20 @@ msgstr "Notas" #: dialog/knotedeleteselectednotesdialog.cpp:21 -#, fuzzy, kde-format -#| msgid "Select notes to delete" +#, kde-format msgctxt "@title:window" msgid "Select notes to delete" msgstr "Seleccione as notas que desexe eliminar" #: dialog/knoteselectednotesdialog.cpp:23 #: print/knoteprintselectednotesdialog.cpp:29 -#, fuzzy, kde-format -#| msgid "Select notes" +#, kde-format msgctxt "@title:window" msgid "Select notes" msgstr "Seleccionar notas" #: dialog/knoteskeydialog.cpp:21 -#, fuzzy, kde-format -#| msgid "Configure Shortcuts" +#, kde-format msgctxt "@title:window" msgid "Configure Shortcuts" msgstr "Configurar os atallos" @@ -456,8 +452,7 @@ msgstr "Non se atoparon resultados na busca." #: finddialog/knotefinddialog.cpp:187 -#, fuzzy, kde-format -#| msgid "Show Note..." +#, kde-format msgid "Show Note" msgstr "Mostrar a notaâ¦" @@ -603,10 +598,9 @@ msgstr "Diálogo de configuración do resumo das notas" #: kontactplugin/kcmknotessummary.cpp:43 -#, fuzzy, kde-format -#| msgid "Copyright © 2013-2019 Laurent Montel <mon...@kde.org>" +#, kde-format msgid "Copyright © 2013-%1 Laurent Montel <mon...@kde.org>" -msgstr "© 2013-2019 Laurent Montel <mon...@kde.org>" +msgstr "© 2013-%1 Laurent Montel <mon...@kde.org>" #: kontactplugin/knotes_part.cpp:84 #, kde-format @@ -754,10 +748,7 @@ msgstr "Crear unha nota nova" #: kontactplugin/knotes_part.cpp:341 -#, fuzzy, kde-format -#| msgctxt "@info" -#| msgid "Do you really want to delete this note?" -#| msgid_plural "Do you really want to delete these %1 notes?" +#, kde-format msgctxt "@info" msgid "Do you really want to delete this note?" msgstr "Seguro que quere eliminar esta nota?" @@ -837,12 +828,10 @@ msgstr "Notas emerxentes" #: kontactplugin/knotes_plugin.cpp:80 -#, fuzzy, kde-kuit-format -#| msgctxt "@info:credit" -#| msgid "Copyright © 2003â2018 Kontact authors" +#, kde-kuit-format msgctxt "@info:credit" msgid "Copyright © 2003â%1 Kontact authors" -msgstr "© 2003â2018 Autores de Kontact" +msgstr "© 2003â%1 Xente autora de Kontact" #: kontactplugin/knotes_plugin.cpp:82 #, kde-kuit-format @@ -932,10 +921,7 @@ msgstr "(nota bloqueada; non se vai retirar)" #: kontactplugin/knotesselectdeletenotesdialog.cpp:57 -#, fuzzy, kde-format -#| msgctxt "@info" -#| msgid "Do you really want to delete this note?" -#| msgid_plural "Do you really want to delete these %1 notes?" +#, kde-format msgid "Do you really want to delete this note?" msgid_plural "Do you really want to delete these %1 notes?" msgstr[0] "Seguro que quere eliminar esta nota?" @@ -992,8 +978,7 @@ msgstr "Gardar a nota como texto simple" #: notes/knote.cpp:490 -#, fuzzy, kde-format -#| msgid "Save As" +#, kde-format msgctxt "@title:window" msgid "Save As" msgstr "Gardar como" @@ -1091,8 +1076,7 @@ msgstr "Imprimir" #: print/knoteprintselectthemedialog.cpp:21 -#, fuzzy, kde-format -#| msgid "Select theme" +#, kde-format msgctxt "@title:window" msgid "Select theme" msgstr "Escoller o tema" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotes-23.04.0/po/gl/libnoteshared.po new/knotes-23.04.1/po/gl/libnoteshared.po --- old/knotes-23.04.0/po/gl/libnoteshared.po 2023-04-12 18:51:04.000000000 +0200 +++ new/knotes-23.04.1/po/gl/libnoteshared.po 2023-05-10 09:27:22.000000000 +0200 @@ -3,14 +3,14 @@ # Marce Villarino <mvillar...@kde-espana.org>, 2013, 2014. # Xosé <xoseca...@gmail.com>, 2014. # Adrián Chaves Fernández (Gallaecio) <adriyeticha...@gmail.com>, 2017. -# Adrian Chaves <adr...@chaves.io>, 2018, 2019. +# Adrian Chaves <adr...@chaves.io>, 2018, 2019, 2023. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-12-03 00:47+0000\n" -"PO-Revision-Date: 2019-11-26 23:18+0100\n" +"PO-Revision-Date: 2023-05-01 11:11+0200\n" "Last-Translator: Adrián Chaves (Gallaecio) <adr...@chaves.io>\n" "Language-Team: Galician <proxe...@trasno.gal>\n" "Language: gl\n" @@ -18,7 +18,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 19.08.3\n" +"X-Generator: Lokalize 23.04.0\n" #: alarms/notealarmdialog.cpp:41 #, kde-format @@ -102,18 +102,16 @@ "predeterminada?" #: job/createnewnotejob.cpp:97 job/createnewnotejob.cpp:112 -#, fuzzy, kde-format -#| msgctxt "@title:window" -#| msgid "Select Note Folder" +#, kde-format msgctxt "@action:button" msgid "Select New Default" -msgstr "Seleccione o cartafol das notas" +msgstr "Seleccione o novo valor predeterminado" #: job/createnewnotejob.cpp:98 job/createnewnotejob.cpp:113 #, kde-format msgctxt "@action:button" msgid "Ignore" -msgstr "" +msgstr "Ignorar" #: job/createnewnotejob.cpp:126 #, kde-format @@ -128,13 +126,13 @@ #, kde-format msgctxt "@action::button" msgid "Show Collection" -msgstr "" +msgstr "Mostrar a colección" #: job/createnewnotejob.cpp:129 #, kde-format msgctxt "@action::button" msgid "Do Not Show" -msgstr "" +msgstr "Non mostrar" #: job/createnewnotejob.cpp:184 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotes-23.04.0/po/ia/knotes.po new/knotes-23.04.1/po/ia/knotes.po --- old/knotes-23.04.0/po/ia/knotes.po 2023-04-12 18:51:04.000000000 +0200 +++ new/knotes-23.04.1/po/ia/knotes.po 2023-05-10 09:27:22.000000000 +0200 @@ -660,7 +660,7 @@ #, kde-format msgctxt "@action:inmenu" msgid "Print Preview Selected Notes..." -msgstr "Imprime notas de vista preliminari seligite ..." +msgstr "Imprime notas de vista preliminar seligite ..." #: kontactplugin/knotes_part.cpp:134 #, kde-format @@ -1051,7 +1051,7 @@ #: print/knoteprintselectednotesdialog.cpp:58 #, kde-format msgid "Preview" -msgstr "Vista preliminari" +msgstr "Vista preliminar" #: print/knoteprintselectednotesdialog.cpp:60 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotes-23.04.0/po/se/knotes.po new/knotes-23.04.1/po/se/knotes.po --- old/knotes-23.04.0/po/se/knotes.po 2023-04-12 18:51:04.000000000 +0200 +++ new/knotes-23.04.1/po/se/knotes.po 2023-05-10 09:27:22.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-03-06 00:49+0000\n" +"POT-Creation-Date: 2023-03-24 02:40+0000\n" "PO-Revision-Date: 2006-01-10 20:33+0100\n" "Last-Translator: Børre Gaup <boe...@skolelinux.no>\n" "Language-Team: Northern Sami <l10n...@lister.huftis.org>\n" @@ -664,32 +664,32 @@ msgid "Preferences KNotes..." msgstr "" -#: kontactplugin/knotes_part.cpp:142 notes/knote.cpp:680 +#: kontactplugin/knotes_part.cpp:142 notes/knote.cpp:682 #, kde-format msgid "Mail..." msgstr "" -#: kontactplugin/knotes_part.cpp:146 notes/knote.cpp:676 +#: kontactplugin/knotes_part.cpp:146 notes/knote.cpp:678 #, kde-format msgid "Send..." msgstr "" -#: kontactplugin/knotes_part.cpp:150 notes/knote.cpp:672 +#: kontactplugin/knotes_part.cpp:150 notes/knote.cpp:674 #, kde-format msgid "Set Alarm..." msgstr "" -#: kontactplugin/knotes_part.cpp:162 notes/knote.cpp:684 +#: kontactplugin/knotes_part.cpp:162 notes/knote.cpp:686 #, kde-format msgid "Save As..." msgstr "" -#: kontactplugin/knotes_part.cpp:166 notes/knote.cpp:658 +#: kontactplugin/knotes_part.cpp:166 notes/knote.cpp:660 #, kde-format msgid "Lock" msgstr "" -#: kontactplugin/knotes_part.cpp:169 notes/knote.cpp:661 +#: kontactplugin/knotes_part.cpp:169 notes/knote.cpp:663 #, kde-format msgid "Unlock" msgstr "" @@ -766,7 +766,7 @@ msgid "Save As" msgstr "" -#: kontactplugin/knotes_part.cpp:705 notes/knote.cpp:505 +#: kontactplugin/knotes_part.cpp:705 notes/knote.cpp:507 #, kde-format msgid "" "<qt>A file named <b>%1</b> already exists.<br />Are you sure you want to " @@ -944,63 +944,63 @@ msgid "Please enter the new name:" msgstr "" -#: notes/knote.cpp:481 +#: notes/knote.cpp:483 #, kde-format msgid "Save note as plain text" msgstr "" -#: notes/knote.cpp:488 +#: notes/knote.cpp:490 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "" -#: notes/knote.cpp:608 +#: notes/knote.cpp:610 #, kde-format msgid "&All Desktops" msgstr "&Buot Äállinbevddiide" -#: notes/knote.cpp:650 +#: notes/knote.cpp:652 #, kde-format msgid "New" msgstr "OÄÄa" -#: notes/knote.cpp:654 +#: notes/knote.cpp:656 #, kde-format msgid "Rename..." msgstr "Bija oÄÄa nama â¦" -#: notes/knote.cpp:663 +#: notes/knote.cpp:665 #, kde-format msgid "Hide" msgstr "Äiega" -#: notes/knote.cpp:668 +#: notes/knote.cpp:670 #, kde-format msgid "Delete" msgstr "" -#: notes/knote.cpp:693 +#: notes/knote.cpp:695 #, kde-format msgid "Preferences..." msgstr "" -#: notes/knote.cpp:697 +#: notes/knote.cpp:699 #, kde-format msgid "Keep Above Others" msgstr "Doalat earáid bajábeallái" -#: notes/knote.cpp:701 +#: notes/knote.cpp:703 #, kde-format msgid "Keep Below Others" msgstr "Doalat earáid vuolábeallái" -#: notes/knote.cpp:706 +#: notes/knote.cpp:708 #, kde-format msgid "To Desktop" msgstr "" -#: notes/knote.cpp:718 +#: notes/knote.cpp:720 #, kde-format msgid "Walk Through Notes" msgstr "" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotes-23.04.0/po/tr/knotes.po new/knotes-23.04.1/po/tr/knotes.po --- old/knotes-23.04.0/po/tr/knotes.po 2023-04-12 18:51:04.000000000 +0200 +++ new/knotes-23.04.1/po/tr/knotes.po 2023-05-10 09:27:22.000000000 +0200 @@ -15,7 +15,7 @@ "Project-Id-Version: knotes\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2023-03-24 02:40+0000\n" -"PO-Revision-Date: 2023-01-10 21:54+0300\n" +"PO-Revision-Date: 2023-05-03 12:26+0300\n" "Last-Translator: Emir SARI <emir_s...@icloud.com>\n" "Language-Team: Turkish <kde-l10n...@kde.org>\n" "Language: tr\n" @@ -23,7 +23,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 22.12.0\n" +"X-Generator: Lokalize 23.03.70\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -530,12 +530,12 @@ #: knoteedit.cpp:91 #, kde-format msgid "Superscript" -msgstr "Ãst Yazı" +msgstr "Ãst Simge" #: knoteedit.cpp:94 #, kde-format msgid "Subscript" -msgstr "Alt Yazı" +msgstr "Alt Simge" #: knoteedit.cpp:98 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotes-23.04.0/po/zh_CN/akonadi_notes_agent.po new/knotes-23.04.1/po/zh_CN/akonadi_notes_agent.po --- old/knotes-23.04.0/po/zh_CN/akonadi_notes_agent.po 2023-04-12 18:51:04.000000000 +0200 +++ new/knotes-23.04.1/po/zh_CN/akonadi_notes_agent.po 2023-05-10 09:27:22.000000000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-12-03 00:47+0000\n" -"PO-Revision-Date: 2023-04-10 14:13\n" +"PO-Revision-Date: 2023-04-29 08:36\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotes-23.04.0/po/zh_CN/knotes.po new/knotes-23.04.1/po/zh_CN/knotes.po --- old/knotes-23.04.0/po/zh_CN/knotes.po 2023-04-12 18:51:04.000000000 +0200 +++ new/knotes-23.04.1/po/zh_CN/knotes.po 2023-05-10 09:27:22.000000000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2023-03-24 02:40+0000\n" -"PO-Revision-Date: 2023-04-10 14:13\n" +"PO-Revision-Date: 2023-04-29 08:36\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotes-23.04.0/po/zh_CN/libnoteshared.po new/knotes-23.04.1/po/zh_CN/libnoteshared.po --- old/knotes-23.04.0/po/zh_CN/libnoteshared.po 2023-04-12 18:51:04.000000000 +0200 +++ new/knotes-23.04.1/po/zh_CN/libnoteshared.po 2023-05-10 09:27:22.000000000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-12-03 00:47+0000\n" -"PO-Revision-Date: 2023-04-10 14:13\n" +"PO-Revision-Date: 2023-04-29 08:36\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotes-23.04.0/src/data/org.kde.knotes.appdata.xml new/knotes-23.04.1/src/data/org.kde.knotes.appdata.xml --- old/knotes-23.04.0/src/data/org.kde.knotes.appdata.xml 2023-04-12 18:51:04.000000000 +0200 +++ new/knotes-23.04.1/src/data/org.kde.knotes.appdata.xml 2023-05-10 09:27:22.000000000 +0200 @@ -363,9 +363,9 @@ <binary>knotes</binary> </provides> <releases> + <release version="5.23.1" date="2023-05-11"/> <release version="5.23.0" date="2023-04-20"/> <release version="5.22.3" date="2023-03-02"/> <release version="5.22.2" date="2023-02-02"/> - <release version="5.22.1" date="2023-01-05"/> </releases> </component> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotes-23.04.0/src/kcm_knote_action.json new/knotes-23.04.1/src/kcm_knote_action.json --- old/knotes-23.04.0/src/kcm_knote_action.json 2023-04-12 18:51:04.000000000 +0200 +++ new/knotes-23.04.1/src/kcm_knote_action.json 2023-05-10 09:27:22.000000000 +0200 @@ -14,6 +14,7 @@ "Description[eu]": "Ezarri oharren ekintzak", "Description[fi]": "Muistiinpanotoimintoasetukset", "Description[fr]": "Configuration des actions pour les notes", + "Description[gl]": "Configurar as accións das notas", "Description[ia]": "Configuration de actiones pro notas", "Description[it]": "Imposta le azioni per le note", "Description[ka]": "á¡áááá¨ááá¡ á¥ááááááááá¡ ááá áááá", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotes-23.04.0/src/kcm_knote_collection.json new/knotes-23.04.1/src/kcm_knote_collection.json --- old/knotes-23.04.0/src/kcm_knote_collection.json 2023-04-12 18:51:04.000000000 +0200 +++ new/knotes-23.04.1/src/kcm_knote_collection.json 2023-05-10 09:27:22.000000000 +0200 @@ -14,6 +14,7 @@ "Description[eu]": "Ezarri oharren bildumak", "Description[fi]": "Muistiinpanojen kokoelma-asetukset", "Description[fr]": "Configuration des collections pour les notes", + "Description[gl]": "Configurar as coleccións de notas", "Description[ia]": "Configura collectiones pro notas", "Description[it]": "Imposta le collezioni per le note", "Description[ka]": "á¡áááá¨áááááá¡ ááááá¥áªááááá¡ ááá áááá", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotes-23.04.0/src/kcm_knote_display.json new/knotes-23.04.1/src/kcm_knote_display.json --- old/knotes-23.04.0/src/kcm_knote_display.json 2023-04-12 18:51:04.000000000 +0200 +++ new/knotes-23.04.1/src/kcm_knote_display.json 2023-05-10 09:27:22.000000000 +0200 @@ -13,6 +13,7 @@ "Description[eu]": "Ezarri oharren bistaratzea", "Description[fi]": "Muistiinpanojen näkymäasetukset", "Description[fr]": "Configuration de l'affichage pour les notes", + "Description[gl]": "Configuración da visualización das notas", "Description[ia]": "Configuration de vista pro notas", "Description[it]": "Imposta la visualizzazione per le note", "Description[ka]": "á¡áááá¨áááááá¡ á©ááááááá¡ ááá áááá", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotes-23.04.0/src/kcm_knote_editor.json new/knotes-23.04.1/src/kcm_knote_editor.json --- old/knotes-23.04.0/src/kcm_knote_editor.json 2023-04-12 18:51:04.000000000 +0200 +++ new/knotes-23.04.1/src/kcm_knote_editor.json 2023-05-10 09:27:22.000000000 +0200 @@ -14,6 +14,7 @@ "Description[eu]": "Ezarri editorea", "Description[fi]": "Muokkainasetukset", "Description[fr]": "Ãditeur de configuration", + "Description[gl]": "Configurar o editor", "Description[ia]": "Configura redactor", "Description[it]": "Imposta l'editor", "Description[ka]": "á áááá¥á¢áá áá¡ ááá áááá", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotes-23.04.0/src/kontactplugin/kcmknotessummary.json new/knotes-23.04.1/src/kontactplugin/kcmknotessummary.json --- old/knotes-23.04.0/src/kontactplugin/kcmknotessummary.json 2023-04-12 18:51:04.000000000 +0200 +++ new/knotes-23.04.1/src/kontactplugin/kcmknotessummary.json 2023-05-10 09:27:22.000000000 +0200 @@ -14,6 +14,7 @@ "Description[eu]": "Oharren laburpena ezartzea", "Description[fi]": "Muistiinpanoyhteenvedon asetukset", "Description[fr]": "Configuration du résumé des notes", + "Description[gl]": "Configuración do resumo das notas", "Description[ia]": "Configuration de summario de Notas", "Description[it]": "Impostazioni sommario note", "Description[ka]": "á¡áááá¨áááááá¡ á¨áá¯áááááá¡ ááá áááá", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotes-23.04.0/src/kontactplugin/knotesplugin.json.cmake new/knotes-23.04.1/src/kontactplugin/knotesplugin.json.cmake --- old/knotes-23.04.0/src/kontactplugin/knotesplugin.json.cmake 2023-04-12 18:51:04.000000000 +0200 +++ new/knotes-23.04.1/src/kontactplugin/knotesplugin.json.cmake 2023-05-10 09:27:22.000000000 +0200 @@ -14,6 +14,7 @@ "Description[eu]": "Kontact-en KNotes plugin-a", "Description[fi]": "Kontactin KNotes-liitännäinen", "Description[fr]": "Module externe « KNotes » pour Kontact", + "Description[gl]": "Complemento de KNotes para Kontact", "Description[ia]": "Plug-in de Kontact KNotes", "Description[it]": "Estensione per Kontact di KNotes", "Description[ka]": "Kontact-áá¡ ááááá¢ááá KNotes -á¡áááá¡",