Follow below steps to translate the domain additional fields
- Access your WHMCS files vis FTP/cPanel/Plesk/etc
- Go to your WHMCS installation folder and then go to desired path /lang/
- Create an
overridesfolder inside of thelangdirectory (if overrides folder does not exist). - Create or copy the language file that you want to override. For example, to create an override for the English language file, you would create the
/lang/overrides/english.phpfile and copy and paste the code below.
<?php
$_LANG['rotldregistranttype'] = "Registrant Type";
$_LANG['rotldcnpfiscalcode'] = "CNPFiscalCode Type";
$_LANG['rotldregistrationnumber'] = "Registration Number";
Note. if that desired language files is already exist then edit that file and just copy and paste the language variables as given above without php tag start.