2020-07-09 15:21:45 +00:00
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Controls 2.3
|
2021-03-31 19:14:09 +00:00
|
|
|
import "../imports"
|
|
|
|
import "."
|
2020-07-09 15:21:45 +00:00
|
|
|
|
|
|
|
ModalPopup {
|
|
|
|
id: popup
|
2020-07-16 15:20:29 +00:00
|
|
|
//% "Get Status at https://status.im"
|
|
|
|
readonly property string getStatusText: qsTrId("get-status-at-https---status-im")
|
2020-07-09 15:21:45 +00:00
|
|
|
|
2020-07-16 15:20:29 +00:00
|
|
|
//% "Download Status link"
|
|
|
|
title: qsTrId("download-status-link")
|
2020-07-09 15:21:45 +00:00
|
|
|
height: 156
|
|
|
|
|
|
|
|
StyledText {
|
|
|
|
id: linkText
|
|
|
|
text: popup.getStatusText
|
|
|
|
}
|
|
|
|
|
|
|
|
CopyToClipBoardButton {
|
|
|
|
anchors.left: linkText.right
|
|
|
|
anchors.leftMargin: Style.current.smallPadding
|
|
|
|
anchors.verticalCenter: linkText.verticalCenter
|
2021-01-12 14:56:17 +00:00
|
|
|
textToCopy: popup.getStatusText.substr(popup.getStatusText.indexOf("https"))
|
2020-07-09 15:21:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|