From 7165f670d47c7a06f80096bdcaf9d13722c804db Mon Sep 17 00:00:00 2001 From: Andreas Grois Date: Tue, 11 Oct 2022 08:22:45 +0200 Subject: Improve UI text consistency (mainly casing) German translation needs to be updated. --- qml/cover/CoverPage.qml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'qml/cover') diff --git a/qml/cover/CoverPage.qml b/qml/cover/CoverPage.qml index 5b5af6c..4207138 100644 --- a/qml/cover/CoverPage.qml +++ b/qml/cover/CoverPage.qml @@ -6,7 +6,7 @@ CoverBackground { x: Theme.paddingLarge y: Theme.paddingLarge width: parent.width - 2 * x - spacing: Theme.paddingLarge + spacing: Theme.paddingMedium Label { id: label text: qsTr("PassFish") @@ -23,7 +23,7 @@ CoverBackground { Label { id: urlLabel color: Theme.highlightColor - text: qsTr("Used Text:") + text: qsTr("Used text:") font.pixelSize: Theme.fontSizeSmall truncationMode: TruncationMode.Fade width: parent.width @@ -42,10 +42,17 @@ CoverBackground { Label { id: readyLabel color: Theme.highlightColor + text: qsTr("Status:") + font.pixelSize: Theme.fontSizeSmall + truncationMode: TruncationMode.Fade + width: parent.width + } + Label { + id: ready text: passwordmaker.generated_password.length > 0 && passwordmaker.generator_state === 0 - ? qsTr("Pass Ready") - : qsTr("Input Needed") + ? qsTr("Password ready") + : qsTr("Input needed") font.pixelSize: Theme.fontSizeSmall truncationMode: TruncationMode.Fade width: parent.width -- cgit v1.2.3