diff --git a/htdocs/langs/en_US/companies.lang b/htdocs/langs/en_US/companies.lang index 15f94dc5b65..e6be0671cb0 100644 --- a/htdocs/langs/en_US/companies.lang +++ b/htdocs/langs/en_US/companies.lang @@ -61,4 +61,8 @@ ListOfCompanies=List of companies ShowCompany=Show company ShowContact=Show contact Capital=Capital -EditCompany=Edit company \ No newline at end of file +EditCompany=Edit company +ThisUserIsNot=This user is not a prospect, customer nor supplier +VATIntraCheckableOnEUSite=Intracomunnautary VAT can be checked on European commision site +NorProspectNorCustomer=Nor prospect, nor customer +Staff=Staff \ No newline at end of file diff --git a/htdocs/langs/fr_FR/companies.lang b/htdocs/langs/fr_FR/companies.lang index 0cf1048a97f..7e66e3272b5 100644 --- a/htdocs/langs/fr_FR/companies.lang +++ b/htdocs/langs/fr_FR/companies.lang @@ -61,4 +61,8 @@ ListOfCompanies=Liste des soci ShowCompany=Afficher société ShowContact=Afficher contact Capital=Capital -EditCompany=Edition société \ No newline at end of file +EditCompany=Edition société +ThisUserIsNot=Cet utilisateur n'est pas un prospect, client ni fournisseur +VATIntraCheckableOnEUSite=Numéro TVA intra communautaire vérifiable sur le site de la commission européenne +NorProspectNorCustomer=Ni client, ni prospect +Staff=Effectifs \ No newline at end of file diff --git a/htdocs/soc.php b/htdocs/soc.php index 8dc5b9ac64a..94c184b837a 100644 --- a/htdocs/soc.php +++ b/htdocs/soc.php @@ -240,7 +240,10 @@ if ($_GET["action"] == 'create' || $_POST["action"] == 'create') $form->select_forme_juridique($soc->forme_juridique_code,(defined(COMPANY_CREATE_TWO_STEPS)?$soc->pays_code:0)); print ''; - print 'Effectif'; + print ''.$langs->trans("Type").''; + $form->select_array("typent_id",$soc->typent_array(), $soc->typent_id); + print ''; + print ''.$langs->trans("Staff").''; $form->select_array("effectif_id",$soc->effectif_array(), $soc->effectif_id); print ''; @@ -254,7 +257,7 @@ if ($_GET["action"] == 'create' || $_POST["action"] == 'create') print ''.$langs->trans('ProspectCustomer').''."\n"; print ''.$langs->trans('Supplier').''."\n"; @@ -358,7 +361,7 @@ elseif ($_GET["action"] == 'edit') print ''.$langs->trans("Type").''; $form->select_array("typent_id",$soc->typent_array(), $soc->typent_id); print ''; - print 'Effectif'; + print ''.$langs->trans("Staff").''; $form->select_array("effectif_id",$soc->effectif_array(), $soc->effectif_id); print ''; @@ -506,7 +509,8 @@ else print ''.$langs->trans('Capital').''.$soc->capital.' '.$conf->monnaie.''; print 'Forme juridique'.$soc->forme_juridique.''; - print ''.$langs->trans("Type").''.$soc->typent.'Effectif'.$soc->effectif.''; + + print ''.$langs->trans("Type").''.$soc->typent.''.$langs->trans("Staff").''.$soc->effectif.''; print ''.img_edit() ." "; print $langs->trans('RIB').'';