From 5e81314b980e3dda9db728749c34d5f8b0b306e7 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 10 Jan 2011 00:04:27 +0000 Subject: [PATCH] Fix: Missing translation --- htdocs/contact/fiche.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/htdocs/contact/fiche.php b/htdocs/contact/fiche.php index 2919521e33a..8133c1ce0b2 100644 --- a/htdocs/contact/fiche.php +++ b/htdocs/contact/fiche.php @@ -36,6 +36,7 @@ require_once(DOL_DOCUMENT_ROOT."/core/class/html.formcompany.class.php"); $langs->load("companies"); $langs->load("users"); +$langs->load("other"); $errors = array(); $socid = GETPOST("socid"); @@ -760,7 +761,7 @@ else // Full firstname and name separated with a dot : firstname.name include_once(DOL_DOCUMENT_ROOT.'/lib/functions2.lib.php'); $login=dol_buildlogin($object->nom,$object->prenom); - + // Create a form array $formquestion=array(array('label' => $langs->trans("LoginToCreate"), 'type' => 'text', 'name' => 'login', 'value' => $login));