fix: add forgotten qsTr()
This commit is contained in:
parent
61ea1d41cd
commit
ebff2538fa
|
@ -233,7 +233,7 @@ StatusModal {
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
width: popup.width
|
width: popup.width
|
||||||
visible: false
|
visible: false
|
||||||
header.title: qsTr("Send Contact Request to") + " " + userDisplayName
|
header.title: qsTr("Send Contact Request to %1").arg(userDisplayName)
|
||||||
userPublicKey: popup.userPublicKey
|
userPublicKey: popup.userPublicKey
|
||||||
userDisplayName: popup.userDisplayName
|
userDisplayName: popup.userDisplayName
|
||||||
userIcon: popup.userIcon
|
userIcon: popup.userIcon
|
||||||
|
|
|
@ -239,9 +239,9 @@ Rectangle {
|
||||||
|
|
||||||
ListModel {
|
ListModel {
|
||||||
id: stepsListModel
|
id: stepsListModel
|
||||||
ListElement {description:"Send Request"; loadingTime: 0; stepCompleted: false}
|
ListElement {description: qsTr("Send Request"); loadingTime: 0; stepCompleted: false}
|
||||||
ListElement {description:"Receive Response"; loadingTime: 0; stepCompleted: false}
|
ListElement {description: qsTr("Receive Response"); loadingTime: 0; stepCompleted: false}
|
||||||
ListElement {description:"Confirm Identity"; loadingTime: 0; stepCompleted: false}
|
ListElement {description: qsTr("Confirm Identity"); loadingTime: 0; stepCompleted: false}
|
||||||
}
|
}
|
||||||
|
|
||||||
StatusWizardStepper {
|
StatusWizardStepper {
|
||||||
|
|
Loading…
Reference in New Issue