Skip to content

Commit

Permalink
Added translation to company.php if MAIN_SHOW_REGION_IN_STATE_SELECT …
Browse files Browse the repository at this point in the history
…is activated
  • Loading branch information
ruistrecht-alt committed Feb 7, 2018
1 parent ecea8d6 commit f52beef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion htdocs/admin/company.php
Expand Up @@ -729,7 +729,8 @@
print '</td></tr>';


print '<tr class="oddeven"><td>'.$langs->trans("State").'</td><td>';
if (! empty($conf->global->MAIN_INFO_SOCIETE_STATE)) print '<tr class="oddeven"><td>'.$langs->trans("Region-State").'</td><td>';
else print '<tr class="oddeven"><td>'.$langs->trans("State").'</td><td>';
if (! empty($conf->global->MAIN_INFO_SOCIETE_STATE)) print getState($conf->global->MAIN_INFO_SOCIETE_STATE,$conf->global->MAIN_SHOW_STATE_CODE,0,$conf->global->MAIN_SHOW_REGION_IN_STATE_SELECT);
else print '&nbsp;';
print '</td></tr>';
Expand Down

0 comments on commit f52beef

Please sign in to comment.