From 145f6d6aebb9567c94b05c9dde97a0b898432d11 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Mon, 31 Jan 2022 21:04:52 +0000 Subject: [PATCH] Bug 27779: (QA follow-up) Fix translation issue with 'against' Signed-off-by: Martin Renvoize Signed-off-by: Katrin Fischer --- koha-tmpl/intranet-tmpl/prog/js/cashup_modal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/cashup_modal.js b/koha-tmpl/intranet-tmpl/prog/js/cashup_modal.js index 5e1aed3706..1797f0a4c9 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/cashup_modal.js +++ b/koha-tmpl/intranet-tmpl/prog/js/cashup_modal.js @@ -17,7 +17,7 @@ $('#cashupSummaryModal').on('show.bs.modal', function(e) { tbody.empty(); for (out of data.summary.payout_grouped) { if ( out.credit_type_code == 'REFUND' ) { - tbody.append('' + out.credit_type.description + ' against ' + out.related_debit.debit_type.description + '- ' + out.total + ''); + tbody.append('' + out.credit_type.description + ' ' + __("against") + ' ' + out.related_debit.debit_type.description + '- ' + out.total + ''); } else { tbody.append('' + out.credit_type.description + '- ' + out.total + ''); } -- 2.30.2