Hi Team,
The current file EspoCRM-3.1.0\client\modules\crm\src\views\account\fields\ shipping-address.js
Contain the follow line
The 'Accounts' word it's causing this label don't be translated to another languages.
You need to change the line like this:
And with that the label its translated sucessfully.
The current file EspoCRM-3.1.0\client\modules\crm\src\views\account\fields\ shipping-address.js
Contain the follow line
PHP Code:
00032: var label = this.translate('Copy Billing', 'labels', 'Accounts');
You need to change the line like this:
PHP Code:
00032: var label = this.translate('Copy Billing', 'labels', 'Account');
Comment