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/pages/SettingsEditor.qml | |
| parent | a3fce751364183000d1c0c326cf522c5cd11d4b0 (diff) | |
Improve UI text consistency (mainly casing)
German translation needs to be updated.
Diffstat (limited to 'qml/pages/SettingsEditor.qml')
| -rw-r--r-- | qml/pages/SettingsEditor.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qml/pages/SettingsEditor.qml b/qml/pages/SettingsEditor.qml index 9baa51c..f350160 100644 --- a/qml/pages/SettingsEditor.qml +++ b/qml/pages/SettingsEditor.qml @@ -31,11 +31,11 @@ Dialog { width: parent.width bottomPadding: Theme.paddingLarge DialogHeader { - title: qsTr("Edit Settings") + title: qsTr("App settings") } TextSwitch { id: hide_generated_passwordBox - text: qsTr("Hide Generated Password") + text: qsTr("Hide generated password") palette.highlightColor : Theme.highlightColor highlighted: down } @@ -54,7 +54,7 @@ Dialog { width: parent.width valueText: value + " min" visible: clear_generated_passwordBox.checked - label: qsTr("Auto-clear generated pass timeout") + label: qsTr("Auto-clear generated password timeout") value: clear_generated_password/60 || 1 } TextSwitch { @@ -74,7 +74,7 @@ Dialog { width: parent.width valueText: sliderValue + " min" visible: clear_master_passwordBox.checked - label: qsTr("Auto-clear master pass timeout") + label: qsTr("Auto-clear master password timeout") value: clear_master_password/60 || 5 } Label { |
