diff --git a/Linphone/data/languages/de.ts b/Linphone/data/languages/de.ts
index d3c8bb9d6..1498ad5a6 100644
--- a/Linphone/data/languages/de.ts
+++ b/Linphone/data/languages/de.ts
@@ -5874,37 +5874,37 @@ Um sie in einem kommerziellen Projekt zu aktivieren, kontaktieren Sie uns bitte.
Gruppenanruf starten?
-
+
unencrypted_conversation_warning
This conversation is not encrypted !
Dieser Chat ist nicht verschlüsselt!
-
+
reply_to_label
Reply to %1
Auf %1 antworten
-
+
shared_medias_title
Shared medias
Geteilte Medien
-
+
shared_documents_title
Shared documents
Geteilte Dokumente
-
+
forward_to_title
Forward to…
Weiterleiten an…
-
+
conversations_title
Conversations
Konversationen
diff --git a/Linphone/data/languages/en.ts b/Linphone/data/languages/en.ts
index 5cd6b761b..e73f95e00 100644
--- a/Linphone/data/languages/en.ts
+++ b/Linphone/data/languages/en.ts
@@ -5751,37 +5751,37 @@ To enable them in a commercial project, please contact us.
Start a group call ?
-
+
unencrypted_conversation_warning
This conversation is not encrypted !
This conversation is not encrypted !
-
+
reply_to_label
Reply to %1
Reply to %1
-
+
shared_medias_title
Shared medias
Shared medias
-
+
shared_documents_title
Shared documents
Shared documents
-
+
forward_to_title
Forward to…
Froward to…
-
+
conversations_title
Conversations
Conversations
diff --git a/Linphone/data/languages/fr.ts b/Linphone/data/languages/fr.ts
index b93677902..f776f4812 100644
--- a/Linphone/data/languages/fr.ts
+++ b/Linphone/data/languages/fr.ts
@@ -5746,37 +5746,37 @@ Pour les activer dans un projet commercial, merci de nous contacter.Démarrer un appel de groupe ?
-
+
unencrypted_conversation_warning
This conversation is not encrypted !
Cette conversation n'est pas chiffrée !
-
+
reply_to_label
Reply to %1
Réponse à %1
-
+
shared_medias_title
Shared medias
Médias partagés
-
+
shared_documents_title
Shared documents
Documents partagés
-
+
forward_to_title
Forward to…
Transférer à…
-
+
conversations_title
Conversations
Conversations
diff --git a/Linphone/view/Page/Form/Chat/SelectedChatView.qml b/Linphone/view/Page/Form/Chat/SelectedChatView.qml
index 83a729283..4b55be5e2 100644
--- a/Linphone/view/Page/Form/Chat/SelectedChatView.qml
+++ b/Linphone/view/Page/Form/Chat/SelectedChatView.qml
@@ -103,13 +103,27 @@ FocusScope {
Layout.preferredWidth: Utils.getSizeWithScreenRatio(45)
Layout.preferredHeight: Utils.getSizeWithScreenRatio(45)
}
- Text {
- text: mainItem.chat?.core.title || ""
- color: DefaultStyle.main2_600
- maximumLineCount: 1
- font {
- pixelSize: Typography.h4.pixelSize
- weight: Utils.getSizeWithScreenRatio(400)
+ ColumnLayout {
+ Text {
+ text: mainItem.chat?.core.title || ""
+ color: DefaultStyle.main2_600
+ maximumLineCount: 1
+ font {
+ pixelSize: Typography.h4.pixelSize
+ weight: Utils.getSizeWithScreenRatio(400)
+ }
+ }
+ RowLayout {
+ visible: mainItem.chat.core.ephemeralEnabled
+ EffectImage {
+ colorizationColor: DefaultStyle.main1_500_main
+ Layout.preferredWidth: Utils.getSizeWithScreenRatio(14)
+ Layout.preferredHeight: Utils.getSizeWithScreenRatio(14)
+ imageSource: AppIcons.clockCountDown
+ }
+ Text {
+ text: UtilsCpp.getEphemeralFormatedTime(mainItem.chat.core.ephemeralLifetime)
+ }
}
}
RowLayout {