diff --git a/htdocs/holiday/card.php b/htdocs/holiday/card.php
index 26a210f40e0..9cc287cd28a 100644
--- a/htdocs/holiday/card.php
+++ b/htdocs/holiday/card.php
@@ -991,7 +991,9 @@ if ((empty($id) && empty($ref)) || $action == 'add' || $action == 'request' || $
{
$nb_type = $object->getCPforUser($user->id, $val['rowid']);
$nb_holiday += $nb_type;
- $out .= ' - '.$val['label'].': '.($nb_type ?price2num($nb_type) : 0).'
';
+
+ $out .= ' - ' . ($langs->trans($val['code']) != $val['code'] ? $langs->trans($val['code']) : $val['label']) .': '.($nb_type ?price2num($nb_type) : 0).'
';
+ //$out .= ' - '.$val['label'].': '.($nb_type ?price2num($nb_type) : 0).'
';
}
print $langs->trans('SoldeCPUser', round($nb_holiday, 5)).'
';
print $out;