From 86ca032d9ed1e5a83151ca06241af4d4c49237f0 Mon Sep 17 00:00:00 2001 From: "dokos[bot]" <15133794-dokos-bot@users.noreply.gitlab.com> Date: Mon, 31 Mar 2025 15:20:05 +0000 Subject: [PATCH] Squashed commit of the following: commit 479bc292c8a58d93a41128a7fe70344e39cfc1a8 Author: Corentin Forler Date: Mon Mar 31 13:51:29 2025 +0200 fix: Translate UnReconcile dialog title --- 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 eeddd334d2..ce806c9561 100644 --- a/erpnext/public/js/utils/unreconcile.js +++ b/erpnext/public/js/utils/unreconcile.js @@ -113,10 +113,10 @@ erpnext.accounts.unreconcile_payment = { unreconcile_dialog_fields[0].get_data = function(){ return r.message}; 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); -- GitLab