point to point encrypted conference #LINQT-1958

This commit is contained in:
Gaelle Braud 2025-09-02 17:03:23 +02:00
parent 1a4da6fb18
commit 13ef034516

View file

@ -432,6 +432,7 @@ AbstractWindow {
} }
} }
BusyIndicator { BusyIndicator {
//: Waiting for encryption
visible: encryptionStatusText.text === qsTr("call_waiting_for_encryption_info") visible: encryptionStatusText.text === qsTr("call_waiting_for_encryption_info")
Layout.preferredWidth: Math.round(15 * DefaultStyle.dp) Layout.preferredWidth: Math.round(15 * DefaultStyle.dp)
Layout.preferredHeight: Math.round(15 * DefaultStyle.dp) Layout.preferredHeight: Math.round(15 * DefaultStyle.dp)
@ -463,8 +464,7 @@ AbstractWindow {
Text { Text {
id: encryptionStatusText id: encryptionStatusText
text: mainWindow.conference text: mainWindow.conference
//: Appel chiffré de bout en bout ? qsTr("call_srtp_point_to_point_encrypted")
? qsTr("call_zrtp_end_to_end_encrypted")
:mainWindow.call.core.encryption === LinphoneEnums.MediaEncryption.Srtp :mainWindow.call.core.encryption === LinphoneEnums.MediaEncryption.Srtp
//: Appel chiffré de point à point //: Appel chiffré de point à point
? qsTr("call_srtp_point_to_point_encrypted") ? qsTr("call_srtp_point_to_point_encrypted")
@ -472,11 +472,11 @@ AbstractWindow {
? mainWindow.call.core.isMismatch || !mainWindow.call.core.tokenVerified ? mainWindow.call.core.isMismatch || !mainWindow.call.core.tokenVerified
//: Vérification nécessaire //: Vérification nécessaire
? qsTr("call_zrtp_sas_validation_required") ? qsTr("call_zrtp_sas_validation_required")
//: Appel chiffré de bout en bout
: qsTr("call_zrtp_end_to_end_encrypted") : qsTr("call_zrtp_end_to_end_encrypted")
: mainWindow.call.core.encryption === LinphoneEnums.MediaEncryption.None : mainWindow.call.core.encryption === LinphoneEnums.MediaEncryption.None
//: "Appel non chiffré" //: "Appel non chiffré"
? qsTr("call_not_encrypted") ? qsTr("call_not_encrypted")
//: "En attente de chiffrement"
: qsTr("call_waiting_for_encryption_info") : qsTr("call_waiting_for_encryption_info")
color: mainWindow.conference || mainWindow.call?.core.encryption === LinphoneEnums.MediaEncryption.Srtp color: mainWindow.conference || mainWindow.call?.core.encryption === LinphoneEnums.MediaEncryption.Srtp
? DefaultStyle.info_500_main ? DefaultStyle.info_500_main