blob: 987eccf940707c6ca9fac776d5e1ca6730a2e527 (
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
47
48
|
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 mode 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 into Live mode, like now.')
wrapMode: Text.WordWrap;textFormat: Text.RichText
padding: 20
color: "white"
}
Label {
anchors.horizontalCenter: parent.horizontalCenter
horizontalAlignment: TextInput.AlignHCenter
width: slideshow.width
text:qsTr("Any customization, including installation of additional software, will only survive until you reboot the system, unless you have added a persistence partition.")
wrapMode: Text.WordWrap;textFormat: Text.RichText
padding: 20
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/en/draklive/index.html"))}
buttonText: qsTr("Installer documentation")
}
}
}
|