mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-22 10:56:30 +00:00
fix: Translate UnReconcile dialog title
(cherry picked from commit f2cfb03c2c)
Co-authored-by: Corentin Forler <corentin@dokos.io>
This commit is contained in:
@@ -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) {
|
||||||
|
|||||||
Reference in New Issue
Block a user