From eb567c39b1d869ca33a8483695e8c81a274f05a2 Mon Sep 17 00:00:00 2001 From: Papoteur Date: Sat, 20 Jun 2020 15:12:21 +0200 Subject: Distinct Live and classical modes --- qml/Welcome.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'qml/Welcome.qml') 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
you with the configuration of your newly installed system.

Now, click on Media sources to go to the first step."); + text: (user == 'live' ? + qsTr("We are going to guide you through a few important information and
help you with to go further with Mageia.

Now, click on %1 to go to the first step.").arg(qsTr("Live mode")) : + qsTr("We are going to guide you through a few important steps and help
you with the configuration of your newly installed system.

Now, click on %1 to go to the first step.").arg(qsTr("Media sources"))); textFormat: Text.RichText color: "white" } -- cgit v1.2.1