Show how many devices will be deleted in popup
This commit is contained in:
parent
099c20c138
commit
9a943120a8
|
@ -39,7 +39,11 @@ PasswordPopup {
|
|||
qsTr("Enter your account's password to continue:")
|
||||
|
||||
|
||||
validateButton.text: qsTr("Sign out")
|
||||
validateButton.text:
|
||||
deviceIds.length > 1 ?
|
||||
qsTr("Sign out %1 devices").arg(deviceIds.length) :
|
||||
qsTr("Sign out %1 device").arg(deviceIds.length)
|
||||
|
||||
validateButton.icon.name: "sign-out"
|
||||
|
||||
onClosed: {
|
||||
|
|
Loading…
Reference in New Issue
Block a user