libcalamares: update maintainer and sponsor

This commit is contained in:
Adriaan de Groot 2023-09-03 22:46:26 +02:00
parent 246d3f243d
commit 95aa8d8127

View File

@ -20,11 +20,13 @@ static const char s_footer[]
= QT_TRANSLATE_NOOP( "AboutData", = QT_TRANSLATE_NOOP( "AboutData",
"Thanks to <a href=\"https://calamares.io/team/\">the Calamares team</a> " "Thanks to <a href=\"https://calamares.io/team/\">the Calamares team</a> "
"and the <a href=\"https://app.transifex.com/calamares/calamares/\">Calamares " "and the <a href=\"https://app.transifex.com/calamares/calamares/\">Calamares "
"translators team</a>.<br/><br/>" "translators team</a>." );
"<a href=\"https://calamares.io/\">Calamares</a> "
"development is sponsored by <br/>" static const char s_sponsor[] = QT_TRANSLATE_NOOP( "AboutData",
"<a href=\"http://www.blue-systems.com/\">Blue Systems</a> - " "<a href=\"https://calamares.io/\">Calamares</a> "
"Liberating Software." ); "development is sponsored by <br/>"
"<a href=\"http://www.blue-systems.com/\">Blue Systems</a> - "
"Liberating Software." );
struct Maintainer struct Maintainer
{ {
@ -45,7 +47,7 @@ struct Maintainer
static constexpr const Maintainer maintainers[] = { static constexpr const Maintainer maintainers[] = {
{ 2014, 2017, "Teo Mrnjavac", "teo@kde.org" }, { 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 static QString
@ -70,6 +72,7 @@ substituteVersions( const QString& s )
const QString const QString
Calamares::aboutString() Calamares::aboutString()
{ {
Q_UNUSED( s_sponsor )
return substituteVersions( QCoreApplication::translate( "AboutData", s_header ) ) + aboutMaintainers() return substituteVersions( QCoreApplication::translate( "AboutData", s_header ) ) + aboutMaintainers()
+ QCoreApplication::translate( "AboutData", s_footer ); + QCoreApplication::translate( "AboutData", s_footer );
} }