From e8841f3386fbe7283850dcad31e80f981a1ae209 Mon Sep 17 00:00:00 2001 From: Liz Rea Date: Thu, 9 May 2019 02:02:55 +0000 Subject: [PATCH] Bug 8558: (QA follow-up) a little more text clean up You can take or leave it, honestly, I just thought we could be a little more explicit about what we were overwriting. Signed-off-by: Katrin Fischer --- koha-tmpl/intranet-tmpl/prog/js/biblio_framework.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/biblio_framework.js b/koha-tmpl/intranet-tmpl/prog/js/biblio_framework.js index 6c7427fdf9..d2e59540b1 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/biblio_framework.js +++ b/koha-tmpl/intranet-tmpl/prog/js/biblio_framework.js @@ -53,7 +53,7 @@ var obj = $('#' + id + ' input:file'); if (/(?:\.csv|\.ods|\.xml)$/.test(obj.val())) { var frameworkcode = $('#' + id + ' input:hidden[name=frameworkcode]').val(); - var MSG_OVERWRITE_WARNING = _("Are you sure you want to import the " + frameworkcode + " framework structure? This will overwrite the current configuration. For safety reasons, it is recommended to use the export option to make a backup first."); + var MSG_OVERWRITE_WARNING = _("Are you sure you want to replace the fields and subfields for the " + frameworkcode + " framework structure? The existing structure will be overwritten! For safety reasons, it is recommended to use the export option to make a backup first."); if (confirm( MSG_OVERWRITE_WARNING )) { $('#importing_' + frameworkcode).find("span").html(MSG_IMPORTING_TO_FRAMEWORK.format("" + frameworkcode + "", "" + obj.val().replace(new RegExp("^.+[/\\\\]"),"") + "")); if (navigator.userAgent.toLowerCase().indexOf('msie') != -1) { -- 2.11.0