Merge pull request #46818 from cogk/fix-translate-unreconcile-dialog

fix: Translate UnReconcile dialog title
This commit is contained in:
ruthra kumar
2025-04-03 06:51:59 +05:30
committed by GitHub

View File

@@ -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) {