Merge pull request #36039 from KerollesFathy/translate-table-headers-in-multi-select-dialog

This commit is contained in:
Soham Kulkarni 2026-01-18 14:27:44 +05:30 committed by GitHub
commit bdf24a239e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -191,7 +191,7 @@ frappe.ui.form.MultiSelectDialog = class MultiSelectDialog {
get_child_datatable_columns() {
const parent = this.doctype;
return [parent, ...this.child_columns].map((d) => ({
name: frappe.unscrub(d),
name: __(frappe.unscrub(d)),
editable: false,
}));
}