Package: release.debian.org Severity: normal X-Debbugs-Cc: ka...@packages.debian.org, Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Control: affects -1 + src:kasts User: release.debian....@packages.debian.org Usertags: unblock
Dear Release Team, please unblock package kasts. [ Reason ] It contains the following changes: * New upstream release (25.04.3). - Fix mobile player buttons. (kde#505726) * Backport upstream commit: - Fix crash when chapters don't have a title. [94e0b70f] (kde#506430) The complete debdiff is quite huge with translation fixes so I’m attaching a simple diff trimmed of these for your convenience : diff -ur --exclude=po kasts-25.04.[23] [ Tests ] Import from OPML, podcasts update, download and playback. [ Risks ] Only contains the latest point release for the 25.04 Gear branch and a backported commit. Further fixes can easily be backported or the changes reverted. [ Checklist ] [x] all changes are documented in the d/changelog [x] I reviewed all changes and I approve them [x] attach debdiff against the package in testing Thanks ! unblock kasts/25.04.3-1
diff -Nru kasts-25.04.2/CMakeLists.txt kasts-25.04.3/CMakeLists.txt --- kasts-25.04.2/CMakeLists.txt 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/CMakeLists.txt 2025-06-30 18:54:31.000000000 +0200 @@ -8,7 +8,7 @@ # KDE Applications version, managed by release script. set(RELEASE_SERVICE_VERSION_MAJOR "25") set(RELEASE_SERVICE_VERSION_MINOR "04") -set(RELEASE_SERVICE_VERSION_MICRO "2") +set(RELEASE_SERVICE_VERSION_MICRO "3") set(RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}") project(kasts VERSION ${RELEASE_SERVICE_VERSION}) diff -Nru kasts-25.04.2/debian/changelog kasts-25.04.3/debian/changelog --- kasts-25.04.2/debian/changelog 2025-06-09 22:28:35.000000000 +0200 +++ kasts-25.04.3/debian/changelog 2025-07-23 09:29:55.000000000 +0200 @@ -1,3 +1,15 @@ +kasts (25.04.3-1) unstable; urgency=medium + + * Team upload. + + [ Aurélien COUDERC ] + * New upstream release (25.04.3). + - Fix mobile player buttons. (kde#505726) + * Backport upstream commit: + - Fix crash when chapters don't have a title. [94e0b70f] (kde#506430) + + -- Aurélien COUDERC <couc...@debian.org> Wed, 23 Jul 2025 09:29:55 +0200 + kasts (25.04.2-1) unstable; urgency=medium * Team upload. diff -Nru kasts-25.04.2/debian/patches/series kasts-25.04.3/debian/patches/series --- kasts-25.04.2/debian/patches/series 2025-01-21 16:25:59.000000000 +0100 +++ kasts-25.04.3/debian/patches/series 2025-07-23 09:29:18.000000000 +0200 @@ -1,2 +1,3 @@ 0001-Create-man-page.patch 0002-Install-manpage.patch +upstream_94e0b70f_Fix-crash-when-chapters-don-t-have-a-title.patch diff -Nru kasts-25.04.2/debian/patches/upstream_94e0b70f_Fix-crash-when-chapters-don-t-have-a-title.patch kasts-25.04.3/debian/patches/upstream_94e0b70f_Fix-crash-when-chapters-don-t-have-a-title.patch --- kasts-25.04.2/debian/patches/upstream_94e0b70f_Fix-crash-when-chapters-don-t-have-a-title.patch 1970-01-01 01:00:00.000000000 +0100 +++ kasts-25.04.3/debian/patches/upstream_94e0b70f_Fix-crash-when-chapters-don-t-have-a-title.patch 2025-07-23 09:29:18.000000000 +0200 @@ -0,0 +1,37 @@ +From 94e0b70f47e18d3dd0f491ac9c941c30912e275b Mon Sep 17 00:00:00 2001 +From: Tobias Fella <tobias.fe...@kde.org> +Date: Tue, 1 Jul 2025 22:26:13 +0200 +Subject: [PATCH] Fix crash when chapters don't have a title + +BUG: 506430 +--- + src/models/chaptermodel.cpp | 6 +++++- + 1 file changed, 5 insertions(+), 1 deletion(-) + +diff --git a/src/models/chaptermodel.cpp b/src/models/chaptermodel.cpp +index 2512506f1..9fab51631 100644 +--- a/src/models/chaptermodel.cpp ++++ b/src/models/chaptermodel.cpp +@@ -15,6 +15,8 @@ + #include <QObject> + #include <QSqlQuery> + ++#include <KLocalizedString> ++ + #include <attachedpictureframe.h> + #include <chapterframe.h> + +@@ -186,7 +188,9 @@ void ChapterModel::loadMPEGChapters() + } else { + image = QString(); + } +- QString title = QString::fromStdString(chapterFrame->embeddedFrameListMap()["TIT2"].front()->toString().to8Bit(true)); ++ const auto frameListMap = chapterFrame->embeddedFrameListMap()["TIT2"]; ++ QString title = frameListMap.isEmpty() ? i18nc("@info", "Unnamed chapter") ++ : QString::fromStdString(chapterFrame->embeddedFrameListMap()["TIT2"].front()->toString().to8Bit(true)); + int start = chapterFrame->startTime() / 1000; + Chapter *chapter = new Chapter(m_entry, title, QString(), image, start, this); + auto originalChapter = std::find_if(m_chapters.begin(), m_chapters.end(), [chapter](auto it) { +-- +GitLab + diff -Nru kasts-25.04.2/org.kde.kasts.appdata.xml kasts-25.04.3/org.kde.kasts.appdata.xml --- kasts-25.04.2/org.kde.kasts.appdata.xml 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/org.kde.kasts.appdata.xml 2025-06-30 18:54:31.000000000 +0200 @@ -511,6 +511,7 @@ </screenshots> <launchable type="desktop-id">org.kde.kasts.desktop</launchable> <releases> + <release version="25.04.3" date="2025-07-03"/> <release version="25.04.2" date="2025-06-05"/> <release version="25.04.1" date="2025-05-08"/> <release version="25.04.0" date="2025-04-17"/> diff -Nru kasts-25.04.2/po/ar/kasts.po kasts-25.04.3/po/ar/kasts.po --- kasts-25.04.2/po/ar/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/ar/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2025-02-17 21:19+0400\n" "Last-Translator: Zayed Al-Saidi <zayed.alsa...@gmail.com>\n" "Language-Team: ar\n" @@ -1108,7 +1108,7 @@ msgid "Settings" msgstr "الإعدادات" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1120,7 +1120,7 @@ msgstr[4] "حدثت %1 مدونة من أصل %2" msgstr[5] "حدثت %1 مدونة من أصل %2" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1132,7 +1132,7 @@ msgstr[4] "نقل %1 ملف من أصل %2" msgstr[5] "نقل %1 ملف من أصل %2" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/ast/kasts.po kasts-25.04.3/po/ast/kasts.po --- kasts-25.04.2/po/ast/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/ast/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2023-11-06 00:55+0100\n" "Last-Translator: Enol P. <en...@softastur.org>\n" "Language-Team: \n" @@ -1089,7 +1089,7 @@ msgid "Settings" msgstr "" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1097,7 +1097,7 @@ msgstr[0] "" msgstr[1] "" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1105,7 +1105,7 @@ msgstr[0] "" msgstr[1] "" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/ca/kasts.po kasts-25.04.3/po/ca/kasts.po --- kasts-25.04.2/po/ca/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/ca/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2025-02-15 12:14+0100\n" "Last-Translator: Josep M. Ferrer <txe...@gmail.com>\n" "Language-Team: Catalan <kde-i18n...@kde.org>\n" @@ -1096,7 +1096,7 @@ msgid "Settings" msgstr "Configuració" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1104,7 +1104,7 @@ msgstr[0] "%2 actualitzat de %1 pòdcasts" msgstr[1] "%2 actualitzats de %1 pòdcasts" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1112,7 +1112,7 @@ msgstr[0] "S'ha mogut %2 de %1 fitxers" msgstr[1] "S'han mogut %2 de %1 fitxers" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/ca@valencia/kasts.po kasts-25.04.3/po/ca@valencia/kasts.po --- kasts-25.04.2/po/ca@valencia/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/ca@valencia/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2025-02-15 12:14+0100\n" "Last-Translator: Josep M. Ferrer <txe...@gmail.com>\n" "Language-Team: Catalan <kde-i18n...@kde.org>\n" @@ -1097,7 +1097,7 @@ msgid "Settings" msgstr "Configuració" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1105,7 +1105,7 @@ msgstr[0] "%2 actualitzat de %1 pòdcast" msgstr[1] "%2 actualitzats de %1 pòdcast" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1113,7 +1113,7 @@ msgstr[0] "S'ha mogut %2 de %1 fitxers" msgstr[1] "S'han mogut %2 de %1 fitxers" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/cs/kasts.po kasts-25.04.3/po/cs/kasts.po --- kasts-25.04.2/po/cs/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/cs/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2024-09-03 08:47+0200\n" "Last-Translator: Vit Pelcak <v...@pelcak.org>\n" "Language-Team: Czech <kde-i18n-...@kde.org>\n" @@ -1095,7 +1095,7 @@ msgid "Settings" msgstr "Nastavení" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1104,7 +1104,7 @@ msgstr[1] "Aktualizovány %2 z %1 podcastů" msgstr[2] "Aktualizováno %2 z %1 podcastů" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1113,7 +1113,7 @@ msgstr[1] "Přesunuty %2 ze %1 souborů" msgstr[2] "Přesunuto %2 ze %1 souborů" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/da/kasts.po kasts-25.04.3/po/da/kasts.po --- kasts-25.04.2/po/da/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/da/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2024-08-01 14:24+0200\n" "Last-Translator: rasmus rosendahl-kaa <ras...@rosendahl-kaa.name>\n" "Language-Team: Danish <kde-i18n-...@kde.org>\n" @@ -1094,7 +1094,7 @@ msgid "Settings" msgstr "Indstillinger" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1102,7 +1102,7 @@ msgstr[0] "Opdaterede %2 af %1 podcast" msgstr[1] "Opdaterede %2 af %1 podcasts" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1110,7 +1110,7 @@ msgstr[0] "Flyttede %2 af %1 fil" msgstr[1] "Flyttede %2 af %1 filer" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/de/kasts.po kasts-25.04.3/po/de/kasts.po --- kasts-25.04.2/po/de/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/de/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2024-07-15 15:56+0200\n" "Last-Translator: Alois.spitzbart <spitz...@hotmail.com>\n" "Language-Team: German <kde-i18n...@kde.org>\n" @@ -1097,7 +1097,7 @@ msgid "Settings" msgstr "Einstellungen" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1105,7 +1105,7 @@ msgstr[0] "%2 von %1 Podcast aktualisiert" msgstr[1] "%2 von %1 Podcasts aktualisiert" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1113,7 +1113,7 @@ msgstr[0] "%2 von %1 Datei verschoben" msgstr[1] "%2 von %1 Dateien verschoben" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/en_GB/kasts.po kasts-25.04.3/po/en_GB/kasts.po --- kasts-25.04.2/po/en_GB/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/en_GB/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2024-05-19 16:09+0100\n" "Last-Translator: Steve Allewell <steve.allew...@gmail.com>\n" "Language-Team: British English\n" @@ -1093,7 +1093,7 @@ msgid "Settings" msgstr "Settings" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1101,7 +1101,7 @@ msgstr[0] "Updated %2 of %1 Podcast" msgstr[1] "Updated %2 of %1 Podcasts" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1109,7 +1109,7 @@ msgstr[0] "Moved %2 of %1 File" msgstr[1] "Moved %2 of %1 Files" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/eo/kasts.po kasts-25.04.3/po/eo/kasts.po --- kasts-25.04.2/po/eo/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/eo/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2025-02-14 21:25+0100\n" "Last-Translator: Oliver Kellogg <olivermkell...@gmail.com>\n" "Language-Team: Esperanto <kde-i18n...@kde.org>\n" @@ -1093,7 +1093,7 @@ msgid "Settings" msgstr "Agordoj" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1101,7 +1101,7 @@ msgstr[0] "Ĝisdatigis %2 el %1 Podkasto" msgstr[1] "Ĝisdatigis %2 el %1 Podkastoj" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1109,7 +1109,7 @@ msgstr[0] "Movis %2 of %1 Dosiero" msgstr[1] "Movis %2 of %1 Dosieroj" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/es/kasts.po kasts-25.04.3/po/es/kasts.po --- kasts-25.04.2/po/es/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/es/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2025-03-19 14:29+0100\n" "Last-Translator: Eloy Cuadra <ecua...@eloihr.net>\n" "Language-Team: Spanish <kde-l10n...@kde.org>\n" @@ -1095,7 +1095,7 @@ msgid "Settings" msgstr "Preferencias" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1103,7 +1103,7 @@ msgstr[0] "Se ha actualizado %2 de %1 pódcast" msgstr[1] "Se han actualizado %2 de %1 pódcast" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1111,7 +1111,7 @@ msgstr[0] "%2 de %1 archivo movido" msgstr[1] "%2 de %1 archivos movidos" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/eu/kasts.po kasts-25.04.3/po/eu/kasts.po --- kasts-25.04.2/po/eu/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/eu/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2025-03-04 13:15+0100\n" "Last-Translator: Iñigo Salvador Azurmendi <xa...@ni.eus>\n" "Language-Team: Basque <kde-i18n...@kde.org>\n" @@ -1096,7 +1096,7 @@ msgid "Settings" msgstr "Ezarpenak" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1104,7 +1104,7 @@ msgstr[0] "%2/%1 podcast eguneratu da" msgstr[1] "%2/%1 podcast eguneratu dira" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1112,7 +1112,7 @@ msgstr[0] "%2/%1 fitxategi mugitu da" msgstr[1] "%2/%1 fitxategi mugitu dira" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/fi/kasts.po kasts-25.04.3/po/fi/kasts.po --- kasts-25.04.2/po/fi/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/fi/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2025-04-20 10:31+0300\n" "Last-Translator: Tommi Nieminen <transla...@legisign.org>\n" "Language-Team: Finnish <kde-i18n-...@kde.org>\n" @@ -1094,7 +1094,7 @@ msgid "Settings" msgstr "Asetukset" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1102,7 +1102,7 @@ msgstr[0] "Virkistetty %2/%1 podcast" msgstr[1] "Virkistetty %2/%1 podcastia" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1110,7 +1110,7 @@ msgstr[0] "Siirrettiin %2/%1 tiedosto" msgstr[1] "Siirrettiin %2/%1 tiedostoa" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/fr/kasts.po kasts-25.04.3/po/fr/kasts.po --- kasts-25.04.2/po/fr/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/fr/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2025-02-16 17:54+0100\n" "Last-Translator: Xavier Besnard <xavier.besn...@kde.org>\n" "Language-Team: French <French <kde-francoph...@kde.org>>\n" @@ -624,7 +624,7 @@ #, kde-format msgctxt "@action:intoolbar Button to remove the downloaded episode audio file" msgid "Delete Download" -msgstr "Supprimer un téléchargement" +msgstr "Supprimer le téléchargement" #: qml/EntryPage.qml:184 #, kde-format @@ -676,7 +676,7 @@ #, kde-format msgctxt "@action:intoolbar Button to open the podcast URL in browser" msgid "Open Podcast" -msgstr "Ouvrir un podcast" +msgstr "Ouvrir le podcast" #: qml/EntryPage.qml:284 #, kde-format @@ -750,7 +750,7 @@ #: qml/FeedDetailsPage.qml:155 #, kde-format msgid "Refresh Podcast" -msgstr "Rafraîchir un podcast" +msgstr "Rafraîchir le podcast" #: qml/FeedDetailsPage.qml:174 #, kde-format @@ -799,7 +799,7 @@ #: qml/FeedListDelegate.qml:254 #, kde-format msgid "Remove Podcast" -msgstr "Supprimer un podcast" +msgstr "Supprimer le podcast" #: qml/FeedListPage.qml:20 qml/KastsGlobalDrawer.qml:92 #: qml/Mobile/BottomToolbar.qml:34 @@ -923,8 +923,8 @@ msgctxt "@action:intoolbar" msgid "Remove Podcast" msgid_plural "Remove Podcasts" -msgstr[0] "Supprimer un podcast" -msgstr[1] "Supprimer des podcasts" +msgstr[0] "Supprimer le podcast" +msgstr[1] "Supprimer les podcasts" #: qml/FeedListPage.qml:408 #, kde-format @@ -977,7 +977,7 @@ #: qml/GenericEntryDelegate.qml:348 #, kde-format msgid "Delete Download" -msgstr "Supprimer un téléchargement" +msgstr "Supprimer le téléchargement" #: qml/GenericEntryDelegate.qml:355 qml/GenericEntryListView.qml:247 #, kde-format @@ -1053,8 +1053,8 @@ msgctxt "context menu action" msgid "Delete Download" msgid_plural "Delete Downloads" -msgstr[0] "Supprimer un téléchargement" -msgstr[1] "Supprimer des téléchargements" +msgstr[0] "Supprimer le téléchargement" +msgstr[1] "Supprimer les téléchargements" #: qml/GlobalSearchField.qml:108 #, kde-format @@ -1095,7 +1095,7 @@ msgid "Settings" msgstr "Configuration" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1103,7 +1103,7 @@ msgstr[0] "%2 mis à jour du podcast %1" msgstr[1] "%2 mis à jour des %1 podcasts" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1111,7 +1111,7 @@ msgstr[0] "Déplacement de %2 du fichier %1" msgstr[1] "Déplacement de %2 de %1 fichiers" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" @@ -2196,7 +2196,7 @@ #: sync/sync.cpp:480 sync/sync.cpp:481 #, kde-format msgid "I/O denied: Cannot save password." -msgstr "Refus Entrée / Sortie : impossible d'enregistrer un mot de passe." +msgstr "Refus Entrée / Sortie : impossible d'enregistrer le mot de passe." #: sync/sync.cpp:561 sync/sync.cpp:562 #, kde-format diff -Nru kasts-25.04.2/po/gl/kasts.po kasts-25.04.3/po/gl/kasts.po --- kasts-25.04.2/po/gl/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/gl/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2025-02-16 06:14+0100\n" "Last-Translator: Adrián Chaves (Gallaecio) <adr...@chaves.gal>\n" "Language-Team: Proxecto Trasno (proxe...@trasno.gal)\n" @@ -1093,7 +1093,7 @@ msgid "Settings" msgstr "Configuración" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1101,7 +1101,7 @@ msgstr[0] "Actualizáronse %2 de %1 podcasts" msgstr[1] "Actualizáronse %2 de %1 podcasts" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1109,7 +1109,7 @@ msgstr[0] "Movéronse %2 de %1 ficheiros" msgstr[1] "Movéronse %2 de %1 ficheiros" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/he/kasts.po kasts-25.04.3/po/he/kasts.po --- kasts-25.04.2/po/he/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/he/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2025-02-15 14:08+0200\n" "Last-Translator: Yaron Shahrabani <sh.ya...@gmail.com>\n" "Language-Team: צוות התרגום של KDE ישראל\n" @@ -1098,7 +1098,7 @@ msgid "Settings" msgstr "הגדרות" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1108,7 +1108,7 @@ msgstr[2] "עודכנו %2 מתוך %1 הסכתים" msgstr[3] "עודכנו %2 מתוך %1 הסכתים" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1118,7 +1118,7 @@ msgstr[2] "הועברו %2 מתוך %1 קבצים" msgstr[3] "הועברו %2 מתוך %1 קבצים" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/hi/kasts.po kasts-25.04.3/po/hi/kasts.po --- kasts-25.04.2/po/hi/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/hi/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2024-12-15 17:36+0530\n" "Last-Translator: Kali <EMAIL@ADDRESS>\n" "Language-Team: Hindi <fedora-trans...@redhat.com>\n" @@ -1093,7 +1093,7 @@ msgid "Settings" msgstr "सेटिंग्स" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1101,7 +1101,7 @@ msgstr[0] "%1 में से %2 पॉडकास्ट अपडेट किए गए" msgstr[1] "%1 में से %2 पॉडकास्ट अपडेट किए गए" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1109,7 +1109,7 @@ msgstr[0] "%1 में से %2 फ़ाइलें स्थानांतरित की गईं" msgstr[1] "%1 में से %2 फ़ाइलें स्थानांतरित की गईं" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/ia/kasts.po kasts-25.04.3/po/ia/kasts.po --- kasts-25.04.2/po/ia/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/ia/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2025-02-18 15:02+0100\n" "Last-Translator: giovanni <g.s...@tiscali.it>\n" "Language-Team: Interlingua <kde-i18n-...@kde.org>\n" @@ -1094,7 +1094,7 @@ msgid "Settings" msgstr "Preferentias" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1102,7 +1102,7 @@ msgstr[0] "Actualisate %2 de %1 Podcast" msgstr[1] "Actualisate %2 de %1 Podcastes" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1110,7 +1110,7 @@ msgstr[0] "Movite %2 de %1 file" msgstr[1] "Movite %2 de %1 files" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/is/kasts.po kasts-25.04.3/po/is/kasts.po --- kasts-25.04.2/po/is/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/is/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2024-06-29 14:23+0000\n" "Last-Translator: Gummi <gudmund...@gmail.com>\n" "Language-Team: Icelandic <kde-i18n-...@kde.org>\n" @@ -1094,7 +1094,7 @@ msgid "Settings" msgstr "Stillingar" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1102,7 +1102,7 @@ msgstr[0] "Uppfærði %2 af %1 hlaðvarpi" msgstr[1] "Uppfærði %2 af %1 hlaðvörpum" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1110,7 +1110,7 @@ msgstr[0] "Færði %2 af %1 skrá" msgstr[1] "Færði %2 af %1 skrám" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/it/kasts.po kasts-25.04.3/po/it/kasts.po --- kasts-25.04.2/po/it/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/it/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2025-02-15 15:08+0100\n" "Last-Translator: Vincenzo Reale <smart212...@gmail.com>\n" "Language-Team: Italian <kde-i18n...@kde.org>\n" @@ -1095,7 +1095,7 @@ msgid "Settings" msgstr "Impostazioni" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1103,7 +1103,7 @@ msgstr[0] "Aggiornato %2 di %1 podcast" msgstr[1] "Aggiornati %2 di %1 podcast" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1111,7 +1111,7 @@ msgstr[0] "Spostato %2 di %1 file" msgstr[1] "Spostati %2 di %1 file" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/ja/kasts.po kasts-25.04.3/po/ja/kasts.po --- kasts-25.04.2/po/ja/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/ja/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2021-05-08 21:05-0700\n" "Last-Translator: Japanese KDE translation team <kde...@kde.org>\n" "Language-Team: Japanese <kde...@kde.org>\n" @@ -1082,21 +1082,21 @@ msgid "Settings" msgstr "" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" msgid_plural "Updated %2 of %1 Podcasts" msgstr[0] "" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" msgid_plural "Moved %2 of %1 Files" msgstr[0] "" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/ka/kasts.po kasts-25.04.3/po/ka/kasts.po --- kasts-25.04.2/po/ka/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/ka/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2025-02-15 04:07+0100\n" "Last-Translator: Temuri Doghonadze <temuri.doghona...@gmail.com>\n" "Language-Team: Georgian <kde-i18n-...@kde.org>\n" @@ -1092,7 +1092,7 @@ msgid "Settings" msgstr "მორგება" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1100,7 +1100,7 @@ msgstr[0] "ატვირთულია %2 პოდკასტი %1-დან" msgstr[1] "ატვირთულია %2 პოდკასტი %1-დან" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1108,7 +1108,7 @@ msgstr[0] "გადატანილია %2 ფაილი %1-დან" msgstr[1] "გადატანილია %2 ფაილი %1-დან" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/ko/kasts.po kasts-25.04.3/po/ko/kasts.po --- kasts-25.04.2/po/ko/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/ko/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2025-04-06 22:19+0200\n" "Last-Translator: Shinjo Park <k...@peremen.name>\n" "Language-Team: Korean <kde...@kde.org>\n" @@ -1087,21 +1087,21 @@ msgid "Settings" msgstr "설정" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" msgid_plural "Updated %2 of %1 Podcasts" msgstr[0] "팟캐스트 %2개 중 %1개 업데이트됨" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" msgid_plural "Moved %2 of %1 Files" msgstr[0] "파일 %1개 중 %2개 이동함" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/lt/kasts.po kasts-25.04.3/po/lt/kasts.po --- kasts-25.04.2/po/lt/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/lt/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2023-02-24 00:58+0000\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -1095,7 +1095,7 @@ msgid "Settings" msgstr "" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1104,7 +1104,7 @@ msgstr[1] "" msgstr[2] "" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1113,7 +1113,7 @@ msgstr[1] "" msgstr[2] "" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/nl/kasts.po kasts-25.04.3/po/nl/kasts.po --- kasts-25.04.2/po/nl/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/nl/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2025-02-15 18:42+0100\n" "Last-Translator: Freek de Kruijf <freekdekru...@kde.nl>\n" "Language-Team: \n" @@ -1091,7 +1091,7 @@ msgid "Settings" msgstr "Instellingen" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1099,7 +1099,7 @@ msgstr[0] "%2 van %1 podcast bijgewerkt" msgstr[1] "%2 van %1 podcasts bijgewerkt" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1107,7 +1107,7 @@ msgstr[0] "Verplaatst %2 van %1 bestand" msgstr[1] "Verplaatst %2 van %1 bestanden" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/pa/kasts.po kasts-25.04.3/po/pa/kasts.po --- kasts-25.04.2/po/pa/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/pa/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2021-06-21 09:28-0700\n" "Last-Translator: A S Alam <aa...@satluj.org>\n" "Language-Team: Punjabi <punjabi-us...@lists.sf.net>\n" @@ -1157,7 +1157,7 @@ msgid "Settings" msgstr "ਸੈਟਿੰਗਾਂ" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1165,7 +1165,7 @@ msgstr[0] "" msgstr[1] "" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1173,7 +1173,7 @@ msgstr[0] "" msgstr[1] "" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/pl/kasts.po kasts-25.04.3/po/pl/kasts.po --- kasts-25.04.2/po/pl/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/pl/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2025-02-23 11:35+0100\n" "Last-Translator: Łukasz Wojniłowicz <lukasz.wojnilow...@gmail.com>\n" "Language-Team: Polish <kde-i18n-...@kde.org>\n" @@ -1097,7 +1097,7 @@ msgid "Settings" msgstr "Ustawienia" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1106,7 +1106,7 @@ msgstr[1] "Uaktualniono %2 z %1 podkastów" msgstr[2] "Uaktualniono %2 z %1 podkastów" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1115,7 +1115,7 @@ msgstr[1] "Przeniesiono %2 z %1 plików" msgstr[2] "Przeniesiono %2 z %1 plików" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/pt/kasts.po kasts-25.04.3/po/pt/kasts.po --- kasts-25.04.2/po/pt/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/pt/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2023-06-10 10:20+0100\n" "Last-Translator: José Nuno Coelho Pires <zepi...@gmail.com>\n" "Language-Team: Portuguese <kde-i18n...@kde.org>\n" @@ -1174,7 +1174,7 @@ msgid "Settings" msgstr "Configuração" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1182,7 +1182,7 @@ msgstr[0] "Foi Actualizado %2 de %1 'Podcast'" msgstr[1] "Foram Actualizados %2 de %1 'Podcasts'" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1190,7 +1190,7 @@ msgstr[0] "Foi Movido %2 de %1 Ficheiro" msgstr[1] "Foram Movidos %2 de %1 Ficheiros" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, fuzzy, kde-format #| msgid "Podcast downloads are currently not allowed on metered connections" msgctxt "@info:status" diff -Nru kasts-25.04.2/po/pt_BR/kasts.po kasts-25.04.3/po/pt_BR/kasts.po --- kasts-25.04.2/po/pt_BR/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/pt_BR/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2025-02-07 20:14-0300\n" "Last-Translator: Geraldo Simiao <geraldosim...@fedoraproject.org>\n" "Language-Team: Brazilian Portuguese <kde-i18n-pt...@kde.org>\n" @@ -1097,7 +1097,7 @@ msgid "Settings" msgstr "Configurações" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1105,7 +1105,7 @@ msgstr[0] "Atualizando %2 de %1 podcast" msgstr[1] "Atualizando %2 de %1 podcasts" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1113,7 +1113,7 @@ msgstr[0] "Movido %2 de %1 arquivo" msgstr[1] "Movido %2 de %1 arquivos" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/ru/kasts.po kasts-25.04.3/po/ru/kasts.po --- kasts-25.04.2/po/ru/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/ru/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2025-03-18 11:48+0300\n" "Last-Translator: Olesya Gerasimenko <translation-t...@basealt.ru>\n" "Language-Team: Basealt Translation Team\n" @@ -1101,7 +1101,7 @@ msgid "Settings" msgstr "Настройка" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1111,7 +1111,7 @@ msgstr[2] "Выполнено обновление подкастов (%2 из %1)" msgstr[3] "Выполнено обновление подкаста (%2 из %1)" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1121,7 +1121,7 @@ msgstr[2] "Выполнено перемещение файлов (%2 из %1)" msgstr[3] "Выполнено перемещение файла (%2 из %1)" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/sa/kasts.po kasts-25.04.3/po/sa/kasts.po --- kasts-25.04.2/po/sa/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/sa/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2024-12-25 19:45+0530\n" "Last-Translator: kali <shreekantkal...@gmail.com>\n" "Language-Team: Sanskrit <kde-i18n-...@kde.org>\n" @@ -1095,7 +1095,7 @@ msgid "Settings" msgstr "सेटिंग्स्" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1103,7 +1103,7 @@ msgstr[0] "%1 Podcast इत्यस्य %2 अद्यतनं कृतम्" msgstr[1] "%1 Podcasts इत्यस्य %2 अद्यतनं कृतम्" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1111,7 +1111,7 @@ msgstr[0] "%1 सञ्चिकायाः %2 स्थानान्तरितम्" msgstr[1] "%1 सञ्चिकानां %2 स्थानान्तरितम्" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/sk/kasts.po kasts-25.04.3/po/sk/kasts.po --- kasts-25.04.2/po/sk/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/sk/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2023-12-05 17:36+0100\n" "Last-Translator: Roman Paholik <wizzar...@gmail.com>\n" "Language-Team: Slovak <kde...@linux.sk>\n" @@ -1157,7 +1157,7 @@ msgid "Settings" msgstr "Nastavenia" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1166,7 +1166,7 @@ msgstr[1] "" msgstr[2] "" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1175,7 +1175,7 @@ msgstr[1] "" msgstr[2] "" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/sl/kasts.po kasts-25.04.3/po/sl/kasts.po --- kasts-25.04.2/po/sl/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/sl/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2025-02-15 09:31+0100\n" "Last-Translator: Matjaž Jeran <matjaz.je...@amis.net>\n" "Language-Team: Slovenian <lugos-...@lugos.si>\n" @@ -1102,7 +1102,7 @@ msgid "Settings" msgstr "Nastavitve" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1112,7 +1112,7 @@ msgstr[2] "Posodobljeno %2 od %1 spletnih oddaj" msgstr[3] "Posodobljeno %2 od %1 spletnih oddaj" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1122,7 +1122,7 @@ msgstr[2] "Premaknjeno %2 od %1 datotek" msgstr[3] "Premaknjeno %2 od %1 datotek" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/sv/kasts.po kasts-25.04.3/po/sv/kasts.po --- kasts-25.04.2/po/sv/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/sv/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: desktop files\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2025-02-15 08:03+0100\n" "Last-Translator: Stefan Asserhäll <stefan.asserh...@gmail.com>\n" "Language-Team: Swedish <kde-i18n-...@kde.org>\n" @@ -1088,7 +1088,7 @@ msgid "Settings" msgstr "Inställningar" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1096,7 +1096,7 @@ msgstr[0] "Uppdaterade %2 av %1 poddradioprogram" msgstr[1] "Uppdaterade %2 av %1 poddradioprogram" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1104,7 +1104,7 @@ msgstr[0] "Flyttade %2 av %1 fil" msgstr[1] "Flyttade %2 av %1 filer" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/tr/kasts.po kasts-25.04.3/po/tr/kasts.po --- kasts-25.04.2/po/tr/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/tr/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2025-04-07 00:49+0300\n" "Last-Translator: Emir SARI <emir_s...@icloud.com>\n" "Language-Team: Turkish <kde-l10n...@kde.org>\n" @@ -1094,7 +1094,7 @@ msgid "Settings" msgstr "Ayarlar" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1102,7 +1102,7 @@ msgstr[0] "%2/%1 pod yayını güncellendi" msgstr[1] "%2/%1 pod yayını güncellendi" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1110,7 +1110,7 @@ msgstr[0] "%2/%1 Dosya Taşındı" msgstr[1] "%2/%1 Dosya Taşındı" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/uk/kasts.po kasts-25.04.3/po/uk/kasts.po --- kasts-25.04.2/po/uk/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/uk/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2025-02-15 09:23+0200\n" "Last-Translator: Yuri Chornoivan <yurc...@ukr.net>\n" "Language-Team: Ukrainian <trans...@lists.fedoraproject.org>\n" @@ -1105,7 +1105,7 @@ msgid "Settings" msgstr "Параметри" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" @@ -1115,7 +1115,7 @@ msgstr[2] "Оновлено %2 з %1 трансляцій" msgstr[3] "Оновлено %2 з %1 трансляції" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" @@ -1125,7 +1125,7 @@ msgstr[2] "Пересунуто %2 з %1 файлів" msgstr[3] "Пересунуто %2 з %1 файла" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/zh_CN/kasts.po kasts-25.04.3/po/zh_CN/kasts.po --- kasts-25.04.2/po/zh_CN/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/zh_CN/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2024-04-23 19:24\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" @@ -1087,21 +1087,21 @@ msgid "Settings" msgstr "设置" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" msgid_plural "Updated %2 of %1 Podcasts" msgstr[0] "已更新了 %2 个播客,共 %1 个" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" msgid_plural "Moved %2 of %1 Files" msgstr[0] "已移动 %2 个文件,共 %1 个" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/po/zh_TW/kasts.po kasts-25.04.3/po/zh_TW/kasts.po --- kasts-25.04.2/po/zh_TW/kasts.po 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/po/zh_TW/kasts.po 2025-06-30 18:54:31.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kasts\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-04-23 02:34+0000\n" +"POT-Creation-Date: 2025-06-19 02:32+0000\n" "PO-Revision-Date: 2025-05-03 14:57+0900\n" "Last-Translator: Kisaragi Hiu <m...@kisaragi-hiu.com>\n" "Language-Team: Traditional Chinese <zh-l...@lists.slat.org>\n" @@ -1088,21 +1088,21 @@ msgid "Settings" msgstr "設定" -#: qml/Main.qml:205 +#: qml/Main.qml:206 #, kde-format msgctxt "Number of Updated Podcasts" msgid "Updated %2 of %1 Podcast" msgid_plural "Updated %2 of %1 Podcasts" msgstr[0] "已更新 %2 個 Podcast,共 %1 個" -#: qml/Main.qml:228 +#: qml/Main.qml:229 #, kde-format msgctxt "Number of Moved Files" msgid "Moved %2 of %1 File" msgid_plural "Moved %2 of %1 Files" msgstr[0] "已移動 %2 個檔案,共 %1 個" -#: qml/Main.qml:282 +#: qml/Main.qml:283 #, kde-format msgctxt "@info:status" msgid "Podcast downloads are currently not allowed on metered connections" diff -Nru kasts-25.04.2/snapcraft.yaml kasts-25.04.3/snapcraft.yaml --- kasts-25.04.2/snapcraft.yaml 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/snapcraft.yaml 2025-06-30 18:54:31.000000000 +0200 @@ -22,6 +22,7 @@ - network-manager-observe - network-status - password-manager-service + - alsa environment: QT_PLUGIN_PATH: "$SNAP/usr/lib/$CRAFT_ARCH_TRIPLET/plugins/snap/kf6-core24/current/usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR/plugins" QML_IMPORT_PATH: "$SNAP/usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR/qml:/snap/kf6-core24/current/usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR/qml" @@ -34,6 +35,9 @@ interface: content target: ffmpeg-platform # the folder where this content snap will be mounted default-provider: ffmpeg-2404 +layout: + /usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR/alsa-lib: + bind: $SNAP/usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR/alsa-lib slots: session-dbus-interface: interface: dbus @@ -56,23 +60,17 @@ - libnm0 - libsecret-1-0 - mpg123 + - libvlccore9 + - libvlc5 + - libpulse0 + - libasound2 + - libasound2-plugins + - libasound2-data cmake-parameters: - -DCMAKE_INSTALL_PREFIX=/usr - -DCMAKE_BUILD_TYPE=Release - -DQT_MAJOR_VERSION=6 - - -DBUILD_WITH_QT6=ON - -DBUILD_TESTING=OFF - - -DCMAKE_INSTALL_SYSCONFDIR=/etc - - -DCMAKE_INSTALL_LOCALSTATEDIR=/var - - -DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON - - -DCMAKE_FIND_USE_PACKAGE_REGISTRY=OFF - - -DCMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY=ON - - -DCMAKE_INSTALL_RUNSTATEDIR=/run - - -DCMAKE_SKIP_INSTALL_ALL_DEPENDENCY=ON - - -DCMAKE_VERBOSE_MAKEFILE=ON - - -DCMAKE_INSTALL_LIBDIR=lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR - - --log-level=STATUS - - -DCMAKE_LIBRARY_PATH=lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR build-environment: &build-environment - LD_LIBRARY_PATH: > "/snap/mesa-2404/current/usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR:$CRAFT_STAGE/usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR:/snap/kde-qt6-core24-sdk/current/usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR/libproxy:$LD_LIBRARY_PATH" @@ -101,9 +99,10 @@ build-snaps: - core24 - kf6-core24 + - ffmpeg-2404 override-prime: | set -eux - for snap in "core24" "kf6-core24"; do + for snap in "core24" "kf6-core24" "ffmpeg-2404"; do cd "/snap/$snap/current" && find . -type f,l -exec rm -rf "${CRAFT_PRIME}/{}" \; done diff -Nru kasts-25.04.2/src/qml/Main.qml kasts-25.04.3/src/qml/Main.qml --- kasts-25.04.2/src/qml/Main.qml 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/src/qml/Main.qml 2025-06-30 18:54:31.000000000 +0200 @@ -188,6 +188,7 @@ height: visible ? implicitHeight : 0 active: Kirigami.Settings.isMobile && !WindowUtils.isWidescreen sourceComponent: BottomToolbar { + visible: opacity > 0 opacity: (!footerLoader.item || footerLoader.item.contentY === 0) ? 1 : 0 Behavior on opacity { NumberAnimation {
diff -ur '--exclude=po' kasts-25.04.2/CMakeLists.txt kasts-25.04.3/CMakeLists.txt --- kasts-25.04.2/CMakeLists.txt 2025-07-23 17:35:40.000000000 +0200 +++ kasts-25.04.3/CMakeLists.txt 2025-07-23 17:39:59.000000000 +0200 @@ -8,7 +8,7 @@ # KDE Applications version, managed by release script. set(RELEASE_SERVICE_VERSION_MAJOR "25") set(RELEASE_SERVICE_VERSION_MINOR "04") -set(RELEASE_SERVICE_VERSION_MICRO "2") +set(RELEASE_SERVICE_VERSION_MICRO "3") set(RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}") project(kasts VERSION ${RELEASE_SERVICE_VERSION}) diff -ur '--exclude=po' kasts-25.04.2/debian/changelog kasts-25.04.3/debian/changelog --- kasts-25.04.2/debian/changelog 2025-06-09 22:28:35.000000000 +0200 +++ kasts-25.04.3/debian/changelog 2025-07-23 09:29:55.000000000 +0200 @@ -1,3 +1,15 @@ +kasts (25.04.3-1) unstable; urgency=medium + + * Team upload. + + [ Aurélien COUDERC ] + * New upstream release (25.04.3). + - Fix mobile player buttons. (kde#505726) + * Backport upstream commit: + - Fix crash when chapters don't have a title. [94e0b70f] (kde#506430) + + -- Aurélien COUDERC <couc...@debian.org> Wed, 23 Jul 2025 09:29:55 +0200 + kasts (25.04.2-1) unstable; urgency=medium * Team upload. diff -ur '--exclude=po' kasts-25.04.2/debian/patches/series kasts-25.04.3/debian/patches/series --- kasts-25.04.2/debian/patches/series 2025-01-21 16:25:59.000000000 +0100 +++ kasts-25.04.3/debian/patches/series 2025-07-23 09:29:18.000000000 +0200 @@ -1,2 +1,3 @@ 0001-Create-man-page.patch 0002-Install-manpage.patch +upstream_94e0b70f_Fix-crash-when-chapters-don-t-have-a-title.patch Seulement dans kasts-25.04.3/debian/patches: upstream_94e0b70f_Fix-crash-when-chapters-don-t-have-a-title.patch diff -ur '--exclude=po' kasts-25.04.2/org.kde.kasts.appdata.xml kasts-25.04.3/org.kde.kasts.appdata.xml --- kasts-25.04.2/org.kde.kasts.appdata.xml 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/org.kde.kasts.appdata.xml 2025-06-30 18:54:31.000000000 +0200 @@ -511,6 +511,7 @@ </screenshots> <launchable type="desktop-id">org.kde.kasts.desktop</launchable> <releases> + <release version="25.04.3" date="2025-07-03"/> <release version="25.04.2" date="2025-06-05"/> <release version="25.04.1" date="2025-05-08"/> <release version="25.04.0" date="2025-04-17"/> diff -ur '--exclude=po' kasts-25.04.2/.pc/0002-Install-manpage.patch/CMakeLists.txt kasts-25.04.3/.pc/0002-Install-manpage.patch/CMakeLists.txt --- kasts-25.04.2/.pc/0002-Install-manpage.patch/CMakeLists.txt 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/.pc/0002-Install-manpage.patch/CMakeLists.txt 2025-06-30 18:54:31.000000000 +0200 @@ -8,7 +8,7 @@ # KDE Applications version, managed by release script. set(RELEASE_SERVICE_VERSION_MAJOR "25") set(RELEASE_SERVICE_VERSION_MINOR "04") -set(RELEASE_SERVICE_VERSION_MICRO "2") +set(RELEASE_SERVICE_VERSION_MICRO "3") set(RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}") project(kasts VERSION ${RELEASE_SERVICE_VERSION}) diff -ur '--exclude=po' kasts-25.04.2/.pc/applied-patches kasts-25.04.3/.pc/applied-patches --- kasts-25.04.2/.pc/applied-patches 2025-07-23 17:35:40.217905617 +0200 +++ kasts-25.04.3/.pc/applied-patches 2025-07-23 17:39:59.835848944 +0200 @@ -1,2 +1,3 @@ 0001-Create-man-page.patch 0002-Install-manpage.patch +upstream_94e0b70f_Fix-crash-when-chapters-don-t-have-a-title.patch Seulement dans kasts-25.04.3/.pc: upstream_94e0b70f_Fix-crash-when-chapters-don-t-have-a-title.patch diff -ur '--exclude=po' kasts-25.04.2/snapcraft.yaml kasts-25.04.3/snapcraft.yaml --- kasts-25.04.2/snapcraft.yaml 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/snapcraft.yaml 2025-06-30 18:54:31.000000000 +0200 @@ -22,6 +22,7 @@ - network-manager-observe - network-status - password-manager-service + - alsa environment: QT_PLUGIN_PATH: "$SNAP/usr/lib/$CRAFT_ARCH_TRIPLET/plugins/snap/kf6-core24/current/usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR/plugins" QML_IMPORT_PATH: "$SNAP/usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR/qml:/snap/kf6-core24/current/usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR/qml" @@ -34,6 +35,9 @@ interface: content target: ffmpeg-platform # the folder where this content snap will be mounted default-provider: ffmpeg-2404 +layout: + /usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR/alsa-lib: + bind: $SNAP/usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR/alsa-lib slots: session-dbus-interface: interface: dbus @@ -56,23 +60,17 @@ - libnm0 - libsecret-1-0 - mpg123 + - libvlccore9 + - libvlc5 + - libpulse0 + - libasound2 + - libasound2-plugins + - libasound2-data cmake-parameters: - -DCMAKE_INSTALL_PREFIX=/usr - -DCMAKE_BUILD_TYPE=Release - -DQT_MAJOR_VERSION=6 - - -DBUILD_WITH_QT6=ON - -DBUILD_TESTING=OFF - - -DCMAKE_INSTALL_SYSCONFDIR=/etc - - -DCMAKE_INSTALL_LOCALSTATEDIR=/var - - -DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON - - -DCMAKE_FIND_USE_PACKAGE_REGISTRY=OFF - - -DCMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY=ON - - -DCMAKE_INSTALL_RUNSTATEDIR=/run - - -DCMAKE_SKIP_INSTALL_ALL_DEPENDENCY=ON - - -DCMAKE_VERBOSE_MAKEFILE=ON - - -DCMAKE_INSTALL_LIBDIR=lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR - - --log-level=STATUS - - -DCMAKE_LIBRARY_PATH=lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR build-environment: &build-environment - LD_LIBRARY_PATH: > "/snap/mesa-2404/current/usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR:$CRAFT_STAGE/usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR:/snap/kde-qt6-core24-sdk/current/usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR/libproxy:$LD_LIBRARY_PATH" @@ -101,9 +99,10 @@ build-snaps: - core24 - kf6-core24 + - ffmpeg-2404 override-prime: | set -eux - for snap in "core24" "kf6-core24"; do + for snap in "core24" "kf6-core24" "ffmpeg-2404"; do cd "/snap/$snap/current" && find . -type f,l -exec rm -rf "${CRAFT_PRIME}/{}" \; done diff -ur '--exclude=po' kasts-25.04.2/src/models/chaptermodel.cpp kasts-25.04.3/src/models/chaptermodel.cpp --- kasts-25.04.2/src/models/chaptermodel.cpp 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/src/models/chaptermodel.cpp 2025-07-23 17:39:59.000000000 +0200 @@ -15,6 +15,8 @@ #include <QObject> #include <QSqlQuery> +#include <KLocalizedString> + #include <attachedpictureframe.h> #include <chapterframe.h> @@ -186,7 +188,9 @@ } else { image = QString(); } - QString title = QString::fromStdString(chapterFrame->embeddedFrameListMap()["TIT2"].front()->toString().to8Bit(true)); + const auto frameListMap = chapterFrame->embeddedFrameListMap()["TIT2"]; + QString title = frameListMap.isEmpty() ? i18nc("@info", "Unnamed chapter") + : QString::fromStdString(chapterFrame->embeddedFrameListMap()["TIT2"].front()->toString().to8Bit(true)); int start = chapterFrame->startTime() / 1000; Chapter *chapter = new Chapter(m_entry, title, QString(), image, start, this); auto originalChapter = std::find_if(m_chapters.begin(), m_chapters.end(), [chapter](auto it) { diff -ur '--exclude=po' kasts-25.04.2/src/qml/Main.qml kasts-25.04.3/src/qml/Main.qml --- kasts-25.04.2/src/qml/Main.qml 2025-06-02 23:43:44.000000000 +0200 +++ kasts-25.04.3/src/qml/Main.qml 2025-06-30 18:54:31.000000000 +0200 @@ -188,6 +188,7 @@ height: visible ? implicitHeight : 0 active: Kirigami.Settings.isMobile && !WindowUtils.isWidescreen sourceComponent: BottomToolbar { + visible: opacity > 0 opacity: (!footerLoader.item || footerLoader.item.contentY === 0) ? 1 : 0 Behavior on opacity { NumberAnimation {