diff options
author | Papoteur <papoteur@mageia.org> | 2019-02-01 22:07:31 +0100 |
---|---|---|
committer | Papoteur <papoteur@mageia.org> | 2019-02-03 22:43:38 +0100 |
commit | ef13f51356527a27e9419cb2df8d39c99242b107 (patch) | |
tree | bd95e8e8f9728f9a6a4e859af897b9187874899d /qml/mw-ui.qml | |
parent | 8f82373cd42c80dcfdededf52ab6d53bc8b6f936 (diff) | |
download | mageiawelcome-ef13f51356527a27e9419cb2df8d39c99242b107.tar mageiawelcome-ef13f51356527a27e9419cb2df8d39c99242b107.tar.gz mageiawelcome-ef13f51356527a27e9419cb2df8d39c99242b107.tar.bz2 mageiawelcome-ef13f51356527a27e9419cb2df8d39c99242b107.tar.xz mageiawelcome-ef13f51356527a27e9419cb2df8d39c99242b107.zip |
About: authors are not translatable
Diffstat (limited to 'qml/mw-ui.qml')
-rw-r--r-- | qml/mw-ui.qml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/qml/mw-ui.qml b/qml/mw-ui.qml index 1efa327..996938c 100644 --- a/qml/mw-ui.qml +++ b/qml/mw-ui.qml @@ -814,15 +814,21 @@ This is a background process and you will be able to use your computer normally } Button { x: (view.width - width)/2 - text: qsTr("About") onClicked: about.open() + style: ButtonStyle { + label: Label { + horizontalAlignment: TextInput.AlignHCenter + text: qsTr("About") + color: "black" + } + } } MessageDialog { id: about title: qsTr("About Mageiawelcome") - //: the %1 will be replaced with the user name - text: "Release %1<br />Authors : Daniel Napora, Papoteur, Antony Baker<br />".arg(version.version) + //: %1 will be replaced with the release number, %2 with author's names + text: qsTr("Release %1<br />Authors : %2").arg(version.version).arg("Daniel Napora, Papoteur, Antony Baker<br />") //: replace with the list of translator's names detailedText: qsTr("Translators: English is the source language") standardButtons: StandardButton.Close |