summaryrefslogtreecommitdiffstats
path: root/qml
diff options
context:
space:
mode:
authorPapoteur <papoteur@mageia.org>2020-06-20 08:12:44 +0200
committerPapoteur <papoteur@mageia.org>2020-06-20 08:12:44 +0200
commitf23ebca9ad3ced97a0bc3ab0cc3ecaa0d52849f9 (patch)
tree7e935dc53180d5f83e57b51c17eed3b178b99b84 /qml
parent90469a9bcf349365cc9f4ab6ed5ccfd542b41f9a (diff)
downloadmageiawelcome-f23ebca9ad3ced97a0bc3ab0cc3ecaa0d52849f9.tar
mageiawelcome-f23ebca9ad3ced97a0bc3ab0cc3ecaa0d52849f9.tar.gz
mageiawelcome-f23ebca9ad3ced97a0bc3ab0cc3ecaa0d52849f9.tar.bz2
mageiawelcome-f23ebca9ad3ced97a0bc3ab0cc3ecaa0d52849f9.tar.xz
mageiawelcome-f23ebca9ad3ced97a0bc3ab0cc3ecaa0d52849f9.zip
Doesn't display live as user
Diffstat (limited to 'qml')
-rw-r--r--qml/mw-ui.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/qml/mw-ui.qml b/qml/mw-ui.qml
index 384037d..aaaa5da 100644
--- a/qml/mw-ui.qml
+++ b/qml/mw-ui.qml
@@ -87,7 +87,7 @@ Rectangle {
//: the %1 will be replaced with the user name
anchors.horizontalCenter: parent.horizontalCenter
horizontalAlignment: TextInput.AlignHCenter
- text: qsTr("Welcome to Mageia, %1").arg(user)+'\n'
+ text: (user == 'live' ? qsTr("Welcome to Mageia") : qsTr("Welcome to Mageia, %1").arg(user)+'\n')
font.weight: Font.DemiBold
font.pixelSize: Qt.application.font.pixelSize * 1.5
color: "white"