mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-10-27 11:18:14 +01:00 
			
		
		
		
	Remove collection add/create modal toasts
This commit is contained in:
		
							parent
							
								
									476933a144
								
							
						
					
					
						commit
						88a0e75576
					
				@ -138,7 +138,6 @@ export default {
 | 
				
			|||||||
          .$post(`/api/collections/${collection.id}/batch/remove`, { books: this.selectedBookIds })
 | 
					          .$post(`/api/collections/${collection.id}/batch/remove`, { books: this.selectedBookIds })
 | 
				
			||||||
          .then((updatedCollection) => {
 | 
					          .then((updatedCollection) => {
 | 
				
			||||||
            console.log(`Books removed from collection`, updatedCollection)
 | 
					            console.log(`Books removed from collection`, updatedCollection)
 | 
				
			||||||
            this.$toast.success(this.$strings.ToastCollectionItemsRemoveSuccess)
 | 
					 | 
				
			||||||
            this.processing = false
 | 
					            this.processing = false
 | 
				
			||||||
          })
 | 
					          })
 | 
				
			||||||
          .catch((error) => {
 | 
					          .catch((error) => {
 | 
				
			||||||
@ -152,7 +151,6 @@ export default {
 | 
				
			|||||||
          .$delete(`/api/collections/${collection.id}/book/${this.selectedLibraryItemId}`)
 | 
					          .$delete(`/api/collections/${collection.id}/book/${this.selectedLibraryItemId}`)
 | 
				
			||||||
          .then((updatedCollection) => {
 | 
					          .then((updatedCollection) => {
 | 
				
			||||||
            console.log(`Book removed from collection`, updatedCollection)
 | 
					            console.log(`Book removed from collection`, updatedCollection)
 | 
				
			||||||
            this.$toast.success(this.$strings.ToastCollectionItemsRemoveSuccess)
 | 
					 | 
				
			||||||
            this.processing = false
 | 
					            this.processing = false
 | 
				
			||||||
          })
 | 
					          })
 | 
				
			||||||
          .catch((error) => {
 | 
					          .catch((error) => {
 | 
				
			||||||
@ -167,12 +165,11 @@ export default {
 | 
				
			|||||||
      this.processing = true
 | 
					      this.processing = true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      if (this.showBatchCollectionModal) {
 | 
					      if (this.showBatchCollectionModal) {
 | 
				
			||||||
        // BATCH Remove books
 | 
					        // BATCH Add books
 | 
				
			||||||
        this.$axios
 | 
					        this.$axios
 | 
				
			||||||
          .$post(`/api/collections/${collection.id}/batch/add`, { books: this.selectedBookIds })
 | 
					          .$post(`/api/collections/${collection.id}/batch/add`, { books: this.selectedBookIds })
 | 
				
			||||||
          .then((updatedCollection) => {
 | 
					          .then((updatedCollection) => {
 | 
				
			||||||
            console.log(`Books added to collection`, updatedCollection)
 | 
					            console.log(`Books added to collection`, updatedCollection)
 | 
				
			||||||
            this.$toast.success(this.$strings.ToastCollectionItemsAddSuccess)
 | 
					 | 
				
			||||||
            this.processing = false
 | 
					            this.processing = false
 | 
				
			||||||
          })
 | 
					          })
 | 
				
			||||||
          .catch((error) => {
 | 
					          .catch((error) => {
 | 
				
			||||||
@ -187,7 +184,6 @@ export default {
 | 
				
			|||||||
          .$post(`/api/collections/${collection.id}/book`, { id: this.selectedLibraryItemId })
 | 
					          .$post(`/api/collections/${collection.id}/book`, { id: this.selectedLibraryItemId })
 | 
				
			||||||
          .then((updatedCollection) => {
 | 
					          .then((updatedCollection) => {
 | 
				
			||||||
            console.log(`Book added to collection`, updatedCollection)
 | 
					            console.log(`Book added to collection`, updatedCollection)
 | 
				
			||||||
            this.$toast.success(this.$strings.ToastCollectionItemsAddSuccess)
 | 
					 | 
				
			||||||
            this.processing = false
 | 
					            this.processing = false
 | 
				
			||||||
          })
 | 
					          })
 | 
				
			||||||
          .catch((error) => {
 | 
					          .catch((error) => {
 | 
				
			||||||
@ -214,7 +210,6 @@ export default {
 | 
				
			|||||||
        .$post('/api/collections', newCollection)
 | 
					        .$post('/api/collections', newCollection)
 | 
				
			||||||
        .then((data) => {
 | 
					        .then((data) => {
 | 
				
			||||||
          console.log('New Collection Created', data)
 | 
					          console.log('New Collection Created', data)
 | 
				
			||||||
          this.$toast.success(`Collection "${data.name}" created`)
 | 
					 | 
				
			||||||
          this.processing = false
 | 
					          this.processing = false
 | 
				
			||||||
          this.newCollectionName = ''
 | 
					          this.newCollectionName = ''
 | 
				
			||||||
        })
 | 
					        })
 | 
				
			||||||
 | 
				
			|||||||
@ -729,7 +729,6 @@
 | 
				
			|||||||
  "ToastBookmarkUpdateSuccess": "Отметката е обновена",
 | 
					  "ToastBookmarkUpdateSuccess": "Отметката е обновена",
 | 
				
			||||||
  "ToastChaptersHaveErrors": "Главите имат грешки",
 | 
					  "ToastChaptersHaveErrors": "Главите имат грешки",
 | 
				
			||||||
  "ToastChaptersMustHaveTitles": "Главите трябва да имат заглавия",
 | 
					  "ToastChaptersMustHaveTitles": "Главите трябва да имат заглавия",
 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "Елемент(и) премахнати от колекция",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "Колекцията е премахната",
 | 
					  "ToastCollectionRemoveSuccess": "Колекцията е премахната",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "Колекцията е обновена",
 | 
					  "ToastCollectionUpdateSuccess": "Колекцията е обновена",
 | 
				
			||||||
  "ToastItemCoverUpdateSuccess": "Корицата на елемента е обновена",
 | 
					  "ToastItemCoverUpdateSuccess": "Корицата на елемента е обновена",
 | 
				
			||||||
 | 
				
			|||||||
@ -951,8 +951,6 @@
 | 
				
			|||||||
  "ToastChaptersRemoved": "অধ্যায়গুলো মুছে ফেলা হয়েছে",
 | 
					  "ToastChaptersRemoved": "অধ্যায়গুলো মুছে ফেলা হয়েছে",
 | 
				
			||||||
  "ToastChaptersUpdated": "অধ্যায় আপডেট করা হয়েছে",
 | 
					  "ToastChaptersUpdated": "অধ্যায় আপডেট করা হয়েছে",
 | 
				
			||||||
  "ToastCollectionItemsAddFailed": "আইটেম(গুলি) সংগ্রহে যোগ করা ব্যর্থ হয়েছে",
 | 
					  "ToastCollectionItemsAddFailed": "আইটেম(গুলি) সংগ্রহে যোগ করা ব্যর্থ হয়েছে",
 | 
				
			||||||
  "ToastCollectionItemsAddSuccess": "আইটেম(গুলি) সংগ্রহে যোগ করা সফল হয়েছে",
 | 
					 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "আইটেম(গুলি) সংগ্রহ থেকে সরানো হয়েছে",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "সংগ্রহ সরানো হয়েছে",
 | 
					  "ToastCollectionRemoveSuccess": "সংগ্রহ সরানো হয়েছে",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "সংগ্রহ আপডেট করা হয়েছে",
 | 
					  "ToastCollectionUpdateSuccess": "সংগ্রহ আপডেট করা হয়েছে",
 | 
				
			||||||
  "ToastCoverUpdateFailed": "কভার আপডেট ব্যর্থ হয়েছে",
 | 
					  "ToastCoverUpdateFailed": "কভার আপডেট ব্যর্থ হয়েছে",
 | 
				
			||||||
 | 
				
			|||||||
@ -904,8 +904,6 @@
 | 
				
			|||||||
  "ToastChaptersRemoved": "Capítols eliminats",
 | 
					  "ToastChaptersRemoved": "Capítols eliminats",
 | 
				
			||||||
  "ToastChaptersUpdated": "Capítols actualitzats",
 | 
					  "ToastChaptersUpdated": "Capítols actualitzats",
 | 
				
			||||||
  "ToastCollectionItemsAddFailed": "Error en afegir elements a la col·lecció",
 | 
					  "ToastCollectionItemsAddFailed": "Error en afegir elements a la col·lecció",
 | 
				
			||||||
  "ToastCollectionItemsAddSuccess": "Elements afegits a la col·lecció",
 | 
					 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "Elements eliminats de la col·lecció",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "Col·lecció eliminada",
 | 
					  "ToastCollectionRemoveSuccess": "Col·lecció eliminada",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "Col·lecció actualitzada",
 | 
					  "ToastCollectionUpdateSuccess": "Col·lecció actualitzada",
 | 
				
			||||||
  "ToastCoverUpdateFailed": "Error en actualitzar la portada",
 | 
					  "ToastCoverUpdateFailed": "Error en actualitzar la portada",
 | 
				
			||||||
 | 
				
			|||||||
@ -943,7 +943,6 @@
 | 
				
			|||||||
  "ToastChaptersHaveErrors": "Kapitoly obsahují chyby",
 | 
					  "ToastChaptersHaveErrors": "Kapitoly obsahují chyby",
 | 
				
			||||||
  "ToastChaptersMustHaveTitles": "Kapitoly musí mít názvy",
 | 
					  "ToastChaptersMustHaveTitles": "Kapitoly musí mít názvy",
 | 
				
			||||||
  "ToastChaptersRemoved": "Kapitoly odstraněny",
 | 
					  "ToastChaptersRemoved": "Kapitoly odstraněny",
 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "Položky odstraněny z kolekce",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "Kolekce odstraněna",
 | 
					  "ToastCollectionRemoveSuccess": "Kolekce odstraněna",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "Kolekce aktualizována",
 | 
					  "ToastCollectionUpdateSuccess": "Kolekce aktualizována",
 | 
				
			||||||
  "ToastCoverUpdateFailed": "Aktualizace obálky selhala",
 | 
					  "ToastCoverUpdateFailed": "Aktualizace obálky selhala",
 | 
				
			||||||
 | 
				
			|||||||
@ -640,7 +640,6 @@
 | 
				
			|||||||
  "ToastBookmarkUpdateSuccess": "Bogmærke opdateret",
 | 
					  "ToastBookmarkUpdateSuccess": "Bogmærke opdateret",
 | 
				
			||||||
  "ToastChaptersHaveErrors": "Kapitler har fejl",
 | 
					  "ToastChaptersHaveErrors": "Kapitler har fejl",
 | 
				
			||||||
  "ToastChaptersMustHaveTitles": "Kapitler skal have titler",
 | 
					  "ToastChaptersMustHaveTitles": "Kapitler skal have titler",
 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "Element(er) fjernet fra samlingen",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "Samling fjernet",
 | 
					  "ToastCollectionRemoveSuccess": "Samling fjernet",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "Samling opdateret",
 | 
					  "ToastCollectionUpdateSuccess": "Samling opdateret",
 | 
				
			||||||
  "ToastItemCoverUpdateSuccess": "Varens omslag opdateret",
 | 
					  "ToastItemCoverUpdateSuccess": "Varens omslag opdateret",
 | 
				
			||||||
 | 
				
			|||||||
@ -959,8 +959,6 @@
 | 
				
			|||||||
  "ToastChaptersRemoved": "Kapitel entfernt",
 | 
					  "ToastChaptersRemoved": "Kapitel entfernt",
 | 
				
			||||||
  "ToastChaptersUpdated": "Kapitel aktualisiert",
 | 
					  "ToastChaptersUpdated": "Kapitel aktualisiert",
 | 
				
			||||||
  "ToastCollectionItemsAddFailed": "Das Hinzufügen von Element(en) zur Sammlung ist fehlgeschlagen",
 | 
					  "ToastCollectionItemsAddFailed": "Das Hinzufügen von Element(en) zur Sammlung ist fehlgeschlagen",
 | 
				
			||||||
  "ToastCollectionItemsAddSuccess": "Element(e) erfolgreich zur Sammlung hinzugefügt",
 | 
					 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "Medien aus der Sammlung entfernt",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "Sammlung entfernt",
 | 
					  "ToastCollectionRemoveSuccess": "Sammlung entfernt",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "Sammlung aktualisiert",
 | 
					  "ToastCollectionUpdateSuccess": "Sammlung aktualisiert",
 | 
				
			||||||
  "ToastCoverUpdateFailed": "Cover-Update fehlgeschlagen",
 | 
					  "ToastCoverUpdateFailed": "Cover-Update fehlgeschlagen",
 | 
				
			||||||
 | 
				
			|||||||
@ -961,8 +961,6 @@
 | 
				
			|||||||
  "ToastChaptersRemoved": "Chapters removed",
 | 
					  "ToastChaptersRemoved": "Chapters removed",
 | 
				
			||||||
  "ToastChaptersUpdated": "Chapters updated",
 | 
					  "ToastChaptersUpdated": "Chapters updated",
 | 
				
			||||||
  "ToastCollectionItemsAddFailed": "Item(s) added to collection failed",
 | 
					  "ToastCollectionItemsAddFailed": "Item(s) added to collection failed",
 | 
				
			||||||
  "ToastCollectionItemsAddSuccess": "Item(s) added to collection success",
 | 
					 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "Item(s) removed from collection",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "Collection removed",
 | 
					  "ToastCollectionRemoveSuccess": "Collection removed",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "Collection updated",
 | 
					  "ToastCollectionUpdateSuccess": "Collection updated",
 | 
				
			||||||
  "ToastCoverUpdateFailed": "Cover update failed",
 | 
					  "ToastCoverUpdateFailed": "Cover update failed",
 | 
				
			||||||
 | 
				
			|||||||
@ -959,8 +959,6 @@
 | 
				
			|||||||
  "ToastChaptersRemoved": "Capítulos eliminados",
 | 
					  "ToastChaptersRemoved": "Capítulos eliminados",
 | 
				
			||||||
  "ToastChaptersUpdated": "Capítulos actualizados",
 | 
					  "ToastChaptersUpdated": "Capítulos actualizados",
 | 
				
			||||||
  "ToastCollectionItemsAddFailed": "Artículo(s) añadido(s) a la colección fallido(s)",
 | 
					  "ToastCollectionItemsAddFailed": "Artículo(s) añadido(s) a la colección fallido(s)",
 | 
				
			||||||
  "ToastCollectionItemsAddSuccess": "Artículo(s) añadido(s) a la colección correctamente",
 | 
					 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "Elementos(s) removidos de la colección",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "Colección removida",
 | 
					  "ToastCollectionRemoveSuccess": "Colección removida",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "Colección actualizada",
 | 
					  "ToastCollectionUpdateSuccess": "Colección actualizada",
 | 
				
			||||||
  "ToastCoverUpdateFailed": "Error al actualizar la cubierta",
 | 
					  "ToastCoverUpdateFailed": "Error al actualizar la cubierta",
 | 
				
			||||||
 | 
				
			|||||||
@ -713,7 +713,6 @@
 | 
				
			|||||||
  "ToastBookmarkUpdateSuccess": "Järjehoidja värskendatud",
 | 
					  "ToastBookmarkUpdateSuccess": "Järjehoidja värskendatud",
 | 
				
			||||||
  "ToastChaptersHaveErrors": "Peatükkidel on vigu",
 | 
					  "ToastChaptersHaveErrors": "Peatükkidel on vigu",
 | 
				
			||||||
  "ToastChaptersMustHaveTitles": "Peatükkidel peab olema pealkiri",
 | 
					  "ToastChaptersMustHaveTitles": "Peatükkidel peab olema pealkiri",
 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "Üksus(ed) eemaldatud kogumist",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "Kogum eemaldatud",
 | 
					  "ToastCollectionRemoveSuccess": "Kogum eemaldatud",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "Kogum värskendatud",
 | 
					  "ToastCollectionUpdateSuccess": "Kogum värskendatud",
 | 
				
			||||||
  "ToastItemCoverUpdateSuccess": "Üksuse kaas värskendatud",
 | 
					  "ToastItemCoverUpdateSuccess": "Üksuse kaas värskendatud",
 | 
				
			||||||
 | 
				
			|||||||
@ -953,8 +953,6 @@
 | 
				
			|||||||
  "ToastChaptersRemoved": "Chapitres supprimés",
 | 
					  "ToastChaptersRemoved": "Chapitres supprimés",
 | 
				
			||||||
  "ToastChaptersUpdated": "Chapitres mis à jour",
 | 
					  "ToastChaptersUpdated": "Chapitres mis à jour",
 | 
				
			||||||
  "ToastCollectionItemsAddFailed": "Échec de l’ajout de(s) élément(s) à la collection",
 | 
					  "ToastCollectionItemsAddFailed": "Échec de l’ajout de(s) élément(s) à la collection",
 | 
				
			||||||
  "ToastCollectionItemsAddSuccess": "Ajout de(s) élément(s) à la collection réussi",
 | 
					 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "Élément(s) supprimé(s) de la collection",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "Collection supprimée",
 | 
					  "ToastCollectionRemoveSuccess": "Collection supprimée",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "Collection mise à jour",
 | 
					  "ToastCollectionUpdateSuccess": "Collection mise à jour",
 | 
				
			||||||
  "ToastCoverUpdateFailed": "Échec de la mise à jour de la couverture",
 | 
					  "ToastCoverUpdateFailed": "Échec de la mise à jour de la couverture",
 | 
				
			||||||
 | 
				
			|||||||
@ -744,7 +744,6 @@
 | 
				
			|||||||
  "ToastBookmarkUpdateSuccess": "הסימניה עודכנה בהצלחה",
 | 
					  "ToastBookmarkUpdateSuccess": "הסימניה עודכנה בהצלחה",
 | 
				
			||||||
  "ToastChaptersHaveErrors": "פרקים מכילים שגיאות",
 | 
					  "ToastChaptersHaveErrors": "פרקים מכילים שגיאות",
 | 
				
			||||||
  "ToastChaptersMustHaveTitles": "פרקים חייבים לכלול כותרות",
 | 
					  "ToastChaptersMustHaveTitles": "פרקים חייבים לכלול כותרות",
 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "הפריט(ים) הוסרו מהאוסף בהצלחה",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "האוסף הוסר בהצלחה",
 | 
					  "ToastCollectionRemoveSuccess": "האוסף הוסר בהצלחה",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "האוסף עודכן בהצלחה",
 | 
					  "ToastCollectionUpdateSuccess": "האוסף עודכן בהצלחה",
 | 
				
			||||||
  "ToastItemCoverUpdateSuccess": "כריכת הפריט עודכנה בהצלחה",
 | 
					  "ToastItemCoverUpdateSuccess": "כריכת הפריט עודכנה בהצלחה",
 | 
				
			||||||
 | 
				
			|||||||
@ -959,8 +959,6 @@
 | 
				
			|||||||
  "ToastChaptersRemoved": "Poglavlja uklonjena",
 | 
					  "ToastChaptersRemoved": "Poglavlja uklonjena",
 | 
				
			||||||
  "ToastChaptersUpdated": "Poglavlja su ažurirana",
 | 
					  "ToastChaptersUpdated": "Poglavlja su ažurirana",
 | 
				
			||||||
  "ToastCollectionItemsAddFailed": "Neuspješno dodavanje stavki u zbirku",
 | 
					  "ToastCollectionItemsAddFailed": "Neuspješno dodavanje stavki u zbirku",
 | 
				
			||||||
  "ToastCollectionItemsAddSuccess": "Uspješno dodavanje stavki u zbirku",
 | 
					 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "Stavke izbrisane iz zbirke",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "Zbirka izbrisana",
 | 
					  "ToastCollectionRemoveSuccess": "Zbirka izbrisana",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "Zbirka ažurirana",
 | 
					  "ToastCollectionUpdateSuccess": "Zbirka ažurirana",
 | 
				
			||||||
  "ToastCoverUpdateFailed": "Ažuriranje naslovnice nije uspjelo",
 | 
					  "ToastCoverUpdateFailed": "Ažuriranje naslovnice nije uspjelo",
 | 
				
			||||||
 | 
				
			|||||||
@ -945,7 +945,6 @@
 | 
				
			|||||||
  "ToastChaptersMustHaveTitles": "A fejezeteknek címekkel kell rendelkezniük",
 | 
					  "ToastChaptersMustHaveTitles": "A fejezeteknek címekkel kell rendelkezniük",
 | 
				
			||||||
  "ToastChaptersRemoved": "Fejezetek eltávolítva",
 | 
					  "ToastChaptersRemoved": "Fejezetek eltávolítva",
 | 
				
			||||||
  "ToastChaptersUpdated": "Fejezetek frissítve",
 | 
					  "ToastChaptersUpdated": "Fejezetek frissítve",
 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "Elem(ek) eltávolítva a gyűjteményből",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "Gyűjtemény eltávolítva",
 | 
					  "ToastCollectionRemoveSuccess": "Gyűjtemény eltávolítva",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "Gyűjtemény frissítve",
 | 
					  "ToastCollectionUpdateSuccess": "Gyűjtemény frissítve",
 | 
				
			||||||
  "ToastCoverUpdateFailed": "A borító frissítése nem sikerült",
 | 
					  "ToastCoverUpdateFailed": "A borító frissítése nem sikerült",
 | 
				
			||||||
 | 
				
			|||||||
@ -950,8 +950,6 @@
 | 
				
			|||||||
  "ToastChaptersRemoved": "Capitoli rimossi",
 | 
					  "ToastChaptersRemoved": "Capitoli rimossi",
 | 
				
			||||||
  "ToastChaptersUpdated": "Capitoli aggiornati",
 | 
					  "ToastChaptersUpdated": "Capitoli aggiornati",
 | 
				
			||||||
  "ToastCollectionItemsAddFailed": "l'aggiunta dell'elemento(i) alla raccolta non è riuscito",
 | 
					  "ToastCollectionItemsAddFailed": "l'aggiunta dell'elemento(i) alla raccolta non è riuscito",
 | 
				
			||||||
  "ToastCollectionItemsAddSuccess": "L'aggiunta dell'elemento(i) alla raccolta è riuscito",
 | 
					 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "Oggetto(i) rimossi dalla Raccolta",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "Collezione rimossa",
 | 
					  "ToastCollectionRemoveSuccess": "Collezione rimossa",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "Raccolta aggiornata",
 | 
					  "ToastCollectionUpdateSuccess": "Raccolta aggiornata",
 | 
				
			||||||
  "ToastCoverUpdateFailed": "Aggiornamento cover fallito",
 | 
					  "ToastCoverUpdateFailed": "Aggiornamento cover fallito",
 | 
				
			||||||
 | 
				
			|||||||
@ -666,8 +666,6 @@
 | 
				
			|||||||
  "ToastChaptersMustHaveTitles": "Skyriai turi turėti pavadinimus",
 | 
					  "ToastChaptersMustHaveTitles": "Skyriai turi turėti pavadinimus",
 | 
				
			||||||
  "ToastChaptersRemoved": "Skyriai pašalinti",
 | 
					  "ToastChaptersRemoved": "Skyriai pašalinti",
 | 
				
			||||||
  "ToastCollectionItemsAddFailed": "Nepavyko pridėti į kolekciją",
 | 
					  "ToastCollectionItemsAddFailed": "Nepavyko pridėti į kolekciją",
 | 
				
			||||||
  "ToastCollectionItemsAddSuccess": "Pridėta į kolekciją",
 | 
					 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "Elementai pašalinti iš kolekcijos",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "Kolekcija pašalinta",
 | 
					  "ToastCollectionRemoveSuccess": "Kolekcija pašalinta",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "Kolekcija atnaujinta",
 | 
					  "ToastCollectionUpdateSuccess": "Kolekcija atnaujinta",
 | 
				
			||||||
  "ToastCoverUpdateFailed": "Viršelio atnaujinimas nepavyko",
 | 
					  "ToastCoverUpdateFailed": "Viršelio atnaujinimas nepavyko",
 | 
				
			||||||
 | 
				
			|||||||
@ -946,8 +946,6 @@
 | 
				
			|||||||
  "ToastChaptersRemoved": "Hoofdstukken verwijderd",
 | 
					  "ToastChaptersRemoved": "Hoofdstukken verwijderd",
 | 
				
			||||||
  "ToastChaptersUpdated": "Hoofdstukken bijgewerkt",
 | 
					  "ToastChaptersUpdated": "Hoofdstukken bijgewerkt",
 | 
				
			||||||
  "ToastCollectionItemsAddFailed": "Item(s) toegevoegd aan collectie mislukt",
 | 
					  "ToastCollectionItemsAddFailed": "Item(s) toegevoegd aan collectie mislukt",
 | 
				
			||||||
  "ToastCollectionItemsAddSuccess": "Item(s) toegevoegd aan collectie gelukt",
 | 
					 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "Onderdeel (of onderdelen) verwijderd uit collectie",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "Collectie verwijderd",
 | 
					  "ToastCollectionRemoveSuccess": "Collectie verwijderd",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "Collectie bijgewerkt",
 | 
					  "ToastCollectionUpdateSuccess": "Collectie bijgewerkt",
 | 
				
			||||||
  "ToastCoverUpdateFailed": "Cover update mislukt",
 | 
					  "ToastCoverUpdateFailed": "Cover update mislukt",
 | 
				
			||||||
 | 
				
			|||||||
@ -882,8 +882,6 @@
 | 
				
			|||||||
  "ToastChaptersRemoved": "Kapitler fjernet",
 | 
					  "ToastChaptersRemoved": "Kapitler fjernet",
 | 
				
			||||||
  "ToastChaptersUpdated": "Kapitler oppdatert",
 | 
					  "ToastChaptersUpdated": "Kapitler oppdatert",
 | 
				
			||||||
  "ToastCollectionItemsAddFailed": "Feil med å legge til element(er)",
 | 
					  "ToastCollectionItemsAddFailed": "Feil med å legge til element(er)",
 | 
				
			||||||
  "ToastCollectionItemsAddSuccess": "Element(er) lagt til samlingen",
 | 
					 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "Gjenstand(er) fjernet fra samling",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "Samling fjernet",
 | 
					  "ToastCollectionRemoveSuccess": "Samling fjernet",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "samlingupdated",
 | 
					  "ToastCollectionUpdateSuccess": "samlingupdated",
 | 
				
			||||||
  "ToastCoverUpdateFailed": "Oppdatering av bilde feilet",
 | 
					  "ToastCoverUpdateFailed": "Oppdatering av bilde feilet",
 | 
				
			||||||
 | 
				
			|||||||
@ -772,7 +772,6 @@
 | 
				
			|||||||
  "ToastBookmarkCreateSuccess": "Dodano zakładkę",
 | 
					  "ToastBookmarkCreateSuccess": "Dodano zakładkę",
 | 
				
			||||||
  "ToastBookmarkRemoveSuccess": "Zakładka została usunięta",
 | 
					  "ToastBookmarkRemoveSuccess": "Zakładka została usunięta",
 | 
				
			||||||
  "ToastBookmarkUpdateSuccess": "Zaktualizowano zakładkę",
 | 
					  "ToastBookmarkUpdateSuccess": "Zaktualizowano zakładkę",
 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "Przedmiot(y) zostały usunięte z kolekcji",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "Kolekcja usunięta",
 | 
					  "ToastCollectionRemoveSuccess": "Kolekcja usunięta",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "Zaktualizowano kolekcję",
 | 
					  "ToastCollectionUpdateSuccess": "Zaktualizowano kolekcję",
 | 
				
			||||||
  "ToastItemCoverUpdateSuccess": "Zaktualizowano okładkę",
 | 
					  "ToastItemCoverUpdateSuccess": "Zaktualizowano okładkę",
 | 
				
			||||||
 | 
				
			|||||||
@ -735,7 +735,6 @@
 | 
				
			|||||||
  "ToastCachePurgeSuccess": "Cache apagado com sucesso",
 | 
					  "ToastCachePurgeSuccess": "Cache apagado com sucesso",
 | 
				
			||||||
  "ToastChaptersHaveErrors": "Capítulos com erro",
 | 
					  "ToastChaptersHaveErrors": "Capítulos com erro",
 | 
				
			||||||
  "ToastChaptersMustHaveTitles": "Capítulos precisam ter títulos",
 | 
					  "ToastChaptersMustHaveTitles": "Capítulos precisam ter títulos",
 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "Item(ns) removidos da coleção",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "Coleção removida",
 | 
					  "ToastCollectionRemoveSuccess": "Coleção removida",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "Coleção atualizada",
 | 
					  "ToastCollectionUpdateSuccess": "Coleção atualizada",
 | 
				
			||||||
  "ToastDeleteFileFailed": "Falha ao apagar arquivo",
 | 
					  "ToastDeleteFileFailed": "Falha ao apagar arquivo",
 | 
				
			||||||
 | 
				
			|||||||
@ -959,8 +959,6 @@
 | 
				
			|||||||
  "ToastChaptersRemoved": "Удалены главы",
 | 
					  "ToastChaptersRemoved": "Удалены главы",
 | 
				
			||||||
  "ToastChaptersUpdated": "Обновленные главы",
 | 
					  "ToastChaptersUpdated": "Обновленные главы",
 | 
				
			||||||
  "ToastCollectionItemsAddFailed": "Не удалось добавить элемент(ы) в коллекцию",
 | 
					  "ToastCollectionItemsAddFailed": "Не удалось добавить элемент(ы) в коллекцию",
 | 
				
			||||||
  "ToastCollectionItemsAddSuccess": "Элемент(ы) добавлены в коллекцию",
 | 
					 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "Элемент(ы), удалены из коллекции",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "Коллекция удалена",
 | 
					  "ToastCollectionRemoveSuccess": "Коллекция удалена",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "Коллекция обновлена",
 | 
					  "ToastCollectionUpdateSuccess": "Коллекция обновлена",
 | 
				
			||||||
  "ToastCoverUpdateFailed": "Не удалось обновить обложку",
 | 
					  "ToastCoverUpdateFailed": "Не удалось обновить обложку",
 | 
				
			||||||
 | 
				
			|||||||
@ -959,8 +959,6 @@
 | 
				
			|||||||
  "ToastChaptersRemoved": "Poglavja so odstranjena",
 | 
					  "ToastChaptersRemoved": "Poglavja so odstranjena",
 | 
				
			||||||
  "ToastChaptersUpdated": "Poglavja so posodobljena",
 | 
					  "ToastChaptersUpdated": "Poglavja so posodobljena",
 | 
				
			||||||
  "ToastCollectionItemsAddFailed": "Dodajanje elementov v zbirko ni uspelo",
 | 
					  "ToastCollectionItemsAddFailed": "Dodajanje elementov v zbirko ni uspelo",
 | 
				
			||||||
  "ToastCollectionItemsAddSuccess": "Dodajanje elementov v zbirko je bilo uspešno",
 | 
					 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "Elementi so bili odstranjeni iz zbirke",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "Zbirka je bila odstranjena",
 | 
					  "ToastCollectionRemoveSuccess": "Zbirka je bila odstranjena",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "Zbirka je bila posodobljena",
 | 
					  "ToastCollectionUpdateSuccess": "Zbirka je bila posodobljena",
 | 
				
			||||||
  "ToastCoverUpdateFailed": "Posodobitev naslovnice ni uspela",
 | 
					  "ToastCoverUpdateFailed": "Posodobitev naslovnice ni uspela",
 | 
				
			||||||
 | 
				
			|||||||
@ -705,7 +705,6 @@
 | 
				
			|||||||
  "ToastBookmarkUpdateSuccess": "Bokmärket har uppdaterats",
 | 
					  "ToastBookmarkUpdateSuccess": "Bokmärket har uppdaterats",
 | 
				
			||||||
  "ToastChaptersHaveErrors": "Kapitlen har fel",
 | 
					  "ToastChaptersHaveErrors": "Kapitlen har fel",
 | 
				
			||||||
  "ToastChaptersMustHaveTitles": "Kapitel måste ha titlar",
 | 
					  "ToastChaptersMustHaveTitles": "Kapitel måste ha titlar",
 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "Objekt borttagna från samlingen",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "Samlingen har raderats",
 | 
					  "ToastCollectionRemoveSuccess": "Samlingen har raderats",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "Samlingen har uppdaterats",
 | 
					  "ToastCollectionUpdateSuccess": "Samlingen har uppdaterats",
 | 
				
			||||||
  "ToastItemCoverUpdateSuccess": "Objektets omslag uppdaterat",
 | 
					  "ToastItemCoverUpdateSuccess": "Objektets omslag uppdaterat",
 | 
				
			||||||
 | 
				
			|||||||
@ -959,8 +959,6 @@
 | 
				
			|||||||
  "ToastChaptersRemoved": "Розділи видалені",
 | 
					  "ToastChaptersRemoved": "Розділи видалені",
 | 
				
			||||||
  "ToastChaptersUpdated": "Розділи оновлені",
 | 
					  "ToastChaptersUpdated": "Розділи оновлені",
 | 
				
			||||||
  "ToastCollectionItemsAddFailed": "Не вдалося додати елемент(и) до колекції",
 | 
					  "ToastCollectionItemsAddFailed": "Не вдалося додати елемент(и) до колекції",
 | 
				
			||||||
  "ToastCollectionItemsAddSuccess": "Елемент(и) успішно додано до колекції",
 | 
					 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "Елемент(и) видалено з добірки",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "Добірку видалено",
 | 
					  "ToastCollectionRemoveSuccess": "Добірку видалено",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "Добірку оновлено",
 | 
					  "ToastCollectionUpdateSuccess": "Добірку оновлено",
 | 
				
			||||||
  "ToastCoverUpdateFailed": "Не вдалося оновити обкладинку",
 | 
					  "ToastCoverUpdateFailed": "Не вдалося оновити обкладинку",
 | 
				
			||||||
 | 
				
			|||||||
@ -683,7 +683,6 @@
 | 
				
			|||||||
  "ToastBookmarkUpdateSuccess": "Đánh dấu đã được cập nhật",
 | 
					  "ToastBookmarkUpdateSuccess": "Đánh dấu đã được cập nhật",
 | 
				
			||||||
  "ToastChaptersHaveErrors": "Các chương có lỗi",
 | 
					  "ToastChaptersHaveErrors": "Các chương có lỗi",
 | 
				
			||||||
  "ToastChaptersMustHaveTitles": "Các chương phải có tiêu đề",
 | 
					  "ToastChaptersMustHaveTitles": "Các chương phải có tiêu đề",
 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "Mục đã được xóa khỏi bộ sưu tập",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "Bộ sưu tập đã được xóa",
 | 
					  "ToastCollectionRemoveSuccess": "Bộ sưu tập đã được xóa",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "Bộ sưu tập đã được cập nhật",
 | 
					  "ToastCollectionUpdateSuccess": "Bộ sưu tập đã được cập nhật",
 | 
				
			||||||
  "ToastItemCoverUpdateSuccess": "Ảnh bìa mục đã được cập nhật",
 | 
					  "ToastItemCoverUpdateSuccess": "Ảnh bìa mục đã được cập nhật",
 | 
				
			||||||
 | 
				
			|||||||
@ -959,8 +959,6 @@
 | 
				
			|||||||
  "ToastChaptersRemoved": "已删除章节",
 | 
					  "ToastChaptersRemoved": "已删除章节",
 | 
				
			||||||
  "ToastChaptersUpdated": "章节已更新",
 | 
					  "ToastChaptersUpdated": "章节已更新",
 | 
				
			||||||
  "ToastCollectionItemsAddFailed": "项目添加到收藏夹失败",
 | 
					  "ToastCollectionItemsAddFailed": "项目添加到收藏夹失败",
 | 
				
			||||||
  "ToastCollectionItemsAddSuccess": "项目添加到收藏夹成功",
 | 
					 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "项目从收藏夹移除",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "收藏夹已删除",
 | 
					  "ToastCollectionRemoveSuccess": "收藏夹已删除",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "收藏夹已更新",
 | 
					  "ToastCollectionUpdateSuccess": "收藏夹已更新",
 | 
				
			||||||
  "ToastCoverUpdateFailed": "封面更新失败",
 | 
					  "ToastCoverUpdateFailed": "封面更新失败",
 | 
				
			||||||
 | 
				
			|||||||
@ -727,7 +727,6 @@
 | 
				
			|||||||
  "ToastBookmarkUpdateSuccess": "書籤已更新",
 | 
					  "ToastBookmarkUpdateSuccess": "書籤已更新",
 | 
				
			||||||
  "ToastChaptersHaveErrors": "章節有錯誤",
 | 
					  "ToastChaptersHaveErrors": "章節有錯誤",
 | 
				
			||||||
  "ToastChaptersMustHaveTitles": "章節必須有標題",
 | 
					  "ToastChaptersMustHaveTitles": "章節必須有標題",
 | 
				
			||||||
  "ToastCollectionItemsRemoveSuccess": "項目從收藏夾移除",
 | 
					 | 
				
			||||||
  "ToastCollectionRemoveSuccess": "收藏夾已刪除",
 | 
					  "ToastCollectionRemoveSuccess": "收藏夾已刪除",
 | 
				
			||||||
  "ToastCollectionUpdateSuccess": "收藏夾已更新",
 | 
					  "ToastCollectionUpdateSuccess": "收藏夾已更新",
 | 
				
			||||||
  "ToastItemCoverUpdateSuccess": "項目封面已更新",
 | 
					  "ToastItemCoverUpdateSuccess": "項目封面已更新",
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user