diff --git a/app/src/main/kotlin/com/simplemobiletools/smsmessenger/adapters/ConversationsAdapter.kt b/app/src/main/kotlin/com/simplemobiletools/smsmessenger/adapters/ConversationsAdapter.kt
index 221b880b..79abd34a 100644
--- a/app/src/main/kotlin/com/simplemobiletools/smsmessenger/adapters/ConversationsAdapter.kt
+++ b/app/src/main/kotlin/com/simplemobiletools/smsmessenger/adapters/ConversationsAdapter.kt
@@ -53,7 +53,7 @@ class ConversationsAdapter(
R.id.cab_dial_number -> dialNumber()
R.id.cab_copy_number -> copyNumberToClipboard()
R.id.cab_delete -> askConfirmDelete()
- R.id.cab_archive -> ensureBackgroundThread { archiveConversations() }
+ R.id.cab_archive -> askConfirmArchive()
R.id.cab_rename_conversation -> renameConversation(getSelectedItems().first())
R.id.cab_mark_as_read -> markAsRead()
R.id.cab_mark_as_unread -> markAsUnread()
@@ -128,6 +128,20 @@ class ConversationsAdapter(
}
}
+ private fun askConfirmArchive() {
+ val itemsCnt = selectedKeys.size
+ val items = resources.getQuantityString(R.plurals.delete_conversations, itemsCnt, itemsCnt)
+
+ val baseString = R.string.archive_confirmation
+ val question = String.format(resources.getString(baseString), items)
+
+ ConfirmationDialog(activity, question) {
+ ensureBackgroundThread {
+ archiveConversations()
+ }
+ }
+ }
+
private fun archiveConversations() {
if (selectedKeys.isEmpty()) {
return
diff --git a/app/src/main/res/values-ar/strings.xml b/app/src/main/res/values-ar/strings.xml
index 014b560f..645b10b9 100644
--- a/app/src/main/res/values-ar/strings.xml
+++ b/app/src/main/res/values-ar/strings.xml
@@ -67,6 +67,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
هل أنت متأكد أنك تريد حذف كافة رسائل هذه المحادثة؟
+ Are you sure you want to archive %s?
- محادثة %d
diff --git a/app/src/main/res/values-az/strings.xml b/app/src/main/res/values-az/strings.xml
index e4f94483..07734ff0 100644
--- a/app/src/main/res/values-az/strings.xml
+++ b/app/src/main/res/values-az/strings.xml
@@ -63,6 +63,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Are you sure you want to delete all messages of this conversation\?
+ Are you sure you want to archive %s?
- %d conversation
diff --git a/app/src/main/res/values-be/strings.xml b/app/src/main/res/values-be/strings.xml
index 8eba6699..876d99f2 100644
--- a/app/src/main/res/values-be/strings.xml
+++ b/app/src/main/res/values-be/strings.xml
@@ -65,6 +65,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Выдаліць усе паведамленні ў гэтай размове\?
+ Are you sure you want to archive %s?
- %d размову
diff --git a/app/src/main/res/values-bg/strings.xml b/app/src/main/res/values-bg/strings.xml
index d59bd6f7..cdd4a0a5 100644
--- a/app/src/main/res/values-bg/strings.xml
+++ b/app/src/main/res/values-bg/strings.xml
@@ -63,6 +63,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Сигурни ли сте, че искате да изтриете всички съобщения от този разговор\?
+ Are you sure you want to archive %s?
- %d разговор
diff --git a/app/src/main/res/values-ca/strings.xml b/app/src/main/res/values-ca/strings.xml
index 1577800c..bd5697cc 100644
--- a/app/src/main/res/values-ca/strings.xml
+++ b/app/src/main/res/values-ca/strings.xml
@@ -63,6 +63,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Confirmeu que voleu suprimir tots els missatges d\'aquesta conversa\?
+ Are you sure you want to archive %s?
- %d conversa
diff --git a/app/src/main/res/values-cr/strings.xml b/app/src/main/res/values-cr/strings.xml
index e4f94483..07734ff0 100644
--- a/app/src/main/res/values-cr/strings.xml
+++ b/app/src/main/res/values-cr/strings.xml
@@ -63,6 +63,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Are you sure you want to delete all messages of this conversation\?
+ Are you sure you want to archive %s?
- %d conversation
diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml
index 65f6a049..ffc97caa 100644
--- a/app/src/main/res/values-cs/strings.xml
+++ b/app/src/main/res/values-cs/strings.xml
@@ -64,6 +64,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Opravdu chcete smazat všechny zprávy v této konverzaci\?
+ Are you sure you want to archive %s?
- %d konverzace
diff --git a/app/src/main/res/values-da/strings.xml b/app/src/main/res/values-da/strings.xml
index 1220d3f7..b989066d 100644
--- a/app/src/main/res/values-da/strings.xml
+++ b/app/src/main/res/values-da/strings.xml
@@ -63,6 +63,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Er du sikker på, at du vil slette alle beskeder i denne samtale\?
+ Are you sure you want to archive %s?
- %d samtale
diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml
index a91d324c..3cadbbeb 100644
--- a/app/src/main/res/values-de/strings.xml
+++ b/app/src/main/res/values-de/strings.xml
@@ -63,6 +63,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Sollen wirklich alle Nachrichten dieser Unterhaltung gelöscht werden\?
+ Are you sure you want to archive %s?
- %d Unterhaltung
diff --git a/app/src/main/res/values-el/strings.xml b/app/src/main/res/values-el/strings.xml
index 99b83b92..a4c5f1a2 100644
--- a/app/src/main/res/values-el/strings.xml
+++ b/app/src/main/res/values-el/strings.xml
@@ -63,6 +63,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Είστε βέβαιοι ότι θέλετε να διαγράψετε όλα τα μηνύματα αυτής της συνομιλίας;
+ Are you sure you want to archive %s?
- %d συνομιλία
diff --git a/app/src/main/res/values-eo/strings.xml b/app/src/main/res/values-eo/strings.xml
index 9997e0db..d7a4a49f 100644
--- a/app/src/main/res/values-eo/strings.xml
+++ b/app/src/main/res/values-eo/strings.xml
@@ -63,6 +63,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Are you sure you want to delete all messages of this conversation\?
+ Are you sure you want to archive %s?
- %d konversacio
diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml
index 222094b6..f1de2c3c 100644
--- a/app/src/main/res/values-es/strings.xml
+++ b/app/src/main/res/values-es/strings.xml
@@ -64,6 +64,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
¿Estás seguro que quieres eliminar todos los mensajes en esta conversación\?
+ Are you sure you want to archive %s?
- %d conversación
diff --git a/app/src/main/res/values-et/strings.xml b/app/src/main/res/values-et/strings.xml
index c352e64a..09152186 100644
--- a/app/src/main/res/values-et/strings.xml
+++ b/app/src/main/res/values-et/strings.xml
@@ -63,6 +63,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Kas oled kindel, et soovid kustutada kõik selle vestluse sõnumid\?
+ Are you sure you want to archive %s?
- %d vestlus
diff --git a/app/src/main/res/values-fi/strings.xml b/app/src/main/res/values-fi/strings.xml
index 7807d9d4..0f5abfc3 100644
--- a/app/src/main/res/values-fi/strings.xml
+++ b/app/src/main/res/values-fi/strings.xml
@@ -63,6 +63,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Haluatko varmasti poistaa kaikki tämän keskustelun viestit\?
+ Are you sure you want to archive %s?
- %d keskustelu
diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml
index 64112d9e..50b95200 100644
--- a/app/src/main/res/values-fr/strings.xml
+++ b/app/src/main/res/values-fr/strings.xml
@@ -64,6 +64,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Voulez-vous vraiment supprimer tous les messages de cette conversation \?
+ Are you sure you want to archive %s?
- %d conversation
diff --git a/app/src/main/res/values-gl/strings.xml b/app/src/main/res/values-gl/strings.xml
index 35133396..59e6b406 100644
--- a/app/src/main/res/values-gl/strings.xml
+++ b/app/src/main/res/values-gl/strings.xml
@@ -63,6 +63,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Ten a certeza de que desexa eliminar todas as mensaxes desta conversa\?
+ Are you sure you want to archive %s?
- %d conversa
diff --git a/app/src/main/res/values-hi/strings.xml b/app/src/main/res/values-hi/strings.xml
index e4f94483..07734ff0 100644
--- a/app/src/main/res/values-hi/strings.xml
+++ b/app/src/main/res/values-hi/strings.xml
@@ -63,6 +63,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Are you sure you want to delete all messages of this conversation\?
+ Are you sure you want to archive %s?
- %d conversation
diff --git a/app/src/main/res/values-hr/strings.xml b/app/src/main/res/values-hr/strings.xml
index fd554454..38ddf7b4 100644
--- a/app/src/main/res/values-hr/strings.xml
+++ b/app/src/main/res/values-hr/strings.xml
@@ -64,6 +64,7 @@
Jeste li ste sigurni da želite isprazniti arhiv? Svi arhivirani razgovori će biti obrisani.
Stvarno želiš izbrisati sve poruke ovog razgovora\?
+ Are you sure you want to archive %s?
- %d razgovor
diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml
index a31657cb..6932a061 100644
--- a/app/src/main/res/values-hu/strings.xml
+++ b/app/src/main/res/values-hu/strings.xml
@@ -63,6 +63,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Biztos, hogy törli az összes üzenetet ebből a beszélgetésből\?
+ Are you sure you want to archive %s?
- %d beszélgetést
diff --git a/app/src/main/res/values-in/strings.xml b/app/src/main/res/values-in/strings.xml
index b328eb3f..14b33e4e 100644
--- a/app/src/main/res/values-in/strings.xml
+++ b/app/src/main/res/values-in/strings.xml
@@ -62,6 +62,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Apakah Anda yakin ingin menghapus semua pesan dari percakapan ini\?
+ Are you sure you want to archive %s?
- %d percakapan
diff --git a/app/src/main/res/values-is/strings.xml b/app/src/main/res/values-is/strings.xml
index fb81093a..4ad4f164 100644
--- a/app/src/main/res/values-is/strings.xml
+++ b/app/src/main/res/values-is/strings.xml
@@ -63,6 +63,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Are you sure you want to delete all messages of this conversation\?
+ Are you sure you want to archive %s?
- %d conversation
diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml
index 1780dad8..508890be 100644
--- a/app/src/main/res/values-it/strings.xml
+++ b/app/src/main/res/values-it/strings.xml
@@ -64,6 +64,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Vuoi davvero eliminare tutti i messaggi di questa conversazione\?
+ Are you sure you want to archive %s?
- %d conversazione
diff --git a/app/src/main/res/values-iw/strings.xml b/app/src/main/res/values-iw/strings.xml
index 0b12ea3e..468ed2e3 100644
--- a/app/src/main/res/values-iw/strings.xml
+++ b/app/src/main/res/values-iw/strings.xml
@@ -65,6 +65,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
האם אתה בטוח שברצונך למחוק את כל ההודעות של השיחה הזו\?
+ Are you sure you want to archive %s?
- שיחה %d
diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml
index 750bdb79..eac3c746 100644
--- a/app/src/main/res/values-ja/strings.xml
+++ b/app/src/main/res/values-ja/strings.xml
@@ -62,6 +62,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
本当にこの会話のすべてのメッセージを削除しますか?
+ Are you sure you want to archive %s?
- %d 件の会話
diff --git a/app/src/main/res/values-lt/strings.xml b/app/src/main/res/values-lt/strings.xml
index c721e78e..6b2c7e77 100644
--- a/app/src/main/res/values-lt/strings.xml
+++ b/app/src/main/res/values-lt/strings.xml
@@ -63,6 +63,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Ar tikrai norite ištrinti visas šio pokalbio žinutes\?
+ Are you sure you want to archive %s?
- %d pokalbis
diff --git a/app/src/main/res/values-lv/strings.xml b/app/src/main/res/values-lv/strings.xml
index 8fe17965..b245141c 100644
--- a/app/src/main/res/values-lv/strings.xml
+++ b/app/src/main/res/values-lv/strings.xml
@@ -64,6 +64,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Are you sure you want to delete all messages of this conversation\?
+ Are you sure you want to archive %s?
- %d conversation
diff --git a/app/src/main/res/values-mk/strings.xml b/app/src/main/res/values-mk/strings.xml
index e4f94483..07734ff0 100644
--- a/app/src/main/res/values-mk/strings.xml
+++ b/app/src/main/res/values-mk/strings.xml
@@ -63,6 +63,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Are you sure you want to delete all messages of this conversation\?
+ Are you sure you want to archive %s?
- %d conversation
diff --git a/app/src/main/res/values-ml/strings.xml b/app/src/main/res/values-ml/strings.xml
index af9420b3..772375cd 100644
--- a/app/src/main/res/values-ml/strings.xml
+++ b/app/src/main/res/values-ml/strings.xml
@@ -63,6 +63,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
ഈ സംഭാഷണത്തിലെ എല്ലാ സന്ദേശങ്ങളും ഇല്ലാതാക്കണമെന്ന് തീർച്ചയാണോ\?
+ Are you sure you want to archive %s?
- %d സംഭാഷണം
diff --git a/app/src/main/res/values-nb-rNO/strings.xml b/app/src/main/res/values-nb-rNO/strings.xml
index fe36e675..307f790e 100644
--- a/app/src/main/res/values-nb-rNO/strings.xml
+++ b/app/src/main/res/values-nb-rNO/strings.xml
@@ -63,6 +63,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Er du sikker på at du vil slette alle meldinger fra denne konversasjonen\?
+ Are you sure you want to archive %s?
- %d konversasjon
diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml
index 66d5cbcb..cc7da4ad 100644
--- a/app/src/main/res/values-nl/strings.xml
+++ b/app/src/main/res/values-nl/strings.xml
@@ -63,6 +63,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Alle berichten in dit gesprek verwijderen\?
+ Are you sure you want to archive %s?
- %d gesprek
diff --git a/app/src/main/res/values-pa-rPK/strings.xml b/app/src/main/res/values-pa-rPK/strings.xml
index b4283234..e1628056 100644
--- a/app/src/main/res/values-pa-rPK/strings.xml
+++ b/app/src/main/res/values-pa-rPK/strings.xml
@@ -63,6 +63,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
تسیں پکے اے، سارے سنیہے مٹاؤ؟
+ Are you sure you want to archive %s?
- %d conversation
diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml
index 883a87f2..e049fe65 100644
--- a/app/src/main/res/values-pl/strings.xml
+++ b/app/src/main/res/values-pl/strings.xml
@@ -65,6 +65,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Czy usunąć wszystkie wiadomości z tej rozmowy\?
+ Are you sure you want to archive %s?
- %d rozmowę
diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml
index b2334994..bfcb2e34 100644
--- a/app/src/main/res/values-pt-rBR/strings.xml
+++ b/app/src/main/res/values-pt-rBR/strings.xml
@@ -64,6 +64,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Tem certeza que quer deletar todas as mensagens dessa conversa\?
+ Are you sure you want to archive %s?
- %d conversa
diff --git a/app/src/main/res/values-pt/strings.xml b/app/src/main/res/values-pt/strings.xml
index 240fd5a5..8ddb10ca 100644
--- a/app/src/main/res/values-pt/strings.xml
+++ b/app/src/main/res/values-pt/strings.xml
@@ -64,6 +64,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Tem a certeza de que pretende apagar todas as mensagens desta conversa\?
+ Are you sure you want to archive %s?
- %d conversa
diff --git a/app/src/main/res/values-ro/strings.xml b/app/src/main/res/values-ro/strings.xml
index c754db19..57057632 100644
--- a/app/src/main/res/values-ro/strings.xml
+++ b/app/src/main/res/values-ro/strings.xml
@@ -64,6 +64,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Sunteți sigur că doriți să ștergeți toate mesajele din această conversație\?
+ Are you sure you want to archive %s?
- %d conversaţie
diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml
index d1bda9c2..437d9a3f 100644
--- a/app/src/main/res/values-ru/strings.xml
+++ b/app/src/main/res/values-ru/strings.xml
@@ -65,6 +65,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Удалить все сообщения в этой переписке\?
+ Are you sure you want to archive %s?
- %d переписку
diff --git a/app/src/main/res/values-sk/strings.xml b/app/src/main/res/values-sk/strings.xml
index 71f57846..b4688546 100644
--- a/app/src/main/res/values-sk/strings.xml
+++ b/app/src/main/res/values-sk/strings.xml
@@ -64,6 +64,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Ste si istý, že chcete odstrániť všetky správy tejto konverzácie\?
+ Are you sure you want to archive %s?
- %d konverzáciu
diff --git a/app/src/main/res/values-sl/strings.xml b/app/src/main/res/values-sl/strings.xml
index d3eae2a4..cde32d48 100644
--- a/app/src/main/res/values-sl/strings.xml
+++ b/app/src/main/res/values-sl/strings.xml
@@ -65,6 +65,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Ste prepričani, da želite izbrisati vsa sporočila tega pogovora\?
+ Are you sure you want to archive %s?
- %d pogovor
diff --git a/app/src/main/res/values-sr/strings.xml b/app/src/main/res/values-sr/strings.xml
index 5895b9cd..d1d40ae3 100644
--- a/app/src/main/res/values-sr/strings.xml
+++ b/app/src/main/res/values-sr/strings.xml
@@ -64,6 +64,7 @@
Да ли сте сигурни да желите да испразните архиву? Све архивиране поруке ће бити избрисане.
Да ли сте сигурни да желите да избришете све поруке ове конверзације\?
+ Are you sure you want to archive %s?
- %d разговор
diff --git a/app/src/main/res/values-sv/strings.xml b/app/src/main/res/values-sv/strings.xml
index 60504a20..d53547b0 100644
--- a/app/src/main/res/values-sv/strings.xml
+++ b/app/src/main/res/values-sv/strings.xml
@@ -63,6 +63,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Är du säker på att du vill ta bort alla meddelanden i konversationen\?
+ Are you sure you want to archive %s?
- %d konversation
diff --git a/app/src/main/res/values-ta/strings.xml b/app/src/main/res/values-ta/strings.xml
index a644be2d..51f65e94 100644
--- a/app/src/main/res/values-ta/strings.xml
+++ b/app/src/main/res/values-ta/strings.xml
@@ -63,6 +63,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
இந்த உரையாடலின் அனைத்து செய்திகளையும் நிச்சயமாக நீக்க விரும்புகிறீர்களா\?
+ Are you sure you want to archive %s?
- %d உரையாடல்
diff --git a/app/src/main/res/values-th/strings.xml b/app/src/main/res/values-th/strings.xml
index 77189473..8ed9d3b5 100644
--- a/app/src/main/res/values-th/strings.xml
+++ b/app/src/main/res/values-th/strings.xml
@@ -62,6 +62,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Are you sure you want to delete all messages of this conversation\?
+ Are you sure you want to archive %s?
- %d conversation
diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml
index 3bb075db..1ed9856f 100644
--- a/app/src/main/res/values-tr/strings.xml
+++ b/app/src/main/res/values-tr/strings.xml
@@ -63,6 +63,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Bu görüşmenin tüm mesajlarını silmek istediğinizden emin misiniz\?
+ Are you sure you want to archive %s?
- %d görüşme
diff --git a/app/src/main/res/values-uk/strings.xml b/app/src/main/res/values-uk/strings.xml
index 17c26134..42bc5690 100644
--- a/app/src/main/res/values-uk/strings.xml
+++ b/app/src/main/res/values-uk/strings.xml
@@ -65,6 +65,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Справді видалити всі повідомлення у цьому листуванні\?
+ Are you sure you want to archive %s?
- %d листування
diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml
index 27666a77..3e026582 100644
--- a/app/src/main/res/values-zh-rCN/strings.xml
+++ b/app/src/main/res/values-zh-rCN/strings.xml
@@ -62,6 +62,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
您确定要删除此对话的所有消息吗\?
+ Are you sure you want to archive %s?
- %d 个对话
diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml
index 19517dec..2445ec7a 100644
--- a/app/src/main/res/values-zh-rTW/strings.xml
+++ b/app/src/main/res/values-zh-rTW/strings.xml
@@ -62,6 +62,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
您確定要刪除此對話中的所有訊息嗎?
+ Are you sure you want to archive %s?
- %d conversation
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 0e44a98b..7729cf32 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -63,6 +63,7 @@
Are you sure you want to empty the archive? All archived conversations will be permanently lost.
Are you sure you want to delete all messages of this conversation?
+ Are you sure you want to archive %s?
- %d conversation