Nom du fichier : TableLangueConstants.php
<?php
namespace models\traits;
trait TableLangueConstants
{
const TABLE_NAME = 'Langue';
const COLUMN_ID = 'Id';
const COLUMN_TYPE = 'Type';
const COLUMN_CODE = 'code';
const COLUMN_ANGLAIS = 'Anglais';
const COLUMN_FRANCAIS = 'Francais';
public static function getValue($code, $language)
{
$data = self::getData(); // Appel à la méthode getData pour obtenir les données
foreach ($data as $item) {
if ($item[self::COLUMN_CODE] === $code) {
return $item[$language];
}
}
return null; // ou lancer une exception si nécessaire
}
public static function getData()
{
return [
['Type' => 'LABEL', 'code' => 'DASHBOARD', 'Anglais' => 'Dashboard', 'Francais' => 'Tableau de bord'],
['Type' => 'LABEL', 'code' => 'Objet', 'Anglais' => 'Objet', 'Francais' => 'Objet'],
['Type' => 'LABEL', 'code' => 'MESSAGERIE', 'Anglais' => 'Messaging', 'Francais' => 'Messagerie'],
['Type' => 'LABEL', 'code' => 'Outsourcing', 'Anglais' => 'Outsourcing', 'Francais' => 'Suivi de dossiers'],
['Type' => 'OBJECT', 'code' => 'Ticket', 'Anglais' => 'Ticket', 'Francais' => 'Billet'],
['Type' => 'OBJECT', 'code' => 'My_Account', 'Anglais' => 'My Accounts', 'Francais' => 'Mes Comptes'],
['Type' => 'OBJECT', 'code' => 'My_Messages', 'Anglais' => 'Messages', 'Francais' => 'Messages'],
['Type' => 'OBJECT', 'code' => 'My_Tasks', 'Anglais' => 'My Tasks', 'Francais' => 'Mes Tâches'],
['Type' => 'OBJECT', 'code' => 'My_Tickets', 'Anglais' => 'My Tickets', 'Francais' => 'Mes Billets'],
['Type' => 'OBJECT', 'code' => 'My_Companies', 'Anglais' => 'My Companies', 'Francais' => 'Mes Entreprises'],
['Type' => 'OBJECT', 'code' => 'My_Contracts', 'Anglais' => 'My Contracts', 'Francais' => 'Mes Contrats'],
['Type' => 'OBJECT', 'code' => 'Contracts', 'Anglais' => 'Contracts', 'Francais' => 'Contrats'],
['Type' => 'OBJECT', 'code' => 'My_Subcontracts', 'Anglais' => 'My Subcontracts', 'Francais' => 'Mes Sous contrats'],
['Type' => 'OBJECT', 'code' => 'My_Services', 'Anglais' => 'My Services', 'Francais' => 'Mes Services'],
['Type' => 'OBJECT', 'code' => 'My_Deliverables', 'Anglais' => 'My Deliverables', 'Francais' => 'Mes Livrables'],
['Type' => 'OBJECT', 'code' => 'My_Plan', 'Anglais' => 'My Planning', 'Francais' => 'Mon Calendrier'],
['Type' => 'OBJECT', 'code' => 'My_Reports', 'Anglais' => 'Reports', 'Francais' => 'Rapports'],
['Type' => 'OBJECT', 'code' => 'Audit_Tool', 'Anglais' => 'Audit Tool', 'Francais' => 'Outil Audit'],
['Type' => 'OBJECT', 'code' => 'Insurance', 'Anglais' => 'Insurance', 'Francais' => 'Assurance'],
['Type' => 'OBJECT', 'code' => 'RH/Payroll', 'Anglais' => 'RH/Payroll', 'Francais' => 'RH/Gestion de paie'],
['Type' => 'OBJECT', 'code' => 'School_Management', 'Anglais' => 'School Management', 'Francais' => 'Gestion Ecole'],
['Type' => 'OBJECT', 'code' => 'User', 'Anglais' => 'User', 'Francais' => 'Utilisateur'],
['Type' => 'OBJECT', 'code' => 'Settings', 'Anglais' => 'Settings', 'Francais' => 'Paramètres'],
['Type' => 'OBJECT', 'code' => 'Sign_Out', 'Anglais' => 'Sign out', 'Francais' => 'Se deconnecter'],
['Type' => 'OBJECT', 'code' => 'Sign_In', 'Anglais' => 'Sign in', 'Francais' => 'Se connecter'],
['Type' => 'LABEL', 'code' => 'Email_Address', 'Anglais' => 'Email address', 'Francais' => 'Adresse email'],
['Type' => 'LABEL', 'code' => 'Password', 'Anglais' => 'Password', 'Francais' => 'Mot de passe'],
['Type' => 'LABEL', 'code' => 'Forgot_Password', 'Anglais' => 'Forgot password', 'Francais' => 'Mot de passe oublié'],
['Type' => 'OBJECT', 'code' => 'Remember_Me', 'Anglais' => 'Remember me', 'Francais' => 'Se souvenir de moi'],
['Type' => 'LABEL', 'code' => 'Number', 'Anglais' => 'Number ', 'Francais' => 'Numéro'],
['Type' => 'LABEL', 'code' => 'Domain', 'Anglais' => 'Domain', 'Francais' => 'Domaine'],
['Type' => 'LABEL', 'code' => 'Title', 'Anglais' => 'Title', 'Francais' => 'Titre'],
['Type' => 'LABEL', 'code' => 'Created_Date', 'Anglais' => 'Created date', 'Francais' => 'Date de création'],
['Type' => 'LABEL', 'code' => 'CREATED_BY', 'Anglais' => 'Created by', 'Francais' => 'Créateur'],
['Type' => 'LABEL', 'code' => 'Action', 'Anglais' => 'Action', 'Francais' => 'Action'],
['Type' => 'OBJECT', 'code' => 'Add_Messages', 'Anglais' => 'Add_Messages', 'Francais' => 'Ajouter Message'],
['Type' => 'LABEL', 'code' => 'Search', 'Anglais' => 'Search', 'Francais' => 'Rechercher'],
['Type' => 'LABEL', 'code' => 'Profile', 'Anglais' => 'Profile', 'Francais' => 'Profile'],
['Type' => 'LABEL', 'code' => 'Your_Name', 'Anglais' => 'Your Name', 'Francais' => 'Votre nom'],
['Type' => 'LABEL', 'code' => 'Assign_Name', 'Anglais' => 'Assign Name', 'Francais' => 'Nom attribué'],
['Type' => 'LABEL', 'code' => 'Subdomain', 'Anglais' => 'Subdomain', 'Francais' => 'Sous-domaine'],
['Type' => 'LABEL', 'code' => 'Additional_Domain', 'Anglais' => 'Additional domain', 'Francais' => 'Domaine supplémentaire'],
['Type' => 'LABEL', 'code' => 'Subject', 'Anglais' => 'Subject', 'Francais' => 'Sujet'],
['Type' => 'LABEL', 'code' => 'Priorities', 'Anglais' => 'Priority', 'Francais' => 'Priorité'],
['Type' => 'LABEL', 'code' => 'Details', 'Anglais' => 'Details', 'Francais' => 'Détails'],
['Type' => 'LABEL', 'code' => 'Status', 'Anglais' => 'Status', 'Francais' => 'Statut'],
['Type' => 'LABEL', 'code' => 'Attachement', 'Anglais' => 'Attachement', 'Francais' => 'Pièce jointe'],
['Type' => 'LABEL', 'code' => 'Send', 'Anglais' => 'Send', 'Francais' => 'Envoyer'],
['Type' => 'LABEL', 'code' => 'Tickets_Table', 'Anglais' => 'Tickets Table', 'Francais' => 'Table mission'],
['Type' => 'OBJECT', 'code' => 'List_of_companies', 'Anglais' => 'Companies list', 'Francais' => 'Liste des entreprises'],
['Type' => 'OBJECT', 'code' => 'Add_Company', 'Anglais' => 'Add Company', 'Francais' => 'Ajouter Entreprise'],
['Type' => 'LABEL', 'code' => 'Corporate_Name', 'Anglais' => 'Corporate name', 'Francais' => 'Dénomination sociale'],
['Type' => 'LABEL', 'code' => 'COMPANY_NAME_LABEL', 'Anglais' => 'Company Name', 'Francais' => 'Nom de l\'entreprise'],
['Type' => 'LABEL', 'code' => 'The_Head_Office', 'Anglais' => 'The head office', 'Francais' => 'Siége social'],
['Type' => 'LABEL', 'code' => 'Company_Contact', 'Anglais' => 'Company contact', 'Francais' => 'Contact entreprise'],
['Type' => 'LABEL', 'code' => 'Email_Comp', 'Anglais' => 'Email entreprise', 'Francais' => 'Email entreprise'],
['Type' => 'LABEL', 'code' => 'Contact', 'Anglais' => 'Contact', 'Francais' => 'Contact'],
['Type' => 'LABEL', 'code' => 'Legal_Status', 'Anglais' => 'Legal status', 'Francais' => 'Forme juridique'],
['Type' => 'LABEL', 'code' => 'Activity_Area', 'Anglais' => 'Activity area', 'Francais' => 'Domaine activité'],
['Type' => 'LABEL', 'code' => 'Ninea', 'Anglais' => 'Ninea', 'Francais' => 'Ninea'],
['Type' => 'LABEL', 'code' => 'RC_Number', 'Anglais' => 'RC Number', 'Francais' => 'Numero RC'],
['Type' => 'LABEL', 'code' => 'Tax_Identification_Number', 'Anglais' => 'Tax Identification number', 'Francais' => 'Centre fiscal'],
['Type' => 'LABEL', 'code' => 'Share_Capital', 'Anglais' => 'Share Capital', 'Francais' => 'Capital social'],
['Type' => 'LABEL', 'code' => 'Number_Of_Employees', 'Anglais' => 'Number of employees', 'Francais' => 'N° employé'],
['Type' => 'OBJECT', 'code' => 'Done', 'Anglais' => 'Done', 'Francais' => 'Soumettre'],
['Type' => 'OBJECT', 'code' => 'Add', 'Anglais' => 'Add', 'Francais' => 'Ajouter'],
['Type' => 'OBJECT', 'code' => 'Add_Admin', 'Anglais' => 'Add admin', 'Francais' => 'Ajouter Admin'],
['Type' => 'OBJECT', 'code' => 'Add_User', 'Anglais' => 'New user', 'Francais' => 'Nouvel utilisateur'],
['Type' => 'LABEL', 'code' => 'First_Name', 'Anglais' => 'First Name', 'Francais' => 'Prenom'],
['Type' => 'LABEL', 'code' => 'Name', 'Anglais' => 'Name', 'Francais' => 'Nom'],
['Type' => 'LABEL', 'code' => 'Email', 'Anglais' => 'Email', 'Francais' => 'Email'],
['Type' => 'LABEL', 'code' => 'Phone', 'Anglais' => 'Phone', 'Francais' => 'Téléphone'],
['Type' => 'LABEL', 'code' => 'Project_Permission', 'Anglais' => 'Project permission', 'Francais' => 'Permissions'],
['Type' => 'OBJECT', 'code' => 'Validate_Registration_Request', 'Anglais' => 'Validate registration request', 'Francais' => 'Valider demande d\'inscription'],
['Type' => 'OBJECT', 'code' => 'Update_Registration_Request', 'Anglais' => 'Updates registration request', 'Francais' => 'Modifier demande d\'inscription'],
['Type' => 'OBJECT', 'code' => 'Statistics_Registration_Request', 'Anglais' => 'Statistics registration request', 'Francais' => 'Statistiques demande dinscription'],
['Type' => 'OBJECT', 'code' => 'Create', 'Anglais' => 'Create', 'Francais' => 'Créer'],
['Type' => 'LABEL', 'code' => 'Read', 'Anglais' => 'Read', 'Francais' => 'Lire'],
['Type' => 'LABEL', 'code' => 'Write', 'Anglais' => 'Write', 'Francais' => 'Ecrire'],
['Type' => 'LABEL', 'code' => 'company', 'Anglais' => 'company', 'Francais' => 'Entreprise'],
['Type' => 'LABEL', 'code' => 'COMPANY', 'Anglais' => 'company', 'Francais' => 'Entreprise'],
['Type' => 'LABEL', 'code' => 'ALERTS', 'Anglais' => 'Alerts', 'Francais' => 'Alertes'],
['Type' => 'LABEL', 'code' => 'Persons_in_charge', 'Anglais' => 'Persons in charge', 'Francais' => 'Personnes en charge'],
['Type' => 'LABEL', 'code' => 'Add_Someone', 'Anglais' => 'Add a person', 'Francais' => 'Ajouter une personne'],
['Type' => 'LABEL', 'code' => 'Update', 'Anglais' => 'Update', 'Francais' => 'Mettre à jour'],
['Type' => 'LABEL', 'code' => 'Cancel', 'Anglais' => 'Cancel', 'Francais' => 'Annuler'],
['Type' => 'OBJECT', 'code' => 'Add_contract', 'Anglais' => 'Add Contract', 'Francais' => 'Ajouter Contrat'],
['Type' => 'OBJECT', 'code' => 'Edit_contract', 'Anglais' => 'Edit Contract', 'Francais' => 'Modifier Contrat'],
['Type' => 'OBJECT', 'code' => 'Admin_Panel', 'Anglais' => 'Admin ', 'Francais' => 'Administration '],
['Type' => 'LABEL', 'code' => 'Nb_custumer', 'Anglais' => 'Number of customers', 'Francais' => 'Nombre de Clients'],
['Type' => 'LABEL', 'code' => 'Current_contracts', 'Anglais' => 'Current contracts', 'Francais' => 'Contrats en cours'],
['Type' => 'LABEL', 'code' => 'Remaining_stains', 'Anglais' => 'Remaining stains', 'Francais' => 'Tâches restantes'],
['Type' => 'LABEL', 'code' => 'Taks_completed', 'Anglais' => 'Completed stains', 'Francais' => 'Tâches terminées'],
['Type' => 'LABEL', 'code' => 'Pending_tasks', 'Anglais' => 'Pending tasks', 'Francais' => 'Tâches en attente'],
['Type' => 'LABEL', 'code' => 'Tickets_ouverts', 'Anglais' => 'Open tickets', 'Francais' => 'Tickets ouverts'],
['Type' => 'LABEL', 'code' => 'Tickets_Traités', 'Anglais' => 'Tickets Processed', 'Francais' => 'Tickets Traités'],
['Type' => 'LABEL', 'code' => 'Total_Users', 'Anglais' => 'Total User', 'Francais' => 'Total Utilisateur'],
['Type' => 'LABEL', 'code' => 'Tks_progress', 'Anglais' => 'Tasks in progress', 'Francais' => 'Tâches en cours'],
['Type' => 'LABEL', 'code' => 'Welcome', 'Anglais' => 'Welcome', 'Francais' => 'Bienvenue'],
['Type' => 'OBJECT', 'code' => 'Add_Event', 'Anglais' => 'Add Event', 'Francais' => 'Ajouter un événement'],
['Type' => 'LABEL', 'code' => 'List_of_sub_contracts', 'Anglais' => 'List of sub-contracts', 'Francais' => 'Liste des sous contrats'],
['Type' => 'LABEL', 'code' => 'general_contract', 'Anglais' => 'general contract', 'Francais' => 'Contrat général'],
['Type' => 'LABEL', 'code' => 'Designation', 'Anglais' => 'Designation', 'Francais' => 'Designation'],
['Type' => 'LABEL', 'code' => 'Liste_des_sous_contrats', 'Anglais' => 'List of sub-contracts', 'Francais' => 'Liste des sous contrats'],
['Type' => 'OBJECT', 'code' => 'Add_services', 'Anglais' => 'Add Services', 'Francais' => 'Ajouter Services'],
['Type' => 'LABEL', 'code' => 'List_of_Tasks', 'Anglais' => 'List of Tasks', 'Francais' => 'Liste des Tâches'],
['Type' => 'LABEL', 'code' => 'Frequency', 'Anglais' => 'Frequency', 'Francais' => 'Fréquence'],
['Type' => 'LABEL', 'code' => 'Start_dates', 'Anglais' => 'Start', 'Francais' => 'Début'],
['Type' => 'LABEL', 'code' => 'Start_date', 'Anglais' => 'Start date', 'Francais' => 'Date de début'],
['Type' => 'LABEL', 'code' => 'Date_fins', 'Anglais' => 'End', 'Francais' => 'Fin'],
['Type' => 'LABEL', 'code' => 'Date_fin', 'Anglais' => 'End date', 'Francais' => 'Date de fin'],
['Type' => 'LABEL', 'code' => 'Welcome_Message', 'Anglais' => 'Welcome to our Platform! Customer', 'Francais' => 'Bienvenue sur notre Plateforme ! Client'],
['Type' => 'LABEL', 'code' => 'Subscribe_Client', 'Anglais' => 'Register the customer', 'Francais' => 'Inscrivez le client'],
['Type' => 'LABEL', 'code' => 'Admin', 'Anglais' => 'Admin', 'Francais' => 'Administrateur'],
['Type' => 'LABEL', 'code' => 'Calendar', 'Anglais' => 'Calendar', 'Francais' => 'Calendrier'],
['Type' => 'LABEL', 'code' => 'STTObligations', 'Anglais' => 'Statutory Deadlines', 'Francais' => 'Echéances Statutaires'],
['Type' => 'LABEL', 'code' => 'SUIVIDECL', 'Anglais' => 'Reports Monitoring', 'Francais' => 'Suivi Déclarations'],
['Type' => 'LABEL', 'code' => 'STATUTORYITEM', 'Anglais' => 'Statutory Item', 'Francais' => 'Obligation Statutaire'],
['Type' => 'LABEL', 'code' => 'STTCalendar', 'Anglais' => 'Statutory Calendars', 'Francais' => 'Calendriers Statutaires'],
['Type' => 'LABEL', 'code' => 'TLDCalendar', 'Anglais' => 'Tasks and Deliverables Calendar', 'Francais' => 'Calendrier des Tâches et Livrables'],
['Type' => 'LABEL', 'code' => 'COMPANY_DETAILS', 'Anglais' => 'Our Documents', 'Francais' => 'Nos Documents'],
['Type' => 'LABEL', 'code' => 'Name_APP', 'Anglais' => 'WK Advisory ERP', 'Francais' => 'WK Advisory ERP'],
['Type' => 'LABEL', 'code' => 'Auth', 'Anglais' => 'Authentifaction', 'Francais' => 'Authentification'],
['Type' => 'LABEL', 'code' => 'Curr_Projects', 'Anglais' => 'Current_Projects', 'Francais' => 'Projets en cours'],
['Type' => 'LABEL', 'code' => 'Open_Ticket', 'Anglais' => 'Ticket Opened ', 'Francais' => 'Tickets ouverts'],
['Type' => 'LABEL', 'code' => 'Processed_Ticket', 'Anglais' => 'Processed Ticket', 'Francais' => 'Tickets traités'],
['Type' => 'LABEL', 'code' => 'Dash_Msg', 'Anglais' => 'You\'re on dashboard ', 'Francais' => 'Vous êtes sur la page d\'accueil'],
['Type' => 'LABEL', 'code' => 'Stat_Total', 'Anglais' => 'Total Stat', 'Francais' => 'Statistiques totales'],
['Type' => 'LABEL', 'code' => 'Welcome_Back', 'Anglais' => 'Welcome Back', 'Francais' => 'Content de vous revoir !'],
['Type' => 'LABEL', 'code' => 'Start', 'Anglais' => 'Start now !', 'Francais' => 'Commencer !'],
['Type' => 'LABEL', 'code' => 'Up_Stat', 'Anglais' => 'Upcoming Stat', 'Francais' => 'Statistiques à venir'],
['Type' => 'LABEL', 'code' => 'Prog_Stat', 'Anglais' => 'Progress Stat', 'Francais' => 'Statistiques en cours'],
['Type' => 'LABEL', 'code' => 'Fin_Stat', 'Anglais' => 'Finished Stats', 'Francais' => 'Statistiques terminées'],
['Type' => 'LABEL', 'code' => 'File', 'Anglais' => 'Files', 'Francais' => 'Fichiers'],
['Type' => 'LABEL', 'code' => 'Gen_Inf', 'Anglais' => 'Genaral Info', 'Francais' => 'Informations générales'],
['Type' => 'LABEL', 'code' => 'Soc_Den', 'Anglais' => 'Social Denomination', 'Francais' => 'Dénomination sociale'],
['Type' => 'LABEL', 'code' => 'Head_Off', 'Anglais' => 'The Head Office', 'Francais' => 'Siège social'],
['Type' => 'LABEL', 'code' => 'Contact_Comp', 'Anglais' => 'Company Contact ', 'Francais' => 'Contact Entreprise'],
['Type' => 'LABEL', 'code' => 'Phon_Comp', 'Anglais' => 'Phone Company', 'Francais' => 'Téléphone Entreprise'],
['Type' => 'LABEL', 'code' => 'Leg_Stat', 'Anglais' => 'Legal Status', 'Francais' => 'Forme juridique'],
['Type' => 'LABEL', 'code' => 'Dom_Act', 'Anglais' => 'Domain Activity', 'Francais' => 'Domaine d\'activité'],
['Type' => 'LABEL', 'code' => 'Nin_Comp', 'Anglais' => 'Ninea Company', 'Francais' => 'Ninéa de l\'entreprise'],
['Type' => 'LABEL', 'code' => 'Num_Emp', 'Anglais' => 'Number Of Employees', 'Francais' => 'Nombre d\'employés'],
['Type' => 'LABEL', 'code' => 'TIN', 'Anglais' => 'Task Id Number', 'Francais' => 'N° d\'identification fiscal:'],
['Type' => 'LABEL', 'code' => 'Contract', 'Anglais' => 'Contract', 'Francais' => 'Contrat'],
['Type' => 'LABEL', 'code' => 'Cont_Det', 'Anglais' => 'Contract Detail', 'Francais' => 'Détails du contrat'],
['Type' => 'LABEL', 'code' => 'Serv', 'Anglais' => 'Service', 'Francais' => 'Service'],
['Type' => 'LABEL', 'code' => 'TASKS', 'Anglais' => 'Tasks', 'Francais' => 'Tâches'],
['Type' => 'LABEL', 'code' => 'Tasks', 'Anglais' => 'Tasks', 'Francais' => 'Tâches'],
['Type' => 'LABEL', 'code' => 'ID', 'Anglais' => 'Id', 'Francais' => 'Id'],
['Type' => 'LABEL', 'code' => 'Acts', 'Anglais' => 'Actions', 'Francais' => 'Actions'],
['Type' => 'LABEL', 'code' => 'INV', 'Anglais' => 'Invoices', 'Francais' => 'Factures'],
['Type' => 'LABEL', 'code' => 'Paiement_Mode', 'Anglais' => 'Mode of Paiement', 'Francais' => 'Méthode de paiement'],
['Type' => 'LABEL', 'code' => 'Choice_Method', 'Anglais' => 'Choose a method', 'Francais' => 'Choisir une méthode de paiement'],
['Type' => 'LABEL', 'code' => 'Enter_Paiement', 'Anglais' => 'Enter a paimement', 'Francais' => 'Renseigner un paiement'],
['Type' => 'LABEL', 'code' => 'OM', 'Anglais' => 'Orange Money', 'Francais' => 'Orange Money'],
['Type' => 'LABEL', 'code' => 'WV', 'Anglais' => 'Wave Money', 'Francais' => 'Wave Money'],
['Type' => 'LABEL', 'code' => 'VRT', 'Anglais' => 'Bank transfer', 'Francais' => 'Virement Bancaire'],
['Type' => 'LABEL', 'code' => 'VRS', 'Anglais' => 'Cash payment', 'Francais' => 'Versement '],
['Type' => 'LABEL', 'code' => 'CHQ', 'Anglais' => 'Check', 'Francais' => 'Chèque'],
['Type' => 'LABEL', 'code' => 'Full_Name', 'Anglais' => 'Fullname', 'Francais' => 'Prénom & Nom'],
['Type' => 'LABEL', 'code' => 'Name_Comp', 'Anglais' => 'Company Name', 'Francais' => 'Nom de l\'entreprise'],
['Type' => 'LABEL', 'code' => 'Paiement_Date', 'Anglais' => 'Date of Paiement', 'Francais' => 'Date du Paiement'],
['Type' => 'LABEL', 'code' => 'Ris', 'Anglais' => 'Rising', 'Francais' => 'Montant'],
['Type' => 'LABEL', 'code' => 'Ref', 'Anglais' => 'Reference', 'Francais' => 'Référence'],
['Type' => 'LABEL', 'code' => 'Name_Of_Depositor', 'Anglais' => 'Name Of The Depositor', 'Francais' => 'Nom du déposant'],
['Type' => 'LABEL', 'code' => 'Paiement_Reference', 'Anglais' => 'Reference Of Paiement', 'Francais' => 'Référence du paiement'],
['Type' => 'LABEL', 'code' => 'Bank', 'Anglais' => 'Bank Name', 'Francais' => 'Nom de la banque '],
['Type' => 'LABEL', 'code' => 'Check_Number', 'Anglais' => 'Check Number', 'Francais' => 'Numéro du chèque'],
['Type' => 'LABEL', 'code' => 'Transmittor', 'Anglais' => 'Transmittor', 'Francais' => 'Emetteur'],
['Type' => 'LABEL', 'code' => 'Account_Number', 'Anglais' => 'Account Number', 'Francais' => 'Numéro de compte'],
['Type' => 'LABEL', 'code' => 'Account_Owner', 'Anglais' => 'Owner Of The Account', 'Francais' => 'Propriétaire du compte'],
['Type' => 'LABEL', 'code' => 'Submission_Date', 'Anglais' => 'Submission Date', 'Francais' => 'Date de déclaration '],
['Type' => 'LABEL', 'code' => 'Corresponding_email_text', 'Anglais' => 'Enter the email address you used when you joined and we\'ll send you instructions to reset your password.', 'Francais' => 'Entrez l\'adresse e-mail que vous avez utilisée lors de votre inscription et nous vous enverrons des instructions pour réinitialiser votre mot de passe.'],
['Type' => 'LABEL', 'code' => 'SUBMIT', 'Anglais' => 'Submit', 'Francais' => 'Soumettre'],
['Type' => 'LABEL', 'code' => 'Back_to_signin', 'Anglais' => 'Back to Sign in', 'Francais' => 'Retour à se connecter'],
['Type' => 'LABEL', 'code' => 'Custumer_Panel', 'Anglais' => 'Customer Setup Page', 'Francais' => 'Page de configuration client'],
['Type' => 'LABEL', 'code' => 'Client', 'Anglais' => 'Clients', 'Francais' => 'Clients'],
['Type' => 'LABEL', 'code' => 'Ticket_number', 'Anglais' => 'Ticket Number', 'Francais' => 'Nombre de billet'],
['Type' => 'LABEL', 'code' => 'Answering_date', 'Anglais' => 'Answering Date', 'Francais' => 'Date de réponse'],
['Type' => 'LABEL', 'code' => 'Assigned_agent', 'Anglais' => 'Assigned Agent', 'Francais' => 'Agent Assigné'],
['Type' => 'LABEL', 'code' => 'Tickets_Pending', 'Anglais' => 'Tickets Pending', 'Francais' => 'Billets en attente'],
['Type' => 'LABEL', 'code' => 'Super_Admin', 'Anglais' => 'Super Admin', 'Francais' => 'Super Administrateur'],
['Type' => 'LABEL', 'code' => 'Super_Consultant', 'Anglais' => 'Super Consultant', 'Francais' => 'Super Conseiller'],
['Type' => 'LABEL', 'code' => 'Super_client', 'Anglais' => 'Super Customer', 'Francais' => 'Super Client'],
['Type' => 'LABEL', 'code' => 'Users_Edit', 'Anglais' => 'Users Edit', 'Francais' => 'Modifier Utilisateur'],
['Type' => 'LABEL', 'code' => 'User_type', 'Anglais' => 'Users Type', 'Francais' => 'Type d\'utilisateur'],
['Type' => 'LABEL', 'code' => 'List_Services', 'Anglais' => 'List of Services', 'Francais' => 'Liste des Services'],
['Type' => 'OBJECT', 'code' => 'Add_sub_service', 'Anglais' => 'Add sub_service', 'Francais' => 'Ajouter sous service'],
['Type' => 'OBJECT', 'code' => 'Export', 'Anglais' => 'Export', 'Francais' => 'Exporter'],
['Type' => 'LABEL', 'code' => 'Choose', 'Anglais' => 'Choose', 'Francais' => 'Choisir'],
['Type' => 'LABEL', 'code' => 'RC_number', 'Anglais' => 'Rc Number', 'Francais' => 'Numéro RC'],
['Type' => 'LABEL', 'code' => 'Ticket_List', 'Anglais' => 'Ticket List', 'Francais' => 'Liste des Tickets'],
['Type' => 'LABEL', 'code' => 'Tikcet_Add', 'Anglais' => 'Add Ticket', 'Francais' => 'Ajouter Ticket'],
['Type' => 'LABEL', 'code' => 'Attachment', 'Anglais' => 'Attachment', 'Francais' => 'Pièce Jointe'],
['Type' => 'LABEL', 'code' => 'UPDATE', 'Anglais' => 'Update', 'Francais' => 'Modifier'],
['Type' => 'LABEL', 'code' => 'Tikcet_Number', 'Anglais' => 'Ticket\'s number', 'Francais' => 'Numéro du Ticket'],
['Type' => 'LABEL', 'code' => 'Assign_Agent', 'Anglais' => 'Assign Agent', 'Francais' => 'Agent en Charge'],
['Type' => 'LABEL', 'code' => 'Close', 'Anglais' => 'Close', 'Francais' => 'Fermer'],
['Type' => 'LABEL', 'code' => 'All', 'Anglais' => 'All', 'Francais' => 'Tout'],
['Type' => 'LABEL', 'code' => 'Started', 'Anglais' => 'Started', 'Francais' => 'A Débuté'],
['Type' => 'LABEL', 'code' => 'Approval', 'Anglais' => 'Approval', 'Francais' => 'Approbation'],
['Type' => 'LABEL', 'code' => 'Completed', 'Anglais' => 'Completed', 'Francais' => 'Complété'],
['Type' => 'LABEL', 'code' => 'Our_Projects', 'Anglais' => 'Our Projects', 'Francais' => 'Nos projets'],
['Type' => 'LABEL', 'code' => 'Human_Ressources', 'Anglais' => 'Human Ressources', 'Francais' => 'Ressources humaines'],
['Type' => 'LABEL', 'code' => 'Management', 'Anglais' => 'Management', 'Francais' => 'Gestion'],
['Type' => 'LABEL', 'code' => 'Attach', 'Anglais' => 'Attach', 'Francais' => 'Fichier'],
['Type' => 'LABEL', 'code' => 'Members', 'Anglais' => 'Members', 'Francais' => 'Membres'],
['Type' => 'LABEL', 'code' => 'Messages_exchanged', 'Anglais' => 'Messages Exchanged', 'Francais' => 'Messages échangés'],
['Type' => 'LABEL', 'code' => 'Days_Left', 'Anglais' => 'Days Left', 'Francais' => 'Jours restants'],
['Type' => 'LABEL', 'code' => 'Progress', 'Anglais' => 'Progress', 'Francais' => 'Progression'],
['Type' => 'LABEL', 'code' => 'Chat', 'Anglais' => 'Chat', 'Francais' => 'Discussion'],
['Type' => 'LABEL', 'code' => 'Members_Groups', 'Anglais' => 'Members Groups', 'Francais' => 'Membres du Groupe'],
['Type' => 'LABEL', 'code' => 'Contract_list', 'Anglais' => 'List contract', 'Francais' => 'Liste des contrats'],
['Type' => 'LABEL', 'code' => 'Country', 'Anglais' => 'Country', 'Francais' => 'Pays'],
['Type' => 'LABEL', 'code' => 'PAYS', 'Anglais' => 'Countries', 'Francais' => 'Pays'],
['Type' => 'LABEL', 'code' => 'Frequency_unit', 'Anglais' => 'Frequency unit', 'Francais' => 'Unité de Fréquence'],
['Type' => 'LABEL', 'code' => 'Change_folder_name', 'Anglais' => 'Change folder name', 'Francais' => 'Modifier le nom du dossier'],
['Type' => 'LABEL', 'code' => 'Edit', 'Anglais' => 'Edit', 'Francais' => 'Editer'],
['Type' => 'LABEL', 'code' => 'Name_of_the_contract', 'Anglais' => 'Contract Reference', 'Francais' => 'Nom du contrat'],
['Type' => 'LABEL', 'code' => 'Affiliated_persons', 'Anglais' => 'Affiliated persons', 'Francais' => 'Personnes affiliées'],
['Type' => 'LABEL', 'code' => 'List_of_members', 'Anglais' => 'List of members', 'Francais' => 'Liste des membres'],
['Type' => 'LABEL', 'code' => 'Share', 'Anglais' => 'Share', 'Francais' => 'Partager'],
['Type' => 'LABEL', 'code' => 'Delete', 'Anglais' => 'Delete', 'Francais' => 'Supprimer'],
['Type' => 'LABEL', 'code' => 'Invoice_List', 'Anglais' => 'Invoice List', 'Francais' => 'Listes des Factures'],
['Type' => 'LABEL', 'code' => 'Add_task', 'Anglais' => 'Task', 'Francais' => ' Tâche'],
['Type' => 'LABEL', 'code' => 'Download', 'Anglais' => 'Download', 'Francais' => 'Télécharger'],
['Type' => 'LABEL', 'code' => 'Next', 'Anglais' => 'Next', 'Francais' => 'Suivant'],
['Type' => 'LABEL', 'code' => 'Previous', 'Anglais' => 'Previous', 'Francais' => 'Précédent'],
['Type' => 'LABEL', 'code' => 'Facturation', 'Anglais' => 'Facturation', 'Francais' => 'Facturation'],
['Type' => 'LABEL', 'code' => 'Amount_to_be_invoiced', 'Anglais' => 'Amount to be invoiced', 'Francais' => 'Montant à facturer'],
['Type' => 'OBJECT', 'code' => 'Ticket_Infos', 'Anglais' => 'Ticket Infos', 'Francais' => 'Informations du Ticket'],
['Type' => 'OBJECT', 'code' => 'Ticket_Details', 'Anglais' => 'Genaral Detail Of Ticket', 'Francais' => 'Détails Général Du Ticket'],
['Type' => 'LABEL', 'code' => 'Sub_Domain', 'Anglais' => 'Subdomain', 'Francais' => 'Sous-Domaine'],
['Type' => 'LABEL', 'code' => 'Open_Date', 'Anglais' => 'Open Date', 'Francais' => 'Date d\'ouverture'],
['Type' => 'OBJECT', 'code' => 'Last_Answering_Date', 'Anglais' => 'Last Answering Date', 'Francais' => 'Date Dernière réponse'],
['Type' => 'OBJECT', 'code' => 'LAST_CONTRIBUTOR', 'Anglais' => 'Last Contributor', 'Francais' => 'Dernier contributeur'],
['Type' => 'OBJECT', 'code' => 'WRITE_MESSAGE', 'Anglais' => 'Write message ...', 'Francais' => 'Ecrire un message ...'],
['Type' => 'OBJECT', 'code' => 'ATTACH_FILE', 'Anglais' => 'Upload', 'Francais' => 'Joindre'],
['Type' => 'OBJECT', 'code' => 'SEND_MESSAGE', 'Anglais' => 'Send', 'Francais' => 'Envoyer'],
['Type' => 'LABEL', 'code' => 'User_log', 'Anglais' => 'User login history', 'Francais' => 'Historique de connexion des utilisateurs'],
['Type' => 'LABEL', 'code' => 'Login_Time', 'Anglais' => 'Login Time', 'Francais' => 'Heure de connexion'],
['Type' => 'LABEL', 'code' => 'Logout_Time', 'Anglais' => 'Logout Time', 'Francais' => 'Heure de déconnexion'],
['Type' => 'LABEL', 'code' => 'invoiced_task', 'Anglais' => 'Invoiced task', 'Francais' => 'Tâches Facturées'],
['Type' => 'LABEL', 'code' => 'List_of_invoices', 'Anglais' => 'List of invoices', 'Francais' => 'Liste des factures'],
['Type' => 'LABEL', 'code' => 'Company_Id', 'Anglais' => 'Company ID', 'Francais' => 'Id entreprise'],
['Type' => 'LABEL', 'code' => 'Operation', 'Anglais' => 'Operation', 'Francais' => 'Opération'],
['Type' => 'LABEL', 'code' => 'payment_method', 'Anglais' => 'payment method', 'Francais' => 'Méthode de paiement'],
['Type' => 'LABEL', 'code' => 'amount', 'Anglais' => 'Amount', 'Francais' => 'Montant'],
['Type' => 'LABEL', 'code' => 'Admin_name', 'Anglais' => 'Admin name', 'Francais' => 'Nom admin'],
['Type' => 'LABEL', 'code' => 'List_of_payments', 'Anglais' => 'List of payments', 'Francais' => 'Liste des paiements'],
['Type' => 'LABEL', 'code' => 'payment_pending', 'Anglais' => 'payment pending', 'Francais' => 'paiement en attente'],
['Type' => 'LABEL', 'code' => 'validated_payment', 'Anglais' => 'validated payment', 'Francais' => 'paiement validé'],
['Type' => 'LABEL', 'code' => 'PAYHIST', 'Anglais' => 'All Payments', 'Francais' => 'Tous Mes Paiements'],
['Type' => 'LABEL', 'code' => 'see_invoice', 'Anglais' => 'see invoice', 'Francais' => 'voir facture'],
['Type' => 'LABEL', 'code' => 'Tickets_Processed', 'Anglais' => 'Tickets Processed', 'Francais' => 'Billets traités'],
['Type' => 'LABEL', 'code' => 'Open', 'Anglais' => 'Open', 'Francais' => 'Ouvert'],
['Type' => 'LABEL', 'code' => 'Companies_List', 'Anglais' => 'Companies List', 'Francais' => 'Liste des entreprises'],
['Type' => 'LABEL', 'code' => 'Dashboard', 'Anglais' => 'Dashboard', 'Francais' => 'Tableau de bord'],
['Type' => 'LABEL', 'code' => 'General_view', 'Anglais' => 'General view', 'Francais' => 'Vue générale'],
['Type' => 'OBJECT', 'code' => 'Our_clients', 'Anglais' => 'Our clients', 'Francais' => 'Nos clients'],
['Type' => 'OBJECT', 'code' => 'Our_contracts', 'Anglais' => 'Our contracts', 'Francais' => 'Nos contrats'],
['Type' => 'OBJECT', 'code' => 'Transactions', 'Anglais' => 'Transactions', 'Francais' => 'Transactions'],
['Type' => 'OBJECT', 'code' => 'Compta_Achats', 'Anglais' => 'Purchases', 'Francais' => 'Achats'],
['Type' => 'OBJECT', 'code' => 'Compta_Ventes', 'Anglais' => 'Sales', 'Francais' => 'Ventes'],
['Type' => 'OBJECT', 'code' => 'Compta_Tresorerie', 'Anglais' => 'Treasury', 'Francais' => 'Trésorerie'],
['Type' => 'OBJECT', 'code' => 'Compta_Operations_Diverses', 'Anglais' => 'Miscellaneous Operations', 'Francais' => 'Opérations Diverses'],
['Type' => 'OBJECT', 'code' => 'Config_Fournisseur', 'Anglais' => 'Supplier Configuration', 'Francais' => 'Configuration fournisseur'],
['Type' => 'OBJECT', 'code' => 'Business_Plan', 'Anglais' => 'Business Plan', 'Francais' => 'Business Plan'],
['Type' => 'OBJECT', 'code' => 'Comptabilite', 'Anglais' => 'Accounting', 'Francais' => 'Comptabilité'],
['Type' => 'OBJECT', 'code' => 'Comptes_Transaction', 'Anglais' => 'Transaction Accounts', 'Francais' => 'Comptes de Transaction'],
['Type' => 'OBJECT', 'code' => 'Our_subcontracts', 'Anglais' => 'Our subcontracts', 'Francais' => 'Nos Sous-Contrats'],
['Type' => 'OBJECT', 'code' => 'Our_Services', 'Anglais' => 'Our Services', 'Francais' => 'Nos Services'],
// ...existing code...
['Type' => 'LABEL', 'code' => 'Account', 'Anglais' => 'Account', 'Francais' => 'Compte'],
['Type' => 'OBJECT', 'code' => 'User_list', 'Anglais' => 'Users list', 'Francais' => 'Liste des utilisateurs'],
['Type' => 'LABEL', 'code' => 'Billing', 'Anglais' => 'Billing', 'Francais' => 'Facturation'],
['Type' => 'LABEL', 'code' => 'Paiement', 'Anglais' => 'payments', 'Francais' => 'Paiements'],
['Type' => 'LABEL', 'code' => 'Ticketing', 'Anglais' => 'Ticketing', 'Francais' => 'Ticketing'],
['Type' => 'LABEL', 'code' => 'TicketingTitle', 'Anglais' => 'Ticketing', 'Francais' => 'Tickets'],
['Type' => 'LABEL', 'code' => 'Ticket_Create', 'Anglais' => 'Ticket Create', 'Francais' => 'Créer un ticket'],
['Type' => 'LABEL', 'code' => 'Ticket_pending', 'Anglais' => 'Ticket pending', 'Francais' => 'Tickets en attente'],
['Type' => 'LABEL', 'code' => 'Notifications', 'Anglais' => 'Notifications', 'Francais' => 'Notifications'],
['Type' => 'LABEL', 'code' => 'View_all_notif', 'Anglais' => 'View all notifications', 'Francais' => 'Afficher toutes les notifications'],
['Type' => 'LABEL', 'code' => 'Signout', 'Anglais' => 'Sign out', 'Francais' => 'Se déconnecter'],
['Type' => 'LABEL', 'code' => 'Add_personal_acc', 'Anglais' => 'Add personal account', 'Francais' => 'Ajouter un compte personnel'],
['Type' => 'LABEL', 'code' => 'Turn_night_Mode', 'Anglais' => 'Turn night mode', 'Francais' => 'Activez le mode nuit'],
['Type' => 'LABEL', 'code' => 'Turn_RTL_Mode', 'Anglais' => 'Turn RTL Mode', 'Francais' => 'Activez le mode RTL'],
['Type' => 'LABEL', 'code' => 'ACTIVE', 'Anglais' => 'Active', 'Francais' => 'Active'],
['Type' => 'LABEL', 'code' => 'Add_Paiement', 'Anglais' => 'Add payment', 'Francais' => 'Ajouter un Paiement'],
['Type' => 'OBJECT', 'code' => 'Account_Balance', 'Anglais' => 'Account Balance', 'Francais' => 'Solde Compte'],
['Type' => 'LABEL', 'code' => 'Confirm_Password', 'Anglais' => 'Confirm Password', 'Francais' => 'Confirmer mot de passe'],
['Type' => 'OBJECT', 'code' => 'Make_New_Pass', 'Anglais' => 'Make a new password', 'Francais' => 'Créer un nouveau mot de passe'],
['Type' => 'LABEL', 'code' => 'Gestion_users', 'Anglais' => 'Users management', 'Francais' => 'Gestion des utilisateurs'],
['Type' => 'LABEL', 'code' => 'dashoboard_tickets', 'Anglais' => 'dashoboar tickets', 'Francais' => 'Accueil Ticketing'],
['Type' => 'LABEL', 'code' => 'ticket_invoiced', 'Anglais' => 'Ticket Invoiced', 'Francais' => 'Tickets Facturés'],
['Type' => 'LABEL', 'code' => 'Id_Tasks', 'Anglais' => 'Id Task', 'Francais' => 'Id Tâches'],
['Type' => 'LABEL', 'code' => 'ticket_facturation', 'Anglais' => 'receipt invoice', 'Francais' => 'Ticket Facturé'],
['Type' => 'LABEL', 'code' => 'invoice', 'Anglais' => 'Invoice', 'Francais' => 'Facturer'],
['Type' => 'LABEL', 'code' => 'Num', 'Anglais' => 'N°', 'Francais' => 'N°'],
['Type' => 'LABEL', 'code' => 'Tickets_close', 'Anglais' => 'Close tickets', 'Francais' => 'Tickets fermés'],
['Type' => 'LABEL', 'code' => 'Owner', 'Anglais' => 'Owner', 'Francais' => 'Propriétaire'],
['Type' => 'LABEL', 'code' => 'idUSER', 'Anglais' => 'Users Id', 'Francais' => 'Identification Utilisateurs'],
['Type' => 'OBJECT', 'code' => 'Validation_Request', 'Anglais' => 'Validation', 'Francais' => 'Validation'],
['Type' => 'LABEL', 'code' => 'Ticket_Chat', 'Anglais' => 'Ticket Chat', 'Francais' => 'Messagerie ticket'],
['Type' => 'LABEL', 'code' => 'new_attachement', 'Anglais' => 'New Attachement', 'Francais' => 'Nouvelles pièces jointes'],
['Type' => 'LABEL', 'code' => 'new_answer', 'Anglais' => 'New Answer', 'Francais' => 'Nouvelle réponse'],
['Type' => 'LABEL', 'code' => 'Beneficiary_type', 'Anglais' => 'Beneficiary type', 'Francais' => 'Type bénéficiaire'],
['Type' => 'LABEL', 'code' => 'destination_country', 'Anglais' => 'Destination country', 'Francais' => 'Pays destinataire'],
['Type' => 'LABEL', 'code' => 'payement_proof', 'Anglais' => 'payement proof', 'Francais' => 'Preuve de payement'],
['Type' => 'LABEL', 'code' => 'Online_Users', 'Anglais' => 'Users Online', 'Francais' => 'Utilisateurs en ligne'],
['Type' => 'LABEL', 'code' => 'National', 'Anglais' => 'National', 'Francais' => 'National'],
['Type' => 'LABEL', 'code' => 'International', 'Anglais' => 'International', 'Francais' => 'International'],
['Type' => 'LABEL', 'code' => 'locality_compagny', 'Anglais' => 'Locality compagny', 'Francais' => 'Localité entreprise'],
['Type' => 'OBJECT', 'code' => 'Ticket_is_closed', 'Anglais' => 'The following ticket has been closed.', 'Francais' => 'Ce ticket est fermé.'],
['Type' => 'LABEL', 'code' => 'eng', 'Anglais' => 'Switch on french', 'Francais' => 'Basculer en anglais'],
['Type' => 'LABEL', 'code' => 'Fr', 'Anglais' => 'FR', 'Francais' => 'FR'],
['Type' => 'LABEL', 'code' => 'State', 'Anglais' => 'Visibility', 'Francais' => 'Visibilité'],
['Type' => 'LABEL', 'code' => 'View', 'Anglais' => 'View', 'Francais' => 'Voir'],
['Type' => 'OBJECT', 'code' => 'View_Details', 'Anglais' => 'View Details', 'Francais' => 'Voir les détails'],
['Type' => 'LABEL', 'code' => 'beneficiary_country', 'Anglais' => 'beneficiary country', 'Francais' => 'pays bénificiaire'],
['Type' => 'LABEL', 'code' => 'Issuing_bank', 'Anglais' => 'Issuing bank', 'Francais' => 'banque émettrice'],
['Type' => 'LABEL', 'code' => 'choose_a_bank', 'Anglais' => 'choose a bank', 'Francais' => 'choisir une banque'],
['Type' => 'LABEL', 'code' => 'Save', 'Anglais' => 'Save', 'Francais' => 'Enregistrer'],
['Type' => 'LABEL', 'code' => 'Manage_efficiently', 'Anglais' => 'Manage your services and deliverables efficiently', 'Francais' => 'Gérez vos services et livrables de manière efficace'],
['Type' => 'LABEL', 'code' => 'Contract_Management', 'Anglais' => ' Contract Services Management', 'Francais' => ' Gestion des Services Contrat'],
['Type' => 'LABEL', 'code' => 'Adhoc_services', 'Anglais' => 'Adhoc services', 'Francais' => 'Services Adhoc'],
['Type' => 'LABEL', 'code' => 'Total_Services', 'Anglais' => 'Total Services', 'Francais' => 'Total Services'],
['Type' => 'LABEL', 'code' => 'Recurring_Services', 'Anglais' => 'Recurring Services', 'Francais' => 'Services Récurrents'],
['Type' => 'LABEL', 'code' => 'pik_bank', 'Anglais' => 'Choose a bank', 'Francais' => 'Choisir une banque'],
['Type' => 'LABEL', 'code' => 'first_task_deadline', 'Anglais' => 'First task deadline', 'Francais' => 'Echéance de la première tâche'],
['Type' => 'LABEL', 'code' => 'last_task_due', 'Anglais' => 'Last task due', 'Francais' => 'Echéance de la dernière tâche'],
['Type' => 'LABEL', 'code' => 'filter_by_contract', 'Anglais' => 'Filter by contract', 'Francais' => 'Filtrer par contrat'],
['Type' => 'LABEL', 'code' => 'filter_by_user', 'Anglais' => 'Filter by user', 'Francais' => 'Filtrer par utilisateur'],
['Type' => 'LABEL', 'code' => 'Currency', 'Anglais' => 'Currency', 'Francais' => 'Dévises'],
['Type' => 'LABEL', 'code' => 'add_sub_contract', 'Anglais' => 'Add sub contract', 'Francais' => 'Ajouter sous contrat'],
['Type' => 'LABEL', 'code' => 'Deadline', 'Anglais' => 'Deadline', 'Francais' => 'Date limite'],
['Type' => 'OBJECT', 'code' => 'Opened_and_unassigned', 'Anglais' => 'Opened and unassigned', 'Francais' => 'Ouvert et non assigné'],
['Type' => 'OBJECT', 'code' => 'Value', 'Anglais' => 'Value', 'Francais' => 'Valeur'],
['Type' => 'LABEL', 'code' => 'Config_Ticket', 'Anglais' => 'Ticketing configuration', 'Francais' => 'Configuration du ticketing'],
['Type' => 'LABEL', 'code' => 'Description', 'Anglais' => 'Description', 'Francais' => 'Description'],
['Type' => 'LABEL', 'code' => 'My_Folder', 'Anglais' => 'My Folder', 'Francais' => 'Mes Dossiers'],
['Type' => 'LABEL', 'code' => 'Add_Folder', 'Anglais' => 'Add Folder', 'Francais' => 'Ajouter Dossiers'],
['Type' => 'LABEL', 'code' => 'Type_Folder', 'Anglais' => 'Type Folder', 'Francais' => 'Type de Dossiers'],
['Type' => 'LABEL', 'code' => 'Consultant', 'Anglais' => 'Consultant', 'Francais' => 'Consultant'],
['Type' => 'LABEL', 'code' => 'Project', 'Anglais' => 'Project', 'Francais' => 'Projet'],
['Type' => 'LABEL', 'code' => 'Messaging', 'Anglais' => 'Messaging', 'Francais' => 'Messagerie'],
['Type' => 'LABEL', 'code' => 'My_projects', 'Anglais' => 'My projects', 'Francais' => 'Mes projets'],
['Type' => 'LABEL', 'code' => 'General_background', 'Anglais' => 'general background', 'Francais' => 'context général'],
['Type' => 'LABEL', 'code' => 'Specifications', 'Anglais' => 'Specifications', 'Francais' => 'Cahier de charge'],
['Type' => 'LABEL', 'code' => 'Add_Project', 'Anglais' => 'Add Project', 'Francais' => 'Ajouter projets'],
['Type' => 'LABEL', 'code' => 'Menu', 'Anglais' => 'Menu', 'Francais' => 'Menu'],
['Type' => 'LABEL', 'code' => 'Case_tracking', 'Anglais' => 'Case tracking', 'Francais' => 'Suivi de Dossiers'],
['Type' => 'LABEL', 'code' => 'French', 'Anglais' => 'French', 'Francais' => 'français'],
['Type' => 'LABEL', 'code' => 'English', 'Anglais' => 'English', 'Francais' => 'Anglais'],
['Type' => 'LABEL', 'code' => 'My_countries', 'Anglais' => 'My countries', 'Francais' => 'Mes Pays'],
['Type' => 'LABEL', 'code' => 'Taxes', 'Anglais' => 'Taxes', 'Francais' => 'Impots taxes'],
['Type' => 'LABEL', 'code' => 'Amount_to_pay', 'Anglais' => 'Amount to pay', 'Francais' => 'Somme à payer'],
['Type' => 'LABEL', 'code' => 'Recipient', 'Anglais' => 'Recipient', 'Francais' => 'Destinataire'],
['Type' => 'LABEL', 'code' => 'Tax_and_social_calendar', 'Anglais' => 'Tax and social calendar', 'Francais' => 'Calendrier fiscal et social'],
['Type' => 'LABEL', 'code' => 'users', 'Anglais' => 'Users', 'Francais' => 'Utilisateurs'],
['Type' => 'LABEL', 'code' => 'List_of_Tasks_by', 'Anglais' => 'List of Tasks by', 'Francais' => 'Liste des Tâches du'],
['Type' => 'LABEL', 'code' => 'Calendar_of_tasks', 'Anglais' => 'Schedule of tasks', 'Francais' => 'Calendrier des tâches'],
['Type' => 'LABEL', 'code' => 'Taches_imminentes', 'Anglais' => 'Upcoming tasks', 'Francais' => 'Taches imminentes'],
['Type' => 'LABEL', 'code' => 'Total_suspends', 'Anglais' => 'Total pending tasks', 'Francais' => 'Total tâches en suspends'],
['Type' => 'LABEL', 'code' => 'Total_close', 'Anglais' => 'Total closed tasks', 'Francais' => 'Total tâches clôturées'],
['Type' => 'LABEL', 'code' => 'Overall_task_progress_percentage', 'Anglais' => 'Overall task progress percentage', 'Francais' => 'Pourcentage global d\'évolution des tâches'],
['Type' => 'LABEL', 'code' => 'Work_progress_by_country', 'Anglais' => 'Work progress by country', 'Francais' => 'Avancement des Travaux par pays'],
['Type' => 'LABEL', 'code' => 'Calendar_of_tax_and_social_obligations', 'Anglais' => 'Calendar of tax and social obligations', 'Francais' => 'Calendrier des obligations fiscales et sociales'],
['Type' => 'LABEL', 'code' => 'Schedule_of_tasks', 'Anglais' => 'Schedule of tasks', 'Francais' => 'Planning des tâches'],
['Type' => 'LABEL', 'code' => 'Tasks_by_country', 'Anglais' => 'Tasks by country', 'Francais' => 'Tâches par pays'],
['Type' => 'LABEL', 'code' => 'Cheklists', 'Anglais' => 'Cheklists', 'Francais' => 'Cheklists'],
['Type' => 'LABEL', 'code' => 'Works_lisT', 'Anglais' => 'Works list', 'Francais' => 'Liste travaux'],
['Type' => 'LABEL', 'code' => 'Responsible', 'Anglais' => 'Responsible', 'Francais' => 'Résponsable'],
['Type' => 'LABEL', 'code' => 'Collaborater', 'Anglais' => 'Collaborater', 'Francais' => 'Collaborateur'],
['Type' => 'LABEL', 'code' => 'Datesave', 'Anglais' => 'Date_save', 'Francais' => 'Date_save'],
// ...existing code...
['Type' => 'LABEL', 'code' => 'Intervention_period', 'Anglais' => 'Intervention period', 'Francais' => 'Période intervention'],
['Type' => 'LABEL', 'code' => 'Closing_Date', 'Anglais' => 'Closing Date', 'Francais' => 'Date de clôture'],
['Type' => 'LABEL', 'code' => 'Client_name', 'Anglais' => 'Client name', 'Francais' => 'Nom du client'],
['Type' => 'LABEL', 'code' => 'Firm_name', 'Anglais' => 'Firm name', 'Francais' => 'Nom du cabinet'],
['Type' => 'LABEL', 'code' => 'Add_works', 'Anglais' => 'Add works', 'Francais' => 'Ajouter travaux'],
['Type' => 'LABEL', 'code' => 'Period', 'Anglais' => 'Period', 'Francais' => 'Période'],
['Type' => 'LABEL', 'code' => 'File_closures', 'Anglais' => 'File closures', 'Francais' => 'Bouclages dossiers'],
['Type' => 'LABEL', 'code' => 'Add_closures', 'Anglais' => 'Add closures', 'Francais' => 'Ajouter bouclage'],
['Type' => 'LABEL', 'code' => 'Comments', 'Anglais' => 'Notes', 'Francais' => 'Notes'],
['Type' => 'LABEL', 'code' => 'Details_of_the_work', 'Anglais' => 'Details of the work', 'Francais' => 'Détail des travaux'],
['Type' => 'LABEL', 'code' => 'Essential_control', 'Anglais' => 'Essential control', 'Francais' => 'contrôle essentiel'],
['Type' => 'LABEL', 'code' => 'Essential_control_list', 'Anglais' => 'Essential control list', 'Francais' => 'liste contrôle essentiel'],
['Type' => 'LABEL', 'code' => 'Add_control', 'Anglais' => 'Add control', 'Francais' => 'Ajouter contrôle'],
['Type' => 'LABEL', 'code' => 'The_essential_controls', 'Anglais' => 'The essential controls', 'Francais' => 'Les contrôles essentiels'],
['Type' => 'LABEL', 'code' => 'Consigne_essential_control', 'Anglais' => 'Without being mandatory, whatever the mission of the chartered accountant, it is strongly advised to implement at least these indicative controls. Of course, these essential controls must be studied in the light of the materiality threshold.', 'Francais' => 'Sans revêtir un caractère obligatoire, quelle que soit la mission de l\'expert-comptable, il est fortement conseillé de mettre en œuvre au moins ces contrôles indicatifs. Bien entendu, ces contrôles essentiels doivent être étudiés à la lumière du seuil de signification.'],
['Type' => 'LABEL', 'code' => 'General_observations', 'Anglais' => 'General observations', 'Francais' => 'Observations générales'],
['Type' => 'LABEL', 'code' => 'Year', 'Anglais' => 'Year', 'Francais' => 'Année'],
['Type' => 'LABEL', 'code' => 'Tasks_to_complete_for_each_entry_period', 'Anglais' => 'Tasks to complete for each entry period', 'Francais' => 'Tâches à accomplir pour chaque période de saisi'],
['Type' => 'LABEL', 'code' => 'Final_loop_detail', 'Anglais' => 'Final loop detail', 'Francais' => 'Détail bouclage final'],
['Type' => 'LABEL', 'code' => 'Loop_List', 'Anglais' => 'Loop List', 'Francais' => 'Liste bouclage'],
['Type' => 'LABEL', 'code' => 'Date_save', 'Anglais' => 'Date save', 'Francais' => 'Date de sauvegarde'],
['Type' => 'LABEL', 'code' => 'Update_service', 'Anglais' => 'Update Services', 'Francais' => 'Mise à jour Services'],
['Type' => 'LABEL', 'code' => 'Add_facture_service', 'Anglais' => 'Add Service Invoice', 'Francais' => 'Ajouter Facture Service'],
['Type' => 'LABEL', 'code' => 'Invoices_in_progress', 'Anglais' => 'Invoices in progress', 'Francais' => 'Factures en cours'],
['Type' => 'LABEL', 'code' => 'Invoices_finish', 'Anglais' => 'Invoices finish', 'Francais' => 'Factures terminer'],
['Type' => 'LABEL', 'code' => 'GENERER', 'Anglais' => 'Generate', 'Francais' => 'Générer'],
['Type' => 'LABEL', 'code' => 'Ris_Hors_taxes', 'Anglais' => 'Amount (HT)', 'Francais' => 'Montant (HT)'],
['Type' => 'LABEL', 'code' => 'Total', 'Anglais' => 'Total', 'Francais' => 'Total'],
['Type' => 'LABEL', 'code' => 'Remise', 'Anglais' => 'Discount', 'Francais' => 'Remise'],
['Type' => 'LABEL', 'code' => 'TVA', 'Anglais' => 'TVA', 'Francais' => 'TVA'],
['Type' => 'LABEL', 'code' => 'Select_a_country', 'Anglais' => 'Select a country', 'Francais' => 'Sélectionner un pays'],
['Type' => 'LABEL', 'code' => 'Select_an_entity', 'Anglais' => 'Select an entity', 'Francais' => 'Sélectionner une entité'],
['Type' => 'LABEL', 'code' => 'Search_filters', 'Anglais' => 'Search filters', 'Francais' => 'Filtres de recherche'],
['Type' => 'LABEL', 'code' => 'Total_TTC', 'Anglais' => 'Amount (TTC)', 'Francais' => 'Montant (TTC)'],
['Type' => 'LABEL', 'code' => 'Montant_dû', 'Anglais' => 'Amount due', 'Francais' => 'Montant dû'],
['Type' => 'LABEL', 'code' => 'Unit_cost', 'Anglais' => 'Unit Cost', 'Francais' => 'Coût unitaire'],
['Type' => 'LABEL', 'code' => 'Qtv', 'Anglais' => 'Qty.', 'Francais' => 'Qty.'],
['Type' => 'LABEL', 'code' => 'Payment_history', 'Anglais' => 'Payment history.', 'Francais' => 'Historique des Paiements.'],
['Type' => 'LABEL', 'code' => 'S_No', 'Anglais' => 'S.No', 'Francais' => 'S.No'],
['Type' => 'LABEL', 'code' => 'Invoices_pay', 'Anglais' => 'Invoices Pay', 'Francais' => 'Facture Payer'],
['Type' => 'LABEL', 'code' => 'Invoice_Cancel', 'Anglais' => 'Invoice Cancel', 'Francais' => 'Facture Annuller'],
['Type' => 'LABEL', 'code' => 'Fact_All_Service', 'Anglais' => 'Billing by department', 'Francais' => 'Facture par services'],
['Type' => 'LABEL', 'code' => 'Taux_change', 'Anglais' => 'Exchange rates', 'Francais' => 'Taux changes'],
['Type' => 'LABEL', 'code' => 'add_taux', 'Anglais' => 'Add Exchange Rate', 'Francais' => 'Ajouter Taux Change'],
['Type' => 'LABEL', 'code' => 'De', 'Anglais' => 'De', 'Francais' => 'De'],
['Type' => 'LABEL', 'code' => 'Montant_XOF', 'Anglais' => 'Amount XOF', 'Francais' => 'Montant_XOF'],
['Type' => 'LABEL', 'code' => 'Date_Change', 'Anglais' => 'Date Change', 'Francais' => 'Date Change'],
['Type' => 'LABEL', 'code' => 'Folder_Name', 'Anglais' => 'Folder Name', 'Francais' => 'Nom du Dossier'],
['Type' => 'LABEL', 'code' => 'DOCUMENTPARTAGE', 'Anglais' => 'Shared Documents', 'Francais' => 'Documents Partagés'],
['Type' => 'LABEL', 'code' => 'Companies', 'Anglais' => 'Companies', 'Francais' => 'Entreprises'],
['Type' => 'OBJECT', 'code' => 'New_Message', 'Anglais' => 'New Message', 'Francais' => 'Nouveau Message'],
['Type' => 'OBJECT', 'code' => 'Request_Tracking', 'Anglais' => 'Request Tracking', 'Francais' => 'Suivi des Rêquêtes'],
['Type' => 'OBJECT', 'code' => 'Responsible_account', 'Anglais' => 'Responsible account', 'Francais' => 'Compte responsable'],
['Type' => 'OBJECT', 'code' => 'USD', 'Anglais' => 'USD', 'Francais' => 'USD'],
['Type' => 'OBJECT', 'code' => 'EURO', 'Anglais' => 'Euro', 'Francais' => 'Euro'],
['Type' => 'OBJECT', 'code' => 'Task_Tracking', 'Anglais' => 'Task Tracking', 'Francais' => 'Suivi des tâches'],
['Type' => 'OBJECT', 'code' => 'New_Name', 'Anglais' => 'New Name', 'Francais' => 'Nouveau Nom'],
['Type' => 'LABEL', 'code' => 'SUIVI_RAPPORT', 'Anglais' => 'Report follow-up', 'Francais' => 'Suivi Rapport'],
['Type' => 'LABEL', 'code' => 'ADD_FILES_COMPANY_PAYS', 'Anglais' => 'Add company files', 'Francais' => 'Ajouter les fichiers de l\'entreprise'],
['Type' => 'LABEL', 'code' => 'Add_FILE', 'Anglais' => 'Add FILE', 'Francais' => 'Ajout Fichier'],
['Type' => 'LABEL', 'code' => 'Report_type', 'Anglais' => 'Report Type', 'Francais' => 'Type de Rapport'],
['Type' => 'LABEL', 'code' => 'Upload_File', 'Anglais' => 'Upload File', 'Francais' => 'Télécharger le fichier'],
['Type' => 'LABEL', 'code' => 'FILES_ALREADY_ADDED', 'Anglais' => 'FILES ALREADY ADDED', 'Francais' => 'FICHIERS DÉJÀ AJOUTÉS'],
['Type' => 'LABEL', 'code' => 'Config', 'Anglais' => 'Configuration', 'Francais' => 'Configuration'],
['Type' => 'LABEL', 'code' => 'CONFIGURATIONTITLE', 'Anglais' => 'Settings', 'Francais' => 'Configuration'],
['Type' => 'LABEL', 'code' => 'CONFIGURATION_LIVRABLES_TACHES_TITLE', 'Anglais' => 'Deliverables & Tasks Settings', 'Francais' => 'Configuration des Livrables et Tâches '],
['Type' => 'LABEL', 'code' => 'Services_Missions', 'Anglais' => 'Services or Missions', 'Francais' => 'Services ou Missions'],
['Type' => 'LABEL', 'code' => 'Calendrier_Travaux', 'Anglais' => 'Work Schedule', 'Francais' => 'Calendrier Des Travaux'],
['Type' => 'LABEL', 'code' => 'Alertes', 'Anglais' => 'Alertes', 'Francais' => 'Alertes'],
['Type' => 'LABEL', 'code' => 'Portefeu_Entr', 'Anglais' => 'Business Portfolio', 'Francais' => 'Portefeuille Des Entreprises'],
['Type' => 'LABEL', 'code' => 'Gestion_Client', 'Anglais' => 'Customer Account Management', 'Francais' => 'Gestion des Comptes Client'],
['Type' => 'LABEL', 'code' => 'File_Permission', 'Anglais' => 'File Permission', 'Francais' => 'Dossier Permission'],
['Type' => 'LABEL', 'code' => 'Works', 'Anglais' => 'Works', 'Francais' => 'Travaux'],
['Type' => 'LABEL', 'code' => 'Complete_tasks', 'Anglais' => 'Complete tasks', 'Francais' => 'Tâches complètes'],
['Type' => 'LABEL', 'code' => 'Startup_Year', 'Anglais' => 'Startup Year', 'Francais' => 'Année De Demarrage'],
['Type' => 'LABEL', 'code' => 'Duration_Service', 'Anglais' => 'Duration of Service', 'Francais' => 'Durée Du Service'],
['Type' => 'LABEL', 'code' => 'Concerned_Companies', 'Anglais' => 'Concerned Companies', 'Francais' => 'Entreprises Concernées'],
['Type' => 'LABEL', 'code' => 'Add_Alertes', 'Anglais' => 'New Alert', 'Francais' => 'Nouvelle Alerte'],
['Type' => 'OBJECT', 'code' => 'New', 'Anglais' => 'New', 'Francais' => 'Nouveau'],
['Type' => 'OBJECT', 'code' => 'NEWM', 'Anglais' => 'New', 'Francais' => 'Nouveau'],
['Type' => 'OBJECT', 'code' => 'NEWF', 'Anglais' => 'New', 'Francais' => 'Nouvelle'],
['Type' => 'OBJECT', 'code' => 'Content', 'Anglais' => 'Content', 'Francais' => 'Contenu'],
['Type' => 'LABEL', 'code' => 'Date_Updated', 'Anglais' => 'Date Updated', 'Francais' => 'Date de MAJ'],
['Type' => 'LABEL', 'code' => 'Limit_Number_Account', 'Anglais' => 'Limit Number Account', 'Francais' => 'Limite Nombre Compte'],
['Type' => 'LABEL', 'code' => 'Number_Account_created', 'Anglais' => 'Number Account created', 'Francais' => 'Nombre Compte cree'],
['Type' => 'LABEL', 'code' => 'Registration_date', 'Anglais' => 'Registration date', 'Francais' => 'Date d\'inscription'],
['Type' => 'LABEL', 'code' => 'Portfolio', 'Anglais' => 'Portfolio', 'Francais' => 'Portefeuille'],
['Type' => 'LABEL', 'code' => 'ADD_LIVRABLE', 'Anglais' => 'Add Delivrable', 'Francais' => 'Ajouter un livrable'],
['Type' => 'LABEL', 'code' => 'Read_more', 'Anglais' => 'Read more', 'Francais' => 'En savoir plus'],
['Type' => 'LABEL', 'code' => 'Tax_Contribution', 'Anglais' => 'Tax Contribution', 'Francais' => 'Cotisation Fiscale'],
['Type' => 'LABEL', 'code' => 'Social_Contribution', 'Anglais' => 'Social Contribution', 'Francais' => 'Cotisation Sociale'],
['Type' => 'LABEL', 'code' => 'Latest_accounting_updates', 'Anglais' => 'Latest accounting updates', 'Francais' => 'Dernières mises à jour comptables'],
['Type' => 'LABEL', 'code' => 'Add_rapport', 'Anglais' => 'Add Report', 'Francais' => 'Ajouter Rapport'],
['Type' => 'LABEL', 'code' => 'Show_Deliverable', 'Anglais' => 'Show Deliverable', 'Francais' => 'Afficher Livrable'],
['Type' => 'LABEL', 'code' => 'LIVRABLES', 'Anglais' => 'Deliverables', 'Francais' => 'Livrables'],
['Type' => 'LABEL', 'code' => 'FEUILLE_DE_TEMPS', 'Anglais' => 'Feuille de Temps', 'Francais' => 'Feuille de Temps'],
['Type' => 'LABEL', 'code' => 'Deliverable_Name', 'Anglais' => 'Deliverable', 'Francais' => 'Livrable'],
['Type' => 'LABEL', 'code' => 'Deliverable_files', 'Anglais' => 'Deliverable files', 'Francais' => 'Livrable dossiers'],
['Type' => 'LABEL', 'code' => 'Deliverable_group_details', 'Anglais' => 'Deliverable group details', 'Francais' => 'Détails du groupe de livrables'],
['Type' => 'LABEL', 'code' => 'Occurrences', 'Anglais' => 'Occurrences', 'Francais' => 'Occurrences'],
['Type' => 'LABEL', 'code' => 'Task_Name', 'Anglais' => 'Task', 'Francais' => 'Tâche'],
['Type' => 'LABEL', 'code' => 'Add_task_name', 'Anglais' => 'Add Task Name', 'Francais' => 'Ajouter Nom de la Tâche'],
['Type' => 'label', 'code' => 'LIVRABLE', 'Anglais' => 'Livrable', 'Francais' => 'Livrable'],
['Type' => 'label', 'code' => 'DETAILGROUPLIVRABLE', 'Anglais' => 'Deliverable group details', 'Francais' => 'Détails du groupe de livrables'],
['Type' => 'LABEL', 'code' => 'OCCURENCE', 'Anglais' => 'Occurence', 'Francais' => 'Occurence'],
['Type' => 'label', 'code' => 'MULTIPLEFILES', 'Anglais' => 'You can select multiple files (jpg, png, pdf, docx, etc.)...', 'Francais' => 'Vous pouvez sélectionner plusieurs fichiers (jpg, png, pdf, docx, etc.)...'],
['Type' => 'LABEL', 'code' => 'Due_date', 'Anglais' => 'Due date', 'Francais' => 'Échéance'],
['Type' => 'OBJECT', 'code' => 'Task_detail', 'Anglais' => 'Task detail', 'Francais' => 'Détail tâche'],
['Type' => 'OBJECT', 'code' => 'Add_Pattern', 'Anglais' => 'Add Pattern', 'Francais' => 'Ajouter Motif'],
['Type' => 'OBJECT', 'code' => 'Recurrence_type', 'Anglais' => 'Recurrence type', 'Francais' => 'Type de récurrence'],
['Type' => 'OBJECT', 'code' => 'Monthly', 'Anglais' => 'Monthly (every month on the same day)', 'Francais' => 'Mensuelle (chaque mois le même jour)'],
['Type' => 'OBJECT', 'code' => 'Bimonthly', 'Anglais' => 'Bimonthly (every 2 months)', 'Francais' => 'Bimestrielle (chaque 2 mois)'],
['Type' => 'OBJECT', 'code' => 'Quarterly', 'Anglais' => 'Quarterly (every 3 months)', 'Francais' => 'Trimestrielle (chaque 3 mois)'],
['Type' => 'OBJECT', 'code' => 'Semi_annual', 'Anglais' => 'Semi-annual (every 6 months)', 'Francais' => 'Semestrielle (chaque 6 mois)'],
['Type' => 'OBJECT', 'code' => 'Weekly', 'Anglais' => 'Weekly (every week)\r\n', 'Francais' => 'Hebdomadaire (chaque semaine)'],
['Type' => 'OBJECT', 'code' => 'Annual', 'Anglais' => 'Annual (every year on the same day)\r\n', 'Francais' => 'Annuelle (chaque année le même jour)'],
['Type' => 'LABEL', 'code' => 'Duration_Service ', 'Anglais' => 'Duration of Service ', 'Francais' => 'Durée Du Service '],
['Type' => 'LABEL', 'code' => 'User_Information', 'Anglais' => 'User informations', 'Francais' => 'Informations de l\'utilisateur'],
['Type' => 'LABEL', 'code' => 'Assigned_Countries', 'Anglais' => 'Assigned Countries', 'Francais' => 'Pays attribués'],
['Type' => 'LABEL', 'code' => 'Folder_Permission', 'Anglais' => 'Folders Permission', 'Francais' => 'Autorisation des dossiers '],
['Type' => 'label', 'code' => 'Control_Reports', 'Anglais' => 'Control Reports', 'Francais' => 'Rapports de Contrôles'],
['Type' => 'LABEL', 'code' => 'WK_OUTSOURCING', 'Anglais' => 'ON WK OUTSOURCING', 'Francais' => 'SUR WK OUTSOURCING'],
['Type' => 'tablesql', 'code' => 'TACHES_ACCESS', 'Anglais' => 'tache_access', 'Francais' => 'tache_access'],
['Type' => 'LABEL', 'code' => 'ID_TACHE', 'Anglais' => 'Id_tache', 'Francais' => 'Id_tache'],
['Type' => 'LABEL', 'code' => 'ID_SERVICE', 'Anglais' => 'Id_service', 'Francais' => 'Id_service'],
['Type' => 'LABEL', 'code' => 'ID_ENTREPRISE', 'Anglais' => 'Id_Entreprise', 'Francais' => 'Id_Entreprise'],
['Type' => 'LABEL', 'code' => 'ID_PAYS', 'Anglais' => 'Id_pays', 'Francais' => 'Id_pays'],
['Type' => 'LABEL', 'code' => 'ID_CONTRAT', 'Anglais' => 'Id_contrat', 'Francais' => 'Id_contrat'],
['Type' => 'LABEL', 'code' => 'DATE_DE_DEBUT', 'Anglais' => 'Date_de_debut', 'Francais' => 'Date_de_debut'],
['Type' => 'LABEL', 'code' => 'DATE_DE_FIN', 'Anglais' => 'Date_de_fin', 'Francais' => 'Date_de_fin'],
['Type' => 'LABEL', 'code' => 'STATUT', 'Anglais' => 'Statut', 'Francais' => 'Statut'],
['Type' => 'LABEL', 'code' => 'DATE_VALIDATION', 'Anglais' => 'Date_validation', 'Francais' => 'Date_validation'],
['Type' => 'LABEL', 'code' => 'ID_ADMIN', 'Anglais' => 'Id_admin', 'Francais' => 'Id_admin'],
['Type' => 'LABEL', 'code' => 'ID_ETAT', 'Anglais' => 'Id_etat', 'Francais' => 'Id_etat'],
['Type' => 'LABEL', 'code' => 'URL', 'Anglais' => 'url', 'Francais' => 'Url'],
['Type' => 'LABEL', 'code' => 'DESCRIPTION', 'Anglais' => 'description', 'Francais' => 'Description'],
['Type' => 'LABEL', 'code' => 'TACHE_A_FAIRE', 'Anglais' => 'tache_a_faire', 'Francais' => 'tache_a_faire'],
['Type' => 'LABEL', 'code' => 'FREQUENCE', 'Anglais' => 'Frequence', 'Francais' => 'Frequence'],
['Type' => 'LABEL', 'code' => 'UNITE_FREQUENCE', 'Anglais' => 'Unite_Frequence', 'Francais' => 'Unite_Frequence'],
['Type' => 'LABEL', 'code' => 'DENOMINATION_SOCIALE', 'Anglais' => 'Denomination_sociale', 'Francais' => 'Denomination_sociale'],
['Type' => 'LABEL', 'code' => 'COL_DENOMINATION_SOCIALE', 'Anglais' => 'Denomination_sociale', 'Francais' => 'Denomination_sociale'],
['Type' => 'LABEL', 'code' => 'LOCALITE', 'Anglais' => 'Localite', 'Francais' => 'Localite'],
['Type' => 'LABEL', 'code' => 'ID_CONTRAT_UNITAIRE', 'Anglais' => 'Id_contrat_unitaire', 'Francais' => 'Id_contrat_unitaire'],
['Type' => 'LABEL', 'code' => 'SEMAINE', 'Anglais' => 'Semaine', 'Francais' => 'Semaine'],
['Type' => 'LABEL', 'code' => 'TACHE', 'Anglais' => 'tache', 'Francais' => 'tache'],
['Type' => 'LABEL', 'code' => 'TACHETitre', 'Anglais' => 'Task', 'Francais' => 'tache'],
['Type' => 'LABEL', 'code' => 'JOURS', 'Anglais' => 'Jours', 'Francais' => 'Jours'],
['Type' => 'LABEL', 'code' => 'Y', 'Anglais' => 'y', 'Francais' => 'y'],
['Type' => 'LABEL', 'code' => 'DAYS', 'Anglais' => 'days', 'Francais' => 'jours'],
['Type' => 'LABEL', 'code' => 'LabelAccess_entreprises', 'Anglais' => 'Access_entreprises', 'Francais' => 'Access_entreprises'],
['Type' => 'LABEL', 'code' => 'NOUVELLES_TACHES_PAR', 'Anglais' => 'Nouvelles taches par', 'Francais' => 'Nouvelles taches par'],
['Type' => 'LABEL', 'code' => 'M', 'Anglais' => 'm', 'Francais' => 'm'],
['Type' => 'LABEL', 'code' => 'DAY', 'Anglais' => 'day', 'Francais' => 'day'],
['Type' => 'LABEL', 'code' => 'D', 'Anglais' => 'd', 'Francais' => 'd'],
['Type' => 'LABEL', 'code' => 'WEEK', 'Anglais' => 'week', 'Francais' => 'week'],
['Type' => 'LABEL', 'code' => 'MONTH', 'Anglais' => 'month', 'Francais' => 'month'],
['Type' => 'LABEL', 'code' => 'MONTHS', 'Anglais' => 'months', 'Francais' => 'mois'],
['Type' => 'LABEL', 'code' => 'MOIS', 'Anglais' => 'Month', 'Francais' => 'Mois'],
['Type' => 'LABEL', 'code' => 'Clear', 'Anglais' => 'Clear', 'Francais' => 'Effacer'],
['Type' => 'LABEL', 'code' => 'TACHE_CHAT', 'Anglais' => 'Tache_chat', 'Francais' => 'Tache_chat'],
['Type' => 'LABEL', 'code' => 'TXT_NEW_MESSAGE', 'Anglais' => 'New_message', 'Francais' => 'New_message'],
['Type' => 'LABEL', 'code' => 'NEW_MESSAGE', 'Anglais' => 'new_message', 'Francais' => 'new_message'],
['Type' => 'LABEL', 'code' => 'MYFILE', 'Anglais' => 'myfile', 'Francais' => 'myfile'],
['Type' => 'LABEL', 'code' => 'FILE_UPLOADED_SUCCESSFULLY', 'Anglais' => 'file uploaded successfully', 'Francais' => 'file uploaded successfully'],
['Type' => 'LABEL', 'code' => 'TMP_NAME', 'Anglais' => 'tmp_name', 'Francais' => 'tmp_name'],
['Type' => 'LABEL', 'code' => 'NAME', 'Anglais' => 'name', 'Francais' => 'Nom'],
['Type' => 'LABEL', 'code' => 'JPG', 'Anglais' => 'jpg', 'Francais' => 'jpg'],
['Type' => 'LABEL', 'code' => 'PNG', 'Anglais' => 'png', 'Francais' => 'png'],
['Type' => 'LABEL', 'code' => 'JPEG', 'Anglais' => 'jpeg', 'Francais' => 'jpeg'],
['Type' => 'LABEL', 'code' => 'GIF', 'Anglais' => 'gif', 'Francais' => 'gif'],
['Type' => 'LABEL', 'code' => 'CSV', 'Anglais' => 'csv', 'Francais' => 'csv'],
['Type' => 'LABEL', 'code' => 'XLSX', 'Anglais' => 'xlsx', 'Francais' => 'xlsx'],
['Type' => 'LABEL', 'code' => 'PDF', 'Anglais' => 'pdf', 'Francais' => 'pdf'],
['Type' => 'LABEL', 'code' => 'DOCX', 'Anglais' => 'docx', 'Francais' => 'docx'],
['Type' => 'LABEL', 'code' => 'FILE_TOO_LARGE', 'Anglais' => 'file too large!', 'Francais' => 'file too large!'],
['Type' => 'LABEL', 'code' => 'INVALID_FILE_EXTENSION', 'Anglais' => 'your file extension must be .zip, .pdf or .docx', 'Francais' => 'your file extension must be .zip, .pdf or .docx'],
['Type' => 'LABEL', 'code' => 'FAILED_TO_UPLOAD_FILE', 'Anglais' => 'failed to upload file.', 'Francais' => 'failed to upload file.'],
['Type' => 'LABEL', 'code' => 'TACHE_CHAT_ATTACHMENT', 'Anglais' => 'Tache_chat_attachment', 'Francais' => 'Tache_chat_Attachment'],
['Type' => 'LABEL', 'code' => 'DESTINATION', 'Anglais' => 'Destination', 'Francais' => 'Destination'],
['Type' => 'LABEL', 'code' => 'DOWNLOADS', 'Anglais' => 'Downloads', 'Francais' => 'Downloads'],
['Type' => 'LABEL', 'code' => 'SIZE', 'Anglais' => 'Size', 'Francais' => 'Size'],
['Type' => 'LABEL', 'code' => 'SIZE_LABEL', 'Anglais' => 'size', 'Francais' => 'size'],
['Type' => 'LABEL', 'code' => 'UTF_8', 'Anglais' => 'utf-8', 'Francais' => 'utf-8'],
['Type' => 'LABEL', 'code' => 'ISO_8859_1', 'Anglais' => 'iso-8859-1', 'Francais' => 'iso-8859-1'],
['Type' => 'LABEL', 'code' => 'CODE_ATTACHEMENT', 'Anglais' => 'code_attachement', 'Francais' => 'Code_attachement'],
['Type' => 'LABEL', 'code' => 'ID_TACHE_A_FAIRE', 'Anglais' => 'Id_tache_a_faire', 'Francais' => 'Id_tache_a_faire'],
['Type' => 'LABEL', 'code' => 'ID_USERS', 'Anglais' => 'Id_users', 'Francais' => 'Id_users'],
['Type' => 'LABEL', 'code' => 'SENDING_DATE', 'Anglais' => 'Sending_date', 'Francais' => 'Sending_Date'],
['Type' => 'LABEL', 'code' => 'MESSAGE', 'Anglais' => 'message', 'Francais' => 'Message'],
['Type' => 'LABEL', 'code' => 'NameINPTFILE', 'Anglais' => 'name', 'Francais' => 'name'],
['Type' => 'LABEL', 'code' => 'NOM', 'Anglais' => 'Nom', 'Francais' => 'Nom'],
['Type' => 'MESSAGE', 'code' => 'NO_FILE_SENT', 'Anglais' => 'No file was sent.', 'Francais' => 'Aucun fichier n\'a été envoyé.'],
['Type' => 'MESSAGE', 'code' => 'ALLOWED_EXTENSIONS', 'Anglais' => 'Allowed extensions: %s.', 'Francais' => 'Extensions autorisées : %s.'],
['Type' => 'MESSAGE', 'code' => 'MAX_FILE_SIZE', 'Anglais' => 'Maximum allowed size: 10MB.', 'Francais' => 'Taille maximale autorisée : 10 Mo.'],
['Type' => 'MESSAGE', 'code' => 'DESTINATION_CREATION_FAILED', 'Anglais' => 'Failed to create destination directory.', 'Francais' => 'Impossible de créer le répertoire de destination.'],
['Type' => 'MESSAGE', 'code' => 'DB_SAVE_ERROR', 'Anglais' => 'Error while saving to the database.', 'Francais' => 'Erreur lors de l\'enregistrement en base de données.'],
['Type' => 'MESSAGE', 'code' => 'FILE_MOVE_FAILED', 'Anglais' => 'Failed to move uploaded file.', 'Francais' => 'Échec lors du déplacement du fichier.'],
['Type' => 'MESSAGE', 'code' => 'EXCEPTION_OCCURRED', 'Anglais' => 'An exception occurred: %s.', 'Francais' => 'Une exception est survenue : %s.'],
['Type' => 'MESSAGE', 'code' => 'FILE_UPLOAD_SUCCESS', 'Anglais' => 'File uploaded and saved successfully.', 'Francais' => 'Fichier téléchargé et enregistré avec succès.'],
['Type' => 'TEXT', 'code' => 'CONNEXION_TITLE', 'Anglais' => '<h1>Connexion</h1>', 'Francais' => '<h1>Connexion</h1>'],
['Type' => 'TEXT', 'code' => 'CONNEXION_WELCOME', 'Anglais' => '<p>Bienvenue ! Connectez-vous pour accéder à votre compte.</p>', 'Francais' => '<p>Bienvenue ! Connectez-vous pour accéder à votre compte.</p>'],
['Type' => 'TEXT', 'code' => 'MOT_DE_PASSE_OUBLIE', 'Anglais' => '<p>mot de passe oublier</p>', 'Francais' => '<p>mot de passe oublier</p>'],
['Type' => 'BUTTON', 'code' => 'SE_CONNECTER', 'Anglais' => 'Se Connecter', 'Francais' => 'Se Connecter'],
['Type' => 'TEXT', 'code' => 'REINITIALISATION_TITLE', 'Anglais' => '<h1>Réinitialisation</h1>', 'Francais' => '<h1>Réinitialisation</h1>'],
['Type' => 'TEXT', 'code' => 'REINITIALISATION_EMAIL', 'Anglais' => '<p>Entrez votre email pour réinitialiser votre mot de passe.</p>', 'Francais' => '<p>Entrez votre email pour réinitialiser votre mot de passe.</p>'],
['Type' => 'TEXT', 'code' => 'MOT_DE_PASSE_OUBLIE_CLICK', 'Anglais' => '<p>Vous avez oublié votre mot de passe ? Cliquez sur \"Réinitialiser le mot de passe\".</p>', 'Francais' => '<p>Vous avez oublié votre mot de passe ? Cliquez sur \"Réinitialiser le mot de passe\".</p>'],
['Type' => 'BUTTON', 'code' => 'REINITIALISER_MOT_DE_PASSE', 'Anglais' => 'Réinitialiser le mot de passe', 'Francais' => 'Réinitialiser le mot de passe'],
['Type' => 'TEXT', 'code' => 'RETOUR_CONNEXION', 'Anglais' => '<p>Pour revenir à la connexion, cliquez sur \"Se Connecter\".</p>', 'Francais' => '<p>Pour revenir à la connexion, cliquez sur \"Se Connecter\".</p>'],
['Type' => 'TITLE', 'code' => 'CONNEXION_REINITIALISATION', 'Anglais' => 'Connexion & Réinitialisation', 'Francais' => 'Connexion & Réinitialisation'],
['Type' => 'LABEL', 'code' => 'ID_ENTREPRISE_ADMIN', 'Anglais' => 'Id_entreprise_admin', 'Francais' => 'Id_entreprise_admin'],
['Type' => 'LABEL', 'code' => 'ID_USERS_CONSULTANT', 'Anglais' => 'Id_users_consultant', 'Francais' => 'Id_users_consultant'],
['Type' => 'LABEL', 'code' => 'ID_ENTREPRISE_CLIENT', 'Anglais' => 'Id_entreprise_client', 'Francais' => 'Id_entreprise_client'],
['Type' => 'LABEL', 'code' => 'DATE_CLOTURE', 'Anglais' => 'Date_cloture', 'Francais' => 'Date_cloture'],
['Type' => 'LABEL', 'code' => 'PERIODE_INTERVENTION', 'Anglais' => 'Periode_intervention', 'Francais' => 'Periode_intervention'],
['Type' => 'LABEL', 'code' => 'COLLABORATEUR', 'Anglais' => 'Collaborateur', 'Francais' => 'Collaborateur'],
['Type' => 'LABEL', 'code' => 'RESPONSABLE', 'Anglais' => 'Responsable', 'Francais' => 'Responsable'],
['Type' => 'LABEL', 'code' => 'ID_PERIODE', 'Anglais' => 'Id_periode', 'Francais' => 'Id_periode'],
['Type' => 'LABEL', 'code' => 'TRAVAUX_PERIODIQUE', 'Anglais' => 'Travaux_periodique', 'Francais' => 'Travaux_periodique'],
['Type' => 'LABEL', 'code' => 'STATUT_PERIODE', 'Anglais' => 'Statut_periode', 'Francais' => 'Statut_periode'],
['Type' => 'LABEL', 'code' => 'LISTE_TRAVAUX_PERIODIQUE', 'Anglais' => 'Liste_travaux_periodique', 'Francais' => 'Liste_travaux_periodique'],
['Type' => 'LABEL', 'code' => 'ENTETE', 'Anglais' => 'Entete', 'Francais' => 'Entete'],
['Type' => 'LABEL', 'code' => 'DETAIL_TRAVAUX', 'Anglais' => 'Detail_travaux', 'Francais' => 'Detail_travaux'],
['Type' => 'LABEL', 'code' => 'ID_TRAVAUX_PERIODIQUE', 'Anglais' => 'Id_travaux_periodique', 'Francais' => 'Id_travaux_periodique'],
['Type' => 'LABEL', 'code' => 'ID_LISTE_TRAVAUX_PERIODIQUE', 'Anglais' => 'Id_liste_travaux_periodique', 'Francais' => 'Id_liste_travaux_periodique'],
['Type' => 'LABEL', 'code' => 'ID_STATUT_PERIODE', 'Anglais' => 'Id_statut_periode', 'Francais' => 'Id_statut_periode'],
['Type' => 'LABEL', 'code' => 'OBSERVATIONS', 'Anglais' => 'Observations', 'Francais' => 'Observations'],
['Type' => 'LABEL', 'code' => 'OPENED_AND_UNASSIGNED', 'Anglais' => 'Opened and unassigned', 'Francais' => 'Opened and unassigned'],
['Type' => 'LABEL', 'code' => 'DOMAIN', 'Anglais' => 'Domain', 'Francais' => 'Domain'],
['Type' => 'LABEL', 'code' => 'ADDITIONAL_DOMAIN', 'Anglais' => 'Additional_domain', 'Francais' => 'Additional_domain'],
['Type' => 'LABEL', 'code' => 'TICKET_SUBJECT', 'Anglais' => 'Ticket_Subject', 'Francais' => 'Ticket_Subject'],
['Type' => 'OBJECT', 'code' => 'VALU', 'Anglais' => 'Value', 'Francais' => 'Value'],
['Type' => 'LABEL', 'code' => 'TICKET', 'Anglais' => 'Ticket', 'Francais' => 'Ticket'],
['Type' => 'LABEL', 'code' => 'TICKET_MESSAGERIE', 'Anglais' => 'Ticket_Messagerie', 'Francais' => 'Ticket_Messagerie'],
['Type' => 'LABEL', 'code' => 'CODE_TICKET', 'Anglais' => 'Code_Ticket', 'Francais' => 'Code_Ticket'],
['Type' => 'LABEL', 'code' => 'TICKET_CATEGORY', 'Anglais' => 'Ticket_Category', 'Francais' => 'Ticket_Category'],
['Type' => 'LABEL', 'code' => 'MESSAGE_SENDER', 'Anglais' => 'Message_Sender', 'Francais' => 'Message_Sender'],
['Type' => 'LABEL', 'code' => 'CATEGORY_1', 'Anglais' => 'Category_1', 'Francais' => 'Category_1'],
['Type' => 'LABEL', 'code' => 'CATEGORY_2', 'Anglais' => 'Category_2', 'Francais' => 'Category_2'],
['Type' => 'LABEL', 'code' => 'CATEGORY_3', 'Anglais' => 'Category_3', 'Francais' => 'Category_3'],
['Type' => 'LABEL', 'code' => 'CODE', 'Anglais' => 'Code', 'Francais' => 'Code'],
['Type' => 'LABEL', 'code' => 'VALUE', 'Anglais' => 'Value', 'Francais' => 'Value'],
['Type' => 'LABEL', 'code' => 'Attachments', 'Anglais' => 'Attachment', 'Francais' => 'Attachment'],
['Type' => 'LABEL', 'code' => 'SOLDE', 'Anglais' => 'Solde', 'Francais' => 'Solde'],
['Type' => 'LABEL', 'code' => 'ID_IDENTIFIANT', 'Anglais' => 'Id_identifiant', 'Francais' => 'Id_identifiant'],
['Type' => 'LABEL', 'code' => 'SOLDE_COMPTE', 'Anglais' => 'Solde_compte', 'Francais' => 'Solde_compte'],
['Type' => 'LABEL', 'code' => 'PRIORITIES', 'Anglais' => 'Priorities', 'Francais' => 'Priorities'],
['Type' => 'LABEL', 'code' => 'FACTURATION', 'Anglais' => 'Facturation', 'Francais' => 'Facturation'],
['Type' => 'LABEL', 'code' => 'ASSIGNED_AGENT', 'Anglais' => 'Assigned_agent', 'Francais' => 'Assigned_agent'],
['Type' => 'LABEL', 'code' => 'ANSWERING_DATE', 'Anglais' => 'Answering_Date', 'Francais' => 'Answering_Date'],
['Type' => 'LABEL', 'code' => 'TITLE', 'Anglais' => 'Title', 'Francais' => 'Title'],
['Type' => 'LABEL', 'code' => 'TICKET_DETAIL', 'Anglais' => 'Ticket_detail', 'Francais' => 'Ticket_detail'],
['Type' => 'LABEL', 'code' => 'SUB_DOMAIN', 'Anglais' => 'Sub_domain', 'Francais' => 'Sub_domain'],
['Type' => 'LABEL', 'code' => 'ID_ENTREPRIS', 'Anglais' => 'Id_Entreprise', 'Francais' => 'Id_Entreprise'],
['Type' => 'LABEL', 'code' => 'SIEGE_SOCIAL', 'Anglais' => 'Siege_social', 'Francais' => 'Siege_social'],
['Type' => 'LABEL', 'code' => 'CONTACT_ENTREPRISE', 'Anglais' => 'Contact_entreprise', 'Francais' => 'Contact_entreprise'],
['Type' => 'LABEL', 'code' => 'MAIL_ENTREPRISE', 'Anglais' => 'Mail_entreprise', 'Francais' => 'Mail_entreprise'],
['Type' => 'LABEL', 'code' => 'FIXE_ENTREPRISE', 'Anglais' => 'Fixe_entreprise', 'Francais' => 'Fixe_entreprise'],
['Type' => 'LABEL', 'code' => 'FORME_JURIDIQUE', 'Anglais' => 'Forme_juridique', 'Francais' => 'Forme_juridique'],
['Type' => 'LABEL', 'code' => 'DOMAINE_ACTIVITE', 'Anglais' => 'Domaine_activite', 'Francais' => 'Domaine_activite'],
['Type' => 'LABEL', 'code' => 'NINEA', 'Anglais' => 'Ninea', 'Francais' => 'Ninea'],
['Type' => 'LABEL', 'code' => 'NUMERO_RC', 'Anglais' => 'Numero_RC', 'Francais' => 'Numero_RC'],
['Type' => 'LABEL', 'code' => 'NUM_IDENTIFICATION_FISCALE', 'Anglais' => 'Num_identification_fiscale', 'Francais' => 'Num_identification_fiscale'],
['Type' => 'LABEL', 'code' => 'DEVISE', 'Anglais' => 'Devise', 'Francais' => 'Devise'],
['Type' => 'LABEL', 'code' => 'CAPITAL_SOCIAL', 'Anglais' => 'Capital_social', 'Francais' => 'Capital_social'],
['Type' => 'LABEL', 'code' => 'NOMBRE_EMPLOYE', 'Anglais' => 'Nombre_employe', 'Francais' => 'Nombre_employe'],
['Type' => 'LABEL', 'code' => 'SERVICE', 'Anglais' => 'Service', 'Francais' => 'Service'],
['Type' => 'LABEL', 'code' => 'SERVICES', 'Anglais' => 'Services', 'Francais' => 'Services'],
['Type' => 'LABEL', 'code' => 'ANNEE_DEMARRAGE', 'Anglais' => 'Annee_Demarrage', 'Francais' => 'Annee_Demarrage'],
['Type' => 'LABEL', 'code' => 'DUREE_SERVICES', 'Anglais' => 'Duree_Services', 'Francais' => 'Duree_Services'],
['Type' => 'LABEL', 'code' => 'CODE_PAYS', 'Anglais' => 'Code_Pays', 'Francais' => 'Code_Pays'],
['Type' => 'LABEL', 'code' => 'PAYS_ENTREPRISE', 'Anglais' => 'pays_entreprise', 'Francais' => 'pays_entreprise'],
['Type' => 'LABEL', 'code' => 'DOSSIER_TYPE_DL1', 'Anglais' => 'Dossier_type_DL1', 'Francais' => 'Dossier_type_DL1'],
['Type' => 'LABEL', 'code' => 'DOSSIER_TYPE_DL2', 'Anglais' => 'Dossier_type_DL2', 'Francais' => 'Dossier_type_DL2'],
['Type' => 'LABEL', 'code' => 'DOSSIER_TYPE_DL3', 'Anglais' => 'Dossier_type_DL3', 'Francais' => 'Dossier_type_DL3'],
['Type' => 'LABEL', 'code' => 'DOSSIER_TYPE_DL4', 'Anglais' => 'Dossier_type_DL4', 'Francais' => 'Dossier_type_DL4'],
['Type' => 'LABEL', 'code' => 'IS_SOUS_DOSSIER', 'Anglais' => 'Is_sous_dossier', 'Francais' => 'Is_sous_dossier'],
['Type' => 'LABEL', 'code' => 'CHEMIN', 'Anglais' => 'Chemin', 'Francais' => 'Chemin'],
['Type' => 'LABEL', 'code' => 'FICHIERS', 'Anglais' => 'Fichiers', 'Francais' => 'Fichiers'],
['Type' => 'LABEL', 'code' => 'ID_DOSSIER', 'Anglais' => 'Id_dossier', 'Francais' => 'Id_dossier'],
['Type' => 'LABEL', 'code' => 'DOSSIER_ENTREPRISE', 'Anglais' => 'Dossier_entreprise', 'Francais' => 'Dossier_entreprise'],
['Type' => 'LABEL', 'code' => 'ID_MESSAGES', 'Anglais' => 'Id_messages', 'Francais' => 'Id_messages'],
['Type' => 'LABEL', 'code' => 'IDE', 'Anglais' => 'IdE', 'Francais' => 'IdE'],
['Type' => 'LABEL', 'code' => 'IDC', 'Anglais' => 'IdC', 'Francais' => 'IdC'],
['Type' => 'LABEL', 'code' => 'DT', 'Anglais' => 'DT', 'Francais' => 'DT'],
['Type' => 'LABEL', 'code' => 'SDT', 'Anglais' => 'SDT', 'Francais' => 'SDT'],
['Type' => 'LABEL', 'code' => 'P', 'Anglais' => 'P', 'Francais' => 'P'],
['Type' => 'LABEL', 'code' => 'DATE_FORMAT', 'Anglais' => 'Y-m-d H:i:s', 'Francais' => 'Y-m-d H:i:s'],
['Type' => 'LABEL', 'code' => 'CONTRAT_ACCESS', 'Anglais' => 'contrat_access', 'Francais' => 'contrat_access'],
['Type' => 'LABEL', 'code' => 'DB_CONTRAT', 'Anglais' => 'contrat', 'Francais' => 'contrat'],
['Type' => 'LABEL', 'code' => 'LIVRABLE_ENTREPRISE', 'Anglais' => 'livrable_entreprise', 'Francais' => 'livrable_entreprise'],
['Type' => 'LABEL', 'code' => 'RECURRENCE_TYPE', 'Anglais' => 'recurrence_type', 'Francais' => 'recurrence_type'],
['Type' => 'MESSAGE', 'code' => 'TOUS_LES_CHAMPS_SONT_REQUIS', 'Anglais' => 'Tous les champs sont requis.', 'Francais' => 'Tous les champs sont requis.'],
['Type' => 'LABEL', 'code' => 'MONTHLY', 'Anglais' => 'monthly', 'Francais' => 'mensuel'],
['Type' => 'LABEL', 'code' => 'BIMONTHLY', 'Anglais' => 'bimonthly', 'Francais' => 'bimensuel'],
['Type' => 'LABEL', 'code' => 'QUARTERLY', 'Anglais' => 'quarterly', 'Francais' => 'trimestriel'],
['Type' => 'LABEL', 'code' => 'SEMIANNUALLY', 'Anglais' => 'semiannually', 'Francais' => 'semestriel'],
['Type' => 'LABEL', 'code' => 'WEEKLY', 'Anglais' => 'weekly', 'Francais' => 'hebdomadaire'],
['Type' => 'LABEL', 'code' => 'YEARLY', 'Anglais' => 'yearly', 'Francais' => 'annuel'],
['Type' => 'LABEL', 'code' => 'ECHEANCE', 'Anglais' => 'Echeance', 'Francais' => 'Echeance'],
['Type' => 'LABEL', 'code' => 'RECURRENCE_GROUP_ID', 'Anglais' => 'recurrence_group_id', 'Francais' => 'recurrence_group_id'],
['Type' => 'MESSAGE', 'code' => 'ECHEANCES_AJOUTEES_SUCCES', 'Anglais' => 'Les échéances ont été ajoutées avec succès.', 'Francais' => 'Les échéances ont été ajoutées avec succès.'],
['Type' => 'LABEL', 'code' => 'NOM_LIVRABLE', 'Anglais' => 'Nom_livrable', 'Francais' => 'Nom_livrable'],
['Type' => 'LABEL', 'code' => 'ID_FACTURE', 'Anglais' => 'Id_facture', 'Francais' => 'Id_facture'],
['Type' => 'LABEL', 'code' => 'DE', 'Anglais' => 'De', 'Francais' => 'De'],
['Type' => 'LABEL', 'code' => 'MONTANT_DE', 'Anglais' => 'Montant_de', 'Francais' => 'Montant_de'],
['Type' => 'LABEL', 'code' => 'VERS_XOF', 'Anglais' => 'Vers_XOF', 'Francais' => 'Vers_XOF'],
['Type' => 'LABEL', 'code' => 'DB_TAUX_CHANGE', 'Anglais' => 'taux_change', 'Francais' => 'taux_change'],
['Type' => 'LABEL', 'code' => 'XOF', 'Anglais' => 'XOF', 'Francais' => 'XOF'],
['Type' => 'LABEL', 'code' => 'COTISATION_SOCIALE', 'Anglais' => 'cotisation_sociale', 'Francais' => 'cotisation_sociale'],
['Type' => 'LABEL', 'code' => 'MONTANT', 'Anglais' => 'Montant', 'Francais' => 'Montant'],
['Type' => 'LABEL', 'code' => 'DATE_PAYEMENT', 'Anglais' => 'Date_payement', 'Francais' => 'Date_payement'],
['Type' => 'LABEL', 'code' => 'COTISATION_FISCALE', 'Anglais' => 'cotisation_fiscale', 'Francais' => 'cotisation_fiscale'],
['Type' => 'LABEL', 'code' => 'ENTREPRISE', 'Anglais' => 'entreprise', 'Francais' => 'entreprise'],
['Type' => 'LABEL', 'code' => 'DB_ENTREPRISE', 'Anglais' => 'entreprise', 'Francais' => 'entreprise'],
['Type' => 'LABEL', 'code' => 'DATE_UPDATE', 'Anglais' => 'Date_update', 'Francais' => 'Date_update'],
['Type' => 'LABEL', 'code' => 'NOM_TABLE', 'Anglais' => 'Nom_table', 'Francais' => 'Nom_table'],
['Type' => 'LABEL', 'code' => 'ENTREPRISE_ACCESS', 'Anglais' => 'entreprise_access', 'Francais' => 'entreprise_access'],
['Type' => 'LABEL', 'code' => 'PROJET_ACCESS', 'Anglais' => 'Projet_access', 'Francais' => 'Projet_access'],
['Type' => 'LABEL', 'code' => 'ID_ACCESS', 'Anglais' => 'Id_access', 'Francais' => 'Id_access'],
['Type' => 'LABEL', 'code' => 'ID_USER_ADD', 'Anglais' => 'Id_user_add', 'Francais' => 'Id_user_add'],
['Type' => 'LABEL', 'code' => 'TACHE_ACCESS', 'Anglais' => 'tache_access', 'Francais' => 'tache_access'],
['Type' => 'LABEL', 'code' => 'CONTRAT_UNITAIRE_ACCESS', 'Anglais' => 'contrat_unitaire_access', 'Francais' => 'contrat_unitaire_access'],
['Type' => 'LABEL', 'code' => 'PROJET_ID', 'Anglais' => 'Projet_Id', 'Francais' => 'Projet_Id'],
['Type' => 'LABEL', 'code' => 'DL1_ID', 'Anglais' => 'DL1_Id', 'Francais' => 'DL1_Id'],
['Type' => 'LABEL', 'code' => 'MONETARY_CURRENCY', 'Anglais' => 'monetary_currency', 'Francais' => 'monetary_currency'],
['Type' => 'LABEL', 'code' => 'IDT', 'Anglais' => 'IdT', 'Francais' => 'IdT'],
['Type' => 'LABEL', 'code' => 'IDSC', 'Anglais' => 'IdSC', 'Francais' => 'IdSC'],
['Type' => 'LABEL', 'code' => 'IDP', 'Anglais' => 'IdP', 'Francais' => 'IdP'],
['Type' => 'LABEL', 'code' => 'SERVICE_ACCESS', 'Anglais' => 'service_access', 'Francais' => 'service_access'],
['Type' => 'LABEL', 'code' => 'DB_SERVICE', 'Anglais' => 'service', 'Francais' => 'service'],
['Type' => 'LABEL', 'code' => 'PROJET_IT', 'Anglais' => 'Projet_It', 'Francais' => 'Projet_It'],
['Type' => 'LABEL', 'code' => 'CONTRAT_UNITAIRE', 'Anglais' => 'contrat_unitaire', 'Francais' => 'contrat_unitaire'],
['Type' => 'LABEL', 'code' => 'FACTURE', 'Anglais' => 'facture', 'Francais' => 'facture'],
['Type' => 'LABEL', 'code' => 'FACTURE_NUMERO', 'Anglais' => 'facture_numero', 'Francais' => 'facture_numero'],
['Type' => 'LABEL', 'code' => 'REFERENCE', 'Anglais' => 'Reference', 'Francais' => 'Reference'],
['Type' => 'LABEL', 'code' => 'ID_MOIS', 'Anglais' => 'Id_mois', 'Francais' => 'Id_mois'],
['Type' => 'LABEL', 'code' => 'FACTURE_DETAILS', 'Anglais' => 'facture_details', 'Francais' => 'facture_details'],
['Type' => 'LABEL', 'code' => 'TACHE_FACTURE', 'Anglais' => 'tache_facture', 'Francais' => 'tache_facture'],
['Type' => 'LABEL', 'code' => 'ID_FACTURE_SERVICE', 'Anglais' => 'Id_facture_service', 'Francais' => 'Id_facture_service'],
['Type' => 'LABEL', 'code' => 'ID_TACHE_FAC', 'Anglais' => 'Id_tache_fac', 'Francais' => 'Id_tache_fac'],
['Type' => 'LABEL', 'code' => 'DATE_DE_SAVE', 'Anglais' => 'Date_de_save', 'Francais' => 'Date_de_save'],
['Type' => 'LABEL', 'code' => 'FACTURE_STATUT', 'Anglais' => 'facture_statut', 'Francais' => 'facture_statut'],
['Type' => 'LABEL', 'code' => 'FACTURE_SERVICE', 'Anglais' => 'facture_service', 'Francais' => 'facture_service'],
['Type' => 'LABEL', 'code' => 'ID_COMPTE', 'Anglais' => 'Id_compte', 'Francais' => 'Id_compte'],
['Type' => 'LABEL', 'code' => 'ID_IMPOT', 'Anglais' => 'Id_impot', 'Francais' => 'Id_impot'],
['Type' => 'LABEL', 'code' => 'SOMME_A_PAYER', 'Anglais' => 'Somme_a_payer', 'Francais' => 'Somme_a_payer'],
['Type' => 'LABEL', 'code' => 'DESTINATAIRES', 'Anglais' => 'Destinataires', 'Francais' => 'Destinataires'],
['Type' => 'LABEL', 'code' => 'LAST_UPDATE', 'Anglais' => 'Updated', 'Francais' => ' MAJ'],
['Type' => 'LABEL', 'code' => 'DEADLINE', 'Anglais' => 'Deadline', 'Francais' => 'Echéance'],
['Type' => 'LABEL', 'code' => 'FISCAL_ACCESS', 'Anglais' => 'fiscal_access', 'Francais' => 'fiscal_access'],
['Type' => 'LABEL', 'code' => 'FISCAL', 'Anglais' => 'fiscal', 'Francais' => 'fiscal'],
['Type' => 'LABEL', 'code' => 'ID_FISCAL', 'Anglais' => 'Id_fiscal', 'Francais' => 'Id_fiscal'],
['Type' => 'LABEL', 'code' => 'ID_IMPOTS_TAXES', 'Anglais' => 'Id_impots_taxes', 'Francais' => 'Id_impots_taxes'],
['Type' => 'LABEL', 'code' => 'IMPOTS_TAXES_ACCESS', 'Anglais' => 'impots_taxes_access', 'Francais' => 'impots_taxes_access'],
['Type' => 'LABEL', 'code' => 'IMPOTS_TAXES', 'Anglais' => 'impots_taxes', 'Francais' => 'impots_taxes'],
['Type' => 'LABEL', 'code' => 'IMPOT', 'Anglais' => 'Impot', 'Francais' => 'Impot'],
['Type' => 'LABEL', 'code' => 'LIVRABLE_DOSSIER', 'Anglais' => 'livrable_dossier', 'Francais' => 'livrable_dossier'],
['Type' => 'LABEL', 'code' => 'LIVRABLE_STATUAIRE', 'Anglais' => 'livrable_statuaire', 'Francais' => 'livrable_statuaire'],
['Type' => 'LABEL', 'code' => 'ID_LIVRABLE', 'Anglais' => 'Id_livrable', 'Francais' => 'Id_livrable'],
['Type' => 'LABEL', 'code' => 'ERREUR_DANS_LA_REQUETE', 'Anglais' => 'Erreur dans la requête: ', 'Francais' => 'Erreur dans la requête: '],
['Type' => 'LABEL', 'code' => 'LIVRABLE_NOM', 'Anglais' => 'livrable_nom', 'Francais' => 'livrable_nom'],
['Type' => 'LABEL', 'code' => 'NOM_FILES', 'Anglais' => 'Nom_files', 'Francais' => 'Nom_files'],
['Type' => 'LABEL', 'code' => 'URL_FILES', 'Anglais' => 'Url__files', 'Francais' => 'Url__files'],
['Type' => 'LABEL', 'code' => 'DL1', 'Anglais' => 'DL1', 'Francais' => 'DL1'],
['Type' => 'LABEL', 'code' => 'DL2', 'Anglais' => 'DL2', 'Francais' => 'DL2'],
['Type' => 'LABEL', 'code' => 'DL3', 'Anglais' => 'DL3', 'Francais' => 'DL3'],
['Type' => 'LABEL', 'code' => 'DL4', 'Anglais' => 'DL4', 'Francais' => 'DL4'],
['Type' => 'LABEL', 'code' => 'NOUVEAU_NOM', 'Anglais' => 'nouveauNom', 'Francais' => 'nouveauNom'],
['Type' => 'LABEL', 'code' => 'ANCIEN_NOM', 'Anglais' => 'ancienNom', 'Francais' => 'ancienNom'],
['Type' => 'LABEL', 'code' => 'DOSSIER_ID', 'Anglais' => 'dossier_id', 'Francais' => 'dossier_id'],
['Type' => 'LABEL', 'code' => 'SOUS_DOSSIER_ENTREPRISE_PAYS', 'Anglais' => 'Sous_Dossier_entreprise_pays', 'Francais' => 'Sous_Dossier_entreprise_pays'],
['Type' => 'LABEL', 'code' => 'ID_BOUCLAGE', 'Anglais' => 'Id_bouclage', 'Francais' => 'Id_bouclage'],
['Type' => 'LABEL', 'code' => 'ID_BOUCLAGE_FICHIER', 'Anglais' => 'Id_bouclage_fichier', 'Francais' => 'Id_bouclage_fichier'],
['Type' => 'LABEL', 'code' => 'ID_BOUCLAGE_STATUT', 'Anglais' => 'Id_bouclage_Statut', 'Francais' => 'Id_bouclage_Statut'],
['Type' => 'LABEL', 'code' => 'OBSERVATION', 'Anglais' => 'Observation', 'Francais' => 'Observation'],
['Type' => 'LABEL', 'code' => 'BOUCLAGE_DETAIL', 'Anglais' => 'bouclage_detail', 'Francais' => 'bouclage_detail'],
['Type' => 'LABEL', 'code' => 'BOUCLAGE_CATEGORIE', 'Anglais' => 'bouclage_categorie', 'Francais' => 'bouclage_categorie'],
['Type' => 'LABEL', 'code' => 'BOUCLAGE_STATUS', 'Anglais' => 'bouclage_status', 'Francais' => 'bouclage_status'],
['Type' => 'LABEL', 'code' => 'OBS_GENERAL', 'Anglais' => 'Obs_general', 'Francais' => 'Obs_general'],
['Type' => 'LABEL', 'code' => 'ID_STATUT', 'Anglais' => 'Id_statut', 'Francais' => 'Id_statut'],
['Type' => 'LABEL', 'code' => 'BOUCLAGE', 'Anglais' => 'bouclage', 'Francais' => 'bouclage'],
['Type' => 'LABEL', 'code' => 'CONTROLES_ESSENTIELS_STATUTS', 'Anglais' => 'controles_essantiels_statuts', 'Francais' => 'controles_essantiels_statuts'],
['Type' => 'LABEL', 'code' => 'CONTROLES_ESSENTIELLES_SOUS_CATEGORIES', 'Anglais' => 'controles_essentielles_sous_categories', 'Francais' => 'controles_essentielles_sous_categories'],
['Type' => 'LABEL', 'code' => 'ID_CONTROLES_CATEGORIES', 'Anglais' => 'Id_Controles_categories', 'Francais' => 'Id_Controles_categories'],
['Type' => 'LABEL', 'code' => 'CONTROLES_ESSENTIELS_CATEGORIES', 'Anglais' => 'controles_essentiels_categories', 'Francais' => 'controles_essentiels_categories'],
['Type' => 'LABEL', 'code' => 'ID_CONTROLES_ESSENTIELS', 'Anglais' => 'Id_controles_essentiels', 'Francais' => 'Id_controles_essentiels'],
['Type' => 'LABEL', 'code' => 'ID_ESSENTIELS_SOUS_CATEGORIES', 'Anglais' => 'Id_essentiels_sous_categories', 'Francais' => 'Id_essentiels_sous_categories'],
['Type' => 'LABEL', 'code' => 'ID_CONTROLES_ESSANTIELS_STATUTS', 'Anglais' => 'Id_controles_essantiels_statuts', 'Francais' => 'Id_controles_essantiels_statuts'],
['Type' => 'LABEL', 'code' => 'CONTROLES_ESSENTIELS_DETAILS', 'Anglais' => 'controles_essentiels_details', 'Francais' => 'controles_essentiels_details'],
['Type' => 'LABEL', 'code' => 'CONTROLES_ESSENTIELS', 'Anglais' => 'controles_essentiels', 'Francais' => 'controles_essentiels'],
['Type' => 'LABEL', 'code' => 'BOUCLAGE_FICHIER', 'Anglais' => 'bouclage_fichier', 'Francais' => 'bouclage_fichier'],
['Type' => 'LABEL', 'code' => 'ID_CATEGORIES', 'Anglais' => 'Id_categories', 'Francais' => 'Id_categories'],
['Type' => 'LABEL', 'code' => 'ALERTE', 'Anglais' => 'alerte', 'Francais' => 'alerte'],
['Type' => 'LABEL', 'code' => 'CONTENUE', 'Anglais' => 'Contenue', 'Francais' => 'Contenue'],
['Type' => 'LABEL', 'code' => 'DATE_MAJ', 'Anglais' => 'Date_MAJ', 'Francais' => 'Date_MAJ'],
['Type' => 'LABEL', 'code' => 'CHOIX_DL1', 'Anglais' => 'choix_DL1', 'Francais' => 'choix_DL1'],
['Type' => 'LABEL', 'code' => 'CHOIX_DL2', 'Anglais' => 'choix_DL2', 'Francais' => 'choix_DL2'],
['Type' => 'LABEL', 'code' => 'CHOIX_DL3', 'Anglais' => 'choix_DL3', 'Francais' => 'choix_DL3'],
['Type' => 'LABEL', 'code' => 'CHOIX_DL4', 'Anglais' => 'choix_DL4', 'Francais' => 'choix_DL4'],
['Type' => 'LABEL', 'code' => 'DOSSIER_TYPE', 'Anglais' => 'Dossier_type', 'Francais' => 'Dossier_type'],
['Type' => 'LABEL', 'code' => 'MESSAGES_CLIENT', 'Anglais' => 'messages_client', 'Francais' => 'messages_client'],
['Type' => 'LABEL', 'code' => 'ID_CONSULTANT', 'Anglais' => 'Id_consultant', 'Francais' => 'Id_consultant'],
['Type' => 'LABEL', 'code' => 'MESSAGES_CONSULTANT', 'Anglais' => 'messages_consultant', 'Francais' => 'messages_consultant'],
['Type' => 'LABEL', 'code' => 'STATUT_MESSAGE', 'Anglais' => 'Statut_message', 'Francais' => 'Statut_message'],
['Type' => 'LABEL', 'code' => 'MESSAGES_CONSULTANT_CHAT_ATTACHMENT', 'Anglais' => 'messages_consultant_chat_Attachment', 'Francais' => 'messages_consultant_chat_Attachment'],
['Type' => 'LABEL', 'code' => 'MESSAGES_CONSULTANT_CHAT', 'Anglais' => 'messages_consultant_chat', 'Francais' => 'messages_consultant_chat'],
['Type' => 'label', 'code' => 'SUPERCLIENT_COUNTER', 'Anglais' => 'SuperClient_Counter', 'Francais' => 'SuperClient_Counter'],
['Type' => 'label', 'code' => 'SUPER_CLIENT_ID', 'Anglais' => 'super_client_id', 'Francais' => 'super_client_id'],
['Type' => 'label', 'code' => 'CLIENT_COUNT', 'Anglais' => 'client_count', 'Francais' => 'client_count'],
['Type' => 'label', 'code' => 'LIMITE_ACCOUNT', 'Anglais' => 'limite_account', 'Francais' => 'limite_account'],
['Type' => 'label', 'code' => 'WORLD_COUNTRIES', 'Anglais' => 'world_countries', 'Francais' => 'world_countries'],
['Type' => 'label', 'code' => 'USERS', 'Anglais' => 'users', 'Francais' => 'users'],
['Type' => 'label', 'code' => 'ENCAISSEMENT', 'Anglais' => 'encaissement', 'Francais' => 'encaissement'],
['Type' => 'label', 'code' => 'DBTICKET', 'Anglais' => 'Ticket', 'Francais' => 'Ticket'],
['Type' => 'LABEL', 'code' => 'Logs', 'Anglais' => 'logs', 'Francais' => 'logs'],
['Type' => 'label', 'code' => 'ID_LIVRABLE_TYPE', 'Anglais' => 'Id_livrable_type', 'Francais' => 'Id_livrable_type'],
['Type' => 'label', 'code' => 'ID_LIVRABLE_CATEGORIE', 'Anglais' => 'Id_livrable_categorie', 'Francais' => 'Id_livrable_categorie'],
['Type' => 'label', 'code' => 'TYPE_LIVRABLE', 'Anglais' => 'Type_livrable', 'Francais' => 'Type_livrable'],
['Type' => 'LABEL', 'code' => 'RECURRENCETYPE', 'Anglais' => 'recurrence_type', 'Francais' => 'recurrence_type'],
['Type' => 'LABEL', 'code' => 'choose', 'Anglais' => 'choose', 'Francais' => 'choisir'],
['Type' => 'LABLE', 'code' => 'DECLARATION_NOM', 'Anglais' => 'declaration_nom', 'Francais' => 'declaration_nom'],
['Type' => 'LABLE', 'code' => 'DBTAB_DECLARATION_NOM', 'Anglais' => 'declaration_nom', 'Francais' => 'declaration_nom'],
['Type' => 'LABLE', 'code' => 'DBTAB_DECLARATION_ECHEANCE', 'Anglais' => 'declaration_echeances', 'Francais' => 'declaration_echeances'],
['Type' => 'LABLE', 'code' => 'DBTAB_DECLARATION_TYPE', 'Anglais' => 'declaration_type', 'Francais' => 'declaration_type'],
['Type' => 'label', 'code' => 'ID_DECLARATION_TYPE', 'Anglais' => 'Id_declaration_type', 'Francais' => 'Id_declaration_type'],
['Type' => 'label', 'code' => 'ECHEANCE_DECLARATION', 'Anglais' => 'Submission Deadline', 'Francais' => 'Échéance Déclaration'],
['Type' => 'label', 'code' => 'DELAYPOSTPERIOD', 'Anglais' => '(post end of period)', 'Francais' => '(après fin de période)'],
['Type' => 'LABEL', 'code' => 'ECHEANCE_PAIEMENT', 'Anglais' => 'Payment Deadline', 'Francais' => 'Echéance Paiement'],
['Type' => 'LABEL', 'code' => 'ID_DECLARATION_NOM', 'Anglais' => 'Id_declaration_nom', 'Francais' => 'Id_declaration_nom'],
['Type' => 'label', 'code' => 'Filiales', 'Anglais' => 'Filiales', 'Francais' => 'Filiales'],
['Type' => 'label', 'code' => 'Pourcentage', 'Anglais' => 'Pourcentage', 'Francais' => 'Pourcentage'],
['Type' => 'label', 'code' => 'ID_ENTREPRISES', 'Anglais' => 'Id_entreprise', 'Francais' => 'Id_entreprise'],
['Type' => 'label', 'code' => 'IP_ADRESS', 'Anglais' => 'Adress IP', 'Francais' => 'Adress IP'],
['Type' => 'label', 'code' => 'FILTRER_PAR', 'Anglais' => 'Filter by', 'Francais' => 'Filtrer par'],
['Type' => 'label', 'code' => 'TOUS_LES_ELEMENTS', 'Anglais' => 'Tasks and Deliverables', 'Francais' => 'Tâches et Livrables'],
['Type' => 'label', 'code' => 'LIST_TASK', 'Anglais' => 'Tasks', 'Francais' => 'Tâches'],
['Type' => 'label', 'code' => 'LIST_LIVRABLE', 'Anglais' => 'Deliverables', 'Francais' => 'Livrables'],
['Type' => 'label', 'code' => 'LIST_DECLARATION', 'Anglais' => 'Reports', 'Francais' => 'Déclarations'],
['Type' => 'label', 'code' => 'ID_PRIORITE', 'Anglais' => 'Id_priorite', 'Francais' => 'Id_priorite'],
['Type' => 'label', 'code' => 'Loading_details', 'Anglais' => 'Loading details...', 'Francais' => 'Chargement des détails...'],
['Type' => 'label', 'code' => 'NUMBER_OF', 'Anglais' => 'Number of', 'Francais' => 'Nombre de'],
['Type' => 'LABEL', 'code' => 'TACHES', 'Anglais' => 'Tasks', 'Francais' => 'Tâches'],
['Type' => 'LABEL', 'code' => 'DUE_FROM', 'Anglais' => 'due from', 'Francais' => 'à échoir entre'],
['Type' => 'LABEL', 'code' => 'TO', 'Anglais' => 'to', 'Francais' => 'et'],
['Type' => 'LABEL', 'code' => 'all_notif', 'Anglais' => 'All notifications', 'Francais' => 'Toutes les notifications'],
['Type' => 'LABEL', 'code' => 'Overdue_deliverables', 'Anglais' => 'Overdue deliverables', 'Francais' => 'Livrables en retard'],
['Type' => 'LABEL', 'code' => 'Overdue_tasks', 'Anglais' => 'Overdue tasks', 'Francais' => 'Tâches en retard'],
['Type' => 'LABEL', 'code' => 'PER', 'Anglais' => 'Per', 'Francais' => 'Par'],
['Type' => 'LABEL', 'code' => 'Customers', 'Anglais' => 'Customers', 'Francais' => 'Clients'],
['Type' => 'LABEL', 'code' => 'Statutory_Reports', 'Anglais' => 'Statutory Reports', 'Francais' => 'Rapports statutaires'],
['Type' => 'LABEL', 'code' => 'Statutory_Reports_Payments', 'Anglais' => 'Statutory Reports Payment Situation', 'Francais' => 'Situation des paiements des Taxes et Contributions'],
['Type' => 'LABEL', 'code' => 'Late_by', 'Anglais' => 'Customers', 'Francais' => 'En retard de'],
['Type' => 'LABEL', 'code' => 'livrable_entreprise', 'Anglais' => 'Company deliverable', 'Francais' => 'Livrable entreprise'],
['Type' => 'LABEL', 'code' => 'Entity', 'Anglais' => 'Entity', 'Francais' => 'Entité'],
['Type' => 'LABEL', 'code' => 'CCY', 'Anglais' => 'CCY', 'Francais' => 'CCY'],
['Type' => 'LABEL', 'code' => 'Submitted', 'Anglais' => 'Submitted', 'Francais' => 'Soumis'],
['Type' => 'LABEL', 'code' => 'Due', 'Anglais' => 'Due', 'Francais' => 'Echéance'],
['Type' => 'LABEL', 'code' => 'Balance', 'Anglais' => 'Balance', 'Francais' => 'Solde'],
['Type' => 'LABEL', 'code' => 'Pay_Status', 'Anglais' => 'Pay Status', 'Francais' => 'Paiement'],
['Type' => 'LABEL', 'code' => 'Related_payments', 'Anglais' => 'Related payments', 'Francais' => 'Paiements associés'],
['Type' => 'LABEL', 'code' => 'Pay_date', 'Anglais' => 'Pay date', 'Francais' => 'A payer'],
['Type' => 'LABEL', 'code' => 'Organisme_en_charge', 'Anglais' => 'Org. in charge', 'Francais' => 'Org. en charge'],
['Type' => 'LABEL', 'code' => 'Submission_Deadline', 'Anglais' => 'Submission Deadline', 'Francais' => 'Echéance déclaration'],
['Type' => 'LABEL', 'code' => 'Payment_Deadline', 'Anglais' => 'Payment Deadline', 'Francais' => 'Echéance paiement'],
['Type' => 'LABEL', 'code' => 'Submission_Status', 'Anglais' => 'Submission Status', 'Francais' => 'État de la déclaration '],
['Type' => 'LABEL', 'code' => 'Report_added_by', 'Anglais' => 'Report added by', 'Francais' => 'Rapport ajouté par'],
['Type' => 'LABEL', 'code' => 'Updated_by', 'Anglais' => 'Updated by', 'Francais' => 'Mise à jour par'],
['Type' => 'LABEL', 'code' => 'Last_Update', 'Anglais' => 'Last Update', 'Francais' => 'Dernière mise à jour'],
['Type' => 'LABEL', 'code' => 'Preuve_paiement', 'Anglais' => 'Proof of payment', 'Francais' => 'Preuve du paiement'],
['Type' => 'LABEL', 'code' => 'Valider', 'Anglais' => 'Valider', 'Francais' => 'Valider'],
['Type' => 'LABEL', 'code' => 'Paid', 'Anglais' => 'Paid', 'Francais' => 'Payé'],
['Type' => 'LABEL', 'code' => 'Add_payment_deliverable', 'Anglais' => 'Add a payment for this deliverable', 'Francais' => 'Ajouter un payement pour ce livrable'],
['Type' => 'LABEL', 'code' => 'Paiements', 'Anglais' => 'Payments', 'Francais' => 'Paiements'],
['Type' => 'LABEL', 'code' => 'Select_Company', 'Anglais' => 'Select a Company', 'Francais' => 'Sélectionnez une Entreprise'],
['Type' => 'LABEL', 'code' => 'Add_declaration', 'Anglais' => 'Add a declaration', 'Francais' => 'Ajouter une déclaration'],
['Type' => 'LABEL', 'code' => 'declaration', 'Anglais' => 'Reports', 'Francais' => 'Déclarations'],
['Type' => 'LABEL', 'code' => 'Type_declaration', 'Anglais' => 'Type of declaration', 'Francais' => 'Type de déclaration'],
['Type' => 'LABEL', 'code' => 'Select_deadline', 'Anglais' => 'Select a deadline', 'Francais' => 'Sélectionnez une échéance'],
['Type' => 'LABEL', 'code' => 'Cathegory', 'Anglais' => 'Cathegory', 'Francais' => 'Catégorie'],
['Type' => 'LABEL', 'code' => 'ER', 'Anglais' => 'ER', 'Francais' => 'ER'],
['Type' => 'LABEL', 'code' => 'Deliverable_name', 'Anglais' => 'Deliverable', 'Francais' => 'Livrable'],
['Type' => 'LABEL', 'code' => 'Lecture', 'Anglais' => 'Reading', 'Francais' => 'Lecture'],
['Type' => 'LABEL', 'code' => 'Ecriture', 'Anglais' => 'Writing', 'Francais' => 'Écriture'],
['Type' => 'LABEL', 'code' => 'Type_service', 'Anglais' => 'Type of service', 'Francais' => 'Type service'],
['Type' => 'LABEL', 'code' => 'Contract_status', 'Anglais' => 'Contract status', 'Francais' => 'Statut du contrat'],
['Type' => 'LABEL', 'code' => 'Access', 'Anglais' => 'Access', 'Francais' => 'Accès'],
['Type' => 'LABEL', 'code' => 'Access_deliverables', 'Anglais' => 'Access to deliverables', 'Francais' => 'Accès aux livrables'],
['Type' => 'LABEL', 'code' => 'Current_deadline', 'Anglais' => 'Current deadline', 'Francais' => 'Échéance actuelle'],
['Type' => 'LABEL', 'code' => 'Total_deliverables', 'Anglais' => 'Total_deliverables', 'Francais' => 'Total Livrables'],
['Type' => 'LABEL', 'code' => 'Deliverables_generated', 'Anglais' => 'Deliverables generated', 'Francais' => 'Livrables générés'],
['Type' => 'LABEL', 'code' => 'Remaining_generated', 'Anglais' => 'Remaining to be generated', 'Francais' => 'Restants à générer'],
['Type' => 'LABEL', 'code' => 'Number_deliverables_generated', 'Anglais' => 'Number of deliverables to be generated', 'Francais' => 'Nombre de livrables à générer'],
['Type' => 'LABEL', 'code' => 'Select_category', 'Anglais' => 'Select a category', 'Francais' => 'Sélectionnez une catégorie'],
['Type' => 'LABEL', 'code' => 'Deadline_Deliverable', 'Anglais' => 'Due Date', 'Francais' => 'Échéance'],
['Type' => 'LABEL', 'code' => 'Number_deliverables', 'Anglais' => 'Number deliverables', 'Francais' => 'Nombre de livrables'],
['Type' => 'LABEL', 'code' => 'Statutory_Service', 'Anglais' => 'Statutory Service', 'Francais' => 'Statutaire Service'],
['Type' => 'LABEL', 'code' => 'OUI', 'Anglais' => 'Yes', 'Francais' => 'Oui'],
['Type' => 'LABEL', 'code' => 'NON', 'Anglais' => 'No', 'Francais' => 'Non'],
['Type' => 'LABEL', 'code' => 'NO_ACCESS', 'Anglais' => 'No Access', 'Francais' => 'Aucun accès'],
['Type' => 'LABEL', 'code' => 'NO_ACCESS_FOUND', 'Anglais' => 'No Access Found', 'Francais' => 'Aucun accès trouvé'],
['Type' => 'LABEL', 'code' => 'Add_service', 'Anglais' => ' Add a service', 'Francais' => 'Ajouter un service'],
['Type' => 'LABEL', 'code' => 'Delete_last', 'Anglais' => 'Delete the last', 'Francais' => 'Supprimer le dernier'],
['Type' => 'LABEL', 'code' => 'Contract_details', 'Anglais' => 'Contract details', 'Francais' => 'Détails contrat'],
['Type' => 'LABEL', 'code' => 'Nom_contrat', 'Anglais' => 'Contrat Reference', 'Francais' => 'Rerefence contrat'],
['Type' => 'LABEL', 'code' => 'List_contract_services', 'Anglais' => 'List of contract services', 'Francais' => 'Liste des services du contrat'],
['Type' => 'LABEL', 'code' => 'Frequency_delivery', 'Anglais' => 'Frequency of delivery', 'Francais' => 'Fréquence du livrable'],
['Type' => 'LABEL', 'code' => 'Associated_deliverables', 'Anglais' => 'Associated deliverables', 'Francais' => 'Livrables associés'],
['Type' => 'LABEL', 'code' => 'No_deliverables_ervice', 'Anglais' => 'No deliverables for this service', 'Francais' => 'Aucun livrable pour ce service'],
['Type' => 'LABEL', 'code' => 'Designation_service', 'Anglais' => 'Service designation', 'Francais' => 'Designation du service'],
['Type' => 'LABEL', 'code' => 'Company_files', 'Anglais' => 'Company files', 'Francais' => 'Dossiers Entreprises'],
['Type' => 'LABEL', 'code' => 'No_messages_available', 'Anglais' => 'No messages available.', 'Francais' => 'Aucun message disponible.'],
['Type' => 'LABEL', 'code' => 'Add_Fichier', 'Anglais' => 'You can add several files.', 'Francais' => 'Vous pouvez ajouter plusieurs fichiers.'],
['Type' => 'LABEL', 'code' => 'Download_FIle', 'Anglais' => 'Download FIle', 'Francais' => 'Télécharger le fichier'],
['Type' => 'LABEL', 'code' => 'File_Name', 'Anglais' => 'Download FIle', 'Francais' => 'Nom du Fichier'],
['Type' => 'LABEL', 'code' => 'Related_tasks', 'Anglais' => 'Related tasks', 'Francais' => 'Tâches liées'],
['Type' => 'LABEL', 'code' => 'Progression_Livrable', 'Anglais' => 'Progression', 'Francais' => 'Progression'],
['Type' => 'LABEL', 'code' => 'Attach_new_task', 'Anglais' => 'Attach a new task', 'Francais' => 'Attacher une nouvelle tâche'],
['Type' => 'LABEL', 'code' => 'Chat_with_client', 'Anglais' => 'Chat with client', 'Francais' => 'Envoyer un message au client'],
['Type' => 'LABEL', 'code' => 'Select_task_view_comments', 'Anglais' => 'Select a task to view the comments.', 'Francais' => 'Sélectionnez une tâche pour voir les commentaires.'],
['Type' => 'LABEL', 'code' => 'Last_modification', 'Anglais' => 'Last modification', 'Francais' => 'Dernière modification'],
['Type' => 'LABEL', 'code' => 'Task_details', 'Anglais' => 'Task details', 'Francais' => 'Détails de la Tâche'],
['Type' => 'LABEL', 'code' => 'DETAILS', 'Anglais' => 'Details', 'Francais' => 'Détails'],
['Type' => 'LABEL', 'code' => 'MORE_DETAILS', 'Anglais' => 'More details', 'Francais' => 'Plus de détails'],
['Type' => 'LABEL', 'code' => 'Update_Task', 'Anglais' => 'Update Task', 'Francais' => 'Mise à jour de la Tâche'],
['Type' => 'LABEL', 'code' => 'ACCESSIBLE_DATA', 'Anglais' => 'My Access Rights', 'Francais' => 'Mes accès'],
['Type' => 'LABEL', 'code' => 'Occurrences_deliverable', 'Anglais' => 'Occurrences deliverable', 'Francais' => 'Occurrences livrable'],
['Type' => 'LABEL', 'code' => 'Add_accesses_service', 'Anglais' => 'Add accesses for the service', 'Francais' => 'Ajouter les accès pour le service'],
['Type' => 'LABEL', 'code' => 'Associated_services', 'Anglais' => 'Associated services', 'Francais' => 'Services associés'],
['Type' => 'LABEL', 'code' => 'Access_to_Services', 'Anglais' => 'Access to Services', 'Francais' => 'Accès aux Services'],
['Type' => 'LABEL', 'code' => 'Should_deliverables', 'Anglais' => 'Should access be inherited from deliverables?', 'Francais' => 'Les accès doivent-ils être hérités des livrables ?'],
['Type' => 'LABEL', 'code' => 'Should_tasks', 'Anglais' => 'Should access be inherited from tasks?', 'Francais' => 'Les accès doivent-ils être hérités des tâches ?'],
['Type' => 'LABEL', 'code' => 'Add_a_line', 'Anglais' => 'Add a line', 'Francais' => 'Ajouter une ligne'],
['Type' => 'LABEL', 'code' => 'Save_changes', 'Anglais' => 'Save changes', 'Francais' => 'Enregistrer les modifications'],
['Type' => 'LABEL', 'code' => 'Task_name', 'Anglais' => 'Task', 'Francais' => 'Tâche'],
['Type' => 'LABEL', 'code' => 'Average_progress_spots', 'Anglais' => 'Average progress of spots', 'Francais' => 'Progression moyenne des taches'],
['Type' => 'LABEL', 'code' => 'View_task_details', 'Anglais' => 'View task details', 'Francais' => 'Afficher les détails des tâches'],
['Type' => 'LABEL', 'code' => 'View_task_accesses', 'Anglais' => 'Authorized Users', 'Francais' => 'Utilisateurs autorisés'],
['Type' => 'LABEL', 'code' => 'TRAITEMENT', 'Anglais' => '', 'Francais' => ''],
['Type' => 'LABEL', 'code' => 'DATE_FIN_PREVU', 'Anglais' => 'Expected end date', 'Francais' => 'Date de fin prévu'],
['Type' => 'LABEL', 'code' => 'Calendar_Declarations', 'Anglais' => 'Statutory Calendars', 'Francais' => 'Calendriers Statutaires'],
['Type' => 'LABEL', 'code' => 'Declaration_details', 'Anglais' => 'Report details', 'Francais' => 'Détails des déclarations'],
['Type' => 'LABEL', 'code' => 'ONGOING_REPORTS', 'Anglais' => 'My Ongoing Reports', 'Francais' => 'Mes Déclarations en cours'],
['Type' => 'LABEL', 'code' => 'CATEGORY', 'Anglais' => 'Category', 'Francais' => 'Catégorie'],
['Type' => 'LABEL', 'code' => 'LATEST_MESSAGES', 'Anglais' => 'Latest messages', 'Francais' => 'Derniers messages'],
['Type' => 'LABEL', 'code' => 'NO_TASK_MESSAGE', 'Anglais' => 'No message for this task', 'Francais' => 'Aucun message pour cette tâche'],
['Type' => 'LABEL', 'code' => 'NO_OVERDUE_ITEMS', 'Anglais' => 'No overdue items at the moment', 'Francais' => 'Aucun élément en retard pour le moment'],
['Type' => 'LABEL', 'code' => 'EOP', 'Anglais' => 'End Per.', 'Francais' => 'Fin Pér.'],
['Type' => 'LABEL', 'code' => 'jours', 'Anglais' => 'Days', 'Francais' => 'Jours'],
['Type' => 'LABEL', 'code' => 'mois', 'Anglais' => 'Months', 'Francais' => 'Mois'],
['Type' => 'LABEL', 'code' => 'English_Name', 'Anglais' => 'English Name', 'Francais' => 'Nom anglais'],
['Type' => 'LABEL', 'code' => 'French_Name', 'Anglais' => 'French Name', 'Francais' => 'Nom français'],
['Type' => 'LABEL', 'code' => 'Designation_en', 'Anglais' => 'Designation_en', 'Francais' => 'Designation_en'],
['Type' => 'LABEL', 'code' => 'LANGUE', 'Anglais' => 'Langue', 'Francais' => 'Langue'],
['Type' => 'LABEL', 'code' => 'Cat1', 'Anglais' => 'Categorie 1', 'Francais' => 'Categorie 1'],
['Type' => 'LABEL', 'code' => 'Cat2', 'Anglais' => 'Categorie 2', 'Francais' => 'Categorie 2'],
['Type' => 'LABEL', 'code' => 'Cat3', 'Anglais' => 'Categorie 2', 'Francais' => 'Categorie 3'],
['Type' => 'LABEL', 'code' => 'NO_COMPANY_AVAILABLE', 'Anglais' => 'No company available', 'Francais' => 'Aucune entreprise disponible'],
['Type' => 'LABEL', 'code' => 'Start_adding_company', 'Anglais' => 'Start by adding your first company', 'Francais' => 'Commencez par ajouter votre première entreprise'],
['Type' => 'LABEL', 'code' => 'Subsidiaries_management', 'Anglais' => 'Subsidiaries management', 'Francais' => 'Gestion des Filiales'],
['Type' => 'LABEL', 'code' => 'Company_information', 'Anglais' => 'Company information', 'Francais' => 'Informations de l\'Entreprise'],
['Type' => 'LABEL', 'code' => 'SPACE', 'Anglais' => 'Space', 'Francais' => 'Espace'],
['Type' => 'LABEL', 'code' => 'ALL_FILES', 'Anglais' => 'All Files', 'Francais' => 'Tous les fichiers'],
['Type' => 'LABEL', 'code' => 'ALLFILES', 'Anglais' => 'Files', 'Francais' => 'Fichiers'],
['Type' => 'LABEL', 'code' => 'RAPPORT', 'Anglais' => 'Rapport', 'Francais' => 'Rapport'],
['Type' => 'LABEL', 'code' => 'RAPPORTS', 'Anglais' => 'Rapport', 'Francais' => 'Rapports'],
['Type' => 'LABEL', 'code' => 'FOLDERS', 'Anglais' => 'Folders', 'Francais' => 'Dossiers'],
['Type' => 'LABEL', 'code' => 'SEARCH_COMPANY', 'Anglais' => 'Search for a company...', 'Francais' => 'Rechercher une entreprise...'],
['Type' => 'LABEL', 'code' => 'COL_id_filiale', 'Anglais' => 'id_filiale', 'Francais' => 'id_filiale'],
['Type' => 'LABEL', 'code' => 'COL_Id_entreprise_mere', 'Anglais' => 'Id_entreprise_mere', 'Francais' => 'Id_entreprise_mere'],
['Type' => 'LABEL', 'code' => 'COL_Id_entreprise_fille', 'Anglais' => 'Id_entreprise_fille', 'Francais' => 'Id_entreprise_fille'],
['Type' => 'LABEL', 'code' => 'New_Contract', 'Anglais' => 'Nouveau Contrat', 'Francais' => 'Nouveau Contrat'],
['Type' => 'LABEL', 'code' => 'New_Contract_Warning', 'Anglais' => 'New Contract Warning: references_taches_autorisees is not set in the session.', 'Francais' => 'Avertissement Nouveau Contrat : references_taches_autorisees n’est pas défini dans la session.'],
['Type' => 'LABEL', 'code' => 'NOM_DE_DECLARATION_INTROUVABLE', 'Anglais' => 'Declaration name not found', 'Francais' => 'Nom de declaration introuvable'],
// New entries for Entreprise trait
['Type' => 'TABLE', 'code' => 'TABLE_PAYS_ENTREPRISE', 'Anglais' => 'pays_entreprise', 'Francais' => 'pays_entreprise'],
['Type' => 'TABLE', 'code' => 'TABLE_WORLD_COUNTRIES', 'Anglais' => 'world_countries', 'Francais' => 'world_countries'],
['Type' => 'TABLE', 'code' => 'TABLE_ENTREPRISE_FILIALES', 'Anglais' => 'entreprise_filiales', 'Francais' => 'entreprise_filiales'],
['Type' => 'TABLE', 'code' => 'TABLE_USERS_ACCESS_ENTREPRISE', 'Anglais' => 'users_access_entreprise', 'Francais' => 'users_access_entreprise'],
['Type' => 'TABLE', 'code' => 'TABLE_TACHE_CHAT_ATTACHMENT', 'Anglais' => 'Tache_chat_Attachment', 'Francais' => 'Tache_chat_Attachment'],
['Type' => 'FOLDER', 'code' => 'FOLDER_SERVICE', 'Anglais' => 'service', 'Francais' => 'service'],
['Type' => 'FOLDER', 'code' => 'FOLDER_LIVRABLE', 'Anglais' => 'livrable', 'Francais' => 'livrable'],
['Type' => 'FOLDER', 'code' => 'FOLDER_CONTRAT', 'Anglais' => 'contrat', 'Francais' => 'contrat'],
['Type' => 'label', 'code' => 'USERS_LOG', 'Anglais' => 'users_log', 'Francais' => 'users_log'],
['Type' => 'label', 'code' => 'USERS_TYPES', 'Anglais' => 'users_types', 'Francais' => 'users_types'],
['Type' => 'label', 'code' => 'TAB_USERS', 'Anglais' => 'users', 'Francais' => 'users'],
['Type' => 'label', 'code' => 'USERS_ACCESS_SERVICE', 'Anglais' => 'users_access_service', 'Francais' => 'users_access_service'],
['Type' => 'label', 'code' => 'USERS_ACCESS_PAYS', 'Anglais' => 'users_access_pays', 'Francais' => 'users_access_pays'],
['Type' => 'LABEL', 'code' => 'COL_USERS_TYPES', 'Anglais' => 'Users_types', 'Francais' => 'Users_types'],
['Type' => 'LABEL', 'code' => 'COL_ID_USERS', 'Anglais' => 'Id_users', 'Francais' => 'Id_users'],
['Type' => 'LABEL', 'code' => 'COL_ID_ENTREPRISE', 'Anglais' => 'Id_entreprise', 'Francais' => 'Id_entreprise'],
['Type' => 'LABEL', 'code' => 'COL_ID_DECLARATION_ECHEANCES', 'Anglais' => 'Id_declaration_echeances', 'Francais' => 'Id_declaration_echeances'],
['Type' => 'LABEL', 'code' => 'COL_MONTANT', 'Anglais' => 'Montant', 'Francais' => 'Montant'],
['Type' => 'LABEL', 'code' => 'COL_SOLDE', 'Anglais' => 'Solde', 'Francais' => 'Solde'],
['Type' => 'LABEL', 'code' => 'COL_TOTAL_PAIEMENT', 'Anglais' => 'Total_paiement', 'Francais' => 'Total_paiement'],
['Type' => 'LABEL', 'code' => 'COL_ID_STATUT_PAIEMENT', 'Anglais' => 'Id_statut_paiement', 'Francais' => 'Id_statut_paiement'],
['Type' => 'LABEL', 'code' => 'COL_ID_STATUT_DECLARATION', 'Anglais' => 'Id_statut_declaration', 'Francais' => 'Id_statut_declaration'],
['Type' => 'LABEL', 'code' => 'COL_DATE_SAVE', 'Anglais' => 'Date_save', 'Francais' => 'Date_save'],
['Type' => 'LABEL', 'code' => 'COL_LAST_USER_CONTRIBUTION', 'Anglais' => 'last_user_contribution', 'Francais' => 'last_user_contribution'],
['Type' => 'LABEL', 'code' => 'COL_LAST_DATE_CONTRIBUTION', 'Anglais' => 'last_date_contribution', 'Francais' => 'last_date_contribution'],
['Type' => 'LABEL', 'code' => 'COL_PREUVE_PAIEMENT', 'Anglais' => 'preuve_paiement', 'Francais' => 'preuve_paiement '],
['Type' => 'LABEL', 'code' => 'COL_MONTANT_DE_REFERENCE', 'Anglais' => 'Montant_de_reference', 'Francais' => 'Montant_de_reference'],
['Type' => 'LABEL', 'code' => 'COL_ID_DECLARATION', 'Anglais' => 'Id_declaration', 'Francais' => 'Id_declaration'],
['Type' => 'LABEL', 'code' => 'COL_DATE_DUE', 'Anglais' => 'Date_due', 'Francais' => 'Date_due'],
['Type' => 'LABEL', 'code' => 'COL_ID_STATUT', 'Anglais' => 'Id_statut', 'Francais' => 'Id_statut'],
['Type' => 'LABEL', 'code' => 'ERROR_PAYMENT_REGISTRATION', 'Anglais' => 'An error occurred while saving the payment.', 'Francais' => 'Une erreur est survenue lors de l’enregistrement du paiement.'],
['Type' => 'LABEL', 'code' => 'COL_NOM', 'Anglais' => 'Nom', 'Francais' => 'Nom'],
['Type' => 'LABEL', 'code' => 'TAB_servicecategorie', 'Anglais' => 'servicecategorie', 'Francais' => 'servicecategorie'],
['Type' => 'LABEL', 'code' => 'Quantity', 'Anglais' => 'Quantity', 'Francais' => 'Quantité'],
['Type' => 'LABEL', 'code' => 'TAB_SYSTEM_ACTIVITY', 'Anglais' => 'system_activity', 'Francais' => 'system_activity'],
['Type' => 'LABEL', 'code' => 'Thank_you', 'Anglais' => 'Thank you for your business!', 'Francais' => 'Merci pour votre entreprise!\r\n'],
['Type' => 'LABEL', 'code' => 'USERS_ACCESS_ADD_USERS', 'Anglais' => 'users_access_add_user', 'Francais' => 'users_access_add_user'],
['Type' => 'LABEL', 'code' => 'Discount', 'Anglais' => 'Discount', 'Francais' => 'Remise'],
['Type' => 'LABEL', 'code' => 'Createdby', 'Anglais' => 'Created by', 'Francais' => 'Créé par'],
['Type' => 'LABEL', 'code' => 'CodeEntreprise', 'Anglais' => 'Code entreprise', 'Francais' => 'Code entreprise'],
['Type' => 'LABEL', 'code' => 'invoice_date', 'Anglais' => 'Invoice date', 'Francais' => 'Date de facture'],
['Type' => 'LABEL', 'code' => 'Due_Date', 'Anglais' => 'Due date', 'Francais' => 'Date d\'échéance'],
['Type' => 'LABEL', 'code' => 'Invoice_recipient', 'Anglais' => 'Invoice recipient', 'Francais' => 'Destinataire facture'],
['Type' => 'LABEL', 'code' => 'Address', 'Anglais' => 'Address', 'Francais' => 'Adresse'],
['Type' => 'LABEL', 'code' => 'amount_TTC', 'Anglais' => 'Amount TTC', 'Francais' => 'Montant TTC'],
['Type' => 'LABEL', 'code' => 'amount_HT', 'Anglais' => 'Amount HT', 'Francais' => 'Montant HT'],
['Type' => 'LABEL', 'code' => 'Select_Contract', 'Anglais' => 'Select contract', 'Francais' => 'Sélectionner un contrat'],
['Type' => 'LABEL', 'code' => 'Dossiers', 'Anglais' => 'Folders', 'Francais' => 'Dossiers'],
['Type' => 'OBJECT', 'code' => 'Add_subsidiary', 'Anglais' => 'Add subsidiary', 'Francais' => 'Ajouter une filiale'],
['Type' => 'LABEL', 'code' => 'Update_subsidiary', 'Anglais' => 'Update subsidiary', 'Francais' => ' Modifier la filiale'],
['Type' => 'LABEL', 'code' => 'Use_a_template', 'Anglais' => 'Use a template', 'Francais' => 'Utiliser un modèle'],
['Type' => 'LABEL', 'code' => 'Create_a_new_template', 'Anglais' => 'Create a new template', 'Francais' => 'Créer un nouveau modèle'],
['Type' => 'LABEL', 'code' => 'InvoiceLabel', 'Anglais' => '<strong>Invoice #:</strong> N°OS/FAC0000XXX', 'Francais' => '<strong>Facture #:</strong> N°OS/FAC0000XXX'],
['Type' => 'LABEL', 'code' => 'TEMPLATE_CHOICE_TITLE', 'Anglais' => 'Use an existing template or create a new one?', 'Francais' => 'Utiliser un modèle existant ou en créer un nouveau ?'],
['Type' => 'LABEL', 'code' => 'Invoice_Issuer', 'Anglais' => 'Invoice issuer', 'Francais' => 'Entreprise émettrice de la facture'],
['Type' => 'LABEL', 'code' => 'Choose_Company', 'Anglais' => 'Choose company', 'Francais' => "Choisir l'entreprise :"],
['Type' => 'LABEL', 'code' => 'Go_Back', 'Anglais' => 'Go Back', 'Francais' => '← Go Back'],
['Type' => 'LABEL', 'code' => 'Billed_Client', 'Anglais' => 'Billed client', 'Francais' => 'Client facturé'],
['Type' => 'LABEL', 'code' => 'Name_Company', 'Anglais' => 'Name / Company', 'Francais' => 'Nom / Société'],
['Type' => 'MENU', 'code' => 'Facturation_Menu', 'Anglais' => 'Invoicing', 'Francais' => 'Facturation'],
['Type' => 'LABEL', 'code' => 'Sales_List', 'Anglais' => 'Sales List', 'Francais' => 'Liste des Ventes'],
['Type' => 'LABEL', 'code' => 'Issue', 'Anglais' => 'Issue', 'Francais' => 'Émission'],
['Type' => 'LABEL', 'code' => 'Send_Email', 'Anglais' => 'Send by email', 'Francais' => 'Envoyer par email'],
['Type' => 'LABEL', 'code' => 'Mark_Paid', 'Anglais' => 'Mark as paid', 'Francais' => 'Marquer comme payée'],
['Type' => 'LABEL', 'code' => 'Reference', 'Anglais' => 'Reference', 'Francais' => 'Reference'],
['Type' => 'LABEL', 'code' => 'Company', 'Anglais' => 'Company', 'Francais' => 'Entreprise'],
['Type' => 'LABEL', 'code' => 'Amounts', 'Anglais' => 'Amounts', 'Francais' => 'Montants'],
['Type' => 'LABEL', 'code' => 'Dates', 'Anglais' => 'Dates', 'Francais' => 'Dates'],
['Type' => 'LABEL', 'code' => 'Statuses', 'Anglais' => 'Statuses', 'Francais' => 'Statuts'],
['Type' => 'LABEL', 'code' => 'Payment', 'Anglais' => 'Payment', 'Francais' => 'Paiement'],
['Type' => 'LABEL', 'code' => 'Actions', 'Anglais' => 'Actions', 'Francais' => 'Actions'],
['Type' => 'LABEL', 'code' => 'Billing_Management', 'Anglais' => 'Billing Management', 'Francais' => 'Gestion de la Facturation'],
['Type' => 'LABEL', 'code' => 'Label_Lecture', 'Anglais' => 'Lecture', 'Francais' => 'Lecture'],
['Type' => 'LABEL', 'code' => 'Label_Statut', 'Anglais' => 'Statut', 'Francais' => 'Statut'],
['Type' => 'LABEL', 'code' => 'Payment_Info', 'Anglais' => 'Payment Info', 'Francais' => 'Infos paiement'],
['Type' => 'LABEL', 'code' => 'Add_Invoice', 'Anglais' => 'Add Invoice', 'Francais' => 'Ajouter une facture'],
['Type' => 'LABEL', 'code' => 'Reset_Filters', 'Anglais' => 'Clear Filters', 'Francais' => 'Effacer les filtres'],
['Type' => 'LABEL', 'code' => 'All_Companies', 'Anglais' => 'All Companies', 'Francais' => 'Toutes les entreprises'],
['Type' => 'LABEL', 'code' => 'All_Contracts', 'Anglais' => 'All Contracts', 'Francais' => 'Tous les contrats'],
['Type' => 'LABEL', 'code' => 'All_Status', 'Anglais' => 'All Status', 'Francais' => 'Tous les statuts'],
['Type' => 'LABEL', 'code' => 'Payment_Status', 'Anglais' => 'Payment Status', 'Francais' => 'Statut paiement'],
['Type' => 'LABEL', 'code' => 'All_Currencies', 'Anglais' => 'All Currencies', 'Francais' => 'Toutes devises'],
['Type' => 'LABEL', 'code' => 'Emission_Date', 'Anglais' => 'Emission Date', 'Francais' => 'Date émission'],
['Type' => 'LABEL', 'code' => 'Amount_HT', 'Anglais' => 'Amount (excl. VAT)', 'Francais' => 'Montant HT'],
['Type' => 'LABEL', 'code' => 'Reference_Invoice', 'Anglais' => 'Invoice Reference', 'Francais' => 'Référence facture'],
['Type' => 'LABEL', 'code' => 'Reference_Placeholder', 'Anglais' => 'Reference...', 'Francais' => 'Référence...'],
['Type' => 'LABEL', 'code' => 'Pending', 'Anglais' => 'Pending', 'Francais' => 'En attente'],
['Type' => 'LABEL', 'code' => 'Late', 'Anglais' => 'Late', 'Francais' => 'En retard'],
['Type' => 'LABEL', 'code' => 'Cancelled', 'Anglais' => 'Cancelled', 'Francais' => 'Annulée'],
['Type' => 'LABEL', 'code' => 'This_Month', 'Anglais' => 'This Month', 'Francais' => 'Ce mois'],
['Type' => 'LABEL', 'code' => 'Label_TO', 'Anglais' => 'To', 'Francais' => 'à'],
['Type' => 'LABEL', 'code' => 'COL_entreprise', 'Anglais' => 'entreprise', 'Francais' => 'entreprise'],
['Type' => 'LABEL', 'code' => 'COL_total_ttc', 'Anglais' => 'total_ttc', 'Francais' => 'total_ttc'],
['Type' => 'LABEL', 'code' => 'COL_montant_ht', 'Anglais' => 'montant_ht', 'Francais' => 'montant_ht'],
['Type' => 'LABEL', 'code' => 'COL_tva', 'Anglais' => 'tva', 'Francais' => 'tva'],
['Type' => 'LABEL', 'code' => 'COL_devise', 'Anglais' => 'devise', 'Francais' => 'devise'],
['Type' => 'LABEL', 'code' => 'COL_date_facture', 'Anglais' => 'date_facture', 'Francais' => 'date_facture'],
['Type' => 'LABEL', 'code' => 'COL_date_echeance', 'Anglais' => 'date_echeance', 'Francais' => 'date_echeance'],
['Type' => 'LABEL', 'code' => 'COL_statut', 'Anglais' => 'statut', 'Francais' => 'statut'],
['Type' => 'LABEL', 'code' => 'COL_statut_paiement', 'Anglais' => 'statut_paiement', 'Francais' => 'statut_paiement'],
['Type' => 'LABEL', 'code' => 'COL_badge_class', 'Anglais' => 'badge_class', 'Francais' => 'badge_class'],
['Type' => 'LABEL', 'code' => 'COL_badge_paiement', 'Anglais' => 'badge_paiement', 'Francais' => 'badge_paiement'],
['Type' => 'LABEL', 'code' => 'COL_date_paiement', 'Anglais' => 'date_paiement', 'Francais' => 'date_paiement'],
['Type' => 'LABEL', 'code' => 'COL_remise', 'Anglais' => 'remise', 'Francais' => 'remise'],
['Type' => 'LABEL', 'code' => 'COL_IdFacture', 'Anglais' => 'IdFacture', 'Francais' => 'IdFacture'],
['Type' => 'LABEL', 'code' => 'COL_row_class', 'Anglais' => 'row_class', 'Francais' => 'row_class'],
['Type' => 'LABEL', 'code' => 'COL_btn_actif_class', 'Anglais' => 'btn_actif_class', 'Francais' => 'btn_actif_class'],
['Type' => 'LABEL', 'code' => 'COL_btn_actif_title', 'Anglais' => 'btn_actif_title', 'Francais' => 'btn_actif_title'],
['Type' => 'LABEL', 'code' => 'COL_btn_actif_icon', 'Anglais' => 'btn_actif_icon', 'Francais' => 'btn_actif_icon'],
['Type' => 'LABEL', 'code' => 'COL_show_modifier', 'Anglais' => 'show_modifier', 'Francais' => 'show_modifier'],
['Type' => 'LABEL', 'code' => 'COL_show_envoyer', 'Anglais' => 'show_envoyer', 'Francais' => 'show_envoyer'],
['Type' => 'LABEL', 'code' => 'COL_show_mark_paid', 'Anglais' => 'show_mark_paid', 'Francais' => 'show_mark_paid'],
['Type' => 'LABEL', 'code' => 'COL_show_toggle_actif', 'Anglais' => 'show_toggle_actif', 'Francais' => 'show_toggle_actif'],
['Type' => 'LABEL', 'code' => 'COL_Reference_contrat', 'Anglais' => 'Reference_contrat', 'Francais' => 'Reference_contrat'],
['Type' => 'TEXT', 'code' => 'TXT_contrat', 'Anglais' => 'Contract', 'Francais' => 'Contrat'],
['Type' => 'TEXT', 'code' => 'Deliverable_deadline', 'Anglais' => 'Deliverable deadline', 'Francais' => 'Échéance du Livrable'],
['Type' => 'TEXT', 'code' => 'Choose_service', 'Anglais' => 'Choose a service', 'Francais' => 'Choisir un service'],
['Type' => 'TEXT', 'code' => 'TXT_ttc', 'Anglais' => 'Incl. VAT', 'Francais' => 'TTC'],
['Type' => 'TEXT', 'code' => 'TXT_tva', 'Anglais' => 'VAT', 'Francais' => 'TVA'],
['Type' => 'TEXT', 'code' => 'TXT_emission', 'Anglais' => 'Issue Date', 'Francais' => 'Émission'],
['Type' => 'TEXT', 'code' => 'TXT_echeance', 'Anglais' => 'Due Date', 'Francais' => 'Échéance'],
['Type' => 'TEXT', 'code' => 'TXT_remise', 'Anglais' => 'Discount', 'Francais' => 'Remise'],
['Type' => 'TEXT', 'code' => 'TXT_modifier_btn', 'Anglais' => 'Modify', 'Francais' => 'Modifier'],
['Type' => 'TEXT', 'code' => 'TXT_send_email_btn', 'Anglais' => 'Send by email', 'Francais' => 'Envoyer par email'],
['Type' => 'TEXT', 'code' => 'TXT_view_invoice_btn', 'Anglais' => 'View Invoice', 'Francais' => 'Voir la facture'],
['Type' => 'TEXT', 'code' => 'TXT_mark_paid_btn', 'Anglais' => 'Mark as paid', 'Francais' => 'Marquer comme payée'],
['Type' => 'TEXT', 'code' => 'TXT_header_num', 'Anglais' => '#', 'Francais' => 'N°'],
['Type' => 'TEXT', 'code' => 'TXT_header_reference', 'Anglais' => 'Reference', 'Francais' => 'Référence'],
['Type' => 'TEXT', 'code' => 'TXT_header_company', 'Anglais' => 'Company', 'Francais' => 'Entreprise'],
['Type' => 'TEXT', 'code' => 'TXT_header_amounts', 'Anglais' => 'Amounts', 'Francais' => 'Montants'],
['Type' => 'TEXT', 'code' => 'TXT_header_dates', 'Anglais' => 'Dates', 'Francais' => 'Dates'],
['Type' => 'TEXT', 'code' => 'TXT_header_status', 'Anglais' => 'Status', 'Francais' => 'Statut'],
['Type' => 'TEXT', 'code' => 'TXT_header_payment_info', 'Anglais' => 'Payment Info', 'Francais' => 'Infos Paiement'],
['Type' => 'TEXT', 'code' => 'TXT_header_actions', 'Anglais' => 'Actions', 'Francais' => 'Actions'],
['Type' => 'TEXT', 'code' => 'TXT_modal_send_mail_title', 'Anglais' => 'Send Invoice by Email', 'Francais' => 'Envoyer la facture par mail'],
['Type' => 'TEXT', 'code' => 'TXT_modal_close_btn', 'Anglais' => 'Close', 'Francais' => 'Fermer'],
['Type' => 'TEXT', 'code' => 'TXT_modal_reference_label', 'Anglais' => 'Reference', 'Francais' => 'Référence'],
['Type' => 'TEXT', 'code' => 'TXT_modal_company_label', 'Anglais' => 'Company', 'Francais' => 'Entreprise'],
['Type' => 'TEXT', 'code' => 'TXT_modal_message_label', 'Anglais' => 'Message', 'Francais' => 'Message'],
['Type' => 'TEXT', 'code' => 'TXT_modal_default_message', 'Anglais' => "Hello,\nPlease find your invoice attached. Best regards.", 'Francais' => "Bonjour,\nVeuillez trouver ci-joint votre facture. Cordialement."],
['Type' => 'TEXT', 'code' => 'TXT_modal_cancel_btn', 'Anglais' => 'Cancel', 'Francais' => 'Annuler'],
['Type' => 'TEXT', 'code' => 'TXT_modal_send_btn', 'Anglais' => 'Send', 'Francais' => 'Envoyer'],
['Type' => 'TEXT', 'code' => 'TXT_modal_confirm_send_title', 'Anglais' => 'Send Confirmation', 'Francais' => "Confirmation d'envoi"],
['Type' => 'TEXT', 'code' => 'TXT_modal_confirm_send_body', 'Anglais' => 'Do you really want to send this invoice by email?', 'Francais' => "Voulez-vous vraiment envoyer cette facture par mail ?"],
['Type' => 'TEXT', 'code' => 'TXT_modal_confirm_button', 'Anglais' => 'Confirm', 'Francais' => 'Confirmer'],
['Type' => 'TEXT', 'code' => 'TXT_modal_mark_paid_title', 'Anglais' => 'Mark Invoice as Paid', 'Francais' => 'Marquer la facture comme payée'],
['Type' => 'TEXT', 'code' => 'TXT_modal_mark_paid_intro1', 'Anglais' => 'You are about to mark invoice:', 'Francais' => 'Vous êtes sur le point de marquer la facture :'],
['Type' => 'TEXT', 'code' => 'TXT_modal_mark_paid_intro2', 'Anglais' => 'For an amount of:', 'Francais' => 'Pour un montant de :'],
['Type' => 'TEXT', 'code' => 'TXT_modal_payment_date_label', 'Anglais' => 'Payment Date', 'Francais' => 'Date de paiement'],
['Type' => 'TEXT', 'code' => 'TXT_modal_confirm_payment_btn', 'Anglais' => 'Confirm Payment', 'Francais' => 'Confirmer le paiement'],
['Type' => 'TEXT', 'code' => 'TXT_table_designation_option', 'Anglais' => 'Designation', 'Francais' => 'Désignation'],
['Type' => 'TEXT', 'code' => 'TXT_table_delete_row_btn', 'Anglais' => 'Delete', 'Francais' => 'Supprimer'],
['Type' => 'TEXT', 'code' => 'TXT_table_add_row_btn', 'Anglais' => 'Add Row', 'Francais' => 'Ajouter une ligne'],
['Type' => 'TEXT', 'code' => 'TXT_table_header_sno', 'Anglais' => 'S.No', 'Francais' => 'N° Série'],
['Type' => 'TEXT', 'code' => 'TXT_table_header_description', 'Anglais' => 'Description', 'Francais' => 'Description'],
['Type' => 'TEXT', 'code' => 'TXT_table_header_cost_unit', 'Anglais' => 'Unit Cost', 'Francais' => 'Coût unitaire'],
['Type' => 'TEXT', 'code' => 'TXT_table_header_qty', 'Anglais' => 'Qty.', 'Francais' => 'Qté.'],
['Type' => 'TEXT', 'code' => 'TXT_table_header_total', 'Anglais' => 'Total', 'Francais' => 'Total'],
['Type' => 'TEXT', 'code' => 'TXT_table_header_action', 'Anglais' => 'Action', 'Francais' => 'Action'],
['Type' => 'TEXT', 'code' => 'TXT_table_header_id_temp', 'Anglais' => 'Temp ID', 'Francais' => 'Id_temp'], // Already hidden, but good to include for consistency
['Type' => 'TEXT', 'code' => 'TXT_table_header_id_service', 'Anglais' => 'Service ID', 'Francais' => 'Id_service'], // Already hidden, but good to include for consistency
['Type' => 'TEXT', 'code' => 'TXT_totals_tva_label', 'Anglais' => 'VAT', 'Francais' => 'TVA'],
['Type' => 'TEXT', 'code' => 'TXT_totals_discount_label', 'Anglais' => 'Discount', 'Francais' => 'Remise'],
['Type' => 'TEXT', 'code' => 'TXT_totals_amount_ht_label', 'Anglais' => 'Amount HT', 'Francais' => 'Montant HT'],
['Type' => 'TEXT', 'code' => 'TXT_totals_amount_ttc_label', 'Anglais' => 'Amount TTC', 'Francais' => 'Montant TTC'],
['Type' => 'TEXT', 'code' => 'TXT_totals_validate_btn', 'Anglais' => 'Validate', 'Francais' => 'Valider'],
['Type' => 'TEXT', 'code' => 'TXT_contract_label', 'Anglais' => 'Contract', 'Francais' => 'Contrat'],
['Type' => 'TEXT', 'code' => 'TXT_select_contract_option', 'Anglais' => 'Select Contract', 'Francais' => 'Sélectionner le contrat'],
['Type' => 'TEXT', 'code' => 'TXT_contract_ref_prefix', 'Anglais' => 'Contract #:', 'Francais' => 'Contrat #:'],
['Type' => 'TEXT', 'code' => 'TXT_month_to_invoice_label', 'Anglais' => 'Month To Invoice', 'Francais' => 'Mois à facturer'],
['Type' => 'TEXT', 'code' => 'TXT_select_month_option', 'Anglais' => 'Select Month', 'Francais' => 'Sélectionner le mois'],
['Type' => 'TEXT', 'code' => 'label_UN', 'Anglais' => '1', 'Francais' => '1'],
['Type' => 'TEXT', 'code' => 'label_DEUX', 'Anglais' => '2', 'Francais' => '2'],
['Type' => 'TEXT', 'code' => 'label_TROIS', 'Anglais' => '3', 'Francais' => '3'],
['Type' => 'TEXT', 'code' => 'label_QUATRE', 'Anglais' => '4', 'Francais' => '4'],
['Type' => 'TEXT', 'code' => 'label_CINQ', 'Anglais' => '5', 'Francais' => '5'],
['Type' => 'LABEL', 'code' => 'CONFIRM_REGENERATE_TOKEN', 'Anglais' => 'Are you sure you want to regenerate the token for this user?', 'Francais' => 'Êtes-vous sûr de vouloir régénérer le token pour cet utilisateur ?'],
['Type' => 'TEXT', 'code' => 'USER_MANAGEMEMNT', 'Anglais' => 'User management', 'Francais' => 'Gestion des Utilisateurs'],
['Type' => 'TEXT', 'code' => 'ADDUSERNEWRIGHTG', 'Anglais' => 'Add a new user and manage access rights', 'Francais' => 'Ajouter un nouvel utilisateur et gérer ses droits d\'accès'],
['Type' => 'TEXT', 'code' => 'User_information', 'Anglais' => 'User information', 'Francais' => 'Informations Utilisateur'],
['Type' => 'TEXT', 'code' => 'TXT_Select_company', 'Anglais' => 'Select a company', 'Francais' => 'Sélectionner une entreprise'],
['Type' => 'TEXT', 'code' => 'TXT_Choose_type', 'Anglais' => 'Choose a type', 'Francais' => 'Choisir un type'],
['Type' => 'TEXT', 'code' => 'TXT_Copy_rights', 'Anglais' => 'Copy rights', 'Francais' => 'Copier les droits'],
['Type' => 'TEXT', 'code' => 'TXT_Use_default_rights', 'Anglais' => 'Use default rights', 'Francais' => 'Utiliser les droits par défaut'],
['Type' => 'TEXT', 'code' => 'TXT_Selected_pages', 'Anglais' => 'Selected pages', 'Francais' => 'Pages sélectionnées'],
['Type' => 'TEXT', 'code' => 'TXT_Selected_companies', 'Anglais' => 'Selected companies', 'Francais' => 'Entreprises sélectionnées'],
['Type' => 'TEXT', 'code' => 'TXT_Page_access_rights', 'Anglais' => 'Page access rights', 'Francais' => 'Droits d\'accès aux Pages'],
['Type' => 'TEXT', 'code' => 'TXT_Loading', 'Anglais' => 'Loading...', 'Francais' => 'Chargement...'],
['Type' => 'TEXT', 'code' => 'TXT_Loading_pages', 'Anglais' => 'Loading pages...', 'Francais' => 'Chargement des pages...'],
['Type' => 'TEXT', 'code' => 'TXT_Select_user_type', 'Anglais' => 'Select a user type', 'Francais' => 'Sélectionnez un type d\'utilisateur'],
['Type' => 'TEXT', 'code' => 'TXT_Access_to_Companies', 'Anglais' => 'Access to Companies', 'Francais' => 'Accès aux Entreprises'],
['Type' => 'TEXT', 'code' => 'TXT_No_companies_selected', 'Anglais' => 'No companies selected', 'Francais' => 'Aucune entreprise sélectionnée'],
['Type' => 'TEXT', 'code' => 'TXT_Company_access_rights', 'Anglais' => 'Company access rights', 'Francais' => 'Droits d\'accès aux entreprises'],
['Type' => 'TEXT', 'code' => 'TXT_Loading_companies', 'Anglais' => 'Loading companies...', 'Francais' => 'Chargement des entreprises...'],
['Type' => 'TEXT', 'code' => 'TXT_Select_main_company', 'Anglais' => 'Select a main company', 'Francais' => ' Sélectionnez une entreprise principale'],
['Type' => 'TEXT', 'code' => 'TXT_select_user_to_copy', 'Anglais' => 'To manage multiple accesses, select a user to copy', 'Francais' => 'Pour gérer les accès multiples, choisissez un utilisateur à copier'],
['Type' => 'TEXT', 'code' => 'TXT_Create_user', 'Anglais' => 'Create user', 'Francais' => 'Créer Utilisateur'],
['Type' => 'TEXT', 'code' => 'TXT_Regenerate_token_confirm', 'Anglais' => 'Are you sure you want to regenerate the token for this user?', 'Francais' => 'Êtes-vous sûr de vouloir régénérer le token pour cet utilisateur ?'],
['Type' => 'TEXT', 'code' => 'TXT_Select_user_access', 'Anglais' => 'Select a user to view/modify their access', 'Francais' => 'Sélectionnez un utilisateur pour voir/modifier ses accès'],
['Type' => 'TEXT', 'code' => 'TXT_Delete_user_confirm', 'Anglais' => 'Are you sure you want to delete this user?', 'Francais' => 'Êtes-vous sûr de vouloir supprimer cet utilisateur'],
['Type' => 'LABEL', 'code' => 'Change_Password', 'Anglais' => 'Change password', 'Francais' => 'Changer le mot de passe'],
['Type' => 'LABEL', 'code' => 'Delete_User', 'Anglais' => 'Delete user', 'Francais' => 'Supprimer l\'utilisateur'],
['Type' => 'LABEL', 'code' => 'Activate_Account', 'Anglais' => 'Activate account', 'Francais' => 'Activer le compte'],
['Type' => 'LABEL', 'code' => 'Deactivate_Account', 'Anglais' => 'Deactivate account', 'Francais' => 'Désactiver le compte'],
['Type' => 'LABEL', 'code' => 'Enable_2FA', 'Anglais' => 'Enable two-factor authentication', 'Francais' => 'Activer l\'authentification à deux facteurs'],
['Type' => 'LABEL', 'code' => 'Disable_2FA', 'Anglais' => 'Disable two-factor authentication', 'Francais' => 'Désactiver l\'authentification à deux facteurs'],
['Type' => 'LABEL', 'code' => 'Regenerate_Token', 'Anglais' => 'Regenerate login token', 'Francais' => 'Régénérer le token de connexion'],
['Type' => 'LABEL', 'code' => 'Access_Pages', 'Anglais' => 'Page access', 'Francais' => 'Accès pages'],
['Type' => 'LABEL', 'code' => 'Access_Enterprises', 'Anglais' => 'Enterprise access', 'Francais' => 'Accès entreprises'],
['Type' => 'LABEL', 'code' => 'Access_Countries', 'Anglais' => 'Country access', 'Francais' => 'Accès pays'],
['Type' => 'LABEL', 'code' => 'TXT_Change_password_for', 'Francais' => 'Changer le mot de passe de', 'Anglais' => 'Change password for'],
['Type' => 'LABEL', 'code' => 'TXT_New_password', 'Francais' => 'Nouveau mot de passe', 'Anglais' => 'New password'],
['Type' => 'LABEL', 'code' => 'TXT_Confirm_password', 'Francais' => 'Confirmer le mot de passe', 'Anglais' => 'Confirm password'],
['Type' => 'LABEL', 'code' => 'TXT_Change', 'Francais' => 'Changer', 'Anglais' => 'Change'],
['Type' => 'LABEL', 'code' => 'TXT_Close', 'Francais' => 'Fermer', 'Anglais' => 'Close'],
['Type' => 'LABEL', 'code' => 'TXT_All', 'Francais' => 'Tout', 'Anglais' => 'All'],
['Type' => 'LABEL', 'code' => 'TXT_Read', 'Francais' => 'Lecture', 'Anglais' => 'Read'],
['Type' => 'LABEL', 'code' => 'TXT_Write', 'Francais' => 'Écriture', 'Anglais' => 'Write'],
['Type' => 'LABEL', 'code' => 'TXT_Select_All', 'Francais' => 'Tout sélectionner', 'Anglais' => 'Select all'],
['Type' => 'LABEL', 'code' => 'TXT_Enterprise', 'Francais' => 'Entreprise', 'Anglais' => 'Enterprise'],
['Type' => 'LABEL', 'code' => 'TXT_No_Enterprise_Available', 'Francais' => 'Aucune entreprise disponible.', 'Anglais' => 'No enterprise available.'],
['Type' => 'LABEL', 'code' => 'TXT_Country', 'Francais' => 'Pays', 'Anglais' => 'Country'],
['Type' => 'LABEL', 'code' => 'TXT_Access', 'Francais' => 'Accès', 'Anglais' => 'Access'],
['Type' => 'LABEL', 'code' => 'TXT_No_Country_Available', 'Francais' => 'Aucun pays disponible.', 'Anglais' => 'No country available.'],
['Type' => 'LABEL', 'code' => 'TXT_User_List', 'Francais' => 'Liste des utilisateurs', 'Anglais' => 'User list'],
['Type' => 'LABEL', 'code' => 'TXT_Activate_All', 'Francais' => 'Activer tous', 'Anglais' => 'Activate all'],
['Type' => 'LABEL', 'code' => 'TXT_Deactivate_All', 'Francais' => 'Désactiver tous', 'Anglais' => 'Deactivate all'],
['Type' => 'LABEL', 'code' => 'TXT_Enable_2FA_All', 'Francais' => 'Activer 2A pour tous', 'Anglais' => 'Enable 2FA for all'],
['Type' => 'LABEL', 'code' => 'TXT_Disable_2FA_All', 'Francais' => 'Désactiver 2A pour tous', 'Anglais' => 'Disable 2FA for all'],
['Type' => 'LABEL', 'code' => 'TXT_Add_User', 'Francais' => 'Ajouter un Utilisateur', 'Anglais' => 'Add a user'],
['Type' => 'LABEL', 'code' => 'TXT_Search_By_Email', 'Francais' => 'Rechercher par email', 'Anglais' => 'Search by email'],
['Type' => 'LABEL', 'code' => 'TXT_User_Access', 'Francais' => 'Accès utilisateur', 'Anglais' => 'User access'],
['Type' => 'LABEL', 'code' => 'NO_USER_FOR_COMPANY', 'Anglais' => 'No user found for this company', 'Francais' => 'Aucun utilisateur trouvé pour cette entreprise'],
['Type' => 'LABEL', 'code' => 'Send_to', 'Anglais' => 'Send to:', 'Francais' => 'Envoyer à :'],
['Type' => 'TEXT', 'code' => 'TXT_modal_delete_title', 'Francais' => 'Supprimer la facture', 'Anglais' => 'Delete invoice'],
['Type' => 'TEXT', 'code' => 'TXT_modal_delete_body', 'Francais' => 'Voulez-vous vraiment supprimer cette facture ?', 'Anglais' => 'Do you really want to delete this invoice?'],
['Type' => 'LABEL', 'code' => 'WARNING', 'Anglais' => 'Warning', 'Francais' => 'Avertissement'],
['Type' => 'LABEL', 'code' => 'ACTING_IRREVERSIBLE', 'Anglais' => 'This action is irreversible', 'Francais' => 'Cette action est irréversible'],
['Type' => 'LABEL', 'code' => 'SURE_DELETE', 'Anglais' => 'Are you sure you want to delete', 'Francais' => 'Êtes-vous sûr de vouloir supprimer'],
['Type' => 'LABEL', 'code' => 'DELETE_PERMANENTLY', 'Anglais' => 'Delete permanently', 'Francais' => 'Supprimer définitivement'],
['Type' => 'LABEL', 'code' => 'ANNULER', 'Anglais' => 'Cancel', 'Francais' => 'Annuler'],
['Type' => 'LABEL', 'code' => 'RECCORD_DELETE', 'Anglais' => 'This will also delete all related records.', 'Francais' => 'Cela supprimera aussi tous les éléments associés.'],
['Type' => 'LABEL', 'code' => 'DELETE_CONTRACT', 'Anglais' => 'Delete contract', 'Francais' => 'Supprimer le contrat'],
['Type' => 'LABEL', 'code' => 'DELETE_SERVICE', 'Anglais' => 'Delete service', 'Francais' => 'Supprimer le service'],
['Type' => 'LABEL', 'code' => 'DELETE_LIVRABLE', 'Anglais' => 'Delete livrable', 'Francais' => 'Supprimer le livrable'],
['Type' => 'LABEL', 'code' => 'BUDGET_FAMILIAL', 'Anglais' => 'Budget familial', 'Francais' => 'Budget familial'],
['Type' => 'LABEL', 'code' => 'PLAN_FINANCEMENT_ACTIVITE', 'Anglais' => 'Plan financement activité', 'Francais' => 'Plan financement activité'],
['Type' => 'LABEL', 'code' => 'PAGE_PLAN_FINANCEMENT_ACTIVITE', 'Anglais' => 'Cga_plan_fincancement_activite', 'Francais' => 'Cga_plan_fincancement_activite'],
['Type' => 'LABEL', 'code' => 'PAGE_BUDGET_FAMILIAL', 'Anglais' => 'Cga_Budget_familial', 'Francais' => 'Cga_Budget_familial'],
['Type' => 'LABEL', 'code' => 'Cga_Configuration', 'Anglais' => 'Cga_Configuration', 'Francais' => 'Cga_Configuration'],
['Type' => 'title', 'code' => 'CONFIGURATION', 'Anglais' => 'Configuration', 'Francais' => 'Configuration'],
['Type' => 'LABEL', 'code' => 'DECLARATIONS_PAGE_TITLE', 'Anglais' => 'Declarations', 'Francais' => 'Déclarations'],
['Type' => 'LABEL', 'code' => 'DEADLINE_DATE_DECLARATION', 'Anglais' => 'Declaration due date', 'Francais' => 'Date d\'échéance déclaration'],
['Type' => 'LABEL', 'code' => 'DEADLINE_DATE_PAIEMENT', 'Anglais' => 'Payment due date', 'Francais' => 'Date d\'échéance paiement'],
['Type' => 'LABEL', 'code' => 'DECLARATION_DETAILS', 'Anglais' => 'Declaration Details', 'Francais' => 'Détails de la Déclaration'],
['Type' => 'LABEL', 'code' => 'NOM_COLON', 'Anglais' => 'Name:', 'Francais' => 'Nom :'],
['Type' => 'LABEL', 'code' => 'OCCURRENCES_COLON', 'Anglais' => 'Occurrences:', 'Francais' => 'Occurrences :'],
['Type' => 'LABEL', 'code' => 'ACCESS', 'Anglais' => 'Access', 'Francais' => 'Accès'],
['Type' => 'LABEL', 'code' => 'TYPE_DE_DECLARATION', 'Anglais' => 'Declaration Type', 'Francais' => 'Type de déclaration'],
['Type' => 'LABEL', 'code' => 'CANCEL_BTN', 'Anglais' => 'Cancel', 'Francais' => 'Annuler'],
['Type' => 'LABEL', 'code' => 'SAVE_BTN', 'Anglais' => 'Save', 'Francais' => 'Enregistrer'],
['Type' => 'LABEL', 'code' => 'UNIT', 'Anglais' => 'Unit', 'Francais' => 'Unité'],
['Type' => 'ROLE', 'code' => 'DOER', 'Anglais' => 'Doer', 'Francais' => 'Exécutant'],
['Type' => 'ROLE', 'code' => 'REVIEWER', 'Anglais' => 'Reviewer', 'Francais' => 'Réviseur'],
['Type' => 'ROLE', 'code' => 'APPROVER', 'Anglais' => 'Approuver', 'Francais' => 'Approuveur'],
['Type' => 'LABEL', 'code' => 'HISTORY_TASK_STATUS', 'Anglais' => 'Task Status History', 'Francais' => 'Historique des Statuts de la Tâche'],
['Type' => 'LABEL', 'code' => 'OLD_STATUS', 'Anglais' => 'Old Status', 'Francais' => 'Ancien Statut'],
['Type' => 'LABEL', 'code' => 'NEW_STATUS', 'Anglais' => 'New Status', 'Francais' => 'Nouveau Statut'],
['Type' => 'LABEL', 'code' => 'CHANGED_BY', 'Anglais' => 'Changed By', 'Francais' => 'Modifié Par'],
['Type' => 'LABEL', 'code' => 'CHANGE_DATE', 'Anglais' => 'Change Date', 'Francais' => 'Date du Changement'],
['Type' => 'LABEL', 'code' => 'NO_HISTORY_AVAILABLE', 'Anglais' => 'No history available for this task.', 'Francais' => 'Aucun historique disponible pour cette tâche.'],
['Type' => 'LABEL', 'code' => 'CHOISIR', 'Anglais' => 'Choose...', 'Francais' => 'Choisir...'],
['Type' => 'LABEL', 'code' => 'TAPER_POUR_CHERCHER', 'Anglais' => 'Type to search...', 'Francais' => 'Taper pour chercher...'],
['Type' => 'LABEL', 'code' => 'CHOISIR_UN_SERVICE', 'Anglais' => 'Choose a service', 'Francais' => 'Choisir un service'],
['Type' => 'MESSAGE', 'code' => 'NO_STATUTORY_DECLARATION_FOR_COUNTRY', 'Anglais' => 'No statutory declaration defined for the selected country', 'Francais' => 'Aucune déclaration statutaire définie pour le pays sélectionné'],
['Type' => 'MESSAGE', 'code' => 'NO_STATUTORY_DECLARATION', 'Anglais' => 'No statutory declaration defined', 'Francais' => 'Aucune déclaration statutaire définie'],
['Type' => 'LABEL', 'code' => 'CHOISIR_UNE_DECLARATION', 'Anglais' => 'Choose a declaration', 'Francais' => 'Choisir une déclaration'],
['Type' => 'MESSAGE', 'code' => 'SELECT_COMPANY_FOR_STATUTORY', 'Anglais' => 'Please select a company to see statutory deadlines.', 'Francais' => 'Veuillez sélectionner une entreprise pour voir les échéances statutaires.'],
['Type' => 'MESSAGE', 'code' => 'NO_STATUTORY_DEADLINE_FOR_SERVICE_COMPANY', 'Anglais' => 'No statutory deadline defined for this service/declaration and this company.', 'Francais' => 'Aucune échéance statutaire définie pour ce service/déclaration et cette entreprise.'],
['Type' => 'MESSAGE', 'code' => 'NO_STATUTORY_SERVICE_FOR_CATEGORY', 'Anglais' => 'No statutory service defined for this category', 'Francais' => 'Aucun service statutaire défini pour cette catégorie'],
['Type' => 'MESSAGE', 'code' => 'NO_SERVICE_FOR_CATEGORY', 'Anglais' => 'No service defined for this category', 'Francais' => 'Aucun service défini pour cette catégorie'],
['Type' => 'MESSAGE', 'code' => 'NO_MISSION_FOR_SERVICE', 'Anglais' => 'No mission for this service', 'Francais' => 'Aucune mission pour ce service'],
['Type' => 'MESSAGE', 'code' => 'NO_MISSION_FOR_SERVICE_STATUTORY', 'Anglais' => 'This statutory service has no missions and cannot be configured.', 'Francais' => 'Ce service statutaire n\'a pas de missions et ne peut pas être configuré.'],
['Type' => 'MESSAGE', 'code' => 'NO_SERVICE_FOR_CONTRACT', 'Anglais' => 'No service associated with this contract.', 'Francais' => 'Aucun service associé à ce contrat.'],
['Type' => 'LABEL', 'code' => 'DECLARATION_COLON', 'Anglais' => 'Declaration:', 'Francais' => 'Déclaration :'],
['Type' => 'LABEL', 'code' => 'PAIEMENT_COLON', 'Anglais' => 'Payment:', 'Francais' => 'Paiement :'],
['Type' => 'LABEL', 'code' => 'FREQUENCE_STATUTAIRE', 'Anglais' => 'Frequency (Statutory)', 'Francais' => 'Fréquence (Statutaire)'],
['Type' => 'LABEL', 'code' => 'ECHEANCE_DEMARRAGE', 'Anglais' => 'Start date', 'Francais' => 'Échéance de démarrage'],
['Type' => 'LABEL', 'code' => 'AUCUNE', 'Anglais' => 'None', 'Francais' => 'Aucune'],
['Type' => 'LABEL', 'code' => 'NB_LIVRABLES', 'Anglais' => 'Nb deliverables', 'Francais' => 'Nb livrables'],
['Type' => 'LABEL', 'code' => 'NOMBRE', 'Anglais' => 'Number', 'Francais' => 'Nombre'],
['Type' => 'LABEL', 'code' => 'ADHOC', 'Anglais' => 'Adhoc', 'Francais' => 'Adhoc'],
['Type' => 'LABEL', 'code' => 'MENSUELLE', 'Anglais' => 'Monthly', 'Francais' => 'Mensuelle'],
['Type' => 'LABEL', 'code' => 'BIMESTRIELLE', 'Anglais' => 'Bimonthly', 'Francais' => 'Bimestrielle'],
['Type' => 'LABEL', 'code' => 'TRIMESTRIELLE', 'Anglais' => 'Quarterly', 'Francais' => 'Trimestrielle'],
['Type' => 'LABEL', 'code' => 'SEMESTRIELLE', 'Anglais' => 'Every six months', 'Francais' => 'Semestrielle'],
['Type' => 'LABEL', 'code' => 'ANNUELLE', 'Anglais' => 'Annual', 'Francais' => 'Annuelle'],
['Type' => 'LABEL', 'code' => 'BACK_CONTRACTS_LIST', 'Anglais' => 'Back to list', 'Francais' => 'Retour à la liste'],
['Type' => 'LABEL', 'code' => 'SELECT_A_COMPANY_PLACEHOLDER', 'Anglais' => 'Select a company...', 'Francais' => 'Sélectionner une entreprise...'],
['Type' => 'LABEL', 'code' => 'STATUTORY_FOLLOW_UP_START_DATE', 'Anglais' => 'Statutory obligations follow-up start date', 'Francais' => 'Date de démarrage suivi des obligations statutaires'],
['Type' => 'LABEL', 'code' => 'STATUTORY_FOLLOW_UP_START_DATES', 'Anglais' => 'Start', 'Francais' => 'Démarrage'],
['Type' => 'LABEL', 'code' => 'CONTRACT_NOT_FOUND', 'Anglais' => 'Contract not found.', 'Francais' => 'Contrat non trouvé.'],
['Type' => 'LABEL', 'code' => 'VIEW_CURRENT_FILE', 'Anglais' => 'View current file', 'Francais' => 'Voir le fichier actuel'],
['Type' => 'LABEL', 'code' => 'NO_EXISTING_FILE', 'Anglais' => 'No existing file', 'Francais' => 'Aucun fichier existant'],
['Type' => 'LABEL', 'code' => 'AN_ERROR_OCCURRED', 'Anglais' => 'An error has occurred.', 'Francais' => 'Une erreur est survenue.'],
['Type' => 'LABEL', 'code' => 'SUCCESS', 'Anglais' => 'Success', 'Francais' => 'Succès'],
['Type' => 'LABEL', 'code' => 'ERROR', 'Anglais' => 'Error', 'Francais' => 'Erreur'],
['Type' => 'LABEL', 'code' => 'PLEASE_RETURN_TO_CONTRACTS_LIST', 'Anglais' => 'Please return to the contracts list.', 'Francais' => 'Veuillez retourner à la liste des contrats.'],
['Type' => 'LABEL', 'code' => 'RETURN_TO_CONTRACTS_LIST', 'Anglais' => 'Return to contracts list', 'Francais' => 'Retour à la liste des contrats'],
['Type' => 'LABEL', 'code' => 'NOT_APPLICABLE', 'Anglais' => 'N/A', 'Francais' => 'N/A'],
['Type' => 'LABEL', 'code' => 'DECLARATION_LABEL', 'Anglais' => 'Declaration', 'Francais' => 'Déclaration'],
['Type' => 'LABEL', 'code' => 'START_DATE_ECHEANCE', 'Anglais' => 'Start date', 'Francais' => 'Échéance de démarrage'],
['Type' => 'LABEL', 'code' => 'NUMBER_OF_DELIVERABLES_TO_ADD', 'Anglais' => 'Number of deliverables to add', 'Francais' => 'Nombre de livrables à ajouter'],
['Type' => 'LABEL', 'code' => 'REGENERATE_DELIVERABLES', 'Anglais' => 'Regenerate deliverables for this service (deletes old ones)', 'Francais' => 'Régénérer les livrables pour ce service (supprime les anciens)'],
['Type' => 'LABEL', 'code' => 'GENERATED', 'Anglais' => 'Generated', 'Francais' => 'Générés'],
['Type' => 'LABEL', 'code' => 'REMAINING', 'Anglais' => 'Remaining', 'Francais' => 'Restants'],
['Type' => 'LABEL', 'code' => 'TOTAL_PLANNED', 'Anglais' => 'Total Planned', 'Francais' => 'Total Prévu'],
['Type' => 'MESSAGE', 'code' => 'CONTRACT_CREATED_SUCCESSFULLY', 'Anglais' => "Contract '%s' (%s) created successfully.", 'Francais' => "Contrat '%s' (%s) créé avec succès."],
['Type' => 'MESSAGE', 'code' => 'CONTRACT_UPDATED_SUCCESSFULLY', 'Anglais' => "Contract '%s' updated successfully.", 'Francais' => "Contrat '%s' mis à jour avec succès."],
['Type' => 'LABEL', 'code' => 'DECLARATION_PART', 'Anglais' => "(Declaration)", 'Francais' => "(Déclaration)"],
['Type' => 'LABEL', 'code' => 'PAYMENT_PART', 'Anglais' => "(Payment)", 'Francais' => "(Paiement)"],
['Type' => 'MESSAGE', 'code' => 'SERVICES_CREATED_LIST', 'Anglais' => "Services created: %s", 'Francais' => "Services créés: %s"],
['Type' => 'ERROR', 'code' => 'MISSING_SERVICES_ERROR', 'Anglais' => "Services are missing.", 'Francais' => "Les services sont manquants."],
['Type' => 'ERROR', 'code' => 'CONTRACT_CODE_GENERATION_ERROR', 'Anglais' => "Error generating contract code.", 'Francais' => "Erreur dans la génération du code de contrat."],
['Type' => 'ERROR', 'code' => 'SERVICE_ID_NOT_FOUND_ERROR', 'Anglais' => "Service with ID %s not found in the database.", 'Francais' => "Service avec ID %s introuvable dans la base de données."],
['Type' => 'ERROR', 'code' => 'INVALID_SERVICE_TYPE_FOR_NON_STATUTORY_ERROR', 'Anglais' => "Invalid service type: '%s' for a non-statutory service.", 'Francais' => "Type de service invalide: '%s' pour un service non-statutaire."],
['Type' => 'ERROR', 'code' => 'EMPTY_SERVICE_DESIGNATION_ERROR', 'Anglais' => "Service designation cannot be empty.", 'Francais' => "La désignation du service ne peut pas être vide."],
['Type' => 'ERROR', 'code' => 'DELIVERABLES_GENERATION_ERRORS', 'Anglais' => "Error(s) during deliverables generation: %s", 'Francais' => "Erreur(s) lors de la génération des livrables : %s"],
['Type' => 'MESSAGE', 'code' => 'DELIVERABLES_SUMMARY_MESSAGE', 'Anglais' => "Total possible: %d. Generated: %d. Remaining: %d", 'Francais' => "Total possibles: %d. Générés: %d. Restants: %d"],
['Type' => 'ERROR', 'code' => 'ERROR_PREFIX', 'Anglais' => "Error: %s", 'Francais' => "Erreur: %s"],
['Type' => 'ERROR', 'code' => 'MISSING_SERVICE_GROUP_ID', 'Anglais' => "Missing service group ID.", 'Francais' => "ID de groupe de services manquant."],
['Type' => 'MESSAGE', 'code' => 'DELETED_SERVICES_LIST', 'Anglais' => "Old services deleted: %s", 'Francais' => "Anciens services supprimés: %s"],
['Type' => 'MESSAGE', 'code' => 'CREATED_SERVICES_LIST', 'Anglais' => "New services created: %s", 'Francais' => "Nouveaux services créés: %s"],
['Type' => 'ERROR', 'code' => 'INVALID_LIVRABLE_GENERATION_PARAMS', 'Anglais' => "Invalid parameters (dates, deadline, frequency, or number) for deliverable generation.", 'Francais' => "Paramètres (dates, échéance, fréquence, ou nombre) invalides pour la génération de livrables."],
['Type' => 'ERROR', 'code' => 'INVALID_FREQUENCY', 'Anglais' => "Invalid frequency: %s", 'Francais' => "Fréquence invalide: %s"],
['Type' => 'MESSAGE', 'code' => 'DELIVERABLES_GENERATED_SUCCESS_MESSAGE', 'Anglais' => 'Generation of %d deliverables successful.', 'Francais' => 'Génération de %d livrables réussie.'],
['Type' => 'MESSAGE', 'code' => 'NO_CHANGES_DETECTED_MESSAGE', 'Anglais' => 'No changes detected. Contract updated successfully.', 'Francais' => 'Aucun changement détecté. Contrat mis à jour avec succès.'],
['Type' => 'ERROR', 'code' => 500001, 'Anglais' => 'An unexpected error occurred. Please try again or contact support.', 'Francais' => 'Une erreur inattendue est survenue. Veuillez réessayer ou contacter le support.'],
['Type' => 'LABEL', 'code' => 'COL_FILIALE_ID_PAYS', 'Anglais' => 'filiale_Id_pays', 'Francais' => 'filiale_Id_pays'],
['Type' => 'LABEL', 'code' => 'COL_FILIALE_PERCENTAGES', 'Anglais' => 'filiale_percentage', 'Francais' => 'filiale_percentage'],
['Type' => 'LABEL', 'code' => 'COL_ID_ADMIN', 'Anglais' => 'Id_admin', 'Francais' => 'Id_admin'],
['Type' => 'LABEL', 'code' => 'COL_PRENOM', 'Anglais' => 'Prenom', 'Francais' => 'Prenom'],
['Type' => 'LABEL', 'code' => 'COL_SUJET', 'Anglais' => 'sujet', 'Francais' => 'sujet'],
['Type' => 'LABEL', 'code' => 'ID_MISSION', 'Anglais' => 'Id_mission', 'Francais' => 'Id_mission'],
['Type' => 'LABEL', 'code' => 'IsStatutory', 'Anglais' => 'IsStatutory', 'Francais' => 'IsStatutory'],
['Type' => 'LABEL', 'code' => 'COL_EMAIL', 'Anglais' => 'Email', 'Francais' => 'Email'],
['Type' => 'TABLE', 'code' => 'TABLE_TACHE_A_FAIRE', 'Anglais' => 'tache_a_faire', 'Francais' => 'tache_a_faire'],
['Type' => 'LABEL', 'code' => 'COL_ID_TACHE', 'Anglais' => 'Id_tache', 'Francais' => 'Id_tache'],
['Type' => 'LABEL', 'code' => 'COL_ID_SERVICE_ACCESS', 'Anglais' => 'Id_service', 'Francais' => 'Id_service'],
['Type' => 'LABEL', 'code' => 'COL_ID_CONTRAT_UNITAIRE_ACCESS', 'Anglais' => 'Id_contrat_unitaire', 'Francais' => 'Id_contrat_unitaire'],
['Type' => 'LABEL', 'code' => 'COL_ID_CONTRAT_ACCESS', 'Anglais' => 'Id_contrat', 'Francais' => 'Id_contrat'],
['Type' => 'LABEL', 'code' => 'COL_PROJET_ID', 'Anglais' => 'Projet_Id', 'Francais' => 'Projet_Id'],
['Type' => 'LABEL', 'code' => 'COL_DL1_ID', 'Anglais' => 'DL1_Id', 'Francais' => 'DL1_Id'],
['Type' => 'LABEL', 'code' => 'COL_CODE_ATTACHEMENT', 'Anglais' => 'Code_attachement', 'Francais' => 'Code_attachement'],
['Type' => 'LABEL', 'code' => 'COL_DESTINATION', 'Anglais' => 'Destination', 'Francais' => 'Destination'],
['Type' => 'TABLE', 'code' => 'TABLE_USERS_ACCESS', 'Anglais' => 'users_access', 'Francais' => 'users_access'],
['Type' => 'TABLE', 'code' => 'TABLE_USERS_PAGES', 'Anglais' => 'users_pages', 'Francais' => 'users_pages'],
['Type' => 'LABEL', 'code' => 'COL_CODE', 'Anglais' => 'Code', 'Francais' => 'Code'],
['Type' => 'LABEL', 'code' => 'COL_INTITULE_LECTURE', 'Anglais' => 'Intitule_lecture', 'Francais' => 'Intitule_lecture'],
['Type' => 'LABEL', 'code' => 'COL_TYPE', 'Anglais' => 'Type', 'Francais' => 'Type'],
['Type' => 'LABEL', 'code' => 'COL_ID', 'Anglais' => 'Id', 'Francais' => 'Id'],
['Type' => 'LABEL', 'code' => 'COL_LECTURE', 'Anglais' => 'Lecture', 'Francais' => 'Lecture'],
['Type' => 'LABEL', 'code' => 'COL_ECRITURE', 'Anglais' => 'Ecriture', 'Francais' => 'Ecriture'],
['Type' => 'LABEL', 'code' => 'COL_SIEGE_SOCIAL', 'Anglais' => 'Siege_social', 'Francais' => 'Siege_social'],
['Type' => 'LABEL', 'code' => 'COL_MAIL_ENTREPRISE', 'Anglais' => 'Mail_entreprise', 'Francais' => 'Mail_entreprise'],
['Type' => 'LABEL', 'code' => 'COL_FIXE_ENTREPRISE', 'Anglais' => 'Fixe_entreprise', 'Francais' => 'Fixe_entreprise'],
['Type' => 'LABEL', 'code' => 'COL_FORME_JURIDIQUE', 'Anglais' => 'Forme_juridique', 'Francais' => 'Forme_juridique'],
['Type' => 'LABEL', 'code' => 'COL_DOMAINE_ACTIVITE', 'Anglais' => 'Domaine_activite', 'Francais' => 'Domaine_activite'],
['Type' => 'LABEL', 'code' => 'COL_NINEA', 'Anglais' => 'Ninea', 'Francais' => 'Ninea'],
['Type' => 'LABEL', 'code' => 'COL_NUMERO_RC', 'Anglais' => 'Numero_RC', 'Francais' => 'Numero_RC'],
['Type' => 'LABEL', 'code' => 'COL_NUM_IDENTIFICATION_FISCALE', 'Anglais' => 'Num_identification_fiscale', 'Francais' => 'Num_identification_fiscale'],
['Type' => 'LABEL', 'code' => 'COL_DEVISE', 'Anglais' => 'Devise', 'Francais' => 'Devise'],
['Type' => 'LABEL', 'code' => 'COL_CAPITAL_SOCIAL', 'Anglais' => 'Capital_social', 'Francais' => 'Capital_social'],
['Type' => 'LABEL', 'code' => 'COL_NOMBRE_EMPLOYE', 'Anglais' => 'Nombre_employe', 'Francais' => 'Nombre_employe'],
['Type' => 'LABEL', 'code' => 'COL_SERVICE', 'Anglais' => 'Service', 'Francais' => 'Service'],
['Type' => 'LABEL', 'code' => 'COL_ANNEE_DEMARRAGE', 'Anglais' => 'Annee_Demarrage', 'Francais' => 'Annee_Demarrage'],
['Type' => 'LABEL', 'code' => 'COL_DUREE_SERVICES', 'Anglais' => 'Duree_Services', 'Francais' => 'Duree_Services'],
['Type' => 'LABEL', 'code' => 'COL_URL', 'Anglais' => 'Url', 'Francais' => 'Url'],
['Type' => 'LABEL', 'code' => 'Mission', 'Anglais' => 'Mission', 'Francais' => 'Mission'],
['Type' => 'LABEL', 'code' => 'COL_CODE_ENTREPRISE', 'Anglais' => 'Code_entreprise', 'Francais' => 'Code_entreprise'],
['Type' => 'LABEL', 'code' => 'SELECT_COMPANY_AND_MISSION', 'Anglais' => 'Please select a company and a mission to manage deliverables.', 'Francais' => 'Veuillez sélectionner une entreprise et une mission pour gérer les livrables.'],
['Type' => 'MESSAGE', 'code' => 'DATE_FIN_BEFORE_DATE_DEBUT', 'Anglais' => 'The end date cannot be earlier than the contract start date.', 'Francais' => 'La date de fin ne peut pas être antérieure à la date de début du contrat.'],
['Type' => 'MESSAGE', 'code' => 'DATE_SUIVI_OUT_OF_RANGE', 'Anglais' => 'The follow-up start date must be between the contract start and end dates.', 'Francais' => 'La date de démarrage du suivi doit être comprise entre la date de début et la date de fin du contrat.'],
['Type' => 'MESSAGE', 'code' => 'LIVRABLE_DATE_OUT_OF_RANGE', 'Anglais' => 'The deliverable deadline must be between the contract start and end dates.', 'Francais' => 'La date de dernier délai doit être comprise entre la date de début et la date de fin du contrat.'],
['Type' => 'MESSAGE', 'code' => 'STATUTORY_LIVRABLE_ECHEANCE_REQUIRED', 'Anglais' => 'For the statutory deliverable "%s", you must select at least one due date (declaration or payment).', 'Francais' => 'Pour le livrable statutaire "%s", vous devez sélectionner au moins une échéance (déclaration ou paiement).'],
['Type' => 'LABEL', 'code' => 'ERROR_SCRIPT_TAG_NOT_FOUND', 'Anglais' => 'Data script tag not found!', 'Francais' => 'Balise de script de données introuvable !'],
['Type' => 'LABEL', 'code' => 'MANAGE_DELIVERABLES', 'Anglais' => 'Manage deliverables', 'Francais' => 'Gérer les livrables'],
['Type' => 'LABEL', 'code' => 'COLLAPSE_EXPAND', 'Anglais' => 'Collapse / Expand', 'Francais' => 'Plier / Déplier'],
['Type' => 'LABEL', 'code' => 'TODAY', 'Anglais' => 'Today', 'Francais' => 'Aujourd\'hui'],
['Type' => 'LABEL', 'code' => 'YESTERDAY', 'Anglais' => 'Yesterday', 'Francais' => 'Hier'],
['Type' => 'LABEL', 'code' => 'SELECT_ALL', 'Anglais' => 'Select All', 'Francais' => 'Tout sélectionner'],
['Type' => 'MESSAGE', 'code' => 'NO_DELIVERABLE_FOR_MISSION', 'Anglais' => 'No deliverable available for this mission.', 'Francais' => 'Aucun livrable disponible pour cette mission.'],
['Type' => 'LABEL', 'code' => 'STATUTORY_BADGE', 'Anglais' => 'Statutory', 'Francais' => 'Statutaire'],
['Type' => 'LABEL', 'code' => 'SEARCH_DELIVERABLE_PLACEHOLDER', 'Anglais' => 'Search for a deliverable...', 'Francais' => 'Rechercher un livrable...'],
['Type' => 'LABEL', 'code' => 'SELECT_DELIVERABLES_MODAL_TITLE', 'Anglais' => 'Select Deliverables', 'Francais' => 'Sélectionner les Livrables'],
['Type' => 'LABEL', 'code' => 'CONFIRM_SELECTION', 'Anglais' => 'Confirm Selection', 'Francais' => 'Confirmer la sélection'],
['Type' => 'LABEL', 'code' => 'REMOVE', 'Anglais' => 'Remove', 'Francais' => 'Retirer'],
['Type' => 'MESSAGE', 'code' => 'NO_STATUTORY_ECHEANCE_FOUND', 'Anglais' => 'No statutory deadline found for this mission/country.', 'Francais' => 'Aucune échéance statutaire trouvée pour cette mission/pays.'],
['Type' => 'LABEL', 'code' => 'SELECT_INDIVIDUAL_STATUTORY_ECHEANCES', 'Anglais' => 'Select individual statutory deadlines:', 'Francais' => 'Sélectionnez les échéances statutaires individuelles :'],
['Type' => 'LABEL', 'code' => 'ALL_D', 'Anglais' => 'All (D)', 'Francais' => 'Toutes (D)'],
['Type' => 'LABEL', 'code' => 'ALL_P', 'Anglais' => 'All (P)', 'Francais' => 'Tous (P)'],
['Type' => 'LABEL', 'code' => 'PUNCTUAL', 'Anglais' => 'Ponctuelle', 'Francais' => 'Ponctuelle'],
['Type' => 'LABEL', 'code' => 'REFERENCE_CONTRACT_PLACEHOLDER', 'Anglais' => 'Select a company', 'Francais' => 'Sélectionnez une entreprise'],
['Type' => 'LABEL', 'code' => 'ADD_DELIVERABLE_BUTTON', 'Anglais' => 'Add a deliverable', 'Francais' => 'Ajouter un livrable'],
['Type' => 'LABEL', 'code' => 'ATTACHMENT_CONTRACT', 'Anglais' => 'Attachment Contract', 'Francais' => 'Pièce jointe Contrat'],
['Type' => 'LABEL', 'code' => 'NO_FILE', 'Anglais' => 'No file', 'Francais' => 'Aucun fichier'],
['Type' => 'MESSAGE', 'code' => 'DATE_SUIVI_BEFORE_DEBUT', 'Anglais' => 'The follow-up start date cannot be earlier than the contract start date.', 'Francais' => 'La date de démarrage du suivi ne peut pas être antérieure à la date de début du contrat.'],
['Type' => 'MESSAGE', 'code' => 'DATE_SUIVI_AFTER_FIN', 'Anglais' => 'The follow-up start date cannot be later than the contract end date.', 'Francais' => 'La date de démarrage du suivi ne peut pas être postérieure à la date de fin du contrat.'],
['Type' => 'MESSAGE', 'code' => 'LIVRABLE_DATE_BEFORE_DEBUT', 'Anglais' => 'The deliverable deadline cannot be earlier than the contract start date.', 'Francais' => 'La date de dernier délai ne peut pas être antérieure à la date de début du contrat.'],
['Type' => 'MESSAGE', 'code' => 'LIVRABLE_DATE_AFTER_FIN', 'Anglais' => 'The deliverable deadline cannot be later than the contract end date.', 'Francais' => 'La date de dernier délai ne peut pas être postérieure à la date de fin du contrat.'],
['Type' => 'LABEL', 'code' => 'SELECT_DECLARATIONS_MODAL_TITLE', 'Anglais' => 'Select Statutory Declarations', 'Francais' => 'Sélectionner les Déclarations Statutaires'],
['Type' => 'LABEL', 'code' => 'SEARCH_DECLARATION_PLACEHOLDER', 'Anglais' => 'Search for a declaration...', 'Francais' => 'Rechercher une déclaration...'],
['Type' => 'LABEL', 'code' => 'DELIVERABLE_DETAILS_TITLE', 'Anglais' => 'Deliverable Details', 'Francais' => 'Détails du Livrable'],
['Type' => 'LABEL', 'code' => 'DELIVERABLE_NAME_LABEL', 'Anglais' => 'Deliverable Name', 'Francais' => 'Nom du Livrable'],
['Type' => 'LABEL', 'code' => 'COMPANY_LABEL_MODAL', 'Anglais' => 'Company', 'Francais' => 'Entreprise'],
['Type' => 'LABEL', 'code' => 'CONCERNED_SERVICE_LABEL', 'Anglais' => 'Concerned Service', 'Francais' => 'Service concerné'],
['Type' => 'LABEL', 'code' => 'DEADLINE_LABEL_MODAL', 'Anglais' => 'Due Date', 'Francais' => 'Échéance'],
['Type' => 'LABEL', 'code' => 'CREATED_BY_LABEL_MODAL', 'Anglais' => 'Created by', 'Francais' => 'Créé par'],
['Type' => 'LABEL', 'code' => 'TASKS_ALREADY_GENERATED', 'Anglais' => 'Tasks already generated', 'Francais' => 'Tâches déjà générées'],
['Type' => 'LABEL', 'code' => 'NO_GENERATED_TASKS_FOUND', 'Anglais' => 'No generated tasks found for this deliverable.', 'Francais' => 'Aucune tâche générée trouvée pour ce livrable.'],
['Type' => 'LABEL', 'code' => 'GENERATE_LINKED_TASKS', 'Anglais' => 'Generate linked tasks', 'Francais' => 'Générer les tâches associées'],
['Type' => 'LABEL', 'code' => 'TASKS_TO_GENERATE', 'Anglais' => 'Tasks to generate', 'Francais' => 'Tâches à générer'],
['Type' => 'LABEL', 'code' => 'CONFIRM_CREATION', 'Anglais' => 'Confirm creation', 'Francais' => 'Confirmer la création'],
['Type' => 'LABEL', 'code' => 'NO_ASSOCIATED_TASK_DEFINED', 'Anglais' => 'No associated task defined for this deliverable.', 'Francais' => 'Aucune tâche associée définie pour ce livrable.'],
['Type' => 'LABEL', 'code' => 'ACCESS_DELIVERABLE_SHEET', 'Anglais' => 'Access Deliverable Sheet', 'Francais' => 'Accéder à la Fiche Livrable'],
['Type' => 'LABEL', 'code' => 'DECLARATION_NAME_LABEL', 'Anglais' => 'Declaration Name', 'Francais' => 'Nom de la Déclaration'],
['Type' => 'LABEL', 'code' => 'START_DATE_FILTER', 'Anglais' => 'Start Date:', 'Francais' => 'Date Début :'],
['Type' => 'LABEL', 'code' => 'END_DATE_FILTER', 'Anglais' => 'End Date:', 'Francais' => 'Date Fin :'],
['Type' => 'LABEL', 'code' => 'ALL_MONTHS_FILTER', 'Anglais' => 'All months', 'Francais' => 'Tous les mois'],
['Type' => 'LABEL', 'code' => 'ALL_YEARS_FILTER', 'Anglais' => 'All years', 'Francais' => 'Toutes les années'],
['Type' => 'LABEL', 'code' => 'APPLY_FILTERS_BTN', 'Anglais' => 'Apply filters', 'Francais' => 'Appliquer les filtres'],
['Type' => 'LABEL', 'code' => 'RESET_FILTERS_BTN', 'Anglais' => 'Reset filters', 'Francais' => 'Réinitialiser les filtres'],
['Type' => 'LABEL', 'code' => 'ALL_COMPANIES_FILTER', 'Anglais' => 'All Companies', 'Francais' => 'Toutes les entreprises'],
['Type' => 'LABEL', 'code' => 'ALL_STATUS_FILTER', 'Anglais' => 'All status', 'Francais' => 'Tous les statuts'],
['Type' => 'LABEL', 'code' => 'GENERATE_TASKS_AUTOMATICALLY', 'Anglais' => 'Generate tasks automatically', 'Francais' => 'Générer les tâches automatiquement'],
];
}
}