Currently on V13 custom translation on Dashboards not fully… i have tried on V14 and for ex. only word translated on Accounts Dashboard is “Accounts”, it translates to for PT “Contas” Dashboard.
By applying the below to dashboard_view.js after
title = __(‘{0} Dashboard’, [title]);
title = __(title);
Also on line
chart_name: chart.chart,
label: chart.chart,
changed label to
label: __(chart.chart), //HELKYDS 21-01-2024
This way i don’t have to do customization of the files…
Thanks in advance