Skip to content
Snippets Groups Projects
Commit f3745511 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix missing translation

parent aa34dffe
No related branches found
No related tags found
No related merge requests found
......@@ -118,7 +118,11 @@ class box_services_expired extends ModeleBoxes
$i++;
}
if ($num==0) $this->info_box_contents[$i][0] = array('td' => 'align="center"','text'=>$langs->trans("NoExpiredServices"));
if ($num==0)
{
$langs->load("contracts");
$this->info_box_contents[$i][0] = array('td' => 'align="center"','text'=>$langs->trans("NoExpiredServices"));
}
$db->free($resql);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment