From 80fc2d3e69d4570759deae395ba07c449554ad8e Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Tue, 13 Aug 2024 10:26:18 +0100 Subject: [PATCH] Bug 37605: Apply to Records Sources Delete Confirm --- .../prog/js/vue/components/Admin/RecordSources/List.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Admin/RecordSources/List.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Admin/RecordSources/List.vue index a1595b9e64f..3b587a6a9c8 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Admin/RecordSources/List.vue +++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Admin/RecordSources/List.vue @@ -104,10 +104,10 @@ export default { doDelete: function (record_source, dt, event) { this.setConfirmationDialog( { - title: this.$__( - "Are you sure you want to delete this record source?" - ), - message: record_source.name, + title: this.$__("Delete record source"), + message: this.$__( + "Are you sure you want to delete %s?" + ).format(record_source.name), accept_label: this.$__("Yes, delete"), cancel_label: this.$__("No, do not delete"), }, -- 2.46.0