From fcade5d8cd87fd51d002aee190af1271b6c6c672 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Sat, 5 Apr 2025 17:37:08 +0200 Subject: [PATCH] fix: Translate UnReconcile dialog title (backport #46818) (#46861) fix: Translate UnReconcile dialog title (cherry picked from commit f2cfb03c2c53453ea9fe85d0c1389f09eb954aa3) Co-authored-by: Corentin Forler --- erpnext/public/js/utils/unreconcile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/public/js/utils/unreconcile.js b/erpnext/public/js/utils/unreconcile.js index 7dba4705e40..d085db05fa5 100644 --- a/erpnext/public/js/utils/unreconcile.js +++ b/erpnext/public/js/utils/unreconcile.js @@ -121,10 +121,10 @@ erpnext.accounts.unreconcile_payment = { }; let d = new frappe.ui.Dialog({ - title: "UnReconcile Allocations", + title: __("UnReconcile Allocations"), fields: unreconcile_dialog_fields, size: "large", - primary_action_label: "UnReconcile", + primary_action_label: __("UnReconcile"), primary_action(values) { let selected_allocations = values.allocations.filter((x) => x.__checked); if (selected_allocations.length > 0) {