import QtQuick 2 import QtQuick.Controls 1 Rectangle { property var title: qsTr("Live mode") width: view.width; height: view.height Loader { sourceComponent: slidebackground ; anchors.fill: parent } Column { anchors.centerIn: parent spacing: 10 Label { anchors.horizontalCenter: parent.horizontalCenter horizontalAlignment: TextInput.AlignHCenter text: qsTr("Live mode") font.weight: Font.DemiBold font.pixelSize: Qt.application.font.pixelSize * 1.5 color: "white" } Label { anchors.horizontalCenter: parent.horizontalCenter horizontalAlignment: TextInput.AlignHCenter width: slideshow.width text:qsTr('This support allows you to try out Mageia without having to actually install it, or make any changes to your computer. However, the Live media also includes an Installer, which can be started when booting the media, or after booting like now.') wrapMode: Text.WordWrap;textFormat: Text.RichText color: "white" } Label { anchors.horizontalCenter: parent.horizontalCenter horizontalAlignment: TextInput.AlignHCenter width: slideshow.width text:qsTr("Any customization or installed software will be kept when installing just after. But they won't survive to a reboot, except on a memory support and if you have added a persistent partition.") wrapMode: Text.WordWrap;textFormat: Text.RichText color: "white" } MButton { anchors.horizontalCenter: parent.horizontalCenter objectName: "link" //: the link to the local file can be adapted to your language if the documentation is translated onMbuttonClicked: { link.weblink(qsTr("file:///usr/share/doc/mageia-doc/draklive/en/index.html"))} buttonText: qsTr("Documentation of installer") } } }