diff --git a/erpnext/accounts/doctype/bank_transaction/bank_transaction.py b/erpnext/accounts/doctype/bank_transaction/bank_transaction.py index 15d7786de7e..fef3b569ed2 100644 --- a/erpnext/accounts/doctype/bank_transaction/bank_transaction.py +++ b/erpnext/accounts/doctype/bank_transaction/bank_transaction.py @@ -61,7 +61,9 @@ class BankTransaction(Document): if self.currency != account_currency: frappe.throw( - _("Currency {0} cannot be different from Bank Account({1}) Currency: {2}").format( + _( + "Transaction currency: {0} cannot be different from Bank Account({1}) currency: {2}" + ).format( frappe.bold(self.currency), frappe.bold(self.bank_account), frappe.bold(account_currency) ) )