Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AboutPage.qml] Another take at relative icon paths #59

Merged
merged 14 commits into from
Feb 13, 2024
Merged
13 changes: 4 additions & 9 deletions qml/pages/AboutPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Page {
spacing: Theme.paddingLarge

Image {
source: "file:///usr/share/icons/hicolor/86x86/apps/flowplayer.png"
source: "../../../icons/hicolor/86x86/apps/flowplayer.png"
}

Column {
Expand Down Expand Up @@ -65,12 +65,6 @@ Page {
Label {
color: Theme.secondaryColor
text: "(C) 2015-2021 Matias Perez (CepiPerez)"
font.pixelSize: Theme.fontSizeSmall
}

Label {
color: Theme.secondaryColor
text: " "
textFormat: Text.RichText
font.pixelSize: Theme.fontSizeSmall
}
Expand All @@ -97,6 +91,7 @@ Page {
Label {
text: colored + qsTr("If you want to create a new translation or improve an extant one:")
font.pixelSize: Theme.fontSizeSmall
textFormat: Text.RichText
wrapMode: Text.WordWrap
width: parent.width
}
Expand Down Expand Up @@ -124,8 +119,8 @@ Page {
}

Image {
source: "file:///usr/share/flowplayer/qml/paypal.png"
height: Theme.itemSizeMedium
source: "../paypal.png"
height: Theme.itemSizeLarge
fillMode: Image.PreserveAspectFit
smooth: true

Expand Down
6 changes: 3 additions & 3 deletions translations/flowplayer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/AboutPage.qml" line="80"/>
<location filename="../qml/pages/AboutPage.qml" line="74"/>
<source>Contributors:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/AboutPage.qml" line="98"/>
<location filename="../qml/pages/AboutPage.qml" line="92"/>
<source>If you want to create a new translation or improve an extant one:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/AboutPage.qml" line="119"/>
<location filename="../qml/pages/AboutPage.qml" line="114"/>
<source>You can support the original author of FlowPlayer by donating:</source>
<translation type="unfinished"></translation>
</message>
Expand Down
Loading