Update:Collections i18n strings

This commit is contained in:
advplyr 2022-11-27 14:19:22 -06:00
parent 2032dd88ba
commit 084bea6b15

View File

@ -59,8 +59,7 @@ export default {
}, },
data() { data() {
return { return {
processingRemove: false, processingRemove: false
collectionCopy: {}
} }
}, },
computed: { computed: {
@ -105,19 +104,18 @@ export default {
this.$store.commit('globals/setEditCollection', this.collection) this.$store.commit('globals/setEditCollection', this.collection)
}, },
removeClick() { removeClick() {
if (confirm(`Are you sure you want to remove collection "${this.collectionName}"?`)) { if (confirm(this.$getString('MessageConfirmRemoveCollection', [this.collectionName]))) {
this.processingRemove = true this.processingRemove = true
var collectionName = this.collectionName
this.$axios this.$axios
.$delete(`/api/collections/${this.collection.id}`) .$delete(`/api/collections/${this.collection.id}`)
.then(() => { .then(() => {
this.processingRemove = false this.processingRemove = false
this.$toast.success(`Collection "${collectionName}" Removed`) this.$toast.success(this.$strings.ToastCollectionRemoveSuccess)
}) })
.catch((error) => { .catch((error) => {
console.error('Failed to remove collection', error) console.error('Failed to remove collection', error)
this.processingRemove = false this.processingRemove = false
this.$toast.error(`Failed to remove collection`) this.$toast.error(this.$strings.ToastCollectionRemoveFailed)
}) })
} }
}, },