From e6ae58db966291bdf76230f975fee47f93d96021 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 Signed-off-by: Tomas Cohen Arazi --- 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 c2fcd833bb..3cc7914c5e 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/cashup_modal.js +++ b/koha-tmpl/intranet-tmpl/prog/js/cashup_modal.js @@ -20,7 +20,7 @@ $(document).ready(function() { 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.39.2