2020-06-25 09:06:31 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import "../imports"
|
|
|
|
import "../shared"
|
|
|
|
|
|
|
|
ModalPopup {
|
|
|
|
id: popup
|
2020-07-06 20:39:55 +00:00
|
|
|
//% "Invalid seed phrase"
|
|
|
|
title: qsTrId("custom-seed-phrase")
|
2020-06-25 09:06:31 +00:00
|
|
|
height: 200
|
|
|
|
property string error: "Invalid seed phrase."
|
|
|
|
|
|
|
|
StyledText {
|
2020-07-06 20:39:55 +00:00
|
|
|
text: popup.error
|
2020-06-25 09:06:31 +00:00
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
font.pixelSize: 15
|
|
|
|
}
|
|
|
|
|
|
|
|
footer: StyledButton {
|
|
|
|
anchors.right: parent.right
|
2020-07-02 15:14:31 +00:00
|
|
|
anchors.rightMargin: Style.current.smallPadding
|
2020-07-06 20:39:55 +00:00
|
|
|
//% "Cancel"
|
|
|
|
label: qsTrId("browsing-cancel")
|
2020-06-25 09:06:31 +00:00
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
onClicked: {
|
|
|
|
popup.close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|