Skip to content

Commit

Permalink
[AboutPage.qml] Add Damien and me as conributors
Browse files Browse the repository at this point in the history
ToDo: Add two translatable strings and move other string references for `AboutPage.qml` in `translations/flowplayer.ts`
  • Loading branch information
Olf0 authored Feb 4, 2024
1 parent 51769dd commit 0cc110d
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion qml/pages/AboutPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,31 @@ Page {

Label {
color: Theme.secondaryColor
text: "(C) 2015-2016 Matias Perez (CepiPerez)"
text: qsTr("Original author:")
font.pixelSize: Theme.fontSizeSmall
}

Label {
color: Theme.secondaryColor
text: "(C) 2015-2021 Matias Perez (CepiPerez)"
font.pixelSize: Theme.fontSizeSmall
}

Separator {
width: parent.width
color: Theme.secondaryColor
}

Label {
color: Theme.secondaryColor
text: qsTr("Contributors:")
font.pixelSize: Theme.fontSizeSmall
}

Label {
color: Theme.secondaryColor
text: "(C) 2022-2024 olf (Olf0)" + "<br />" +
"(C) 2023-2024 Damien Caliste (dcaliste)"
font.pixelSize: Theme.fontSizeSmall
}

Expand Down

0 comments on commit 0cc110d

Please sign in to comment.