Change "Odoo" on all Dialog Boxes
vITraining Admin
So you want to change "Odoo" text on the dialog boxes?
Here are the steps:
Make an addon to inherit these:
addons/web/static/src/js/framework/dialog.js:37
title: _t('Odoo'), subtitle: '',
addons/web/static/src/js/framework/crash_manager.js
Line 108:
title: "Odoo " + (_.str.capitalize(error.type) || _t("Warning")),
Line 118:
title: "Odoo " + _.str.capitalize(error.type),
Line 165:
title: "Odoo " + (_.str.capitalize(error.type) || "Warning"),
Install and Upgrade your custom addon.
Done!