From 95aa8d8127a59f83a908e065dad57634d330372c Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Sun, 3 Sep 2023 22:46:26 +0200 Subject: [PATCH] libcalamares: update maintainer and sponsor --- src/libcalamares/CalamaresAbout.cpp | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/libcalamares/CalamaresAbout.cpp b/src/libcalamares/CalamaresAbout.cpp index a90866846..89c90e116 100644 --- a/src/libcalamares/CalamaresAbout.cpp +++ b/src/libcalamares/CalamaresAbout.cpp @@ -20,11 +20,13 @@ static const char s_footer[] = QT_TRANSLATE_NOOP( "AboutData", "Thanks to the Calamares team " "and the Calamares " - "translators team.

" - "Calamares " - "development is sponsored by
" - "Blue Systems - " - "Liberating Software." ); + "translators team." ); + +static const char s_sponsor[] = QT_TRANSLATE_NOOP( "AboutData", + "Calamares " + "development is sponsored by
" + "Blue Systems - " + "Liberating Software." ); struct Maintainer { @@ -45,7 +47,7 @@ struct Maintainer static constexpr const Maintainer maintainers[] = { { 2014, 2017, "Teo Mrnjavac", "teo@kde.org" }, - { 2017, 2022, "Adriaan de Groot", "groot@kde.org" }, + { 2017, 2023, "Adriaan de Groot", "groot@kde.org" }, }; static QString @@ -70,6 +72,7 @@ substituteVersions( const QString& s ) const QString Calamares::aboutString() { + Q_UNUSED( s_sponsor ) return substituteVersions( QCoreApplication::translate( "AboutData", s_header ) ) + aboutMaintainers() + QCoreApplication::translate( "AboutData", s_footer ); }