From 85736c48929548ff29dee612dec0a73d637424eb Mon Sep 17 00:00:00 2001 From: Niels Date: Tue, 22 Jul 2025 18:18:49 +0200 Subject: [PATCH] Translatable AboutPage. --- qml/pages/AboutPage.qml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/qml/pages/AboutPage.qml b/qml/pages/AboutPage.qml index cb24399..0428b10 100644 --- a/qml/pages/AboutPage.qml +++ b/qml/pages/AboutPage.qml @@ -4,7 +4,6 @@ import Sailfish.Silica 1.0 Page { Flickable { id: flick - //width:parent.width height: parent.height - Theme.paddingLarge * 3 anchors.top: parent.top anchors.left: parent.left @@ -23,7 +22,6 @@ Page { font.bold: true text: "AllRadio2 v"+ _version anchors.horizontalCenter: parent.horizontalCenter - } Text { @@ -31,12 +29,9 @@ Page { font.pixelSize: Theme.fontSizeMedium color: Theme.primaryColor linkColor: Theme.highlightColor - //wrapMode: TextEdit.WordWrap - //verticalAlignment: Text.Center horizontalAlignment: Text.Center anchors.horizontalCenter: parent.horizontalCenter onLinkActivated: Qt.openUrlExternally(link) -// text: qsTr("License: GPLv2") text: qsTr("License: GPLv2") } @@ -58,7 +53,7 @@ Page { wrapMode: TextEdit.WordWrap verticalAlignment: Text.AlignLeft onLinkActivated: Qt.openUrlExternally(link) - text: "

This is version 2 of my old app AllRadio. It fixes the API changes made a couple of years ago in Radio Browser.

+ text: qsTr("

This is version 2 of my old app AllRadio. It fixes the API changes made a couple of years ago in Radio Browser.

What i have done (for now):

It is propably buggy and lacking of some functions, but i will try to update and fix it when i find the time for it.

-

For now, the source code is hosted on this git server." +

For now, the source code is hosted on this git server.") } } }