Rename "Employees" in profile menu

Hi,

I’ve modified the “Employee” labels to “Associates” just about everywhere, but it still shows up as “Employees” in the profile menu dropdown.

Any suggestions on how to fix this would be appreciated!

Thanks!

Hey
You can change the label by creating a new file in the folder
Suitecrm7.x: custom/Extension/application/Ext/Language/
SuiteCRM 8.x : public/legacy/custom/Extension/application/Ext/Language

name the php file like en_us.employees.php
The contents of the file

<?php
$app_strings['LBL_EMPLOYEES'] = 'Associates';

Then repair and rebuild then refresh the page and the label should be updated

1 Like

That worked!
Thank you!