From 86d1b475343962cc56ccb7b3b262c85fd643261b Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Tue, 26 Jan 2010 19:30:44 +0000 Subject: [PATCH] Fix: add translation for llx_c_type_contact dictionnary --- htdocs/admin/dict.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/htdocs/admin/dict.php b/htdocs/admin/dict.php index 2ece0bdb543..c8681f877d1 100644 --- a/htdocs/admin/dict.php +++ b/htdocs/admin/dict.php @@ -2,7 +2,7 @@ /* Copyright (C) 2004 Rodolphe Quiedeville * Copyright (C) 2004-2010 Laurent Destailleur * Copyright (C) 2004 Benoit Mortier - * Copyright (C) 2005-2009 Regis Houssin + * Copyright (C) 2005-2010 Regis Houssin * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -826,12 +826,17 @@ function fieldList($fieldlist,$obj='') $langs->load("project"); $langs->load("propal"); $langs->load("bills"); + $langs->load("interventions"); print ''; $elementList = array("commande"=>$langs->trans("Order"), + "order_supplier"=>$langs->trans("SupplierOrder"), "contrat"=>$langs->trans("Contract"), - "projet"=>$langs->trans("Project"), + "project"=>$langs->trans("Project"), + "project_task"=>$langs->trans("Task"), "propal"=>$langs->trans("Propal"), - "facture"=>$langs->trans("Bill")); + "facture"=>$langs->trans("Bill"), + "facture_fourn"=>$langs->trans("SupplierBill"), + "fichinter"=>$langs->trans("InterventionCard")); $html->select_array('element', $elementList,$obj->$fieldlist[$field]); print ''; }