diff --git a/i18n/de.ts b/i18n/de.ts index b504539..2a83634 100644 --- a/i18n/de.ts +++ b/i18n/de.ts @@ -4,17 +4,29 @@ About - A Simple Sailfish OTP Generator<br />(RFC 6238/4226 compatible) - Ein einfacher Sailfish OTP-Generator<br/>(RFC 6238/4226-kompatibel) + Ein einfacher Sailfish OTP-Generator<br/>(RFC 6238/4226-kompatibel) - Copyright: Stefan Brand<br />License: BSD (3-clause) - Copyright: Stefan Brand<br/>Lizenz: BSD (3-Klausel) + Copyright: Stefan Brand<br/>Lizenz: BSD (3-Klausel) - + + A Simple Sailfish OTP Generator +(RFC 6238/4226 compatible) + Ein einfacher Sailfish OTP-Generator +(RFC 6238/4226-kompatibel) + + + + Copyright: Stefan Brand +License: BSD (3-clause) + Copyright: Stefan Brand +Lizenz: BSD (3-Klausel) + + + SailOTP uses the following third party libs: SailOTP verwendet folgende externe Bibliotheken: diff --git a/i18n/en.ts b/i18n/en.ts index d5d94f7..068b2c7 100644 --- a/i18n/en.ts +++ b/i18n/en.ts @@ -4,17 +4,19 @@ About - - A Simple Sailfish OTP Generator<br />(RFC 6238/4226 compatible) + + A Simple Sailfish OTP Generator +(RFC 6238/4226 compatible) - - Copyright: Stefan Brand<br />License: BSD (3-clause) + + Copyright: Stefan Brand +License: BSD (3-clause) - + SailOTP uses the following third party libs: diff --git a/qml/pages/About.qml b/qml/pages/About.qml index a9a75df..a0c139e 100644 --- a/qml/pages/About.qml +++ b/qml/pages/About.qml @@ -37,36 +37,40 @@ Page { id: logo source: "../sailotp.png" anchors.horizontalCenter: parent.horizontalCenter - y: 200 + y: 150 } Label { id: name anchors.horizontalCenter: parent.horizontalCenter - y: 320 + y: 270 font.bold: true text: "SailOTP " + Qt.application.version } - Text { + TextArea { id: desc anchors.horizontalCenter: parent.horizontalCenter anchors.top: name.bottom anchors.topMargin: 20 - text: qsTr("A Simple Sailfish OTP Generator
(RFC 6238/4226 compatible)") + width: parent.width + horizontalAlignment: TextEdit.Center + readOnly: true + text: qsTr("A Simple Sailfish OTP Generator\n(RFC 6238/4226 compatible)") color: "white" } - Text { + TextArea { id: copyright anchors.horizontalCenter: parent.horizontalCenter anchors.top: desc.bottom - anchors.topMargin: 20 - text: qsTr("Copyright: Stefan Brand
License: BSD (3-clause)") + width: parent.width + horizontalAlignment: TextEdit.Center + readOnly: true + text: qsTr("Copyright: Stefan Brand\nLicense: BSD (3-clause)") color: "white" } Button { id: homepage anchors.horizontalCenter: parent.horizontalCenter anchors.top: copyright.bottom - anchors.topMargin: 20 text: "Source Code" onClicked: { Qt.openUrlExternally("https://www.seiichiro0185.org/gitlab/seiichiro0185/harbour-sailotp.git")