Trad: Traduction menu mailing

This commit is contained in:
Laurent Destailleur 2005-01-19 21:34:00 +00:00
parent d88bb2e49a
commit 5c6e92adc3

View File

@ -1,5 +1,6 @@
<?php <?php
/* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org> /* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2005 Laurent Destailleur <eldy@users.sourceforge.net>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -20,7 +21,7 @@
* *
*/ */
/*! \file htdocs/comm/pre.inc.php /** \file htdocs/comm/mailling/pre.inc.php
\ingroup commercial \ingroup commercial
\brief Fichier de gestion du menu gauche de l'espace commercial mailing \brief Fichier de gestion du menu gauche de l'espace commercial mailing
\version $Revision$ \version $Revision$
@ -31,6 +32,7 @@ require_once DOL_DOCUMENT_ROOT.'/comm/mailing/mailing.class.php';
$user->getrights(); $user->getrights();
$langs->load("companies"); $langs->load("companies");
$langs->load("mails");
function llxHeader($head = "", $title = "") { function llxHeader($head = "", $title = "") {
@ -40,8 +42,8 @@ function llxHeader($head = "", $title = "") {
$menu = new Menu(); $menu = new Menu();
$menu->add(DOL_URL_ROOT."/comm/mailing/index.php", $langs->trans("Mailing")); $menu->add(DOL_URL_ROOT."/comm/mailing/index.php", $langs->trans("Mailings"));
$menu->add_submenu(DOL_URL_ROOT."/comm/mailing/fiche.php?action=create", "Nouveau mailing"); $menu->add_submenu(DOL_URL_ROOT."/comm/mailing/fiche.php?action=create", $langs->trans("NewMailing"));
left_menu($menu->liste); left_menu($menu->liste);