mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-29 23:20:03 +03:00
10 lines
379 B
QML
10 lines
379 B
QML
import QtQuick 2.0
|
|
import QtQuick.Dialogs 1.2
|
|
|
|
MessageDialog {
|
|
icon: StandardIcon.Critical
|
|
title: qsTr("Reset OATH functionality")
|
|
text: qsTr("This will delete all OATH credentials stored on the device, and reset the password. This action cannot be undone. Are you sure you want to reset the device?")
|
|
standardButtons: StandardButton.Ok | StandardButton.Cancel
|
|
}
|