Add proper strings for archive operations

This commit is contained in:
Ensar Sarajčić 2023-07-12 10:37:20 +02:00
parent 47861f605d
commit 7dbd6c5d9f
61 changed files with 693 additions and 70 deletions

View File

@ -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" />
<activity

View File

@ -3,6 +3,7 @@ package com.simplemobiletools.smsmessenger.activities
import android.annotation.SuppressLint
import android.content.Intent
import android.os.Bundle
import com.simplemobiletools.commons.dialogs.ConfirmationDialog
import com.simplemobiletools.commons.extensions.*
import com.simplemobiletools.commons.helpers.*
import com.simplemobiletools.smsmessenger.R
@ -82,8 +83,10 @@ class ArchivedConversationsActivity : SimpleActivity() {
}
private fun removeAll() {
removeAllArchivedConversations {
loadArchivedConversations()
ConfirmationDialog(this, "", R.string.empty_archive_confirmation, R.string.yes, R.string.no) {
removeAllArchivedConversations {
loadArchivedConversations()
}
}
}
@ -125,7 +128,7 @@ class ArchivedConversationsActivity : SimpleActivity() {
private fun showOrHidePlaceholder(show: Boolean) {
conversations_fastscroller.beGoneIf(show)
no_conversations_placeholder.beVisibleIf(show)
no_conversations_placeholder.text = getString(R.string.no_conversations_found)
no_conversations_placeholder.text = getString(R.string.no_archived_conversations)
}
@SuppressLint("NotifyDataSetChanged")

View File

@ -19,7 +19,7 @@ import java.util.*
class SettingsActivity : SimpleActivity() {
private var blockedNumbersAtPause = -1
private var recycleBinConversations = 0
private var archiveConversations = 0
override fun onCreate(savedInstanceState: Bundle?) {
isMaterialActivity = true
@ -64,7 +64,7 @@ class SettingsActivity : SimpleActivity() {
settings_general_settings_label,
settings_outgoing_messages_label,
settings_notifications_label,
settings_recycle_bin_label,
settings_archive_label,
settings_security_label
).forEach {
it.setTextColor(getProperPrimaryColor())
@ -252,36 +252,36 @@ class SettingsActivity : SimpleActivity() {
private fun setupUseRecycleBin() {
updateRecycleBinButtons()
settings_use_recycle_bin.isChecked = config.useArchive
settings_use_recycle_bin_holder.setOnClickListener {
settings_use_recycle_bin.toggle()
config.useArchive = settings_use_recycle_bin.isChecked
settings_use_archive.isChecked = config.useArchive
settings_use_archive_holder.setOnClickListener {
settings_use_archive.toggle()
config.useArchive = settings_use_archive.isChecked
updateRecycleBinButtons()
}
}
private fun updateRecycleBinButtons() {
settings_empty_recycle_bin_holder.beVisibleIf(config.useArchive)
settings_empty_archive_holder.beVisibleIf(config.useArchive)
}
private fun setupEmptyRecycleBin() {
ensureBackgroundThread {
recycleBinConversations = conversationsDB.getArchivedCount()
archiveConversations = conversationsDB.getArchivedCount()
runOnUiThread {
settings_empty_recycle_bin_size.text =
resources.getQuantityString(R.plurals.delete_conversations, recycleBinConversations, recycleBinConversations)
settings_empty_archive_size.text =
resources.getQuantityString(R.plurals.delete_conversations, archiveConversations, archiveConversations)
}
}
settings_empty_recycle_bin_holder.setOnClickListener {
if (recycleBinConversations == 0) {
toast(R.string.recycle_bin_empty)
settings_empty_archive_holder.setOnClickListener {
if (archiveConversations == 0) {
toast(R.string.archive_is_empty)
} else {
ConfirmationDialog(this, "", R.string.empty_recycle_bin_confirmation, R.string.yes, R.string.no) {
ConfirmationDialog(this, "", R.string.empty_archive_confirmation, R.string.yes, R.string.no) {
removeAllArchivedConversations()
recycleBinConversations = 0
settings_empty_recycle_bin_size.text =
resources.getQuantityString(R.plurals.delete_conversations, recycleBinConversations, recycleBinConversations)
archiveConversations = 0
settings_empty_archive_size.text =
resources.getQuantityString(R.plurals.delete_conversations, archiveConversations, archiveConversations)
}
}
}

View File

@ -889,7 +889,12 @@ class ThreadActivity : SimpleActivity() {
}
private fun askConfirmDelete() {
DeleteConfirmationDialog(this, getString(R.string.delete_whole_conversation_confirmation), config.useArchive) { skipRecycleBin ->
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)

View File

@ -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()
}

View File

@ -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 ->

View File

@ -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)
}
}

View File

@ -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)

View File

@ -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"

View File

@ -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" />
<RelativeLayout
@ -55,7 +55,7 @@
android:gravity="center"
android:paddingLeft="@dimen/activity_margin"
android:paddingRight="@dimen/activity_margin"
android:text="@string/no_conversations_found"
android:text="@string/no_archived_conversations"
android:textSize="@dimen/bigger_text_size"
android:textStyle="italic"
android:visibility="gone" />

View File

@ -347,52 +347,52 @@
layout="@layout/divider" />
<TextView
android:id="@+id/settings_recycle_bin_label"
android:id="@+id/settings_archive_label"
style="@style/SettingsSectionLabelStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/recycle_bin" />
android:text="@string/archived_conversations" />
<RelativeLayout
android:id="@+id/settings_use_recycle_bin_holder"
android:id="@+id/settings_use_archive_holder"
style="@style/SettingsHolderCheckboxStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.simplemobiletools.commons.views.MyAppCompatCheckbox
android:id="@+id/settings_use_recycle_bin"
android:id="@+id/settings_use_archive"
style="@style/SettingsCheckboxStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/move_items_into_recycle_bin" />
android:text="@string/archive_instead_of_delete" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/settings_empty_recycle_bin_holder"
android:id="@+id/settings_empty_archive_holder"
style="@style/SettingsHolderTextViewStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/settings_empty_recycle_bin_label"
android:id="@+id/settings_empty_archive_label"
style="@style/SettingsTextLabelStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/empty_recycle_bin" />
android:text="@string/empty_archive" />
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/settings_empty_recycle_bin_size"
android:id="@+id/settings_empty_archive_size"
style="@style/SettingsTextValueStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/settings_empty_recycle_bin_label"
android:layout_below="@+id/settings_empty_archive_label"
tools:text="0 B" />
</RelativeLayout>
<include
android:id="@+id/settings_recycle_bin_divider"
android:id="@+id/settings_archive_divider"
layout="@layout/divider" />
<TextView

View File

@ -13,14 +13,14 @@
android:layout_height="wrap_content"
android:paddingStart="@dimen/small_margin"
android:paddingBottom="@dimen/activity_margin"
android:text="@string/delete_whole_conversation_confirmation"
android:text="@string/archive_whole_conversation_confirmation"
android:textSize="@dimen/bigger_text_size" />
<com.simplemobiletools.commons.views.MyAppCompatCheckbox
android:id="@+id/skip_the_recycle_bin_checkbox"
android:id="@+id/skip_the_archive_checkbox"
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_archive" />
</RelativeLayout>

View File

@ -6,6 +6,6 @@
<item
android:id="@+id/empty_archive"
android:showAsAction="never"
android:title="Empty archive messages"
android:title="@string/empty_archive"
app:showAsAction="never" />
</menu>

View File

@ -17,6 +17,6 @@
<item
android:id="@+id/cab_unarchive"
android:showAsAction="never"
android:title="Unarchive"
android:title="@string/unarchive"
app:showAsAction="never" />
</menu>

View File

@ -56,8 +56,21 @@
<string name="mark_as_read">ضع إشارة مقروء</string>
<string name="mark_as_unread">وضع علامة كغير مقروءة</string>
<string name="me">Me</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">هل أنت متأكد أنك تريد حذف كافة رسائل هذه المحادثة؟</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="zero">محادثة %d</item>
@ -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
-->
</resources>
</resources>

View File

@ -52,8 +52,21 @@
<string name="mark_as_read">Mark as Read</string>
<string name="mark_as_unread">Mark as Unread</string>
<string name="me">Me</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Are you sure you want to delete all messages of this conversation\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d conversation</item>

View File

@ -54,8 +54,21 @@
<string name="mark_as_read">Прачытана</string>
<string name="mark_as_unread">Не прачытана</string>
<string name="me">Я</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Выдаліць усе паведамленні ў гэтай размове\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d размову</item>

View File

@ -52,8 +52,21 @@
<string name="mark_as_read">Отбележи като прочетено</string>
<string name="mark_as_unread">Отбележи като непрочетено</string>
<string name="me">Me</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Сигурни ли сте, че искате да изтриете всички съобщения от този разговор\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d разговор</item>

View File

@ -52,8 +52,21 @@
<string name="mark_as_read">Marca com a llegit</string>
<string name="mark_as_unread">Marcar com no llegit</string>
<string name="me">Me</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Confirmeu que voleu suprimir tots els missatges d\'aquesta conversa\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d conversa</item>
@ -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
-->
</resources>
</resources>

View File

@ -52,8 +52,21 @@
<string name="mark_as_read">Mark as Read</string>
<string name="mark_as_unread">Mark as Unread</string>
<string name="me">Me</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Are you sure you want to delete all messages of this conversation\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d conversation</item>

View File

@ -53,8 +53,21 @@
<string name="mark_as_read">Označit jako přečtené</string>
<string name="mark_as_unread">Označit jako nepřečtené</string>
<string name="me"></string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Opravdu chcete smazat všechny zprávy v této konverzaci\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d konverzace</item>
@ -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
-->
</resources>
</resources>

View File

@ -52,8 +52,21 @@
<string name="mark_as_read">Marker som læst</string>
<string name="mark_as_unread">Marker som ulæst</string>
<string name="me">Me</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Er du sikker på, at du vil slette alle beskeder i denne samtale\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d samtale</item>

View File

@ -52,8 +52,21 @@
<string name="mark_as_read">Als gelesen markieren</string>
<string name="mark_as_unread">Als ungelesen markieren</string>
<string name="me">Ich</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Sollen wirklich alle Nachrichten dieser Unterhaltung gelöscht werden\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d Unterhaltung</item>
@ -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
-->
</resources>
</resources>

View File

@ -52,8 +52,21 @@
<string name="mark_as_read">Σήμανση ως Αναγνωσμένο</string>
<string name="mark_as_unread">Σήμανση ως Μη Αναγνωσμένο</string>
<string name="me">Εγώ</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Είστε βέβαιοι ότι θέλετε να διαγράψετε όλα τα μηνύματα αυτής της συνομιλίας;</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d συνομιλία</item>

View File

@ -52,8 +52,21 @@
<string name="mark_as_read">Marki kiel legitan</string>
<string name="mark_as_unread">Marki kiel nelegitan</string>
<string name="me">Me</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Are you sure you want to delete all messages of this conversation\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d konversacio</item>

View File

@ -53,8 +53,21 @@
<string name="mark_as_read">Marcar como leído</string>
<string name="mark_as_unread">Marcar como no leído</string>
<string name="me">Yo</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">¿Estás seguro que quieres eliminar todos los mensajes en esta conversación\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d conversación</item>
@ -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
-->
</resources>
</resources>

View File

@ -52,8 +52,21 @@
<string name="mark_as_read">Märgi loetuks</string>
<string name="mark_as_unread">Märgi mitteloetuks</string>
<string name="me">Mina</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Kas oled kindel, et soovid kustutada kõik selle vestluse sõnumid\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d vestlus</item>
@ -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
-->
</resources>
</resources>

View File

@ -52,8 +52,21 @@
<string name="mark_as_read">Merkitse luetuksi</string>
<string name="mark_as_unread">Merkitse lukemattomaksi</string>
<string name="me">Minä</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Haluatko varmasti poistaa kaikki tämän keskustelun viestit\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d keskustelu</item>
@ -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
-->
</resources>
</resources>

View File

@ -53,8 +53,21 @@
<string name="mark_as_read">Marquer comme lu</string>
<string name="mark_as_unread">Marquer comme non lu</string>
<string name="me">Moi</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Voulez-vous vraiment supprimer tous les messages de cette conversation \?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d conversation</item>
@ -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
-->
</resources>
</resources>

View File

@ -52,8 +52,21 @@
<string name="mark_as_read">Marcar como lida</string>
<string name="mark_as_unread">Marcar como non lida</string>
<string name="me">Me</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Ten a certeza de que desexa eliminar todas as mensaxes desta conversa\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d conversa</item>
@ -107,4 +120,4 @@
Non atopaches algunhas cadeas? Hai máis en
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
</resources>
</resources>

View File

@ -52,8 +52,21 @@
<string name="mark_as_read">Mark as Read</string>
<string name="mark_as_unread">Mark as Unread</string>
<string name="me">Me</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Are you sure you want to delete all messages of this conversation\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d conversation</item>

View File

@ -53,8 +53,21 @@
<string name="mark_as_read">Označi kao pročitano</string>
<string name="mark_as_unread">Označi kao nepročitano</string>
<string name="me">Ja</string>
<!-- Archive -->
<string name="unarchive">Vrati iz arhiva</string>
<string name="empty_archive">Izbriši sve arhivirane razgovore</string>
<string name="skip_archive">Prekoči arhiv, obriši razgovore odmah</string>
<string name="archived_conversations">Arhivirani razgovori</string>
<string name="archive">Arhiviraj</string>
<string name="no_archived_conversations">Nema arhiviranih razgovora</string>
<string name="archive_instead_of_delete">Arhiviraj razgovore umjesto brisanja</string>
<string name="archive_is_empty">Arhiv je prazan</string>
<string name="archive_emptied_successfully">Arhiv je uspješno ispražnjen</string>
<string name="empty_archive_confirmation">Jeste li ste sigurni da želite isprazniti arhiv? Svi arhivirani razgovori će biti obrisani.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Stvarno želiš izbrisati sve poruke ovog razgovora\?</string>
<string name="archive_whole_conversation_confirmation">Stvarno želiš arhivirati ovaj razgovor?</string>
<string name="archive_confirmation">Jeste li ste sigurni da želite arhivirati %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d razgovor</item>
@ -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
-->
</resources>
</resources>

View File

@ -52,8 +52,21 @@
<string name="mark_as_read">Megjelölés olvasottként</string>
<string name="mark_as_unread">Megjelölés olvasatlanként</string>
<string name="me">Nekem</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Biztos, hogy törli az összes üzenetet ebből a beszélgetésből\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d beszélgetést</item>

View File

@ -51,8 +51,21 @@
<string name="mark_as_read">Tandai sebagai Dibaca</string>
<string name="mark_as_unread">Tandai sebagai Belum dibaca</string>
<string name="me">Me</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Apakah Anda yakin ingin menghapus semua pesan dari percakapan ini\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="other">%d percakapan</item>

View File

@ -52,8 +52,21 @@
<string name="mark_as_read">Mark as Read</string>
<string name="mark_as_unread">Mark as Unread</string>
<string name="me">Me</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Are you sure you want to delete all messages of this conversation\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d conversation</item>

View File

@ -53,8 +53,21 @@
<string name="mark_as_read">Letto</string>
<string name="mark_as_unread">Non letto</string>
<string name="me">Io</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Vuoi davvero eliminare tutti i messaggi di questa conversazione\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d conversazione</item>
@ -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
-->
</resources>
</resources>

View File

@ -54,8 +54,21 @@
<string name="mark_as_read">סמן כנקרא</string>
<string name="mark_as_unread">סמן כלא נקרא</string>
<string name="me">אני</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">האם אתה בטוח שברצונך למחוק את כל ההודעות של השיחה הזו\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">שיחה %d</item>

View File

@ -51,8 +51,21 @@
<string name="mark_as_read">既読にする</string>
<string name="mark_as_unread">未読にする</string>
<string name="me">自分</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">本当にこの会話のすべてのメッセージを削除しますか?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="other">%d 件の会話</item>

View File

@ -52,8 +52,21 @@
<string name="new_message">Nauja žinutė</string>
<string name="mark_as_read">Pažymėti kaip perskaitytą</string>
<string name="mark_as_unread">Pažymėti kaip neskaitytą</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Ar tikrai norite ištrinti visas šio pokalbio žinutes\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d pokalbis</item>

View File

@ -53,8 +53,21 @@
<string name="mark_as_read">Mark as Read</string>
<string name="mark_as_unread">Mark as Unread</string>
<string name="me">Me</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Are you sure you want to delete all messages of this conversation\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="zero">%d conversation</item>

View File

@ -52,8 +52,21 @@
<string name="mark_as_read">Mark as Read</string>
<string name="mark_as_unread">Mark as Unread</string>
<string name="me">Me</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Are you sure you want to delete all messages of this conversation\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d conversation</item>

View File

@ -52,8 +52,21 @@
<string name="mark_as_read">വായിച്ചതായി അടയാളപ്പെടുത്തുക</string>
<string name="mark_as_unread">വായിച്ചിട്ടില്ലെന്ന് അടയാളപ്പെടുത്തുക</string>
<string name="me">Me</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">ഈ സംഭാഷണത്തിലെ എല്ലാ സന്ദേശങ്ങളും ഇല്ലാതാക്കണമെന്ന് തീർച്ചയാണോ\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d സംഭാഷണം</item>

View File

@ -52,8 +52,21 @@
<string name="mark_as_read">Marker som lest</string>
<string name="mark_as_unread">Marker som ulest</string>
<string name="me">Me</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Er du sikker på at du vil slette alle meldinger fra denne konversasjonen\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d konversasjon</item>
@ -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
-->
</resources>
</resources>

View File

@ -52,8 +52,21 @@
<string name="mark_as_read">Als gelezen markeren</string>
<string name="mark_as_unread">Als ongelezen markeren</string>
<string name="me">Ik</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Alle berichten in dit gesprek verwijderen\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d gesprek</item>
@ -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
-->
</resources>
</resources>

View File

@ -52,8 +52,21 @@
<string name="mark_as_read">پرھے وجوں چنھت کرو</string>
<string name="mark_as_unread">نا پڑھے وجوں چنھت کرو</string>
<string name="me">میں</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">تسیں پکے اے، سارے سنیہے مٹاؤ؟</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d conversation</item>

View File

@ -54,8 +54,21 @@
<string name="mark_as_read">Oznacz jako przeczytane</string>
<string name="mark_as_unread">Oznacz jako nieprzeczytane</string>
<string name="me">Ja</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Czy usunąć wszystkie wiadomości z tej rozmowy\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d rozmowę</item>
@ -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
-->
</resources>
</resources>

View File

@ -53,8 +53,21 @@
<string name="mark_as_read">Marcar como Lida</string>
<string name="mark_as_unread">Marcar como Não Lida</string>
<string name="me">Eu</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Tem certeza que quer deletar todas as mensagens dessa conversa\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d conversa</item>
@ -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
-->
</resources>
</resources>

View File

@ -53,8 +53,21 @@
<string name="mark_as_read">Marcar como lida</string>
<string name="mark_as_unread">Marcar como não lida</string>
<string name="me">Eu</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Tem a certeza de que pretende apagar todas as mensagens desta conversa\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d conversa</item>
@ -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
-->
</resources>
</resources>

View File

@ -53,8 +53,21 @@
<string name="mark_as_read">Marchează ca citit</string>
<string name="mark_as_unread">Marchează ca necitit</string>
<string name="me">Eu</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Sunteți sigur că doriți să ștergeți toate mesajele din această conversație\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d conversaţie</item>

View File

@ -54,8 +54,21 @@
<string name="mark_as_read">Прочитано</string>
<string name="mark_as_unread">Не прочитано</string>
<string name="me">Я</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Удалить все сообщения в этой переписке\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d переписку</item>
@ -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
-->
</resources>
</resources>

View File

@ -53,8 +53,21 @@
<string name="mark_as_read">Označiť ako prečítané</string>
<string name="mark_as_unread">Označiť ako neprečítané</string>
<string name="me">Ja</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Ste si istý, že chcete odstrániť všetky správy tejto konverzácie\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d konverzáciu</item>

View File

@ -54,8 +54,21 @@
<string name="mark_as_read">Označi kot prebrano</string>
<string name="mark_as_unread">Označi kot neprebrano</string>
<string name="me">Jaz</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Ste prepričani, da želite izbrisati vsa sporočila tega pogovora\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d pogovor</item>

View File

@ -53,8 +53,21 @@
<string name="mark_as_read">Означи као прочитано</string>
<string name="mark_as_unread">Означи као непрочитанo</string>
<string name="me">Ja</string>
<!-- Archive -->
<string name="unarchive">Врати из архиве</string>
<string name="empty_archive">Обриши све архивиране конверзације</string>
<string name="skip_archive">Прескочи архиву, обриши конверзације директно</string>
<string name="archived_conversations">Архивиране конверзације</string>
<string name="archive">Архивирај</string>
<string name="no_archived_conversations">Нема архивираних разговора</string>
<string name="archive_instead_of_delete">Архивирај конверзације умјесто брисанја</string>
<string name="archive_is_empty">Архива је празна</string>
<string name="archive_emptied_successfully">Архива је успјешно испражнјена</string>
<string name="empty_archive_confirmation">Да ли сте сигурни да желите да испразните архиву? Све архивиране поруке ће бити избрисане.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Да ли сте сигурни да желите да избришете све поруке ове конверзације\?</string>
<string name="archive_whole_conversation_confirmation">Да ли сте сигурни да желите да архивирате ову конверзацију?</string>
<string name="archive_confirmation">Да ли сте сигурни да желите да архивирате %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d разговор</item>

View File

@ -52,8 +52,21 @@
<string name="mark_as_read">Markera som läst</string>
<string name="mark_as_unread">Markera som oläst</string>
<string name="me">Jag</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Är du säker på att du vill ta bort alla meddelanden i konversationen\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d konversation</item>
@ -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
-->
</resources>
</resources>

View File

@ -52,8 +52,21 @@
<string name="mark_as_read">படித்ததாக குறியிடு</string>
<string name="mark_as_unread">படிக்காததாக குறியிடு</string>
<string name="me">Me</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">இந்த உரையாடலின் அனைத்து செய்திகளையும் நிச்சயமாக நீக்க விரும்புகிறீர்களா\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d உரையாடல்</item>

View File

@ -51,8 +51,21 @@
<string name="mark_as_read">Mark as Read</string>
<string name="mark_as_unread">Mark as Unread</string>
<string name="me">Me</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Are you sure you want to delete all messages of this conversation\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="other">%d conversation</item>

View File

@ -52,8 +52,21 @@
<string name="mark_as_read">Okundu olarak işaretle</string>
<string name="mark_as_unread">Okunmadı olarak işaretle</string>
<string name="me">Ben</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Bu görüşmenin tüm mesajlarını silmek istediğinizden emin misiniz\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d görüşme</item>
@ -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
-->
</resources>
</resources>

View File

@ -54,8 +54,21 @@
<string name="mark_as_read">Прочитано</string>
<string name="mark_as_unread">Не прочитано</string>
<string name="me">Me</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Справді видалити всі повідомлення у цьому листуванні\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d листування</item>
@ -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
-->
</resources>
</resources>

View File

@ -51,8 +51,21 @@
<string name="mark_as_read">标记为已读</string>
<string name="mark_as_unread">标记为未读</string>
<string name="me">自己</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">您确定要删除此对话的所有消息吗\?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="other">%d 个对话</item>
@ -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
-->
</resources>
</resources>

View File

@ -51,8 +51,21 @@
<string name="mark_as_read">標為已讀</string>
<string name="mark_as_unread">標為未讀</string>
<string name="me">Me</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">您確定要刪除此對話中的所有訊息嗎?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="other">%d conversation</item>

View File

@ -52,8 +52,21 @@
<string name="mark_as_read">Mark as Read</string>
<string name="mark_as_unread">Mark as Unread</string>
<string name="me">Me</string>
<!-- Archive -->
<string name="unarchive">Unarchive</string>
<string name="empty_archive">Remove all archived conversations</string>
<string name="skip_archive">Skip the archive, delete conversations directly</string>
<string name="archived_conversations">Archived conversations</string>
<string name="archive">Archive</string>
<string name="no_archived_conversations">No archived conversations have been found</string>
<string name="archive_instead_of_delete">Archive conversations instead of deleting</string>
<string name="archive_is_empty">The archive is empty</string>
<string name="archive_emptied_successfully">The archive has been emptied successfully</string>
<string name="empty_archive_confirmation">Are you sure you want to empty the archive? All archived conversations will be permanently lost.</string>
<!-- Confirmation dialog -->
<string name="delete_whole_conversation_confirmation">Are you sure you want to delete all messages of this conversation?</string>
<string name="archive_whole_conversation_confirmation">Are you sure you want to archive this conversation?</string>
<string name="archive_confirmation">Are you sure you want to archive %s?</string>
<!-- Are you sure you want to delete 5 conversations? -->
<plurals name="delete_conversations">
<item quantity="one">%d conversation</item>