mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-01 02:10:47 +03:00
96f791daf1
See also: https://daniel.haxx.se/blog/2023/01/08/copyright-without-years/ https://hynek.me/til/copyright-years/
57 lines
1.6 KiB
QML
57 lines
1.6 KiB
QML
// SPDX-FileCopyrightText: Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import QtQuick 2.3
|
|
import QtQuick.Controls 2.3
|
|
import QtQuick.Layouts 1.10
|
|
import im.nheko 1.0
|
|
|
|
ColumnLayout {
|
|
property string title: qsTr("Verification failed")
|
|
spacing: 16
|
|
|
|
Text {
|
|
id: content
|
|
|
|
Layout.preferredWidth: 400
|
|
Layout.fillWidth: true
|
|
wrapMode: Text.Wrap
|
|
text: {
|
|
switch (flow.error) {
|
|
case DeviceVerificationFlow.UnknownMethod:
|
|
return qsTr("Other client does not support our verification protocol.");
|
|
case DeviceVerificationFlow.MismatchedCommitment:
|
|
case DeviceVerificationFlow.MismatchedSAS:
|
|
case DeviceVerificationFlow.KeyMismatch:
|
|
return qsTr("Key mismatch detected!");
|
|
case DeviceVerificationFlow.Timeout:
|
|
return qsTr("Device verification timed out.");
|
|
case DeviceVerificationFlow.User:
|
|
return qsTr("Other party canceled the verification.");
|
|
case DeviceVerificationFlow.OutOfOrder:
|
|
return qsTr("Verification messages received out of order!");
|
|
default:
|
|
return qsTr("Unknown verification error.");
|
|
}
|
|
}
|
|
color: Nheko.colors.text
|
|
verticalAlignment: Text.AlignVCenter
|
|
}
|
|
|
|
Item { Layout.fillHeight: true; }
|
|
|
|
RowLayout {
|
|
Item {
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
Button {
|
|
Layout.alignment: Qt.AlignRight
|
|
text: qsTr("Close")
|
|
onClicked: dialog.close()
|
|
}
|
|
|
|
}
|
|
|
|
}
|