From 8e4b88fff417f5ca949064263c912000fd8f6c8a Mon Sep 17 00:00:00 2001 From: Charles-Henri Decultot Date: Mon, 6 May 2024 13:48:49 +0200 Subject: [PATCH] fix: Translation for outstanding amount --- erpnext/accounts/report/payment_ledger/payment_ledger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/accounts/report/payment_ledger/payment_ledger.py b/erpnext/accounts/report/payment_ledger/payment_ledger.py index 8875d2743f..600491fd69 100644 --- a/erpnext/accounts/report/payment_ledger/payment_ledger.py +++ b/erpnext/accounts/report/payment_ledger/payment_ledger.py @@ -74,7 +74,7 @@ class PaymentLedger(object): total_in_account_currency += x.amount_in_account_currency entry = frappe._dict( - against_voucher_no="Outstanding:", + against_voucher_no=_("Outstanding:", context="Payment Ledger"), amount=total, currency=voucher_data[0].currency, ) -- GitLab