import QtQuick 1.1 import com.nokia.meego 1.0 import "uiconstants.js" as UiConstants Page { anchors.fill: parent tools: ToolBarLayout { id: toolBar ToolIcon { iconId: "icon-m-toolbar-back" + (theme.inverted ? "-white": "") onClicked: pageStack.pop() } } PageHeader { id: header anchors.top: parent.top selectedIndex: settings.showArrivalsPreferred ? 1 : 0 options: [ qsTr("About Quando Parte") ] } Label { anchors { top: header.bottom; left: parent.left; right: parent.right; margins: UiConstants.DefaultMargin } 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 " + "Viaggiatreno

"); onLinkActivated: Qt.openUrlExternally(link) } LabelStyle { id: labelStyle } }