diff options
author | Papoteur <papoteur@mageia.org> | 2020-06-20 15:12:21 +0200 |
---|---|---|
committer | Papoteur <papoteur@mageia.org> | 2020-06-20 15:12:21 +0200 |
commit | eb567c39b1d869ca33a8483695e8c81a274f05a2 (patch) | |
tree | 0a479cbbc9e65ef7e6c406be6d37f8cbce99138f /qml/Welcome.qml | |
parent | 914b3a494ef37bf677315b122adc74c557343cab (diff) | |
download | mageiawelcome-eb567c39b1d869ca33a8483695e8c81a274f05a2.tar mageiawelcome-eb567c39b1d869ca33a8483695e8c81a274f05a2.tar.gz mageiawelcome-eb567c39b1d869ca33a8483695e8c81a274f05a2.tar.bz2 mageiawelcome-eb567c39b1d869ca33a8483695e8c81a274f05a2.tar.xz mageiawelcome-eb567c39b1d869ca33a8483695e8c81a274f05a2.zip |
Distinct Live and classical modes
Diffstat (limited to 'qml/Welcome.qml')
-rw-r--r-- | qml/Welcome.qml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/qml/Welcome.qml b/qml/Welcome.qml index 64be714..09d8a5a 100644 --- a/qml/Welcome.qml +++ b/qml/Welcome.qml @@ -24,7 +24,9 @@ import QtQuick.Controls 1 Label { horizontalAlignment: TextInput.AlignHCenter anchors.horizontalCenter: parent.horizontalCenter - text: qsTr("We are going to guide you through a few important steps and help<BR />you with the configuration of your newly installed system.<BR /><BR />Now, click on <i>Media sources</i> to go to the first step."); + text: (user == 'live' ? + qsTr("We are going to guide you through a few important information and<BR />help you with to go further with Mageia.<BR /><BR />Now, click on <i> %1 </i> to go to the first step.").arg(qsTr("Live mode")) : + qsTr("We are going to guide you through a few important steps and help<BR />you with the configuration of your newly installed system.<BR /><BR />Now, click on <i>%1</i> to go to the first step.").arg(qsTr("Media sources"))); textFormat: Text.RichText color: "white" } |