View | Details | Raw Unified | Return to bug 37605
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsList.vue (-5 / +4 lines)
Lines 190-199 export default { Link Here
190
        doDelete: function (agreement, dt, event) {
190
        doDelete: function (agreement, dt, event) {
191
            this.setConfirmationDialog(
191
            this.setConfirmationDialog(
192
                {
192
                {
193
                    title: this.$__(
193
                    title: this.$__("Delete agreement"),
194
                        "Are you sure you want to remove this agreement?"
194
                    message: this.$__(
195
                    ),
195
                        "Are you sure you want to delete %s?"
196
                    message: agreement.name,
196
                    ).format(agreement.name),
197
                    accept_label: this.$__("Yes, delete"),
197
                    accept_label: this.$__("Yes, delete"),
198
                    cancel_label: this.$__("No, do not delete"),
198
                    cancel_label: this.$__("No, do not delete"),
199
                },
199
                },
200
- 

Return to bug 37605