diff options
-rw-r--r-- | qml/mw-ui.qml | 2 |
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" |