Issue #2783: Add snackbar to collection deletion

This commit is contained in:
Roger Yang 2021-07-27 16:44:25 -04:00 committed by mergify[bot]
parent 77e12f9014
commit c9b2f9e866
102 changed files with 41 additions and 276 deletions

View File

@ -981,10 +981,10 @@ class SmokeTest {
}.expandCollection(collectionName) {
clickCollectionThreeDotButton()
selectDeleteCollection()
confirmDeleteCollection()
}
homeScreen {
verifySnackBarText("Collection deleted")
verifyNoCollectionsText()
}
}

View File

@ -131,7 +131,6 @@ class CollectionRobot {
fun selectDeleteCollection() {
onView(withText("Delete collection")).click()
mDevice.waitNotNull(Until.findObject(By.res("android:id/message")), waitingTime)
}
fun confirmDeleteCollection() {

View File

@ -13,6 +13,7 @@ import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch
import kotlinx.coroutines.withContext
import mozilla.components.browser.state.state.TabSessionState
import mozilla.components.browser.state.state.createTab
import mozilla.components.feature.tab.collections.Tab
import mozilla.components.feature.tab.collections.TabCollection
import mozilla.components.feature.tab.collections.TabCollectionStorage
@ -68,6 +69,15 @@ class TabCollectionStorage(
}
}
suspend fun createCollection(tabCollection: TabCollection): Long? {
return withContext(ioScope.coroutineContext) {
val sessions = tabCollection.tabs.map { createTab(url = it.url, title = it.title) }
val id = collectionStorage.createCollection(tabCollection.title, sessions)
notifyObservers { onCollectionCreated(tabCollection.title, sessions, id) }
id
}
}
suspend fun addTabsToCollection(tabCollection: TabCollection, sessions: List<TabSessionState>): Long? {
return withContext(ioScope.coroutineContext) {
val id = collectionStorage.addTabsToCollection(tabCollection, sessions)

View File

@ -6,7 +6,6 @@ package org.mozilla.fenix.home
import android.animation.Animator
import android.content.Context
import android.content.DialogInterface
import android.content.res.Configuration
import android.graphics.drawable.BitmapDrawable
import android.graphics.drawable.ColorDrawable
@ -22,7 +21,6 @@ import android.widget.Button
import android.widget.LinearLayout
import android.widget.PopupWindow
import androidx.annotation.VisibleForTesting
import androidx.appcompat.app.AlertDialog
import androidx.appcompat.content.res.AppCompatResources
import androidx.constraintlayout.widget.ConstraintLayout
import androidx.constraintlayout.widget.ConstraintSet
@ -301,7 +299,7 @@ class HomeFragment : Fragment() {
viewLifecycleScope = viewLifecycleOwner.lifecycleScope,
hideOnboarding = ::hideOnboardingAndOpenSearch,
registerCollectionStorageObserver = ::registerCollectionStorageObserver,
showDeleteCollectionPrompt = ::showDeleteCollectionPrompt,
removeCollectionWithUndo = ::removeCollectionWithUndo,
showTabTray = ::openTabsTray,
handleSwipedItemDeletionCancel = ::handleSwipedItemDeletionCancel
),
@ -703,34 +701,25 @@ class HomeFragment : Fragment() {
}
}
private fun showDeleteCollectionPrompt(
tabCollection: TabCollection,
title: String?,
message: String,
wasSwiped: Boolean,
handleSwipedItemDeletionCancel: () -> Unit
) {
val context = context ?: return
AlertDialog.Builder(context).apply {
setTitle(title)
setMessage(message)
setNegativeButton(R.string.tab_collection_dialog_negative) { dialog: DialogInterface, _ ->
if (wasSwiped) {
handleSwipedItemDeletionCancel()
}
dialog.cancel()
}
setPositiveButton(R.string.tab_collection_dialog_positive) { dialog: DialogInterface, _ ->
// Use fragment's lifecycle; the view may be gone by the time dialog is interacted with.
lifecycleScope.launch(IO) {
context.components.core.tabCollectionStorage.removeCollection(tabCollection)
context.components.analytics.metrics.track(Event.CollectionRemoved)
}.invokeOnCompletion {
dialog.dismiss()
}
}
create()
}.show()
@VisibleForTesting
internal fun removeCollectionWithUndo(tabCollection: TabCollection) {
val snackbarMessage = getString(R.string.snackbar_collection_deleted)
lifecycleScope.allowUndo(
requireView(),
snackbarMessage,
getString(R.string.snackbar_deleted_undo),
{
requireComponents.core.tabCollectionStorage.createCollection(tabCollection)
},
operation = { },
elevation = TOAST_ELEVATION,
anchorView = null
)
lifecycleScope.launch(IO) {
requireComponents.core.tabCollectionStorage.removeCollection(tabCollection)
}
}
override fun onResume() {
@ -1142,5 +1131,8 @@ class HomeFragment : Fragment() {
private const val FADE_ANIM_DURATION = 150L
private const val CFR_WIDTH_DIVIDER = 1.7
private const val CFR_Y_OFFSET = -20
// Elevation for undo toasts
internal const val TOAST_ELEVATION = 80f
}
}

View File

@ -197,13 +197,7 @@ class DefaultSessionControlController(
private val viewLifecycleScope: CoroutineScope,
private val hideOnboarding: () -> Unit,
private val registerCollectionStorageObserver: () -> Unit,
private val showDeleteCollectionPrompt: (
tabCollection: TabCollection,
title: String?,
message: String,
wasSwiped: Boolean,
handleSwipedItemDeletionCancel: () -> Unit
) -> Unit,
private val removeCollectionWithUndo: (tabCollection: TabCollection) -> Unit,
private val showTabTray: () -> Unit,
private val handleSwipedItemDeletionCancel: () -> Unit
) : SessionControlController {
@ -266,19 +260,7 @@ class DefaultSessionControlController(
metrics.track(Event.CollectionTabRemoved)
if (collection.tabs.size == 1) {
val title = activity.resources.getString(
R.string.delete_tab_and_collection_dialog_title,
collection.title
)
val message =
activity.resources.getString(R.string.delete_tab_and_collection_dialog_message)
showDeleteCollectionPrompt(
collection,
title,
message,
wasSwiped,
handleSwipedItemDeletionCancel
)
removeCollectionWithUndo(collection)
} else {
viewLifecycleScope.launch {
tabCollectionStorage.removeTabFromCollection(collection, tab)
@ -296,9 +278,7 @@ class DefaultSessionControlController(
}
override fun handleDeleteCollectionTapped(collection: TabCollection) {
val message =
activity.resources.getString(R.string.tab_collection_dialog_message, collection.title)
showDeleteCollectionPrompt(collection, null, message, false, handleSwipedItemDeletionCancel)
removeCollectionWithUndo(collection)
}
override fun handleOpenInPrivateTabClicked(topSite: TopSite) {

View File

@ -938,8 +938,6 @@
<string name="delete_tab_and_collection_dialog_title">Borrar %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Borrar</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Cancelar</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Accedendo a pantalla completa</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1094,8 +1094,6 @@
<string name="delete_tab_and_collection_dialog_title">أنحذف %1$s؟</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">احذف</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">ألغِ</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">تدخل وضع ملء الشاشة</string>

View File

@ -1043,8 +1043,6 @@
<string name="delete_tab_and_collection_dialog_title">¿Desaniciar %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Desaniciar</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Encaboxar</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Tas nel mou a pantalla completa</string>

View File

@ -660,8 +660,6 @@
<string name="qr_scanner_dialog_negative">RƏDD ET</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Sil</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Ləğv et</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Tam ekran rejiminə daxil olunur</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1116,8 +1116,6 @@
<string name="delete_tab_and_collection_dialog_title">Выдаліць %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Выдаліць</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Адмена</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Уваход у поўнаэкранны рэжым</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1116,8 +1116,6 @@
<string name="delete_tab_and_collection_dialog_title">Изтриване на %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Изтриване</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Отказ</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Режим на цял екран</string>

View File

@ -897,8 +897,6 @@
<string name="delete_tab_and_collection_dialog_title">%1$s মুছে ফেলবেন?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">মুছে ফেলুন</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">বাতিল</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">ফুল স্ক্রিন মোডে প্রবেশ করছে</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1097,8 +1097,6 @@
<string name="delete_tab_and_collection_dialog_title">Dilemel %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Dilemel</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Nullañ</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Mod skramm a-bezh kroget</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -921,8 +921,6 @@
<string name="delete_tab_and_collection_dialog_title">Obrisati %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Obriši</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Otkaži</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Ulazim u režim cijelog ekrana</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1107,8 +1107,6 @@
<string name="delete_tab_and_collection_dialog_title">Voleu suprimir %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Suprimeix</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Cancel·la</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Esteu en mode de pantalla completa</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1108,8 +1108,6 @@
<string name="delete_tab_and_collection_dialog_title">¿La niyuj %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Tiyuj</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Tiq\'at</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Nok pa chijun ruwa</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1055,8 +1055,6 @@
<string name="delete_tab_and_collection_dialog_title">%1$s دەسڕیتەوە؟</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">سڕینەوە</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">پاشگەزبوونەوە</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">چوونە دۆخی پراوپڕی شاشە</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1114,8 +1114,6 @@
<string name="delete_tab_and_collection_dialog_title">Squassà %1$s ?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Squassà</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Abbandunà</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Modu di screnu sanu attivatu</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1125,8 +1125,6 @@
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Odstranit</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Zrušit</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Spuštěn režim celé obrazovky</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1104,8 +1104,6 @@
<string name="delete_tab_and_collection_dialog_title">Dileu %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Dileu</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Diddymu</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Mynd ir sgrin lawn</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1095,8 +1095,6 @@
<string name="delete_tab_and_collection_dialog_title">Slet %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Slet</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Fortryd</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Fuldskærmstilstand aktiveret</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1136,8 +1136,6 @@
<string name="delete_tab_and_collection_dialog_title">%1$s löschen?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Löschen</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Abbrechen</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Vollbildmodus wird gestartet</string>

View File

@ -1125,8 +1125,6 @@
<string name="delete_tab_and_collection_dialog_title">%1$s lašowaś?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Lašowaś</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Pśetergnuś</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Połna wobrazowka se pokazujo</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1116,8 +1116,6 @@
<string name="delete_tab_and_collection_dialog_title">Διαγραφή του %1$s;</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Διαγραφή</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Ακύρωση</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Είσοδος σε λειτουργία πλήρους οθόνης</string>

View File

@ -1096,8 +1096,6 @@
<string name="delete_tab_and_collection_dialog_title">Delete %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Delete</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Cancel</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Entering full screen mode</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1099,8 +1099,6 @@
<string name="delete_tab_and_collection_dialog_title">Delete %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Delete</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Cancel</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Entering full screen mode</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1100,8 +1100,6 @@
<string name="delete_tab_and_collection_dialog_title">Ĉu forigi %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Forigi</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Nuligi</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Plenekrana reĝimo aktiva</string>

View File

@ -1125,8 +1125,6 @@
<string name="delete_tab_and_collection_dialog_title">¿Eliminar %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Eliminar</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Cancelar</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Acceder a pantalla completa</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1123,8 +1123,6 @@
<string name="delete_tab_and_collection_dialog_title">¿Eliminar %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Eliminar</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Cancelar</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Pasando a modo de pantalla completa</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1134,8 +1134,6 @@
<string name="delete_tab_and_collection_dialog_title">¿Eliminar %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Eliminar</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Cancelar</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Accediendo a pantalla completa</string>

View File

@ -1099,8 +1099,6 @@
<string name="delete_tab_and_collection_dialog_title">¿Eliminar %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Eliminar</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Cancelar</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Accediendo a pantalla completa</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1135,8 +1135,6 @@
<string name="delete_tab_and_collection_dialog_title">¿Eliminar %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Eliminar</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Cancelar</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Accediendo al modo de pantalla completa</string>

View File

@ -766,8 +766,6 @@
<string name="tab_collection_dialog_message">Kas oled kindel, et soovid kustutada kollektsiooni %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Kustuta</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Loobu</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Täisekraanirežiimi sisenemine</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1117,8 +1117,6 @@
<string name="delete_tab_and_collection_dialog_title">%1$s ezabatu?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Ezabatu</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Utzi</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Pantaila osoko moduan sartzen</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1065,8 +1065,6 @@
<string name="delete_tab_and_collection_dialog_title">%1$s حذف شود؟</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">حذف</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">انصراف</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">ورود به حالت تمام صفحه</string>

View File

@ -710,8 +710,6 @@
<string name="tab_collection_dialog_message">Aɗa yenanaa yiɗde momtude %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Momtu</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Haaytu</string>
<!-- Message for copying the URL via long press on the toolbar -->
<string name="url_copied">Ñiiɓirde geese nattaama</string>

View File

@ -1116,8 +1116,6 @@
<string name="delete_tab_and_collection_dialog_title">Poistetaanko %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Poista</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Peruuta</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Siirrytään koko näytön tilaan</string>

View File

@ -1133,8 +1133,6 @@
<string name="delete_tab_and_collection_dialog_title">Supprimer %1$s ?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Supprimer</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Annuler</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Mode plein écran activé</string>

View File

@ -1104,8 +1104,6 @@
<string name="delete_tab_and_collection_dialog_title">%1$s fuortsmite?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Fuortsmite</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Annulearje</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Folslein skerm wurdt iepene</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -747,8 +747,6 @@
<string name="tab_collection_dialog_message">An bhfuil tú cinnte gur mhaith leat %1$s a scriosadh?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Scrios</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Cealaigh</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Ag dul isteach sa mód lánscáileáin</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1095,8 +1095,6 @@
<string name="delete_tab_and_collection_dialog_title">A bheil thu airson %1$s a sguabadh às?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Sguab às</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Sguir dheth</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">A fosgladh modh na làn-sgrìn</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1048,8 +1048,6 @@
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Eliminar</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Cancelar</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Entrado no modo de pantalla completa</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1124,8 +1124,6 @@
<string name="delete_tab_and_collection_dialog_title">¿Emboguete %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Mboguete</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Heja</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Oikehína mbaerechaha tuichavévape</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -760,8 +760,6 @@
<string name="delete_tab_and_collection_dialog_title">%1$s ને કાઢી નાખીએ?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">કાઢી નાખો</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">રદ કરો</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">પૂર્ણ સ્ક્રીન મોડમાં દાખલ થઈ રહ્યું છે</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -965,8 +965,6 @@
<string name="delete_tab_and_collection_dialog_title">%1$s को मिटाएं?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">मिटाएं</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">रद्द करें</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">पूर्ण स्क्रीन मोड में प्रवेश</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1111,8 +1111,6 @@
<string name="delete_tab_and_collection_dialog_title">Obriši %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Izbriši</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Odustani</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Pokretanje cjeloekranskog prikaza</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1130,8 +1130,6 @@
<string name="delete_tab_and_collection_dialog_title">%1$s zhašeć?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Zhašeć</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Přetorhnyć</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Połna wobrazowka so pokazuje</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1111,8 +1111,6 @@
<string name="delete_tab_and_collection_dialog_title">Törli ezt: %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Törlés</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Mégse</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Belépés teljes képernyős módba</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1105,8 +1105,6 @@
<string name="delete_tab_and_collection_dialog_title">Ջնջե՞լ %1$s-ը:</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Ջնջել</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Չեղարկել</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Մուտք լիաէկրան</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1162,8 +1162,6 @@
<string name="delete_tab_and_collection_dialog_title">Deler %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Deler</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Cancellar</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Entrante in modo plen schermo</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1121,8 +1121,6 @@
<string name="delete_tab_and_collection_dialog_title">Hapus %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Hapus</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Batal</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Memasuki mode layar penuh</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -833,8 +833,6 @@
<string name="tab_collection_dialog_message">Ertu viss um að þú viljir eyða %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Eyða</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Hætta við</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Fara í fullan skjá</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1137,8 +1137,6 @@
<string name="delete_tab_and_collection_dialog_title">Eliminare %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Elimina</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Annulla</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Passa a schermo intero</string>

View File

@ -1105,8 +1105,6 @@
<string name="delete_tab_and_collection_dialog_title">למחוק את %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">מחיקה</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">ביטול</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">עברת למצב מסך מלא</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1122,8 +1122,6 @@
<string name="delete_tab_and_collection_dialog_title">%1$s のコレクションを削除しますか?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">削除</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">キャンセル</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">全画面表示モードです</string>

View File

@ -1103,8 +1103,6 @@
<string name="delete_tab_and_collection_dialog_title">წაიშალოს %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">წაშლა</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">გაუქმება</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">სრულ ეკრანზე გაშლა</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1118,8 +1118,6 @@ Tiktiwin tigejdanin yuzzlen ur nṣeḥḥi ara
<string name="delete_tab_and_collection_dialog_title">Kkes %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Kkes</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Sefsex</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Askar n ugdil ačaran yermed</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1095,8 +1095,6 @@
<string name="delete_tab_and_collection_dialog_title">%1$s өшіру керек пе?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Өшіру</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Бас тарту</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Толық экран режиміне өту</string>

View File

@ -1068,8 +1068,6 @@
<string name="delete_tab_and_collection_dialog_title">%1$sê jê bibe?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Jê bibe</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Betal bike</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Têketina moda ekrana dagirtî</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -819,8 +819,6 @@
<string name="delete_tab_and_collection_dialog_title">%1$s ಅನ್ನು ಅಳಿಸುವುದೇ?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">ಅಳಿಸು</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">ರದ್ದು ಮಾಡು</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">ಪೂರ್ಣ ಪರದೆ ಮೋಡ್‌ಗೆ ಪ್ರವೇಶಿಸಲಾಗುತ್ತಿದೆ</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1167,8 +1167,6 @@
<string name="delete_tab_and_collection_dialog_title">%1$s 모음집을 삭제하시겠습니까?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">삭제</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">취소</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">전체 화면 모드로 전환 중</string>

View File

@ -825,8 +825,6 @@
<string name="tab_collection_dialog_message">T\'ê seguo de voei scancelâ %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Scancella</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Anulla</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Intra into mòddo a tutto schermo</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1097,8 +1097,6 @@
<string name="delete_tab_and_collection_dialog_title">ລຶບ %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">ລຶບ</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">ຍົກເລີກ</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">ເຂົ້າສູ່ໂມດເຕັມຫນ້າຈໍ</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1108,8 +1108,6 @@
<string name="delete_tab_and_collection_dialog_title">Pašalinti „%1$s“?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Pašalinti</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Atsisakyti</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Įjungta viso ekrano veiksena</string>

View File

@ -830,8 +830,6 @@
<string name="tab_collection_dialog_message">%1$s നീക്കം ചെയ്യണമെന്ന് താങ്കൾക്ക് ഉറപ്പാണോ?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">നീക്കം ചെയ്യുക</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">റദ്ദാക്കുക</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">സ്ക്രീൻ പൂര്‍ണ്ണവലിപ്പത്തിലാക്കുന്നു</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -836,8 +836,6 @@
<string name="tab_collection_dialog_message">आपल्याला खात्री आहे की आपण %1$s हटवू इच्छिता?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">हटवा</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">रद्द करा</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">पूर्ण स्क्रीन मोडमध्ये प्रवेश करत आहे</string>

View File

@ -846,8 +846,6 @@
<string name="delete_tab_and_collection_dialog_title">%1$s ကိုဖျက်မှာလား?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">ဖျက်ပါ</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">မလုပ်ဆောင်တော့ပါ</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">ဖန်သားပြင်အပြည့်ဖြင့်ကြည့်ခြင်း</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1113,8 +1113,6 @@
<string name="delete_tab_and_collection_dialog_title">Vil du slette %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Slett</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Avbryt</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Starter fullskjermmodus</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1114,8 +1114,6 @@
<string name="delete_tab_and_collection_dialog_title">%1$s verwijderen?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Verwijderen</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Annuleren</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Volledig scherm wordt geopend</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1117,8 +1117,6 @@
<string name="delete_tab_and_collection_dialog_title">Vil du slette %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Slett</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Avbryt</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Startar fullskjermmodus</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1116,8 +1116,6 @@
<string name="delete_tab_and_collection_dialog_title">Suprimir %1$s ?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Suprimir</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Anullar</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Mòde plen ecran actiu</string>

View File

@ -1122,8 +1122,6 @@
<string name="delete_tab_and_collection_dialog_title">%1$s ਨੂੰ ਹਟਾਉਣਾ ਹੈ?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">ਹਟਾਓ</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">ਰੱਦ ਕਰੋ</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">ਪੂਰੀ ਸਕਰੀਨ ਢੰਗ ਵਿੱਚ ਜਾ ਰਿਹਾ ਹੈ</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1111,8 +1111,6 @@
<string name="delete_tab_and_collection_dialog_title">Czy usunąć „%1$s”?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Usuń</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Anuluj</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Włączono tryb pełnoekranowy</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1104,8 +1104,6 @@
<string name="delete_tab_and_collection_dialog_title">Excluir %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Excluir</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Cancelar</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Entrando no modo de tela inteira</string>

View File

@ -1107,8 +1107,6 @@
<string name="delete_tab_and_collection_dialog_title">Eliminar %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Eliminar</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Cancelar</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">A entrar no modo de ecrã completo</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1099,8 +1099,6 @@
<string name="delete_tab_and_collection_dialog_title">Stizzar %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Stizzar</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Interrumper</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Midar al modus da maletg entir</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -874,8 +874,6 @@
<string name="delete_tab_and_collection_dialog_title">Ștergi %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Șterge</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Renunță</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Se intră în modul ecran complet</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1136,8 +1136,6 @@
<string name="delete_tab_and_collection_dialog_title">Удалить %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Удалить</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Отмена</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Вход в полноэкранный режим</string>

View File

@ -1107,8 +1107,6 @@
<string name="delete_tab_and_collection_dialog_title">%1$s ᱢᱮᱴᱟᱣᱟ ᱥᱮ?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">ᱢᱮᱴᱟᱣ ᱢᱮ</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">ᱵᱟᱹᱰᱨᱟᱹ</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">ᱯᱩᱨᱟᱹ ᱠᱨᱤᱱ ᱢᱳᱰ ᱵᱚᱞᱚᱱ ᱠᱟᱱᱟᱢ</string>

View File

@ -1115,8 +1115,6 @@
<string name="delete_tab_and_collection_dialog_title">Odstrániť %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Odstrániť</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Zrušiť</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Bol spustený režim celej obrazovky</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1108,8 +1108,6 @@
<string name="delete_tab_and_collection_dialog_title">Izbrišem %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Izbriši</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Prekliči</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Vstop v celozaslonski način</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1102,8 +1102,6 @@
<string name="delete_tab_and_collection_dialog_title">Të fshihet %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Fshije</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Anuloje</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Po hyhet në mënyrën “Sa krejt ekrani”</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1095,8 +1095,6 @@
<string name="delete_tab_and_collection_dialog_title">Обрисати %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Обриши</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Откажи</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Улазим у режим целог екрана</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1110,8 +1110,6 @@
<string name="delete_tab_and_collection_dialog_title">Pupus %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Pupus</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Bolay</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Asup ka mode layar pinuh</string>

View File

@ -1140,8 +1140,6 @@
<string name="delete_tab_and_collection_dialog_title">Tog bort %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Ta bort</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Avbryt</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Startar fullskärmsläge</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -938,8 +938,6 @@
<string name="delete_tab_and_collection_dialog_title">%1$s அழிக்கவா?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">அழி</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">ரத்து</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">முழு திரை பயன்முறையில் நுழைகிறது</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1056,8 +1056,6 @@
<string name="delete_tab_and_collection_dialog_title">%1$sని తొలగించాలా?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">తొలగించు</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">రద్దుచేయి</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">నిండు తెర రీతిలోకి వెళ్తున్నారు</string>

View File

@ -1104,8 +1104,6 @@
<string name="delete_tab_and_collection_dialog_title">%1$s-ро нест мекунед?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Нест кардан</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Бекор кардан</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Ба реҷаи экрани пурра ворид шуда истодааст</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1102,8 +1102,6 @@
<string name="delete_tab_and_collection_dialog_title">ลบ %1$s หรือไม่?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">ลบ</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">ยกเลิก</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">เข้าสู่โหมดเต็มหน้าจอ</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1117,8 +1117,6 @@
<string name="delete_tab_and_collection_dialog_title">Burahin ang %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Burahin</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Kanselahin</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Pumapasok sa full screen mode</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1105,8 +1105,6 @@
<string name="delete_tab_and_collection_dialog_title">%1$s silinsin mi?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Sil</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">İptal</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Tam ekran moduna geçiliyor</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -855,8 +855,6 @@
<string name="delete_tab_and_collection_dialog_title">Nādurê\'t %1$s raj</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Nādūre\'</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Dūyichin\'</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Hiàj nanunj da\' huā ngè riña aga\'a</string>

View File

@ -1060,8 +1060,6 @@
<string name="delete_tab_and_collection_dialog_title">%1$s җыентыгын бетерергәме?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Бетерү</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Баш тарту</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Тулы экран режимына күчү</string>

View File

@ -1136,8 +1136,6 @@
<string name="delete_tab_and_collection_dialog_title">Видалити %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Видалити</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Скасувати</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Вхід у повноекранний режим</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1085,8 +1085,6 @@
<string name="delete_tab_and_collection_dialog_title">%1$s حذف کریں؟</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">مٹائیں</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">منسوخ کریں</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">فل سکرین موڈ میں داخل ہو رہا ہے</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -746,8 +746,6 @@
<!-- Text shown in snackbar when user closes all tabs -->
<string name="snackbar_tabs_closed">Varaqlar yopildi</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Bekor qilish</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Toʻliq ekran rejimiga oʻtmoqda</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -733,8 +733,6 @@
<string name="tab_collection_dialog_message">Scanseƚare %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Scanseƚa</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Anuƚa</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Pasa a schermo intiero</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1100,8 +1100,6 @@
<string name="delete_tab_and_collection_dialog_title">Xóa %1$s?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">Xóa</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">Hủy bỏ</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">Đã vào chế độ toàn màn hình</string>
<!-- Message for copying the URL via long press on the toolbar -->

View File

@ -1156,8 +1156,6 @@
<string name="delete_tab_and_collection_dialog_title">要删除“%1$s”吗</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">删除</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">取消</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">进入全屏模式</string>

View File

@ -1132,8 +1132,6 @@
<string name="delete_tab_and_collection_dialog_title">要刪除 %1$s 嗎?</string>
<!-- Tab collection deletion prompt dialog option to delete the collection -->
<string name="tab_collection_dialog_positive">刪除</string>
<!-- Tab collection deletion prompt dialog option to cancel deleting the collection -->
<string name="tab_collection_dialog_negative">取消</string>
<!-- Text displayed in a notification when the user enters full screen mode -->
<string name="full_screen_notification">進入全螢幕模式</string>

Some files were not shown because too many files have changed in this diff Show More