diff --git a/htdocs/comm/action/index.php b/htdocs/comm/action/index.php index eab7766e229..a6ee1f21251 100644 --- a/htdocs/comm/action/index.php +++ b/htdocs/comm/action/index.php @@ -113,7 +113,7 @@ if ( $db->query($sql) ) print "
| '.$langs->trans("Date").' | '; - print 'Avancement | '; + print ''.$langs->trans("Status").' | '; print ''.$langs->trans("Action").' | '; print ''.$langs->trans("Company").' | '; print ''.$langs->trans("Contact").' | '; @@ -163,15 +163,15 @@ if ( $db->query($sql) ) if ($obj->client == 1) { - print ' '.$obj->societe.''; + print ' '.img_object($langs->trans("ShowCompany"),"company").' '.$obj->societe.''; } elseif ($obj->client == 2) { - print ' '.$obj->societe.''; + print ' '.img_object($langs->trans("ShowCompany"),"company").' '.$obj->societe.''; } else { - print ' '.$obj->societe.''; + print ' '.img_object($langs->trans("ShowCompany"),"company").' '.$obj->societe.''; } /* * Contact @@ -181,13 +181,14 @@ if ( $db->query($sql) ) { $cont = new Contact($db); $cont->fetch($obj->fk_contact); - print ''.$cont->fullname.''; + print ''.img_object($langs->trans("ShowContact"),"contact").' '.$cont->fullname.''; } else { print " "; } print ''; + /* * */|||