Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Multimedia
Kdenlive
Commits
a5674a08
Commit
a5674a08
authored
Jan 26, 2022
by
Julius Künzel
Browse files
Show package type in about dialog
parent
c7ce11c2
Pipeline
#128844
passed with stage
in 5 minutes and 41 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/main.cpp
View file @
a5674a08
...
...
@@ -180,8 +180,12 @@ int main(int argc, char *argv[])
qApp
->
processEvents
(
QEventLoop
::
AllEvents
);
// Create KAboutData
QString
otherText
=
i18n
(
"Please report bugs to <a href=
\"
%1
\"
>%2</a>"
,
QStringLiteral
(
"https://bugs.kde.org/enter_bug.cgi?product=kdenlive"
),
QStringLiteral
(
"https://bugs.kde.org/"
));
if
(
!
packageType
.
isEmpty
())
{
otherText
.
prepend
(
i18n
(
"You are using the %1 package.<br>"
,
packageType
));
}
KAboutData
aboutData
(
QByteArray
(
"kdenlive"
),
i18n
(
"Kdenlive"
),
KDENLIVE_VERSION
,
i18n
(
"An open source video editor."
),
KAboutLicense
::
GPL_V3
,
i18n
(
"Copyright © 2007–2022 Kdenlive authors"
),
i18n
(
"Please report bugs to <a href=
\"
%1
\"
>%2</a>"
,
QStringLiteral
(
"https://bugs.kde.org/enter_bug.cgi?product=kdenlive"
),
QStringLiteral
(
"https://bugs.kde.org/"
))
,
i18n
(
"Copyright © 2007–2022 Kdenlive authors"
),
otherText
,
QStringLiteral
(
"https://kdenlive.org"
));
// main developers (alphabetical)
aboutData
.
addAuthor
(
i18n
(
"Jean-Baptiste Mardelle"
),
i18n
(
"MLT and KDE SC 4 / KF5 port, main developer and maintainer"
),
QStringLiteral
(
"jb@kdenlive.org"
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment