From 565f99193243b63c2e2e78ca7b0775c38aa48b59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ensar=20Saraj=C4=8Di=C4=87?= Date: Thu, 20 Jul 2023 16:20:29 +0200 Subject: [PATCH] Update recycle bin related strings --- .../activities/RecycleBinConversationsActivity.kt | 2 +- .../smsmessenger/activities/SettingsActivity.kt | 2 +- .../smsmessenger/activities/ThreadActivity.kt | 2 +- .../adapters/RecycleBinConversationsAdapter.kt | 3 ++- .../smsmessenger/adapters/ThreadAdapter.kt | 4 ++-- app/src/main/res/layout/dialog_delete_confirmation.xml | 2 +- app/src/main/res/menu/cab_recycle_bin_conversations.xml | 2 +- app/src/main/res/menu/cab_thread.xml | 2 +- app/src/main/res/menu/menu_thread.xml | 2 +- app/src/main/res/values-ar/strings.xml | 7 +++++++ app/src/main/res/values-az/strings.xml | 7 +++++++ app/src/main/res/values-be/strings.xml | 7 +++++++ app/src/main/res/values-bg/strings.xml | 9 ++++++++- app/src/main/res/values-ca/strings.xml | 7 +++++++ app/src/main/res/values-cr/strings.xml | 7 +++++++ app/src/main/res/values-cs/strings.xml | 7 +++++++ app/src/main/res/values-da/strings.xml | 7 +++++++ app/src/main/res/values-de/strings.xml | 7 +++++++ app/src/main/res/values-el/strings.xml | 7 +++++++ app/src/main/res/values-eo/strings.xml | 7 +++++++ app/src/main/res/values-es/strings.xml | 7 +++++++ app/src/main/res/values-et/strings.xml | 7 +++++++ app/src/main/res/values-fi/strings.xml | 7 +++++++ app/src/main/res/values-fr/strings.xml | 7 +++++++ app/src/main/res/values-gl/strings.xml | 7 +++++++ app/src/main/res/values-hi/strings.xml | 7 +++++++ app/src/main/res/values-hr/strings.xml | 7 +++++++ app/src/main/res/values-hu/strings.xml | 7 +++++++ app/src/main/res/values-in/strings.xml | 7 +++++++ app/src/main/res/values-is/strings.xml | 7 +++++++ app/src/main/res/values-it/strings.xml | 7 +++++++ app/src/main/res/values-iw/strings.xml | 7 +++++++ app/src/main/res/values-ja/strings.xml | 7 +++++++ app/src/main/res/values-lt/strings.xml | 7 +++++++ app/src/main/res/values-lv/strings.xml | 7 +++++++ app/src/main/res/values-mk/strings.xml | 7 +++++++ app/src/main/res/values-ml/strings.xml | 7 +++++++ app/src/main/res/values-nb-rNO/strings.xml | 7 +++++++ app/src/main/res/values-nl/strings.xml | 7 +++++++ app/src/main/res/values-pa-rPK/strings.xml | 7 +++++++ app/src/main/res/values-pl/strings.xml | 7 +++++++ app/src/main/res/values-pt-rBR/strings.xml | 7 +++++++ app/src/main/res/values-pt/strings.xml | 7 +++++++ app/src/main/res/values-ro/strings.xml | 7 +++++++ app/src/main/res/values-ru/strings.xml | 7 +++++++ app/src/main/res/values-sk/strings.xml | 7 +++++++ app/src/main/res/values-sl/strings.xml | 7 +++++++ app/src/main/res/values-sr/strings.xml | 7 +++++++ app/src/main/res/values-sv/strings.xml | 7 +++++++ app/src/main/res/values-ta/strings.xml | 7 +++++++ app/src/main/res/values-th/strings.xml | 7 +++++++ app/src/main/res/values-tr/strings.xml | 7 +++++++ app/src/main/res/values-uk/strings.xml | 7 +++++++ app/src/main/res/values-zh-rCN/strings.xml | 7 +++++++ app/src/main/res/values-zh-rTW/strings.xml | 7 +++++++ app/src/main/res/values/strings.xml | 7 +++++++ 56 files changed, 341 insertions(+), 11 deletions(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/smsmessenger/activities/RecycleBinConversationsActivity.kt b/app/src/main/kotlin/com/simplemobiletools/smsmessenger/activities/RecycleBinConversationsActivity.kt index a660dd00..22429285 100644 --- a/app/src/main/kotlin/com/simplemobiletools/smsmessenger/activities/RecycleBinConversationsActivity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/smsmessenger/activities/RecycleBinConversationsActivity.kt @@ -90,7 +90,7 @@ class RecycleBinConversationsActivity : SimpleActivity() { } private fun removeAll() { - ConfirmationDialog(this, "", R.string.empty_recycle_bin_confirmation, R.string.yes, R.string.no) { + ConfirmationDialog(this, "", R.string.empty_recycle_bin_messages_confirmation, R.string.yes, R.string.no) { ensureBackgroundThread { emptyMessagesRecycleBin() loadRecycleBinConversations() diff --git a/app/src/main/kotlin/com/simplemobiletools/smsmessenger/activities/SettingsActivity.kt b/app/src/main/kotlin/com/simplemobiletools/smsmessenger/activities/SettingsActivity.kt index 425865ee..681555ea 100644 --- a/app/src/main/kotlin/com/simplemobiletools/smsmessenger/activities/SettingsActivity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/smsmessenger/activities/SettingsActivity.kt @@ -292,7 +292,7 @@ class SettingsActivity : SimpleActivity() { if (recycleBinMessages == 0) { toast(R.string.recycle_bin_empty) } else { - ConfirmationDialog(this, "", R.string.empty_recycle_bin_confirmation, R.string.yes, R.string.no) { + ConfirmationDialog(this, "", R.string.empty_recycle_bin_messages_confirmation, R.string.yes, R.string.no) { ensureBackgroundThread { emptyMessagesRecycleBin() } 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 e9a1d924..9e9e4ebd 100644 --- a/app/src/main/kotlin/com/simplemobiletools/smsmessenger/activities/ThreadActivity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/smsmessenger/activities/ThreadActivity.kt @@ -952,7 +952,7 @@ class ThreadActivity : SimpleActivity() { } private fun askConfirmRestoreAll() { - ConfirmationDialog(this, "Restore all messages from this conversation?") { + ConfirmationDialog(this, getString(R.string.restore_confirmation)) { ensureBackgroundThread { restoreAllMessagesFromRecycleBinForConversation(threadId) runOnUiThread { diff --git a/app/src/main/kotlin/com/simplemobiletools/smsmessenger/adapters/RecycleBinConversationsAdapter.kt b/app/src/main/kotlin/com/simplemobiletools/smsmessenger/adapters/RecycleBinConversationsAdapter.kt index 9f6505ca..2f1c3542 100644 --- a/app/src/main/kotlin/com/simplemobiletools/smsmessenger/adapters/RecycleBinConversationsAdapter.kt +++ b/app/src/main/kotlin/com/simplemobiletools/smsmessenger/adapters/RecycleBinConversationsAdapter.kt @@ -63,7 +63,8 @@ class RecycleBinConversationsAdapter( val itemsCnt = selectedKeys.size val items = resources.getQuantityString(R.plurals.delete_conversations, itemsCnt, itemsCnt) - val question = String.format("Are you sure you want to restore %s?", items) + val baseString = R.string.restore_confirmation + val question = String.format(resources.getString(baseString), items) ConfirmationDialog(activity, question) { ensureBackgroundThread { diff --git a/app/src/main/kotlin/com/simplemobiletools/smsmessenger/adapters/ThreadAdapter.kt b/app/src/main/kotlin/com/simplemobiletools/smsmessenger/adapters/ThreadAdapter.kt index 606bdb76..cf311db0 100644 --- a/app/src/main/kotlin/com/simplemobiletools/smsmessenger/adapters/ThreadAdapter.kt +++ b/app/src/main/kotlin/com/simplemobiletools/smsmessenger/adapters/ThreadAdapter.kt @@ -232,8 +232,8 @@ class ThreadAdapter( return } - val baseString = R.string.deletion_confirmation - val question = String.format("Are you sure you want to restore %s?", items) + val baseString = R.string.restore_confirmation + val question = String.format(resources.getString(baseString), items) ConfirmationDialog(activity, question) { ensureBackgroundThread { diff --git a/app/src/main/res/layout/dialog_delete_confirmation.xml b/app/src/main/res/layout/dialog_delete_confirmation.xml index 907a7430..61bd9904 100644 --- a/app/src/main/res/layout/dialog_delete_confirmation.xml +++ b/app/src/main/res/layout/dialog_delete_confirmation.xml @@ -21,6 +21,6 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_below="@+id/delete_remember_title" - android:text="@string/skip_the_recycle_bin" /> + android:text="@string/skip_the_recycle_bin_messages" /> diff --git a/app/src/main/res/menu/cab_recycle_bin_conversations.xml b/app/src/main/res/menu/cab_recycle_bin_conversations.xml index 2c9a90e5..80915403 100644 --- a/app/src/main/res/menu/cab_recycle_bin_conversations.xml +++ b/app/src/main/res/menu/cab_recycle_bin_conversations.xml @@ -12,7 +12,7 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly هل أنت متأكد أنك تريد حذف كافة رسائل هذه المحادثة؟ Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? محادثة %d diff --git a/app/src/main/res/values-az/strings.xml b/app/src/main/res/values-az/strings.xml index bd02cd1d..8c3e9fb3 100644 --- a/app/src/main/res/values-az/strings.xml +++ b/app/src/main/res/values-az/strings.xml @@ -67,9 +67,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Are you sure you want to delete all messages of this conversation\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d conversation diff --git a/app/src/main/res/values-be/strings.xml b/app/src/main/res/values-be/strings.xml index 8f90fdea..840a9f7b 100644 --- a/app/src/main/res/values-be/strings.xml +++ b/app/src/main/res/values-be/strings.xml @@ -69,9 +69,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Выдаліць усе паведамленні ў гэтай размове\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d размову diff --git a/app/src/main/res/values-bg/strings.xml b/app/src/main/res/values-bg/strings.xml index aed7a4c7..9fa471a1 100644 --- a/app/src/main/res/values-bg/strings.xml +++ b/app/src/main/res/values-bg/strings.xml @@ -67,9 +67,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Сигурни ли сте, че искате да изтриете всички съобщения от този разговор\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d разговор @@ -128,4 +135,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-ca/strings.xml b/app/src/main/res/values-ca/strings.xml index fbf7b9c0..bbb40a7a 100644 --- a/app/src/main/res/values-ca/strings.xml +++ b/app/src/main/res/values-ca/strings.xml @@ -67,9 +67,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Confirmeu que voleu suprimir tots els missatges d\'aquesta conversa\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d conversa diff --git a/app/src/main/res/values-cr/strings.xml b/app/src/main/res/values-cr/strings.xml index bd02cd1d..8c3e9fb3 100644 --- a/app/src/main/res/values-cr/strings.xml +++ b/app/src/main/res/values-cr/strings.xml @@ -67,9 +67,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Are you sure you want to delete all messages of this conversation\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d conversation diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml index c1b25ede..05b880aa 100644 --- a/app/src/main/res/values-cs/strings.xml +++ b/app/src/main/res/values-cs/strings.xml @@ -68,9 +68,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Opravdu chcete smazat všechny zprávy v této konverzaci\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d konverzace diff --git a/app/src/main/res/values-da/strings.xml b/app/src/main/res/values-da/strings.xml index 74a7367a..c90fd5aa 100644 --- a/app/src/main/res/values-da/strings.xml +++ b/app/src/main/res/values-da/strings.xml @@ -67,9 +67,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Er du sikker på, at du vil slette alle beskeder i denne samtale\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d samtale diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml index ee2b9d24..89214d4f 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -67,9 +67,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Sollen wirklich alle Nachrichten dieser Unterhaltung gelöscht werden\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d Unterhaltung diff --git a/app/src/main/res/values-el/strings.xml b/app/src/main/res/values-el/strings.xml index 0a3b2638..6f7c82f1 100644 --- a/app/src/main/res/values-el/strings.xml +++ b/app/src/main/res/values-el/strings.xml @@ -67,9 +67,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Είστε βέβαιοι ότι θέλετε να διαγράψετε όλα τα μηνύματα αυτής της συνομιλίας; Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d συνομιλία diff --git a/app/src/main/res/values-eo/strings.xml b/app/src/main/res/values-eo/strings.xml index 9471b0cf..c70c6696 100644 --- a/app/src/main/res/values-eo/strings.xml +++ b/app/src/main/res/values-eo/strings.xml @@ -67,9 +67,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Are you sure you want to delete all messages of this conversation\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d konversacio diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml index 0cb42d20..659eeb2d 100644 --- a/app/src/main/res/values-es/strings.xml +++ b/app/src/main/res/values-es/strings.xml @@ -68,9 +68,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly ¿Estás seguro que quieres eliminar todos los mensajes en esta conversación\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %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 ebbf9b8f..90ce2405 100644 --- a/app/src/main/res/values-et/strings.xml +++ b/app/src/main/res/values-et/strings.xml @@ -67,9 +67,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Kas oled kindel, et soovid kustutada kõik selle vestluse sõnumid\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d vestlus diff --git a/app/src/main/res/values-fi/strings.xml b/app/src/main/res/values-fi/strings.xml index 50db49b9..05aa1ad4 100644 --- a/app/src/main/res/values-fi/strings.xml +++ b/app/src/main/res/values-fi/strings.xml @@ -67,9 +67,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Haluatko varmasti poistaa kaikki tämän keskustelun viestit\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d keskustelu diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml index 4b6d0866..edea80e5 100644 --- a/app/src/main/res/values-fr/strings.xml +++ b/app/src/main/res/values-fr/strings.xml @@ -68,9 +68,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Voulez-vous vraiment supprimer tous les messages de cette conversation \? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d conversation diff --git a/app/src/main/res/values-gl/strings.xml b/app/src/main/res/values-gl/strings.xml index 55c2d34f..96155526 100644 --- a/app/src/main/res/values-gl/strings.xml +++ b/app/src/main/res/values-gl/strings.xml @@ -67,9 +67,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Ten a certeza de que desexa eliminar todas as mensaxes desta conversa\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d conversa diff --git a/app/src/main/res/values-hi/strings.xml b/app/src/main/res/values-hi/strings.xml index bd02cd1d..8c3e9fb3 100644 --- a/app/src/main/res/values-hi/strings.xml +++ b/app/src/main/res/values-hi/strings.xml @@ -67,9 +67,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Are you sure you want to delete all messages of this conversation\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d conversation diff --git a/app/src/main/res/values-hr/strings.xml b/app/src/main/res/values-hr/strings.xml index 9ea37bbb..16c52fd5 100644 --- a/app/src/main/res/values-hr/strings.xml +++ b/app/src/main/res/values-hr/strings.xml @@ -68,9 +68,16 @@ Nema arhiviranih razgovora Arhiv je uspješno ispražnjen Jeste li ste sigurni da želite isprazniti arhiv? Svi arhivirani razgovori će biti obrisani. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Stvarno želiš izbrisati sve poruke ovog razgovora\? Stvarno želiš arhivirati %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d razgovor diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml index 561bc61c..c6441dbc 100644 --- a/app/src/main/res/values-hu/strings.xml +++ b/app/src/main/res/values-hu/strings.xml @@ -67,9 +67,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Biztos, hogy törli az összes üzenetet ebből a beszélgetésből\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %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 e828d21a..8ff3f89e 100644 --- a/app/src/main/res/values-in/strings.xml +++ b/app/src/main/res/values-in/strings.xml @@ -66,9 +66,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Apakah Anda yakin ingin menghapus semua pesan dari percakapan ini\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d percakapan diff --git a/app/src/main/res/values-is/strings.xml b/app/src/main/res/values-is/strings.xml index 0c633ffb..7fd80f61 100644 --- a/app/src/main/res/values-is/strings.xml +++ b/app/src/main/res/values-is/strings.xml @@ -67,9 +67,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Are you sure you want to delete all messages of this conversation\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d conversation diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml index bcab8d2d..c41fb31b 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -68,9 +68,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Vuoi davvero eliminare tutti i messaggi di questa conversazione\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d conversazione diff --git a/app/src/main/res/values-iw/strings.xml b/app/src/main/res/values-iw/strings.xml index 2d69ad38..e6c197b4 100644 --- a/app/src/main/res/values-iw/strings.xml +++ b/app/src/main/res/values-iw/strings.xml @@ -69,9 +69,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly האם אתה בטוח שברצונך למחוק את כל ההודעות של השיחה הזו\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? שיחה %d diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml index 3bca3c5c..0d69eae4 100644 --- a/app/src/main/res/values-ja/strings.xml +++ b/app/src/main/res/values-ja/strings.xml @@ -66,9 +66,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly 本当にこの会話のすべてのメッセージを削除しますか? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d 件の会話 diff --git a/app/src/main/res/values-lt/strings.xml b/app/src/main/res/values-lt/strings.xml index b39d4791..4c0b1327 100644 --- a/app/src/main/res/values-lt/strings.xml +++ b/app/src/main/res/values-lt/strings.xml @@ -67,9 +67,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Ar tikrai norite ištrinti visas šio pokalbio žinutes\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d pokalbis diff --git a/app/src/main/res/values-lv/strings.xml b/app/src/main/res/values-lv/strings.xml index 048f6e81..8fcce080 100644 --- a/app/src/main/res/values-lv/strings.xml +++ b/app/src/main/res/values-lv/strings.xml @@ -68,9 +68,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Are you sure you want to delete all messages of this conversation\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d conversation diff --git a/app/src/main/res/values-mk/strings.xml b/app/src/main/res/values-mk/strings.xml index bd02cd1d..8c3e9fb3 100644 --- a/app/src/main/res/values-mk/strings.xml +++ b/app/src/main/res/values-mk/strings.xml @@ -67,9 +67,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Are you sure you want to delete all messages of this conversation\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d conversation diff --git a/app/src/main/res/values-ml/strings.xml b/app/src/main/res/values-ml/strings.xml index a2b65c0b..d1dbbd90 100644 --- a/app/src/main/res/values-ml/strings.xml +++ b/app/src/main/res/values-ml/strings.xml @@ -67,9 +67,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly ഈ സംഭാഷണത്തിലെ എല്ലാ സന്ദേശങ്ങളും ഇല്ലാതാക്കണമെന്ന് തീർച്ചയാണോ\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %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 bc53dedd..8487e33f 100644 --- a/app/src/main/res/values-nb-rNO/strings.xml +++ b/app/src/main/res/values-nb-rNO/strings.xml @@ -67,9 +67,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Er du sikker på at du vil slette alle meldinger fra denne konversasjonen\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d konversasjon diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml index fe31236d..bec2723e 100644 --- a/app/src/main/res/values-nl/strings.xml +++ b/app/src/main/res/values-nl/strings.xml @@ -67,9 +67,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Alle berichten in dit gesprek verwijderen\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %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 7003cda7..a69e4955 100644 --- a/app/src/main/res/values-pa-rPK/strings.xml +++ b/app/src/main/res/values-pa-rPK/strings.xml @@ -67,9 +67,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly تسیں پکے اے، سارے سنیہے مٹاؤ؟ Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d conversation diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml index eabbbf34..d8fe63bc 100644 --- a/app/src/main/res/values-pl/strings.xml +++ b/app/src/main/res/values-pl/strings.xml @@ -69,9 +69,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Czy usunąć wszystkie wiadomości z tej rozmowy\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %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 83f82477..25715556 100644 --- a/app/src/main/res/values-pt-rBR/strings.xml +++ b/app/src/main/res/values-pt-rBR/strings.xml @@ -68,9 +68,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Tem certeza que quer deletar todas as mensagens dessa conversa\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d conversa diff --git a/app/src/main/res/values-pt/strings.xml b/app/src/main/res/values-pt/strings.xml index da820c9a..4c828243 100644 --- a/app/src/main/res/values-pt/strings.xml +++ b/app/src/main/res/values-pt/strings.xml @@ -68,9 +68,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Tem a certeza de que pretende apagar todas as mensagens desta conversa\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d conversa diff --git a/app/src/main/res/values-ro/strings.xml b/app/src/main/res/values-ro/strings.xml index 50279ed5..1b7fa67d 100644 --- a/app/src/main/res/values-ro/strings.xml +++ b/app/src/main/res/values-ro/strings.xml @@ -68,9 +68,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Sunteți sigur că doriți să ștergeți toate mesajele din această conversație\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %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 842108cc..049ffe62 100644 --- a/app/src/main/res/values-ru/strings.xml +++ b/app/src/main/res/values-ru/strings.xml @@ -69,9 +69,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Удалить все сообщения в этой переписке\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d переписку diff --git a/app/src/main/res/values-sk/strings.xml b/app/src/main/res/values-sk/strings.xml index 8cf9d7f6..f374c4c4 100644 --- a/app/src/main/res/values-sk/strings.xml +++ b/app/src/main/res/values-sk/strings.xml @@ -68,9 +68,16 @@ Nenašli sa žiadne archivované konverzácie Archív bol úspešne vyprázdnený Ste si istý, že chcete vyprázdniť archív? Všetky archivované konverzácie budú navždy odstránené. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Ste si istý, že chcete odstrániť všetky správy tejto konverzácie\? Ste si istý, že chcete archivovať %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %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 3aed45a2..4cde63cf 100644 --- a/app/src/main/res/values-sl/strings.xml +++ b/app/src/main/res/values-sl/strings.xml @@ -69,9 +69,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Ste prepričani, da želite izbrisati vsa sporočila tega pogovora\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d pogovor diff --git a/app/src/main/res/values-sr/strings.xml b/app/src/main/res/values-sr/strings.xml index 28dd969a..25d20bd9 100644 --- a/app/src/main/res/values-sr/strings.xml +++ b/app/src/main/res/values-sr/strings.xml @@ -68,9 +68,16 @@ Нема архивираних разговора Архива је успјешно испражнјена Да ли сте сигурни да желите да испразните архиву? Све архивиране поруке ће бити избрисане. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Да ли сте сигурни да желите да избришете све поруке ове конверзације\? Да ли сте сигурни да желите да архивирате %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d разговор diff --git a/app/src/main/res/values-sv/strings.xml b/app/src/main/res/values-sv/strings.xml index 038dfed4..23c09c50 100644 --- a/app/src/main/res/values-sv/strings.xml +++ b/app/src/main/res/values-sv/strings.xml @@ -67,9 +67,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Är du säker på att du vill ta bort alla meddelanden i konversationen\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d konversation diff --git a/app/src/main/res/values-ta/strings.xml b/app/src/main/res/values-ta/strings.xml index 6a4da8d0..b7a3de38 100644 --- a/app/src/main/res/values-ta/strings.xml +++ b/app/src/main/res/values-ta/strings.xml @@ -67,9 +67,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly இந்த உரையாடலின் அனைத்து செய்திகளையும் நிச்சயமாக நீக்க விரும்புகிறீர்களா\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d உரையாடல் diff --git a/app/src/main/res/values-th/strings.xml b/app/src/main/res/values-th/strings.xml index 46511b66..299c2d4a 100644 --- a/app/src/main/res/values-th/strings.xml +++ b/app/src/main/res/values-th/strings.xml @@ -66,9 +66,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Are you sure you want to delete all messages of this conversation\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d conversation diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml index 9dfd7924..58ab1e6e 100644 --- a/app/src/main/res/values-tr/strings.xml +++ b/app/src/main/res/values-tr/strings.xml @@ -67,9 +67,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Bu görüşmenin tüm mesajlarını silmek istediğinizden emin misiniz\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %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 e85d92fd..43ada27a 100644 --- a/app/src/main/res/values-uk/strings.xml +++ b/app/src/main/res/values-uk/strings.xml @@ -69,9 +69,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Справді видалити всі повідомлення у цьому листуванні\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %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 c01af643..94a07b05 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -66,9 +66,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly 您确定要删除此对话的所有消息吗\? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %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 9b174550..221561a5 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -66,9 +66,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly 您確定要刪除此對話中的所有訊息嗎? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d conversation diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index cb057590..73136a74 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -67,9 +67,16 @@ No archived conversations have been found The archive has been emptied successfully Are you sure you want to empty the archive? All archived conversations will be permanently lost. + + Restore + Restore all messages + Are you sure you want to empty the recycle bin? The messages will be permanently lost. + Skip the Recycle Bin, delete messages directly Are you sure you want to delete all messages of this conversation? Are you sure you want to archive %s? + Are you sure you want to restore all messages of this conversation? + Are you sure you want to restore %s? %d conversation