Ajout date connexion precedente dans info loin
This commit is contained in:
parent
139d225af9
commit
57b904c622
@ -37,6 +37,7 @@ ErrorFailedToSaveFile=Error, failed to save file.
|
|||||||
ErrorOnlyPngJpgSupported=Error, only .png and .jpg image format file are supported.
|
ErrorOnlyPngJpgSupported=Error, only .png and .jpg image format file are supported.
|
||||||
ErrorImageFormatNotSupported=Your PHP does not support functions to convert images of this format.
|
ErrorImageFormatNotSupported=Your PHP does not support functions to convert images of this format.
|
||||||
DolibarrInHttpAuthenticationSoPasswordUseless=Dolibarr authentication mode is setup to <b>%s</b> in configuration file <b>conf.php</b>.<br>This means that password database is extern to Dolibarr, so changing this field may have no effects.
|
DolibarrInHttpAuthenticationSoPasswordUseless=Dolibarr authentication mode is setup to <b>%s</b> in configuration file <b>conf.php</b>.<br>This means that password database is extern to Dolibarr, so changing this field may have no effects.
|
||||||
|
Administrator=Administrator
|
||||||
Undefined=Undefined
|
Undefined=Undefined
|
||||||
PasswordForgotten=Password forgotten ?
|
PasswordForgotten=Password forgotten ?
|
||||||
SeeAbove=See above
|
SeeAbove=See above
|
||||||
|
|||||||
@ -37,6 +37,7 @@ ErrorFailedToSaveFile=Erreur, l'enregistrement du fichier a
|
|||||||
ErrorOnlyPngJpgSupported=Erreur, seuls les formats images .jpg et .png sont supportés.
|
ErrorOnlyPngJpgSupported=Erreur, seuls les formats images .jpg et .png sont supportés.
|
||||||
ErrorImageFormatNotSupported=Votre PHP ne supporte pas les fonctions de conversion de ce format d'image.
|
ErrorImageFormatNotSupported=Votre PHP ne supporte pas les fonctions de conversion de ce format d'image.
|
||||||
DolibarrInHttpAuthenticationSoPasswordUseless=Dolibarr est configuré en mode authentification <b>%s</b> dans son fichier de configuration <b>conf.php</b>.<br>Cela signifie que la base des mots de passe est externe à Dolibarr, aussi toute modification de ce champ peut s'avérer sans effet.
|
DolibarrInHttpAuthenticationSoPasswordUseless=Dolibarr est configuré en mode authentification <b>%s</b> dans son fichier de configuration <b>conf.php</b>.<br>Cela signifie que la base des mots de passe est externe à Dolibarr, aussi toute modification de ce champ peut s'avérer sans effet.
|
||||||
|
Administrator=Administrateur
|
||||||
Undefined=Non défini
|
Undefined=Non défini
|
||||||
PasswordForgotten=Mot de passe oublié ?
|
PasswordForgotten=Mot de passe oublié ?
|
||||||
SeeAbove=Voir ci-dessus
|
SeeAbove=Voir ci-dessus
|
||||||
|
|||||||
@ -792,6 +792,8 @@ function top_menu($head, $title="", $target="")
|
|||||||
$title.='<br><b>'.$langs->trans("Administrator").'</b>: '.yn($user->admin);
|
$title.='<br><b>'.$langs->trans("Administrator").'</b>: '.yn($user->admin);
|
||||||
$title.='<br><b>'.$langs->trans("Type").'</b>: '.($user->societe_id?$langs->trans("External"):$langs->trans("Internal"));
|
$title.='<br><b>'.$langs->trans("Type").'</b>: '.($user->societe_id?$langs->trans("External"):$langs->trans("Internal"));
|
||||||
$title.='<br><b>'.$langs->trans("ConnectedSince").'</b>: '.dolibarr_print_date($user->datelastlogin,"dayhour");
|
$title.='<br><b>'.$langs->trans("ConnectedSince").'</b>: '.dolibarr_print_date($user->datelastlogin,"dayhour");
|
||||||
|
$title.='<br><b>'.$langs->trans("PreviousConnexion").'</b>: '.dolibarr_print_date($user->datepreviouslogin,"dayhour");
|
||||||
|
|
||||||
if ($dolibarr_main_authentication) $title.='<br><b>'.$langs->trans("AuthenticationMode").'</b>: '.$dolibarr_main_authentication;
|
if ($dolibarr_main_authentication) $title.='<br><b>'.$langs->trans("AuthenticationMode").'</b>: '.$dolibarr_main_authentication;
|
||||||
|
|
||||||
$text='';
|
$text='';
|
||||||
|
|||||||
@ -20,8 +20,6 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
|
||||||
* $Id$
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -34,7 +32,7 @@
|
|||||||
\author Benoit Mortier
|
\author Benoit Mortier
|
||||||
\author Regis Houssin
|
\author Regis Houssin
|
||||||
\author Lionel Cousteix
|
\author Lionel Cousteix
|
||||||
\version $Revision$
|
\version $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require_once(DOL_DOCUMENT_ROOT ."/commonobject.class.php");
|
require_once(DOL_DOCUMENT_ROOT ."/commonobject.class.php");
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user