fix: Translate UnReconcile dialog title

This commit is contained in:
Corentin Forler
2025-03-31 13:51:29 +02:00
parent c7db13c275
commit f2cfb03c2c

View File

@@ -121,10 +121,10 @@ erpnext.accounts.unreconcile_payment = {
}; };
let d = new frappe.ui.Dialog({ let d = new frappe.ui.Dialog({
title: "UnReconcile Allocations", title: __("UnReconcile Allocations"),
fields: unreconcile_dialog_fields, fields: unreconcile_dialog_fields,
size: "large", size: "large",
primary_action_label: "UnReconcile", primary_action_label: __("UnReconcile"),
primary_action(values) { primary_action(values) {
let selected_allocations = values.allocations.filter((x) => x.__checked); let selected_allocations = values.allocations.filter((x) => x.__checked);
if (selected_allocations.length > 0) { if (selected_allocations.length > 0) {