blob: 30355c8d2d8cf9798ce8417d2d1deead68fc59dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
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")
}
}
}
|