@@ -, +, @@ "Returned" rather than "Checked in" --- koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js +++ a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js @@ -66,7 +66,7 @@ $(document).ready(function() { if ( data.returned ) { content = CIRCULATION_RETURNED; $(id).parent().parent().addClass('ok'); - $('#date_due_' + data.itemnumber).html(_("Returned")); + $('#date_due_' + data.itemnumber).html(_("Checked in")); } else { content = CIRCULATION_NOT_RETURNED; $(id).parent().parent().addClass('warn'); --