From e95ca2444cf0586569e3a6bb12a5968fc4449aba Mon Sep 17 00:00:00 2001 From: Raffael Meyer <14891507+barredterra@users.noreply.github.com> Date: Thu, 27 Aug 2026 18:14:49 +0200 Subject: [PATCH] fix: translate doctype in map msg (#58515) --- erpnext/public/js/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/public/js/utils.js b/erpnext/public/js/utils.js index 66a634336e8..852dac78ba3 100755 --- a/erpnext/public/js/utils.js +++ b/erpnext/public/js/utils.js @@ -1090,7 +1090,7 @@ erpnext.utils.map_current_doc = function (opts) { if (already_set) { frappe.msgprint( - __("You have already selected items from {0} {1}", [opts.source_doctype, src]) + __("You have already selected items from {0} {1}", [__(opts.source_doctype), src]) ); return; }