diff --git a/qml/AddCredential.qml b/qml/AddCredential.qml index ea220a39..2d92763a 100644 --- a/qml/AddCredential.qml +++ b/qml/AddCredential.qml @@ -49,7 +49,7 @@ DefaultDialog { RowLayout { Label { - text: "OATH Type" + text: qsTr("OATH Type") } ExclusiveGroup { id: oathType @@ -72,7 +72,7 @@ DefaultDialog { } RowLayout { Label { - text: "Number of digits" + text: qsTr("Number of digits") } ExclusiveGroup { id: digits @@ -95,7 +95,7 @@ DefaultDialog { } RowLayout { Label { - text: "Algorithm" + text: qsTr("Algorithm") } ExclusiveGroup { id: algorithm @@ -120,7 +120,7 @@ DefaultDialog { CheckBox { id: touch - text: "Require touch" + text: qsTr("Require touch") enabled: enableTouchOption() } } diff --git a/qml/Main.qml b/qml/Main.qml index e0b8f967..0d7b1117 100644 --- a/qml/Main.qml +++ b/qml/Main.qml @@ -266,7 +266,7 @@ ApplicationWindow { visible: allowManualGenerate(repeater.selected) enabled: allowManualGenerate(repeater.selected) && enableManualGenerate(repeater.selected) - text: qsTr('Generate code') + text: qsTr("Generate code") shortcut: "Space" onTriggered: { if (!isInCoolDown(repeater.selected.name)) { @@ -279,7 +279,7 @@ ApplicationWindow { } } MenuItem { - text: qsTr('Delete') + text: qsTr("Delete") shortcut: StandardKey.Delete onTriggered: confirmDeleteCredential.open() } @@ -453,7 +453,7 @@ ApplicationWindow { TextField { id: search visible: canShowCredentials && device.hasAnyCredentials() - placeholderText: 'Search...' + placeholderText: qsTr("Search...") Layout.fillWidth: true KeyNavigation.tab: scrollView }