Issue/1078 (#1079)
* Externalize property of deletion messages (Collection) #1078 * Externalize property of deletion messages (folder) #1078 * Externalize property of deletion messages (request) #1078 * Externalize property of deletion messages (environment) #1078 * Externalize property (fr-FR.json) of deletion messages (collection, folder, request, environment) #1078 * Externalize property (pt-PT.json) of deletion messages (collection, folder, request, environment) #1078 * Externalize property (pt-BR.json) of deletion messages (collection, folder, request, environment) #1078 * Updating the Spanish file (es-ES)
This commit is contained in:
@@ -127,7 +127,7 @@ export default {
|
||||
this.showChildren = !this.showChildren
|
||||
},
|
||||
removeCollection() {
|
||||
if (!confirm("Are you sure you want to remove this Collection?")) return
|
||||
if (!confirm( this.$t("are_you_sure_remove_collection") )) return
|
||||
this.$store.commit("postwoman/removeCollection", {
|
||||
collectionIndex: this.collectionIndex,
|
||||
})
|
||||
|
||||
@@ -103,7 +103,7 @@ export default {
|
||||
this.$store.commit("postwoman/selectRequest", { request })
|
||||
},
|
||||
removeFolder() {
|
||||
if (!confirm("Are you sure you want to remove this folder?")) return
|
||||
if (!confirm( this.$t("are_you_sure_remove_folder"))) return
|
||||
this.$store.commit("postwoman/removeFolder", {
|
||||
collectionIndex: this.collectionIndex,
|
||||
folderIndex: this.folderIndex,
|
||||
|
||||
@@ -68,7 +68,7 @@ export default {
|
||||
this.$store.commit("postwoman/selectRequest", { request: this.request })
|
||||
},
|
||||
removeRequest() {
|
||||
if (!confirm("Are you sure you want to remove this request?")) return
|
||||
if (!confirm( this.$t("are_you_sure_remove_request"))) return
|
||||
this.$store.commit("postwoman/removeRequest", {
|
||||
collectionIndex: this.collectionIndex,
|
||||
folderIndex: this.folderIndex,
|
||||
|
||||
Reference in New Issue
Block a user