From 46aad37fc906435584b1bb0c506cbdd148de4b59 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Tue, 29 Sep 2020 11:29:29 +0000 Subject: [PATCH] Bug 26291: (follow-up) Correct stray MSG instances --- koha-tmpl/intranet-tmpl/prog/js/z3950_search.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/z3950_search.js b/koha-tmpl/intranet-tmpl/prog/js/z3950_search.js index 83170e9ed2..39a7af0c0d 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/z3950_search.js +++ b/koha-tmpl/intranet-tmpl/prog/js/z3950_search.js @@ -120,7 +120,7 @@ $( document ).ready( function() { }); $( "#marcPreview" ).on( "hidden", function() { $( "#marcPreviewLabel" ).html( "" ); - $( "#marcPreview .modal-body" ).html( "
" + MSG_LOADING + "
" ); + $( "#marcPreview .modal-body" ).html( "
" + __("Loading") + "
" ); }); $( "#resultst" ).on("click", ".previewData", function(e) { e.preventDefault(); @@ -132,7 +132,7 @@ $( document ).ready( function() { }); $( "#dataPreview" ).on( "hidden", function() { $( "#dataPreviewLabel" ).html( "" ); - $( "#dataPreview .modal-body" ).html( "
" + MSG_LOADING + "
" ); + $( "#dataPreview .modal-body" ).html( "
" + __("Loading") + "
" ); }); $( "#resultst" ).on("click", ".import_record", function(e) { e.preventDefault(); -- 2.11.0