From ff285307c6e62776275ad47fd56c35d34a5ae96d Mon Sep 17 00:00:00 2001 From: Khushi Rawat <142375893+khushi8112@users.noreply.github.com> Date: Tue, 3 Jun 2025 12:33:46 +0530 Subject: [PATCH] chore: wrapped text in translate function --- .../report/customer_ledger_summary/customer_ledger_summary.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py b/erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py index 0121d294955..0c76efbb962 100644 --- a/erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py +++ b/erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py @@ -244,7 +244,9 @@ class PartyLedgerSummaryReport: ] if self.filters.show_dr_cr: - columns.append({"label": "Dr or Cr", "fieldname": "dr_or_cr", "fieldtype": "Data", "width": 100}) + columns.append( + {"label": _("Dr or Cr"), "fieldname": "dr_or_cr", "fieldtype": "Data", "width": 100} + ) return columns def get_data(self):