diff options
| author | Andreas Grois <andi@grois.info> | 2022-10-11 08:22:45 +0200 |
|---|---|---|
| committer | Andreas Grois <andi@grois.info> | 2022-10-11 08:22:45 +0200 |
| commit | 7165f670d47c7a06f80096bdcaf9d13722c804db (patch) | |
| tree | e3a1de5713d6b31f9185d47fdd67be4b81a6b310 /qml/cover/CoverPage.qml | |
| parent | a3fce751364183000d1c0c326cf522c5cd11d4b0 (diff) | |
Improve UI text consistency (mainly casing)
German translation needs to be updated.
Diffstat (limited to 'qml/cover/CoverPage.qml')
| -rw-r--r-- | qml/cover/CoverPage.qml | 15 |
1 files changed, 11 insertions, 4 deletions
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 |
