Skip to content

Commit

Permalink
[AboutPage.qml] Adopt other changes made for FileCase's AboutPage.qml
Browse files Browse the repository at this point in the history
Also mind to update translatable strings in `translations/flowplayer.ts`
  • Loading branch information
Olf0 authored Feb 4, 2024
1 parent 0cc110d commit 1dd6ac8
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions qml/pages/AboutPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,8 @@ Page {
}

Label {
text: colored + qsTr("If your language is not available you can contribute here:") + "<br>" +
"<a href='https://www.transifex.com/projects/p/flowplayer/'>" +
"www.transifex.com/projects/p/flowplayer</a>"
text: colored + qsTr("If you want to create a new translation or improve an extant one:") + "<br>" +
"<a href='https://app.transifex.com/olf/flowplayer/'>" + "Transifex - FlowPlayer</a>"
onLinkActivated: Qt.openUrlExternally(link)
font.pixelSize: Theme.fontSizeSmall
textFormat: Text.RichText
Expand All @@ -118,15 +117,15 @@ Page {
}

Label {
text: colored + qsTr("You can contribute to keep this project alive making a small donation")
text: colored + qsTr("You can support the original author of FlowPlayer by donating:")
font.pixelSize: Theme.fontSizeSmall
textFormat: Text.RichText
wrapMode: Text.WordWrap
width: parent.width
}

Image {
source: "../paypal.png"
source: "file:///usr/share/flowplayer/icons/paypal.png"
height: Theme.itemSizeMedium
fillMode: Image.PreserveAspectFit
smooth: true
Expand All @@ -141,5 +140,4 @@ Page {

}


}

0 comments on commit 1dd6ac8

Please sign in to comment.