@@ -, +, @@ --- koha-tmpl/intranet-tmpl/prog/js/z3950_search.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/js/z3950_search.js +++ a/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(); --