summaryrefslogtreecommitdiffstats
path: root/qml
diff options
context:
space:
mode:
authorPapoteur <papoteur@mageia.org>2021-04-24 12:58:02 +0200
committerPapoteur <papoteur@mageia.org>2021-04-24 14:38:32 +0200
commit3f5a9e0154aece6c95833acf747747cef1926e18 (patch)
tree087467a99539e59fa5351ec89898ea8423766350 /qml
parent54a7145b1657dff610fea5f771d8bda0f0ac9760 (diff)
downloadmageiawelcome-3f5a9e0154aece6c95833acf747747cef1926e18.tar
mageiawelcome-3f5a9e0154aece6c95833acf747747cef1926e18.tar.gz
mageiawelcome-3f5a9e0154aece6c95833acf747747cef1926e18.tar.bz2
mageiawelcome-3f5a9e0154aece6c95833acf747747cef1926e18.tar.xz
mageiawelcome-3f5a9e0154aece6c95833acf747747cef1926e18.zip
Change format of MCC categories, because of CJ languages displayed in column instead of in line (mga#28806)
Diffstat (limited to 'qml')
-rw-r--r--qml/Mcc.qml18
1 files changed, 9 insertions, 9 deletions
diff --git a/qml/Mcc.qml b/qml/Mcc.qml
index 82e7554..866287d 100644
--- a/qml/Mcc.qml
+++ b/qml/Mcc.qml
@@ -23,15 +23,15 @@ Rectangle {
Label {
padding: 5
anchors.horizontalCenter: parent.horizontalCenter
- text: "<ul><li>"+qsTr("Software Management")+"</li><li>"
- + qsTr("Hardware")+"</li><li>"
- + qsTr("Network and Internet")+"</li><li>"
- + qsTr("System")+"</li><li>"
- + qsTr("Network Sharing")+"</li><li>"
- + qsTr("Local Disks")+"</li><li>"
- + qsTr("Security")+"</li><li>"
- + qsTr("Boot")+"</li></ul>";
- wrapMode: Text.WordWrap;textFormat: Text.RichText
+ text: "• " + qsTr("Software Management")+"\n• "
+ + qsTr("Hardware")+"\n• "
+ + qsTr("Network and Internet")+"\n• "
+ + qsTr("System")+"\n• "
+ + qsTr("Network Sharing")+"\n• "
+ + qsTr("Local Disks")+"\n• "
+ + qsTr("Security")+"\n• "
+ + qsTr("Boot");
+ wrapMode: Text.WordWrap;
color: "white"
}