mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2025-01-06 02:37:21 +03:00
Add missing qsTr wraps
This commit is contained in:
parent
7a51c2a387
commit
b1500a805e
@ -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()
|
||||
}
|
||||
}
|
||||
|
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user