diff --git a/app/src/main/kotlin/com/simplemobiletools/smsmessenger/activities/ThreadActivity.kt b/app/src/main/kotlin/com/simplemobiletools/smsmessenger/activities/ThreadActivity.kt
index b4e4ac65..3c49c642 100644
--- a/app/src/main/kotlin/com/simplemobiletools/smsmessenger/activities/ThreadActivity.kt
+++ b/app/src/main/kotlin/com/simplemobiletools/smsmessenger/activities/ThreadActivity.kt
@@ -683,7 +683,8 @@ class ThreadActivity : SimpleActivity() {
val message = messages.getOrNull(i) ?: continue
// do not show the date/time above every message, only if the difference between the 2 messages is at least MIN_DATE_TIME_DIFF_SECS,
// or if the message is sent from a different SIM
- if (message.date - prevDateTime > MIN_DATE_TIME_DIFF_SECS || prevSIMId != message.subscriptionId) {
+ val isSentFromDifferentKnownSIM = prevSIMId != -1 && message.subscriptionId != -1 && prevSIMId != message.subscriptionId
+ if (message.date - prevDateTime > MIN_DATE_TIME_DIFF_SECS || isSentFromDifferentKnownSIM) {
val simCardID = subscriptionIdToSimId[message.subscriptionId] ?: "?"
items.add(ThreadDateTime(message.date, simCardID))
prevDateTime = message.date
diff --git a/app/src/main/kotlin/com/simplemobiletools/smsmessenger/extensions/Context.kt b/app/src/main/kotlin/com/simplemobiletools/smsmessenger/extensions/Context.kt
index 6e4da2a4..ed17ed95 100644
--- a/app/src/main/kotlin/com/simplemobiletools/smsmessenger/extensions/Context.kt
+++ b/app/src/main/kotlin/com/simplemobiletools/smsmessenger/extensions/Context.kt
@@ -813,9 +813,9 @@ fun Context.showMessageNotification(address: String, body: String, threadId: Lon
notificationManager.notify(threadId.hashCode(), builder.build())
}
-private fun getMessagesStyle(notificationManager: NotificationManager, threadId: Long, sender: String, body: String): NotificationCompat.MessagingStyle {
+private fun Context.getMessagesStyle(notificationManager: NotificationManager, threadId: Long, sender: String, body: String): NotificationCompat.MessagingStyle {
val oldMessages = getOldMessages(notificationManager, threadId)
- val messages = NotificationCompat.MessagingStyle(sender)
+ val messages = NotificationCompat.MessagingStyle(getString(R.string.me))
oldMessages.forEach {
messages.addMessage(it)
}
diff --git a/app/src/main/kotlin/com/simplemobiletools/smsmessenger/receivers/SmsStatusSentReceiver.kt b/app/src/main/kotlin/com/simplemobiletools/smsmessenger/receivers/SmsStatusSentReceiver.kt
index 0a0bc761..24c0486e 100644
--- a/app/src/main/kotlin/com/simplemobiletools/smsmessenger/receivers/SmsStatusSentReceiver.kt
+++ b/app/src/main/kotlin/com/simplemobiletools/smsmessenger/receivers/SmsStatusSentReceiver.kt
@@ -43,7 +43,15 @@ class SmsStatusSentReceiver : SentReceiver() {
}
context.updateMessageType(messageId, type)
- context.messagesDB.updateType(messageId, type)
+ val updated = context.messagesDB.updateType(messageId, type)
+ if (updated == 0) {
+ Handler(Looper.getMainLooper()).postDelayed({
+ ensureBackgroundThread {
+ context.messagesDB.updateType(messageId, type)
+ }
+ }, 2000)
+ }
+
refreshMessages()
}
}
diff --git a/app/src/main/res/values-ar/strings.xml b/app/src/main/res/values-ar/strings.xml
index cf9c2a26..d56ddee0 100644
--- a/app/src/main/res/values-ar/strings.xml
+++ b/app/src/main/res/values-ar/strings.xml
@@ -29,6 +29,7 @@
رسالة جديدة
ضع إشارة مقروء
وضع علامة كغير مقروءة
+ Me
هل أنت متأكد أنك تريد حذف كافة رسائل هذه المحادثة؟
diff --git a/app/src/main/res/values-bg/strings.xml b/app/src/main/res/values-bg/strings.xml
index 6063e83a..523c21df 100644
--- a/app/src/main/res/values-bg/strings.xml
+++ b/app/src/main/res/values-bg/strings.xml
@@ -29,6 +29,7 @@
Ново съобщение
Отбележи като прочетено
Отбележи като непрочетено
+ Me
Сигурни ли сте, че искате да изтриете всички съобщения от този разговор\?
diff --git a/app/src/main/res/values-ca/strings.xml b/app/src/main/res/values-ca/strings.xml
index 4bfea0f5..beae3767 100644
--- a/app/src/main/res/values-ca/strings.xml
+++ b/app/src/main/res/values-ca/strings.xml
@@ -29,6 +29,7 @@
Missatge nou
Marca com a llegit
Marcar com no llegit
+ Me
Confirmeu que voleu suprimir tots els missatges d\'aquesta conversa\?
@@ -76,4 +77,4 @@
-->
La mida dels MMS està limitada pels operadors, podeu provar d\'establir un límit més petit a la configuració de l\'aplicació.
L\'altre extrem no ha rebut el meu MMS, hi puc fer alguna cosa\?
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml
index 28f6dc11..3fddcd65 100644
--- a/app/src/main/res/values-cs/strings.xml
+++ b/app/src/main/res/values-cs/strings.xml
@@ -29,6 +29,7 @@
Nová zpráva
Označit jako přečtené
Označit jako nepřečtené
+ Me
Opravdu chcete smazat všechny zprávy v této konverzaci\?
@@ -97,4 +98,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-da/strings.xml b/app/src/main/res/values-da/strings.xml
index db0bc207..db3178cf 100644
--- a/app/src/main/res/values-da/strings.xml
+++ b/app/src/main/res/values-da/strings.xml
@@ -29,6 +29,7 @@
Ny Besked
Marker som læst
Marker som ulæst
+ Me
Er du sikker på, at du vil slette alle beskeder i denne samtale\?
@@ -77,4 +78,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml
index 631a209a..a605213d 100644
--- a/app/src/main/res/values-de/strings.xml
+++ b/app/src/main/res/values-de/strings.xml
@@ -29,6 +29,7 @@
Neue Nachricht
Als gelesen markieren
Als ungelesen markieren
+ Me
Möchtest du wirklich alle Nachrichten dieses Chats löschen\?
@@ -77,4 +78,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-el/strings.xml b/app/src/main/res/values-el/strings.xml
index 025e891b..852a1f80 100644
--- a/app/src/main/res/values-el/strings.xml
+++ b/app/src/main/res/values-el/strings.xml
@@ -30,6 +30,7 @@
Νέο μήνυμα
Σήμανση ως αναγνωσμένο
Σήμανση ως μη αναγνωσμένο
+ Me
Είστε βέβαιοι ότι θέλετε να διαγράψετε όλα τα μηνύματα αυτής της συνομιλίας;
diff --git a/app/src/main/res/values-eo/strings.xml b/app/src/main/res/values-eo/strings.xml
index 9028aa73..e329906c 100644
--- a/app/src/main/res/values-eo/strings.xml
+++ b/app/src/main/res/values-eo/strings.xml
@@ -29,6 +29,7 @@
Nova mesaĝo
Marki kiel legitan
Marki kiel nelegitan
+ Me
Are you sure you want to delete all messages of this conversation?
diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml
index 4c2b612e..e29c7e6a 100644
--- a/app/src/main/res/values-es/strings.xml
+++ b/app/src/main/res/values-es/strings.xml
@@ -29,6 +29,7 @@
Nuevo mensaje
Marcar como leído
Marcar como no leído
+ Me
¿Estás seguro que quieres eliminar todos los mensajes en esta conversación\?
@@ -96,4 +97,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-et/strings.xml b/app/src/main/res/values-et/strings.xml
index 0751da10..2907fd88 100644
--- a/app/src/main/res/values-et/strings.xml
+++ b/app/src/main/res/values-et/strings.xml
@@ -29,6 +29,7 @@
Uus sõnum
Märgi loetuks
Märgi mitteloetuks
+ Me
Kas oled kindel, et soovid kustutada kõik selle vestluse sõnumid\?
diff --git a/app/src/main/res/values-fi/strings.xml b/app/src/main/res/values-fi/strings.xml
index 3332edf5..f8885086 100644
--- a/app/src/main/res/values-fi/strings.xml
+++ b/app/src/main/res/values-fi/strings.xml
@@ -29,6 +29,7 @@
Uusi viesti
Merkitse luetuksi
Merkitse lukemattomaksi
+ Me
Haluatko varmasti poistaa kaikki tämän keskustelun viestit\?
diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml
index b66b0d65..f3cca51d 100644
--- a/app/src/main/res/values-fr/strings.xml
+++ b/app/src/main/res/values-fr/strings.xml
@@ -29,6 +29,7 @@
Nouveau message
Marquer comme lu
Marquer comme non lu
+ Me
Voulez-vous vraiment supprimer tous les messages de cette conversation \?
@@ -77,4 +78,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-gl/strings.xml b/app/src/main/res/values-gl/strings.xml
index 17b427a4..39dfb190 100644
--- a/app/src/main/res/values-gl/strings.xml
+++ b/app/src/main/res/values-gl/strings.xml
@@ -29,6 +29,7 @@
Nova mensaxe
Marcar como lida
Marcar como non lida
+ Me
Ten a certeza de que desexa eliminar todas as mensaxes desta conversa\?
@@ -95,4 +96,4 @@
Non atopaches algunhas cadeas? Hai máis en
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml
index aa7230d9..27dcdc32 100644
--- a/app/src/main/res/values-hu/strings.xml
+++ b/app/src/main/res/values-hu/strings.xml
@@ -29,6 +29,7 @@
Új üzenet
Megjelölés olvasottként
Megjelölés olvasatlanként
+ Me
Biztos, hogy törli az összes üzenetet ebből a beszélgetésből\?
diff --git a/app/src/main/res/values-id/strings.xml b/app/src/main/res/values-id/strings.xml
index a3a69c9e..cd853ec7 100644
--- a/app/src/main/res/values-id/strings.xml
+++ b/app/src/main/res/values-id/strings.xml
@@ -29,6 +29,7 @@
Pesan baru
Tandai sebagai Dibaca
Tandai sebagai Belum dibaca
+ Me
Apakah Anda yakin ingin menghapus semua pesan dari percakapan ini\?
@@ -83,4 +84,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml
index 60f2522b..1aa284b3 100644
--- a/app/src/main/res/values-it/strings.xml
+++ b/app/src/main/res/values-it/strings.xml
@@ -29,6 +29,7 @@
Nuovo messaggio
Letto
Non letto
+ Me
Vuoi davvero eliminare tutti i messaggi di questa conversazione\?
@@ -77,4 +78,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml
index 3b3ca635..fbef8b6a 100644
--- a/app/src/main/res/values-ja/strings.xml
+++ b/app/src/main/res/values-ja/strings.xml
@@ -29,6 +29,7 @@
新しいメッセージ
既読にする
未読にする
+ Me
本当にこの会話のすべてのメッセージを削除しますか?
@@ -74,4 +75,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-lt/strings.xml b/app/src/main/res/values-lt/strings.xml
index 1055f451..0fcd3984 100644
--- a/app/src/main/res/values-lt/strings.xml
+++ b/app/src/main/res/values-lt/strings.xml
@@ -24,6 +24,7 @@
Naujas pokalbis
Pridėti kontaktą arba numerį…
Pasiūlymai
+ Me
Gautos žinutės
Nauja žinutė
diff --git a/app/src/main/res/values-ml/strings.xml b/app/src/main/res/values-ml/strings.xml
index b20b924e..37c70589 100644
--- a/app/src/main/res/values-ml/strings.xml
+++ b/app/src/main/res/values-ml/strings.xml
@@ -30,6 +30,7 @@
പുതിയ മെസ്സേജ്
വായിച്ചതായി അടയാളപ്പെടുത്തുക
വായിച്ചിട്ടില്ലെന്ന് അടയാളപ്പെടുത്തുക
+ Me
ഈ സംഭാഷണത്തിന്റെ എല്ലാ സന്ദേശങ്ങൾ ഇല്ലാതാക്കാൻ നിങ്ങൾ ആഗ്രഹിക്കുന്നുണ്ടോ?
diff --git a/app/src/main/res/values-nb-rNO/strings.xml b/app/src/main/res/values-nb-rNO/strings.xml
index 8b4f58a8..bb4a78a0 100644
--- a/app/src/main/res/values-nb-rNO/strings.xml
+++ b/app/src/main/res/values-nb-rNO/strings.xml
@@ -29,6 +29,7 @@
Ny melding
Marker som lest
Marker som ulest
+ Me
Are you sure you want to delete all messages of this conversation?
diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml
index e96bd075..9aa902e6 100644
--- a/app/src/main/res/values-nl/strings.xml
+++ b/app/src/main/res/values-nl/strings.xml
@@ -29,6 +29,7 @@
Nieuw bericht
Als gelezen markeren
Als ongelezen markeren
+ Me
Alle berichten in dit gesprek verwijderen\?
@@ -96,4 +97,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml
index d80f51ad..bdda7a7a 100644
--- a/app/src/main/res/values-pl/strings.xml
+++ b/app/src/main/res/values-pl/strings.xml
@@ -29,6 +29,7 @@
Nowa wiadomość
Oznacz jako przeczytane
Oznacz jako nieprzeczytane
+ Me
Czy usunąć wszystkie wiadomości z tej rozmowy\?
diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml
index b3c02fa7..0eda47d6 100644
--- a/app/src/main/res/values-pt-rBR/strings.xml
+++ b/app/src/main/res/values-pt-rBR/strings.xml
@@ -29,6 +29,7 @@
Nova mensagem
Marcar como Lida
Marcar como Não Lida
+ Me
Tem certeza que quer deletar todas as mensagens dessa conversa\?
diff --git a/app/src/main/res/values-pt/strings.xml b/app/src/main/res/values-pt/strings.xml
index 0cb197e1..3c2099a5 100644
--- a/app/src/main/res/values-pt/strings.xml
+++ b/app/src/main/res/values-pt/strings.xml
@@ -29,6 +29,7 @@
Nova mensagem
Marcar como lida
Marcar como não lida
+ Me
Tem a certeza de que pretende apagar todas as mensagens desta conversa\?
@@ -76,4 +77,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-ro/strings.xml b/app/src/main/res/values-ro/strings.xml
index f0dad801..a94c6020 100644
--- a/app/src/main/res/values-ro/strings.xml
+++ b/app/src/main/res/values-ro/strings.xml
@@ -29,6 +29,7 @@
Mesaj nou
Marchează ca citit
Marchează ca necitit
+ Me
Eşti sigur că vrei să ştergi toate mesajele din această conversaţie?
@@ -98,4 +99,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml
index 7c9114ca..4cf734bc 100644
--- a/app/src/main/res/values-ru/strings.xml
+++ b/app/src/main/res/values-ru/strings.xml
@@ -29,6 +29,7 @@
Новое сообщение
Прочитано
Не прочитано
+ Я
Удалить все сообщения в этой переписке\?
@@ -98,4 +99,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-sk/strings.xml b/app/src/main/res/values-sk/strings.xml
index 4965e3a5..be6e7cd6 100644
--- a/app/src/main/res/values-sk/strings.xml
+++ b/app/src/main/res/values-sk/strings.xml
@@ -29,6 +29,7 @@
Nová správa
Označiť ako prečítané
Označiť ako neprečítané
+ Ja
Ste si istý, že chcete odstrániť všetky správy tejto konverzácie\?
@@ -98,4 +99,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-sv/strings.xml b/app/src/main/res/values-sv/strings.xml
index ac241e40..a2621e49 100644
--- a/app/src/main/res/values-sv/strings.xml
+++ b/app/src/main/res/values-sv/strings.xml
@@ -29,6 +29,7 @@
Nytt meddelande
Markera som läst
Markera som oläst
+ Me
Är du säker på att du vill ta bort alla meddelanden i konversationen?
diff --git a/app/src/main/res/values-ta/strings.xml b/app/src/main/res/values-ta/strings.xml
index 01cbdb59..39b5993f 100644
--- a/app/src/main/res/values-ta/strings.xml
+++ b/app/src/main/res/values-ta/strings.xml
@@ -29,6 +29,7 @@
புதிய செய்தி
படித்ததாக குறியிடு
படிக்காததாக குறியிடு
+ Me
இந்த உரையாடலின் அனைத்து செய்திகளையும் நிச்சயமாக நீக்க விரும்புகிறீர்களா\?
@@ -76,4 +77,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml
index 414679e4..dda719bc 100644
--- a/app/src/main/res/values-tr/strings.xml
+++ b/app/src/main/res/values-tr/strings.xml
@@ -29,6 +29,7 @@
Yeni mesaj
Okundu olarak işaretle
Okunmadı olarak işaretle
+ Me
Bu görüşmenin tüm mesajlarını silmek istediğinizden emin misiniz\?
@@ -77,4 +78,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-uk/strings.xml b/app/src/main/res/values-uk/strings.xml
index 9c67dc72..a639decc 100644
--- a/app/src/main/res/values-uk/strings.xml
+++ b/app/src/main/res/values-uk/strings.xml
@@ -1,6 +1,6 @@
- Simple SMS Messenger
+ Прості Повідомлення
Повідомлення
Введіть повідомлення…
Повідомлення не надіслано
@@ -29,6 +29,7 @@
Нове повідомлення
Прочитано
Не прочитано
+ Me
Справді видалити всі повідомлення у цьому листуванні\?
@@ -73,7 +74,7 @@
Розмір MMS обмежений операторами, ви можете спробувати зменшити ліміт у налаштуваннях програми.
- Simple SMS Messenger - просте управління SMS
+ Прості Повідомлення - Керуйте SMS легко
Простий і швидкий спосіб керування SMS та MMS-повідомленнями без реклами.
SMS/MMS-повідомлення — це чудовий спосіб підтримувати зв\'язок із близькими. Додаток також правильно опрацьовує групові повідомлення та блокування номерів на Android 7+. Підтримується багато форматів часу, щоб вам було зручно користуватися додатком. Також ви можете вибирати між 12- та 24-годинним форматом часу. Наш додаток має малий розмір в порівнянні з додатками конкурентів, що робить його завантаження справді швидким. За промовчанням додаток поставляється з матеріальним дизайном і темною темою, забезпечує чудовий користувацький досвід для простого використання. Відсутність доступу до Інтернету надає більше приватності, безпеки та стабільності, порівняно з іншими додатками. Не буде показувати рекламу; потрібні лише найнеобхідніші дозволи. Програмний код повністю відкритий, забезпечує настроювальні кольори оформлення. Ознайомтеся з повним набором додатків Simple Tools тут: https://www.simplemobiletools.com Facebook: https://www.facebook.com/simplemobiletools Reddit: https://www.reddit.com/r/SimpleMobileTools
@@ -81,4 +82,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml
index 8494afa0..ec50ea8e 100644
--- a/app/src/main/res/values-zh-rCN/strings.xml
+++ b/app/src/main/res/values-zh-rCN/strings.xml
@@ -29,6 +29,7 @@
新消息
标记为已读
标记为未读
+ Me
您确定要删除此对话的所有消息吗\?
@@ -96,4 +97,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml
index c16fc959..ca16481b 100644
--- a/app/src/main/res/values-zh-rTW/strings.xml
+++ b/app/src/main/res/values-zh-rTW/strings.xml
@@ -29,6 +29,7 @@
新訊息
標為已讀
標為未讀
+ Me
您確定要刪除此對話中的所有訊息嗎?
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 88b1121b..3f3dcbfd 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -29,6 +29,7 @@
New message
Mark as Read
Mark as Unread
+ Me
Are you sure you want to delete all messages of this conversation?