Add missing qsTr wraps

This commit is contained in:
Dag Heyman 2017-03-16 14:04:50 +01:00
parent 7a51c2a387
commit b1500a805e
No known key found for this signature in database
GPG Key ID: 06FC004369E7D338
2 changed files with 7 additions and 7 deletions

View File

@ -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()
}
}

View File

@ -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
}