X-Git-Url: http://vcs.maemo.org/git/?a=blobdiff_plain;f=application%2Fresources%2Fsailfish%2Fqml%2Fpages%2FAboutPage.qml;h=c478bc9b773ac86d21dfea68342e3b6997b43e3e;hb=c2f826c1416fa85f1251a06e543a6f8ed66305db;hp=a41cd3b3370165ce0d7a393756362e6961b4f893;hpb=c02b25063b429e938bc4630813062c776fa99ba7;p=quandoparte diff --git a/application/resources/sailfish/qml/pages/AboutPage.qml b/application/resources/sailfish/qml/pages/AboutPage.qml index a41cd3b..c478bc9 100644 --- a/application/resources/sailfish/qml/pages/AboutPage.qml +++ b/application/resources/sailfish/qml/pages/AboutPage.qml @@ -3,39 +3,54 @@ import Sailfish.Silica 1.0 Page { SilicaFlickable { - anchors.fill: parent - PageHeader { - id: header - anchors.top: parent.top - title: qsTr("About Quando Parte") - } - Label { - anchors { - top: header.bottom; - left: parent.left; - right: parent.right; - margins: Theme.paddingLarge - } + anchors.fill: parent + anchors.margins: Theme.paddingLarge + PageHeader { + id: header + anchors.top: parent.top + title: qsTr("About Quando Parte") + } + + Row { + anchors.top: header.bottom + id: firstSection + spacing: Theme.paddingLarge + Image { + anchors.verticalCenter: parent.verticalCenter + source: "/usr/share/icons/hicolor/meegotouch/apps/quandoparte.png" + } + Label { + textFormat: Text.RichText + text: "" + + "
" + + qsTr("Quando Parte") + "
" + "
" + + qsTr("version ") + settings.versionString + "
" + onLinkActivated: Qt.openUrlExternally(link) + } + } + Label { + anchors { + top: firstSection.bottom; + left: parent.left; + right: parent.right; + topMargin: Theme.paddingLarge + } fontSizeMode: Text.Fit textFormat: Text.RichText wrapMode: Text.WordWrap linkColor: Theme.highlightColor - text: qsTr("

" + - "Quando Parte" + "

" +"

version ") + - settings.versionString + - "

" + - qsTr("

" + - "

Copyright (c) 2010, 2011, 2012, 2013

" + - "

Luciano Montanaro " + - "(mikelima@cirulla.net)

" + - "

Licensed under the GNU Public License v2 or above

" + - "

Station geolocation data from " + - "OpenStreetMap

" + - "

Realtime train data from " + + text: "" + + "

" + + qsTr("

Copyright (c) 2010, 2011, 2012, 2013

" + + "

Luciano Montanaro " + + "(mikelima@cirulla.net)

" + + "

Licensed under the GNU Public License v2 or above

" + + "

Station geolocation data from " + + "OpenStreetMap

" + + "

Realtime train data from " + "Viaggiatreno

") + - "
" + "
" onLinkActivated: Qt.openUrlExternally(link) - } + } } - - } +}