From 8258acced9852f8bc7d247c367b90f20e2ce556a Mon Sep 17 00:00:00 2001 From: Raffael Meyer <14891507+barredterra@users.noreply.github.com> Date: Sat, 5 Apr 2025 15:56:33 +0200 Subject: [PATCH] fix: make message translatable (#46863) --- erpnext/public/js/utils/unreconcile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/public/js/utils/unreconcile.js b/erpnext/public/js/utils/unreconcile.js index aecc7693457..072b541753d 100644 --- a/erpnext/public/js/utils/unreconcile.js +++ b/erpnext/public/js/utils/unreconcile.js @@ -144,7 +144,7 @@ erpnext.accounts.unreconcile_payment = { ); d.hide(); } else { - frappe.msgprint("No Selection"); + frappe.msgprint(__("No Selection")); } }, }); -- GitLab