[libcalamaresui] Add donateUrl to the branding settings

SEE #1384
This commit is contained in:
Adriaan de Groot 2020-05-06 14:29:35 +02:00
parent 9e344f50a7
commit cd44f548f5
3 changed files with 5 additions and 2 deletions

View File

@ -103,6 +103,7 @@ strings:
supportUrl: https://github.com/calamares/calamares/issues
knownIssuesUrl: https://calamares.io/about/
releaseNotesUrl: https://calamares.io/about/
donateUrl: https://kde.org/community/donations/index.php
# These images are loaded from the branding module directory.
#

View File

@ -67,7 +67,8 @@ const QStringList Branding::s_stringEntryStrings =
"productUrl",
"supportUrl",
"knownIssuesUrl",
"releaseNotesUrl"
"releaseNotesUrl",
"donateUrl"
};

View File

@ -61,7 +61,8 @@ public:
ProductUrl,
SupportUrl,
KnownIssuesUrl,
ReleaseNotesUrl
ReleaseNotesUrl,
DonateUrl
};
Q_ENUM( StringEntry )