From 7dbd6c5d9fbb0b24787e70a8d16abb064f2a38be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ensar=20Saraj=C4=8Di=C4=87?= Date: Wed, 12 Jul 2023 10:37:20 +0200 Subject: [PATCH] Add proper strings for archive operations --- app/src/main/AndroidManifest.xml | 2 +- .../ArchivedConversationsActivity.kt | 9 +++-- .../activities/SettingsActivity.kt | 34 +++++++++---------- .../smsmessenger/activities/ThreadActivity.kt | 7 +++- .../adapters/ArchivedConversationsAdapter.kt | 2 +- .../adapters/ConversationsAdapter.kt | 6 +++- .../dialogs/DeleteConfirmationDialog.kt | 8 ++--- .../smsmessenger/extensions/Context.kt | 2 +- .../smsmessenger/helpers/Constants.kt | 4 +-- .../activity_archived_conversations.xml | 4 +-- app/src/main/res/layout/activity_settings.xml | 22 ++++++------ .../res/layout/dialog_delete_confirmation.xml | 6 ++-- app/src/main/res/menu/archive_menu.xml | 2 +- .../res/menu/cab_archived_conversations.xml | 2 +- app/src/main/res/values-ar/strings.xml | 15 +++++++- app/src/main/res/values-az/strings.xml | 13 +++++++ app/src/main/res/values-be/strings.xml | 13 +++++++ app/src/main/res/values-bg/strings.xml | 13 +++++++ app/src/main/res/values-ca/strings.xml | 15 +++++++- app/src/main/res/values-cr/strings.xml | 13 +++++++ app/src/main/res/values-cs/strings.xml | 15 +++++++- app/src/main/res/values-da/strings.xml | 13 +++++++ app/src/main/res/values-de/strings.xml | 15 +++++++- app/src/main/res/values-el/strings.xml | 13 +++++++ app/src/main/res/values-eo/strings.xml | 13 +++++++ app/src/main/res/values-es/strings.xml | 15 +++++++- app/src/main/res/values-et/strings.xml | 15 +++++++- app/src/main/res/values-fi/strings.xml | 15 +++++++- app/src/main/res/values-fr/strings.xml | 15 +++++++- app/src/main/res/values-gl/strings.xml | 15 +++++++- app/src/main/res/values-hi/strings.xml | 13 +++++++ app/src/main/res/values-hr/strings.xml | 15 +++++++- app/src/main/res/values-hu/strings.xml | 13 +++++++ app/src/main/res/values-in/strings.xml | 13 +++++++ app/src/main/res/values-is/strings.xml | 13 +++++++ app/src/main/res/values-it/strings.xml | 15 +++++++- app/src/main/res/values-iw/strings.xml | 13 +++++++ app/src/main/res/values-ja/strings.xml | 13 +++++++ app/src/main/res/values-lt/strings.xml | 13 +++++++ app/src/main/res/values-lv/strings.xml | 13 +++++++ app/src/main/res/values-mk/strings.xml | 13 +++++++ app/src/main/res/values-ml/strings.xml | 13 +++++++ app/src/main/res/values-nb-rNO/strings.xml | 15 +++++++- app/src/main/res/values-nl/strings.xml | 15 +++++++- app/src/main/res/values-pa-rPK/strings.xml | 13 +++++++ app/src/main/res/values-pl/strings.xml | 15 +++++++- app/src/main/res/values-pt-rBR/strings.xml | 15 +++++++- app/src/main/res/values-pt/strings.xml | 15 +++++++- app/src/main/res/values-ro/strings.xml | 13 +++++++ app/src/main/res/values-ru/strings.xml | 15 +++++++- app/src/main/res/values-sk/strings.xml | 13 +++++++ app/src/main/res/values-sl/strings.xml | 13 +++++++ app/src/main/res/values-sr/strings.xml | 13 +++++++ app/src/main/res/values-sv/strings.xml | 15 +++++++- app/src/main/res/values-ta/strings.xml | 13 +++++++ app/src/main/res/values-th/strings.xml | 13 +++++++ app/src/main/res/values-tr/strings.xml | 15 +++++++- app/src/main/res/values-uk/strings.xml | 15 +++++++- app/src/main/res/values-zh-rCN/strings.xml | 15 +++++++- app/src/main/res/values-zh-rTW/strings.xml | 13 +++++++ app/src/main/res/values/strings.xml | 13 +++++++ 61 files changed, 693 insertions(+), 70 deletions(-) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index c94576e3..98286d61 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -55,7 +55,7 @@ android:name=".activities.ArchivedConversationsActivity" android:configChanges="orientation" android:exported="true" - android:label="Archived Conversations" + android:label="@string/archived_conversations" android:parentActivityName=".activities.MainActivity" /> + val confirmationMessage = if (config.useArchive) { + R.string.archive_whole_conversation_confirmation + } else { + R.string.delete_whole_conversation_confirmation + } + DeleteConfirmationDialog(this, getString(confirmationMessage), config.useArchive) { skipRecycleBin -> ensureBackgroundThread { if (skipRecycleBin || config.useArchive.not()) { deleteConversation(threadId) diff --git a/app/src/main/kotlin/com/simplemobiletools/smsmessenger/adapters/ArchivedConversationsAdapter.kt b/app/src/main/kotlin/com/simplemobiletools/smsmessenger/adapters/ArchivedConversationsAdapter.kt index b1050197..4febe62b 100644 --- a/app/src/main/kotlin/com/simplemobiletools/smsmessenger/adapters/ArchivedConversationsAdapter.kt +++ b/app/src/main/kotlin/com/simplemobiletools/smsmessenger/adapters/ArchivedConversationsAdapter.kt @@ -38,7 +38,7 @@ class ArchivedConversationsAdapter( val baseString = R.string.deletion_confirmation val question = String.format(resources.getString(baseString), items) - DeleteConfirmationDialog(activity, question, showSkipRecycleBinOption = false) { _ -> + DeleteConfirmationDialog(activity, question, showSkipArchiveOption = false) { _ -> ensureBackgroundThread { deleteConversations() } 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 1b79472b..0b7e463d 100644 --- a/app/src/main/kotlin/com/simplemobiletools/smsmessenger/adapters/ConversationsAdapter.kt +++ b/app/src/main/kotlin/com/simplemobiletools/smsmessenger/adapters/ConversationsAdapter.kt @@ -118,7 +118,11 @@ class ConversationsAdapter( val itemsCnt = selectedKeys.size val items = resources.getQuantityString(R.plurals.delete_conversations, itemsCnt, itemsCnt) - val baseString = R.string.deletion_confirmation + val baseString = if (activity.config.useArchive) { + R.string.archive_confirmation + } else { + R.string.deletion_confirmation + } val question = String.format(resources.getString(baseString), items) DeleteConfirmationDialog(activity, question, activity.config.useArchive) { skipRecycleBin -> diff --git a/app/src/main/kotlin/com/simplemobiletools/smsmessenger/dialogs/DeleteConfirmationDialog.kt b/app/src/main/kotlin/com/simplemobiletools/smsmessenger/dialogs/DeleteConfirmationDialog.kt index f72a7513..328e9191 100644 --- a/app/src/main/kotlin/com/simplemobiletools/smsmessenger/dialogs/DeleteConfirmationDialog.kt +++ b/app/src/main/kotlin/com/simplemobiletools/smsmessenger/dialogs/DeleteConfirmationDialog.kt @@ -7,12 +7,12 @@ import com.simplemobiletools.commons.extensions.getAlertDialogBuilder import com.simplemobiletools.commons.extensions.setupDialogStuff import com.simplemobiletools.smsmessenger.R import kotlinx.android.synthetic.main.dialog_delete_confirmation.view.delete_remember_title -import kotlinx.android.synthetic.main.dialog_delete_confirmation.view.skip_the_recycle_bin_checkbox +import kotlinx.android.synthetic.main.dialog_delete_confirmation.view.skip_the_archive_checkbox class DeleteConfirmationDialog( private val activity: Activity, private val message: String, - private val showSkipRecycleBinOption: Boolean, + private val showSkipArchiveOption: Boolean, private val callback: (skipRecycleBin: Boolean) -> Unit ) { @@ -21,7 +21,7 @@ class DeleteConfirmationDialog( init { view.delete_remember_title.text = message - view.skip_the_recycle_bin_checkbox.beGoneIf(!showSkipRecycleBinOption) + view.skip_the_archive_checkbox.beGoneIf(!showSkipArchiveOption) activity.getAlertDialogBuilder() .setPositiveButton(R.string.yes) { _, _ -> dialogConfirmed() } .setNegativeButton(R.string.no, null) @@ -34,6 +34,6 @@ class DeleteConfirmationDialog( private fun dialogConfirmed() { dialog?.dismiss() - callback(view.skip_the_recycle_bin_checkbox.isChecked) + callback(view.skip_the_archive_checkbox.isChecked) } } 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 f9228f8e..375b037a 100644 --- a/app/src/main/kotlin/com/simplemobiletools/smsmessenger/extensions/Context.kt +++ b/app/src/main/kotlin/com/simplemobiletools/smsmessenger/extensions/Context.kt @@ -602,7 +602,7 @@ fun Context.removeAllArchivedConversations(callback: (() -> Unit)? = null) { for (conversation in conversationsDB.getAllArchived()) { deleteConversation(conversation.threadId) } - toast(R.string.recycle_bin_emptied) + toast(R.string.archive_emptied_successfully) callback?.invoke() } catch (e: Exception) { toast(R.string.unknown_error_occurred) diff --git a/app/src/main/kotlin/com/simplemobiletools/smsmessenger/helpers/Constants.kt b/app/src/main/kotlin/com/simplemobiletools/smsmessenger/helpers/Constants.kt index dcc3e3f7..c025d1bf 100644 --- a/app/src/main/kotlin/com/simplemobiletools/smsmessenger/helpers/Constants.kt +++ b/app/src/main/kotlin/com/simplemobiletools/smsmessenger/helpers/Constants.kt @@ -37,8 +37,8 @@ const val SCHEDULED_MESSAGE_ID = "scheduled_message_id" const val SOFT_KEYBOARD_HEIGHT = "soft_keyboard_height" const val IS_MMS = "is_mms" const val MESSAGE_ID = "message_id" -const val USE_ARCHIVE = "use_recycle_bin" -const val LAST_ARCHIVE_CHECK = "last_bin_check" +const val USE_ARCHIVE = "use_archive" +const val LAST_ARCHIVE_CHECK = "last_archive_check" private const val PATH = "com.simplemobiletools.smsmessenger.action." const val MARK_AS_READ = PATH + "mark_as_read" diff --git a/app/src/main/res/layout/activity_archived_conversations.xml b/app/src/main/res/layout/activity_archived_conversations.xml index d699f386..615dc677 100644 --- a/app/src/main/res/layout/activity_archived_conversations.xml +++ b/app/src/main/res/layout/activity_archived_conversations.xml @@ -11,7 +11,7 @@ android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" android:background="@color/color_primary" - app:title="Archived messages" + app:title="@string/archived_conversations" app:titleTextAppearance="@style/AppTheme.ActionBar.TitleTextStyle" /> diff --git a/app/src/main/res/layout/activity_settings.xml b/app/src/main/res/layout/activity_settings.xml index eb7cef7a..3ae36231 100644 --- a/app/src/main/res/layout/activity_settings.xml +++ b/app/src/main/res/layout/activity_settings.xml @@ -347,52 +347,52 @@ layout="@layout/divider" /> + android:text="@string/archived_conversations" /> + android:text="@string/archive_instead_of_delete" /> + android:text="@string/empty_archive" /> + android:text="@string/skip_archive" /> diff --git a/app/src/main/res/menu/archive_menu.xml b/app/src/main/res/menu/archive_menu.xml index a3f11163..b9339951 100644 --- a/app/src/main/res/menu/archive_menu.xml +++ b/app/src/main/res/menu/archive_menu.xml @@ -6,6 +6,6 @@ diff --git a/app/src/main/res/menu/cab_archived_conversations.xml b/app/src/main/res/menu/cab_archived_conversations.xml index 19adebc2..395d170c 100644 --- a/app/src/main/res/menu/cab_archived_conversations.xml +++ b/app/src/main/res/menu/cab_archived_conversations.xml @@ -17,6 +17,6 @@ diff --git a/app/src/main/res/values-ar/strings.xml b/app/src/main/res/values-ar/strings.xml index 9c2555fc..d6b9d53d 100644 --- a/app/src/main/res/values-ar/strings.xml +++ b/app/src/main/res/values-ar/strings.xml @@ -56,8 +56,21 @@ ضع إشارة مقروء وضع علامة كغير مقروءة Me + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + Are you sure you want to empty the archive? All archived conversations will be permanently lost. هل أنت متأكد أنك تريد حذف كافة رسائل هذه المحادثة؟ + Are you sure you want to archive this conversation? + Are you sure you want to archive %s? محادثة %d @@ -119,4 +132,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-az/strings.xml b/app/src/main/res/values-az/strings.xml index 669639ec..d145ebf6 100644 --- a/app/src/main/res/values-az/strings.xml +++ b/app/src/main/res/values-az/strings.xml @@ -52,8 +52,21 @@ Mark as Read Mark as Unread Me + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 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 80dabae2..8d0bd612 100644 --- a/app/src/main/res/values-be/strings.xml +++ b/app/src/main/res/values-be/strings.xml @@ -54,8 +54,21 @@ Прачытана Не прачытана Я + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + Are you sure you want to empty the archive? All archived conversations will be permanently lost. Выдаліць усе паведамленні ў гэтай размове\? + Are you sure you want to archive this conversation? + 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 50d6c913..0be5a864 100644 --- a/app/src/main/res/values-bg/strings.xml +++ b/app/src/main/res/values-bg/strings.xml @@ -52,8 +52,21 @@ Отбележи като прочетено Отбележи като непрочетено Me + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + Are you sure you want to empty the archive? All archived conversations will be permanently lost. Сигурни ли сте, че искате да изтриете всички съобщения от този разговор\? + Are you sure you want to archive this conversation? + 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 18e938e5..af8aa836 100644 --- a/app/src/main/res/values-ca/strings.xml +++ b/app/src/main/res/values-ca/strings.xml @@ -52,8 +52,21 @@ Marca com a llegit Marcar com no llegit Me + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 this conversation? + Are you sure you want to archive %s? %d conversa @@ -107,4 +120,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-cr/strings.xml b/app/src/main/res/values-cr/strings.xml index 669639ec..d145ebf6 100644 --- a/app/src/main/res/values-cr/strings.xml +++ b/app/src/main/res/values-cr/strings.xml @@ -52,8 +52,21 @@ Mark as Read Mark as Unread Me + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 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 56ee7077..7fd137a5 100644 --- a/app/src/main/res/values-cs/strings.xml +++ b/app/src/main/res/values-cs/strings.xml @@ -53,8 +53,21 @@ Označit jako přečtené Označit jako nepřečtené + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 this conversation? + Are you sure you want to archive %s? %d konverzace @@ -110,4 +123,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 a7b1a837..6c022b32 100644 --- a/app/src/main/res/values-da/strings.xml +++ b/app/src/main/res/values-da/strings.xml @@ -52,8 +52,21 @@ Marker som læst Marker som ulæst Me + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 this conversation? + 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 dd571c63..49dabb7f 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -52,8 +52,21 @@ Als gelesen markieren Als ungelesen markieren Ich + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 this conversation? + Are you sure you want to archive %s? %d Unterhaltung @@ -107,4 +120,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 5e613921..6d83f37e 100644 --- a/app/src/main/res/values-el/strings.xml +++ b/app/src/main/res/values-el/strings.xml @@ -52,8 +52,21 @@ Σήμανση ως Αναγνωσμένο Σήμανση ως Μη Αναγνωσμένο Εγώ + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + Are you sure you want to empty the archive? All archived conversations will be permanently lost. Είστε βέβαιοι ότι θέλετε να διαγράψετε όλα τα μηνύματα αυτής της συνομιλίας; + Are you sure you want to archive this conversation? + 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 1f3ce244..67e47d6f 100644 --- a/app/src/main/res/values-eo/strings.xml +++ b/app/src/main/res/values-eo/strings.xml @@ -52,8 +52,21 @@ Marki kiel legitan Marki kiel nelegitan Me + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 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 f4b25568..84496008 100644 --- a/app/src/main/res/values-es/strings.xml +++ b/app/src/main/res/values-es/strings.xml @@ -53,8 +53,21 @@ Marcar como leído Marcar como no leído Yo + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 this conversation? + Are you sure you want to archive %s? %d conversación @@ -110,4 +123,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 d23562ae..62b7157f 100644 --- a/app/src/main/res/values-et/strings.xml +++ b/app/src/main/res/values-et/strings.xml @@ -52,8 +52,21 @@ Märgi loetuks Märgi mitteloetuks Mina + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 this conversation? + Are you sure you want to archive %s? %d vestlus @@ -107,4 +120,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-fi/strings.xml b/app/src/main/res/values-fi/strings.xml index 5912ef49..411239bf 100644 --- a/app/src/main/res/values-fi/strings.xml +++ b/app/src/main/res/values-fi/strings.xml @@ -52,8 +52,21 @@ Merkitse luetuksi Merkitse lukemattomaksi Minä + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 this conversation? + Are you sure you want to archive %s? %d keskustelu @@ -107,4 +120,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-fr/strings.xml b/app/src/main/res/values-fr/strings.xml index 361ffcd5..6b9bd695 100644 --- a/app/src/main/res/values-fr/strings.xml +++ b/app/src/main/res/values-fr/strings.xml @@ -53,8 +53,21 @@ Marquer comme lu Marquer comme non lu Moi + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 this conversation? + Are you sure you want to archive %s? %d conversation @@ -110,4 +123,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 135b326d..d3725a39 100644 --- a/app/src/main/res/values-gl/strings.xml +++ b/app/src/main/res/values-gl/strings.xml @@ -52,8 +52,21 @@ Marcar como lida Marcar como non lida Me + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 this conversation? + Are you sure you want to archive %s? %d conversa @@ -107,4 +120,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-hi/strings.xml b/app/src/main/res/values-hi/strings.xml index 669639ec..d145ebf6 100644 --- a/app/src/main/res/values-hi/strings.xml +++ b/app/src/main/res/values-hi/strings.xml @@ -52,8 +52,21 @@ Mark as Read Mark as Unread Me + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 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 4adf51bd..3234ae1a 100644 --- a/app/src/main/res/values-hr/strings.xml +++ b/app/src/main/res/values-hr/strings.xml @@ -53,8 +53,21 @@ Označi kao pročitano Označi kao nepročitano Ja + + Vrati iz arhiva + Izbriši sve arhivirane razgovore + Prekoči arhiv, obriši razgovore odmah + Arhivirani razgovori + Arhiviraj + Nema arhiviranih razgovora + Arhiviraj razgovore umjesto brisanja + Arhiv je prazan + Arhiv je uspješno ispražnjen + Jeste li ste sigurni da želite isprazniti arhiv? Svi arhivirani razgovori će biti obrisani. Stvarno želiš izbrisati sve poruke ovog razgovora\? + Stvarno želiš arhivirati ovaj razgovor? + Jeste li ste sigurni da želite arhivirati %s? %d razgovor @@ -110,4 +123,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-hu/strings.xml b/app/src/main/res/values-hu/strings.xml index 5d03b980..28777748 100644 --- a/app/src/main/res/values-hu/strings.xml +++ b/app/src/main/res/values-hu/strings.xml @@ -52,8 +52,21 @@ Megjelölés olvasottként Megjelölés olvasatlanként Nekem + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 this conversation? + 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 dd1e2656..c9335f4f 100644 --- a/app/src/main/res/values-in/strings.xml +++ b/app/src/main/res/values-in/strings.xml @@ -51,8 +51,21 @@ Tandai sebagai Dibaca Tandai sebagai Belum dibaca Me + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 this conversation? + 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 5b0d3463..a8329c8c 100644 --- a/app/src/main/res/values-is/strings.xml +++ b/app/src/main/res/values-is/strings.xml @@ -52,8 +52,21 @@ Mark as Read Mark as Unread Me + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 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 f7e8ea3a..d68d476a 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -53,8 +53,21 @@ Letto Non letto Io + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 this conversation? + Are you sure you want to archive %s? %d conversazione @@ -110,4 +123,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-iw/strings.xml b/app/src/main/res/values-iw/strings.xml index 895a9030..cedac9f9 100644 --- a/app/src/main/res/values-iw/strings.xml +++ b/app/src/main/res/values-iw/strings.xml @@ -54,8 +54,21 @@ סמן כנקרא סמן כלא נקרא אני + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + Are you sure you want to empty the archive? All archived conversations will be permanently lost. האם אתה בטוח שברצונך למחוק את כל ההודעות של השיחה הזו\? + Are you sure you want to archive this conversation? + 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 b9a84b7b..94d389eb 100644 --- a/app/src/main/res/values-ja/strings.xml +++ b/app/src/main/res/values-ja/strings.xml @@ -51,8 +51,21 @@ 既読にする 未読にする 自分 + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + Are you sure you want to empty the archive? All archived conversations will be permanently lost. 本当にこの会話のすべてのメッセージを削除しますか? + Are you sure you want to archive this conversation? + 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 3d01d8c4..9c48de33 100644 --- a/app/src/main/res/values-lt/strings.xml +++ b/app/src/main/res/values-lt/strings.xml @@ -52,8 +52,21 @@ Nauja žinutė Pažymėti kaip perskaitytą Pažymėti kaip neskaitytą + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 this conversation? + 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 76c5d375..4adf9e31 100644 --- a/app/src/main/res/values-lv/strings.xml +++ b/app/src/main/res/values-lv/strings.xml @@ -53,8 +53,21 @@ Mark as Read Mark as Unread Me + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 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 669639ec..d145ebf6 100644 --- a/app/src/main/res/values-mk/strings.xml +++ b/app/src/main/res/values-mk/strings.xml @@ -52,8 +52,21 @@ Mark as Read Mark as Unread Me + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 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 c78c857a..cbc4a970 100644 --- a/app/src/main/res/values-ml/strings.xml +++ b/app/src/main/res/values-ml/strings.xml @@ -52,8 +52,21 @@ വായിച്ചതായി അടയാളപ്പെടുത്തുക വായിച്ചിട്ടില്ലെന്ന് അടയാളപ്പെടുത്തുക Me + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + Are you sure you want to empty the archive? All archived conversations will be permanently lost. ഈ സംഭാഷണത്തിലെ എല്ലാ സന്ദേശങ്ങളും ഇല്ലാതാക്കണമെന്ന് തീർച്ചയാണോ\? + Are you sure you want to archive this conversation? + 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 9157790c..93cdcbd7 100644 --- a/app/src/main/res/values-nb-rNO/strings.xml +++ b/app/src/main/res/values-nb-rNO/strings.xml @@ -52,8 +52,21 @@ Marker som lest Marker som ulest Me + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 this conversation? + Are you sure you want to archive %s? %d konversasjon @@ -107,4 +120,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-nl/strings.xml b/app/src/main/res/values-nl/strings.xml index 44f2cf5d..fe78fbaf 100644 --- a/app/src/main/res/values-nl/strings.xml +++ b/app/src/main/res/values-nl/strings.xml @@ -52,8 +52,21 @@ Als gelezen markeren Als ongelezen markeren Ik + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 this conversation? + Are you sure you want to archive %s? %d gesprek @@ -107,4 +120,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-pa-rPK/strings.xml b/app/src/main/res/values-pa-rPK/strings.xml index 46584fdf..d6780709 100644 --- a/app/src/main/res/values-pa-rPK/strings.xml +++ b/app/src/main/res/values-pa-rPK/strings.xml @@ -52,8 +52,21 @@ پرھے وجوں چنھت کرو نا پڑھے وجوں چنھت کرو میں + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + Are you sure you want to empty the archive? All archived conversations will be permanently lost. تسیں پکے اے، سارے سنیہے مٹاؤ؟ + Are you sure you want to archive this conversation? + 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 8d26cff7..0c710baa 100644 --- a/app/src/main/res/values-pl/strings.xml +++ b/app/src/main/res/values-pl/strings.xml @@ -54,8 +54,21 @@ Oznacz jako przeczytane Oznacz jako nieprzeczytane Ja + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 this conversation? + Are you sure you want to archive %s? %d rozmowę @@ -113,4 +126,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-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml index 372f162d..3dcc7233 100644 --- a/app/src/main/res/values-pt-rBR/strings.xml +++ b/app/src/main/res/values-pt-rBR/strings.xml @@ -53,8 +53,21 @@ Marcar como Lida Marcar como Não Lida Eu + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 this conversation? + Are you sure you want to archive %s? %d conversa @@ -110,4 +123,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-pt/strings.xml b/app/src/main/res/values-pt/strings.xml index dac33dd8..8ee92149 100644 --- a/app/src/main/res/values-pt/strings.xml +++ b/app/src/main/res/values-pt/strings.xml @@ -53,8 +53,21 @@ Marcar como lida Marcar como não lida Eu + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 this conversation? + Are you sure you want to archive %s? %d conversa @@ -110,4 +123,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 d32f3591..f839ed76 100644 --- a/app/src/main/res/values-ro/strings.xml +++ b/app/src/main/res/values-ro/strings.xml @@ -53,8 +53,21 @@ Marchează ca citit Marchează ca necitit Eu + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 this conversation? + 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 3371657d..ed19d4ca 100644 --- a/app/src/main/res/values-ru/strings.xml +++ b/app/src/main/res/values-ru/strings.xml @@ -54,8 +54,21 @@ Прочитано Не прочитано Я + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + Are you sure you want to empty the archive? All archived conversations will be permanently lost. Удалить все сообщения в этой переписке\? + Are you sure you want to archive this conversation? + Are you sure you want to archive %s? %d переписку @@ -113,4 +126,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 b2f9477e..52308a12 100644 --- a/app/src/main/res/values-sk/strings.xml +++ b/app/src/main/res/values-sk/strings.xml @@ -53,8 +53,21 @@ Označiť ako prečítané Označiť ako neprečítané Ja + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 this conversation? + 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 bc55f5fc..af9a3d7e 100644 --- a/app/src/main/res/values-sl/strings.xml +++ b/app/src/main/res/values-sl/strings.xml @@ -54,8 +54,21 @@ Označi kot prebrano Označi kot neprebrano Jaz + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 this conversation? + 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 771e9cc0..6a5bebe8 100644 --- a/app/src/main/res/values-sr/strings.xml +++ b/app/src/main/res/values-sr/strings.xml @@ -53,8 +53,21 @@ Означи као прочитано Означи као непрочитанo Ja + + Врати из архиве + Обриши све архивиране конверзације + Прескочи архиву, обриши конверзације директно + Архивиране конверзације + Архивирај + Нема архивираних разговора + Архивирај конверзације умјесто брисанја + Архива је празна + Архива је успјешно испражнјена + Да ли сте сигурни да желите да испразните архиву? Све архивиране поруке ће бити избрисане. Да ли сте сигурни да желите да избришете све поруке ове конверзације\? + Да ли сте сигурни да желите да архивирате ову конверзацију? + Да ли сте сигурни да желите да архивирате %s? %d разговор diff --git a/app/src/main/res/values-sv/strings.xml b/app/src/main/res/values-sv/strings.xml index 5a722d79..ba55fb1e 100644 --- a/app/src/main/res/values-sv/strings.xml +++ b/app/src/main/res/values-sv/strings.xml @@ -52,8 +52,21 @@ Markera som läst Markera som oläst Jag + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 this conversation? + Are you sure you want to archive %s? %d konversation @@ -107,4 +120,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-ta/strings.xml b/app/src/main/res/values-ta/strings.xml index 1029c6d4..d82dfc4f 100644 --- a/app/src/main/res/values-ta/strings.xml +++ b/app/src/main/res/values-ta/strings.xml @@ -52,8 +52,21 @@ படித்ததாக குறியிடு படிக்காததாக குறியிடு Me + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + Are you sure you want to empty the archive? All archived conversations will be permanently lost. இந்த உரையாடலின் அனைத்து செய்திகளையும் நிச்சயமாக நீக்க விரும்புகிறீர்களா\? + Are you sure you want to archive this conversation? + 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 9a1916d2..8727660a 100644 --- a/app/src/main/res/values-th/strings.xml +++ b/app/src/main/res/values-th/strings.xml @@ -51,8 +51,21 @@ Mark as Read Mark as Unread Me + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 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 650aa34a..01ee2dc1 100644 --- a/app/src/main/res/values-tr/strings.xml +++ b/app/src/main/res/values-tr/strings.xml @@ -52,8 +52,21 @@ Okundu olarak işaretle Okunmadı olarak işaretle Ben + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 this conversation? + Are you sure you want to archive %s? %d görüşme @@ -107,4 +120,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 734c22a2..681b8453 100644 --- a/app/src/main/res/values-uk/strings.xml +++ b/app/src/main/res/values-uk/strings.xml @@ -54,8 +54,21 @@ Прочитано Не прочитано Me + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + Are you sure you want to empty the archive? All archived conversations will be permanently lost. Справді видалити всі повідомлення у цьому листуванні\? + Are you sure you want to archive this conversation? + Are you sure you want to archive %s? %d листування @@ -113,4 +126,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 6a035913..0b7da87e 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -51,8 +51,21 @@ 标记为已读 标记为未读 自己 + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + Are you sure you want to empty the archive? All archived conversations will be permanently lost. 您确定要删除此对话的所有消息吗\? + Are you sure you want to archive this conversation? + Are you sure you want to archive %s? %d 个对话 @@ -104,4 +117,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 012d4194..c77cab72 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -51,8 +51,21 @@ 標為已讀 標為未讀 Me + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + Are you sure you want to empty the archive? All archived conversations will be permanently lost. 您確定要刪除此對話中的所有訊息嗎? + Are you sure you want to archive this conversation? + 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 0e2a271f..1d899384 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -52,8 +52,21 @@ Mark as Read Mark as Unread Me + + Unarchive + Remove all archived conversations + Skip the archive, delete conversations directly + Archived conversations + Archive + No archived conversations have been found + Archive conversations instead of deleting + The archive is empty + The archive has been emptied successfully + 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 this conversation? + Are you sure you want to archive %s? %d conversation