# HG changeset patch # User Fadi Abbud # Date 1552387469 -3600 # Node ID dda4cec8e67b44e480d1df81f37564fd2ba5f059 # Parent ecec6d5aae002be92428a75c3a3bb92ee490d682 client:translations: correct some strings marking diff -r ecec6d5aae00 -r dda4cec8e67b client/src/components/ImportStretches.vue --- a/client/src/components/ImportStretches.vue Tue Mar 12 11:14:56 2019 +0100 +++ b/client/src/components/ImportStretches.vue Tue Mar 12 11:44:29 2019 +0100 @@ -384,7 +384,7 @@ callback: () => { displayInfo({ title: this.$gettext("Not implemented"), - message: this.$gettext("Deleting " + stretch.id) + message: this.$gettext("Deleting ") + stretch.id }); } }, diff -r ecec6d5aae00 -r dda4cec8e67b client/src/components/Popup.vue --- a/client/src/components/Popup.vue Tue Mar 12 11:14:56 2019 +0100 +++ b/client/src/components/Popup.vue Tue Mar 12 11:44:29 2019 +0100 @@ -22,7 +22,8 @@ class="fa-fw" v-if="popup.cancel.icon" /> - {{ popup.cancel.label || $gettext("Cancel") }} + {{ popup.cancel.label }} + Cancel diff -r ecec6d5aae00 -r dda4cec8e67b client/src/components/importschedule/Importschedule.vue --- a/client/src/components/importschedule/Importschedule.vue Tue Mar 12 11:14:56 2019 +0100 +++ b/client/src/components/importschedule/Importschedule.vue Tue Mar 12 11:44:29 2019 +0100 @@ -171,11 +171,11 @@ this.$store.commit("application/popup", { icon: "trash", title: this.$gettext("Delete Import"), - content: this.$gettext( - `Do you really want to delete the import with ID ${ - schedule.id - } of type ${schedule.kind.toUpperCase()}?` - ), + content: + this.$gettext("Do you really want to delete the import with ID") + + `${schedule.id}` + + this.$gettext("of type") + + `${schedule.kind.toUpperCase()}?`, confirm: { label: this.$gettext("Delete"), icon: "trash", diff -r ecec6d5aae00 -r dda4cec8e67b client/src/components/usermanagement/Usermanagement.vue --- a/client/src/components/usermanagement/Usermanagement.vue Tue Mar 12 11:14:56 2019 +0100 +++ b/client/src/components/usermanagement/Usermanagement.vue Tue Mar 12 11:44:29 2019 +0100 @@ -40,7 +40,7 @@ @@ -169,6 +169,12 @@ "currentUser" ]), ...mapState("application", ["showSidebar"]), + sendMailLabel() { + return this.$gettext("Send testmail"); + }, + deleteUserLabel() { + return this.$gettext("Delete user"); + }, sortedUsers() { const start = (this.currentPage - 1) * this.pageSize; return this.users