Skip to content

Commit

Permalink
Trans
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Jul 16, 2018
1 parent e92ab19 commit 37e16b5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions htdocs/langs/en_US/ticket.lang
Expand Up @@ -220,6 +220,7 @@ TicketChangeStatus=Change status
TicketConfirmChangeStatus=Confirm the status change : %s ?
TicketLogStatusChanged=Status changed : %s to %s
TicketNotNotifyTiersAtCreate=Not notify company at create
Unread=Unread

#
# Logs
Expand Down
1 change: 1 addition & 0 deletions htdocs/langs/fr_FR/ticket.lang
Expand Up @@ -219,6 +219,7 @@ TicketChangeStatus=Changer l'état
TicketConfirmChangeStatus=Confirmez le changement d'état: %s?
TicketLogStatusChanged=Statut changé: %s à %s
TicketNotNotifyTiersAtCreate=Ne pas notifier l'entreprise à la création
Unread=Non lu

#
# Logs
Expand Down
11 changes: 6 additions & 5 deletions htdocs/ticket/index.php
Expand Up @@ -302,7 +302,7 @@
print '<div class="div-table-responsive-no-min">';
print '<table class="noborder" width="100%">';
print '<tr class="liste_titre"><th>' . $transRecordedType . '</th>';
print '<th>' . $langs->trans('Ref') . '</th>';
print '<th>' . $langs->trans('Date') . '</th>';
print '<th>' . $langs->trans('Subject') . '</th>';
print '<th>' . $langs->trans('Type') . '</th>';
print '<th>' . $langs->trans('Category') . '</th>';
Expand All @@ -322,16 +322,17 @@
$tickesupstatic->subject = $objp->subject;

print '<tr class="oddeven">';
// Creation date
print '<td align="left">';
print dol_print_date($db->jdate($objp->datec), 'dayhour');
print "</td>";

// Ref
print '<td class="nowrap">';
print $tickesupstatic->getNomUrl(1);
print "</td>\n";

// Creation date
print '<td align="left">';
print dol_print_date($db->jdate($objp->datec), 'dayhour');
print "</td>";

// Subject
print '<td class="nowrap">';
print '<a href="card.php?track_id=' . $objp->track_id . '">' . dol_trunc($objp->subject, 30) . '</a>';
Expand Down

0 comments on commit 37e16b5

Please sign in to comment.