mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-12-15 02:23:15 +03:00
10 lines
229 B
QML
10 lines
229 B
QML
|
import QtQuick 2.0
|
||
|
import QtQuick.Dialogs 1.2
|
||
|
|
||
|
MessageDialog {
|
||
|
icon: StandardIcon.Information
|
||
|
title: qsTr("Device has been reset")
|
||
|
text: qsTr("The device has now been reset.")
|
||
|
standardButtons: StandardButton.Ok
|
||
|
}
|