diff options
Diffstat (limited to 'qml/mw-ui.qml')
-rw-r--r-- | qml/mw-ui.qml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/qml/mw-ui.qml b/qml/mw-ui.qml index 892f0bd..87617ea 100644 --- a/qml/mw-ui.qml +++ b/qml/mw-ui.qml @@ -249,6 +249,7 @@ Rectangle { Column { x:10; y: 30 + spacing: 10 Label { text: qsTr("How Mageia manages updates"); font.bold: true; padding: 10 } Label { width: slideshow.width * .9 @@ -271,6 +272,21 @@ Rectangle { } } } + Button { + x:10 + width: view.width * .18; + objectName: "link" + onClicked:{ link.weblink("https://advisories.mageia.org/")} + style: ButtonStyle { + label: Label { + horizontalAlignment: TextInput.AlignHCenter + //: (en) indicates that the content of the link is in English + text: qsTr("Advisories of updates (en)"); + width: parent.width + wrapMode: Text.WordWrap + } + } + } } Label { |