From 3839a5bb15e669ede3b86fdb23a3e659a055bc46 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 28 Jan 2021 16:17:38 +0100 Subject: [PATCH] Bug 27402: Reverse search filter texts --- koha-tmpl/intranet-tmpl/prog/js/datatables.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/datatables.js b/koha-tmpl/intranet-tmpl/prog/js/datatables.js index 24b1c2e534..9d03a108a9 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/datatables.js +++ b/koha-tmpl/intranet-tmpl/prog/js/datatables.js @@ -772,7 +772,7 @@ jQuery.fn.dataTable.ext.errMode = function(settings, note, message) { if ( existing_search ) { $(this).html( ''.format(existing_search) ); } else { - var search_title = _("Search %s").format(title); + var search_title = _("%s search").format(title); $(this).html( ''.format(search_title) ); } -- 2.20.1