[vhffs-dev] [svn] commit: r196 - in /trunk: ./ vhffs-api/src/Vhffs/ vhffs-api/src/Vhffs/Panel/ vhffs-intl/result/fr_FR/ vhffs-intl/src/fr/ vhffs-panel/ vhffs-panel/templates/main/ vhffs-panel/themes/default/

[ Thread Index | Date Index | More vhffs.org/vhffs-dev Archives ]


Author: soda
Date: Tue May  9 01:25:04 2006
New Revision: 196

Log:
- Fix DB.pm, returns an error when the database connection returns an error
- Add a page in the panel when the database does not work
- Print now : "Welcome to ${hosting service}" instead of "Welcome on VHFFS"
- Update TODO


Modified:
    trunk/TODO
    trunk/vhffs-api/src/Vhffs/DB.pm
    trunk/vhffs-api/src/Vhffs/Functions.pm
    trunk/vhffs-api/src/Vhffs/Main.pm
    trunk/vhffs-api/src/Vhffs/Panel/Main.pm
    trunk/vhffs-intl/result/fr_FR/vhffs.mo
    trunk/vhffs-intl/src/fr/fr.pot
    trunk/vhffs-panel/auth.pl
    trunk/vhffs-panel/panel.pl
    trunk/vhffs-panel/subscribe.pl
    trunk/vhffs-panel/subscribe_complete.pl
    trunk/vhffs-panel/templates/main/auth.tmpl
    trunk/vhffs-panel/themes/default/main.css

Modified: trunk/TODO
==============================================================================
--- trunk/TODO (original)
+++ trunk/TODO Tue May  9 01:25:04 2006
@@ -2,4 +2,5 @@
 - improve archives format for listengine
 - improve panel, see ajax or css design
 - continue the document of the API
+- Add in vhffs.conf directive svnhelp_url
 

Modified: trunk/vhffs-api/src/Vhffs/DB.pm
==============================================================================
--- trunk/vhffs-api/src/Vhffs/DB.pm (original)
+++ trunk/vhffs-api/src/Vhffs/DB.pm Tue May  9 01:25:04 2006
@@ -16,6 +16,7 @@
 	my $dbh;
 	my $class;
 	my $config;
+	my $tmp;
 
 	$this = shift;
 	$config = shift;
@@ -30,7 +31,9 @@
 	return undef if( ! defined $config->{'dbread'} );
 
 	
-	$self->{'DB_READ'} = Vhffs::Functions::db_connect $config->{'dbread'};
+	$tmp = Vhffs::Functions::db_connect $config->{'dbread'};
+	return( undef ) if( ! ( defined( $tmp ) ) );
+	$self->{'DB_READ'} = $tmp; 
 
 	#If the database to write is not defined, we use the database to read
 	if( ! defined $config->{'dbwrite'} )
@@ -39,7 +42,9 @@
 	}
 	else
 	{
-	    $self->{'DB_WRITE'} = Vhffs::Functions::db_connect $config->{'dbwrite'};
+		$tmp = Vhffs::Functions::db_connect $config->{'dbwrite'};
+		return( undef ) if( ! ( defined( $tmp ) ) );
+		$self->{'DB_WRITE'} = $tmp; 
 	}
 
 	return $self;

Modified: trunk/vhffs-api/src/Vhffs/Functions.pm
==============================================================================
--- trunk/vhffs-api/src/Vhffs/Functions.pm (original)
+++ trunk/vhffs-api/src/Vhffs/Functions.pm Tue May  9 01:25:04 2006
@@ -221,7 +221,7 @@
 		$host 	= $backend_config->{'db_host'} if( defined( $backend_config->{'db_host'} ) );
 
 		$dbparams = "dbname=$backend_config->{'db_name'};host=$host;port=$port";
-        $dbh = DBI->connect("DBI:$driver:$dbparams",$backend_config->{'db_username'}, $backend_config->{'db_password'}) || (print STDERR "Cant connect: $DBI::errstr\n" and exit 1);
+        $dbh = DBI->connect("DBI:$driver:$dbparams",$backend_config->{'db_username'}, $backend_config->{'db_password'}) || (print STDERR "Cant connect: $DBI::errstr\n" and return undef);
 	
         return( $dbh );
     }

Modified: trunk/vhffs-api/src/Vhffs/Main.pm
==============================================================================
--- trunk/vhffs-api/src/Vhffs/Main.pm (original)
+++ trunk/vhffs-api/src/Vhffs/Main.pm Tue May  9 01:25:04 2006
@@ -42,7 +42,14 @@
 	#Finally, backend stuff
 	$db_config = $config->get_databases();
 	$dbh = new Vhffs::DB( $db_config );
-	$self->{'db'} = $dbh if( defined $dbh );
+	if( defined $dbh )
+	{
+		$self->{'db'} = $dbh;
+	}
+	else
+	{
+		$self->{'db'} = undef;
+	}
 
 	return $self;
 }
@@ -73,6 +80,14 @@
 	{
 		return undef;
 	}
+}
+
+sub is_valid
+{
+	my $self = shift;
+	return 0 if( ! ( defined( $self->get_db_object ) ) );
+
+	return 1;
 }
 
 1;
@@ -110,6 +125,9 @@
 
 get_db_object : Return a Vhffs::DB object
 
+is_valid() : returns 1 if the object is valid (good database connection, ...), 0 otherwise
+
+
 =head1 SEE ALSO
 Vhffs::User, Vhffs::Group
 

Modified: trunk/vhffs-api/src/Vhffs/Panel/Main.pm
==============================================================================
--- trunk/vhffs-api/src/Vhffs/Panel/Main.pm (original)
+++ trunk/vhffs-api/src/Vhffs/Panel/Main.pm Tue May  9 01:25:04 2006
@@ -16,6 +16,37 @@
 use Vhffs::Panel::User;
 
 
+sub check
+{
+	my $vhffs = shift;
+	my $templatedir = $vhffs->get_config->get_templatedir;
+	my $template;	
+
+
+	if( $vhffs->is_valid() == 0 )
+	{   
+		$template = new HTML::Template( filename => $templatedir."/main/close.tmpl" );
+		$template->param( TITLE         => gettext("Platform temporary closed") );
+		$template->param( TEXT_CLOSE    => gettext("Platform temporary closed<br/>database error") );
+		$template->param( TEXT_EXPLAIN  => gettext("This platform is temporary closed. Administrators are performing some maintenances tasks or system has database errors. Please come back in a few minutes to log in.") );
+    
+		display_light Vhffs::Panel::Main( $template );
+		exit( 0 );
+	}
+
+	if( $vhffs->get_config->get_panel_open != 1 )
+	{
+		$template = new HTML::Template( filename => $templatedir."/main/close.tmpl" );
+		$template->param( TITLE         => gettext("Platform temporary closed") );
+		$template->param( TEXT_CLOSE    => gettext("Platform temporary closed.") );
+		$template->param( TEXT_EXPLAIN  => gettext("This platform is temporary closed. Administrators are performing some maintenances tasks. Please come back in a few minutes to log in.") );
+    
+		display_light Vhffs::Panel::Main( $template );
+		exit( 0 );
+	}
+}
+
+
 sub get_theme
 {
 	my $theme = CGI->cookie("theme" );

Modified: trunk/vhffs-intl/result/fr_FR/vhffs.mo
==============================================================================
Binary files - no diff available.

Modified: trunk/vhffs-intl/src/fr/fr.pot
==============================================================================
--- trunk/vhffs-intl/src/fr/fr.pot (original)
+++ trunk/vhffs-intl/src/fr/fr.pot Tue May  9 01:25:04 2006
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: fr\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-02-18 02:08+0100\n"
+"POT-Creation-Date: 2006-05-05 19:37+0200\n"
 "PO-Revision-Date: 2006-04-26 11:41+0200\n"
 "Last-Translator: Christophe Benz <christophebenz@xxxxxxxx>\n"
 "Language-Team:  <fr@xxxxxx>\n"
@@ -21,9 +21,9 @@
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:38
 msgid "\t\t\t\t   RIGHT can be subscriber or admin\n"
-msgstr ""
-
-#: ../vhffs-panel/public/index.pl:31
+msgstr "\t\t\t\t    RIGHT peut être inscrit ou admin\n"
+
+#: ../vhffs-panel/public/index.pl:32
 #, perl-format
 msgid "%s public area"
 msgstr "Zone publique de %s"
@@ -38,14 +38,14 @@
 msgid "------\n"
 msgstr "------\n"
 
-#: ../vhffs-panel/web/create.pl:39
+#: ../vhffs-panel/web/create.pl:38
 msgid "<new site>."
 msgstr "<nom de votre nouveau site>."
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:356
 #, perl-format
 msgid "A mail to moderate is on the list %s.\n"
-msgstr "Un mail à modérer est arrivé sur la liste %s.\n"
+msgstr "Un mail à modérer est arrivé sur la liste %s.\n"
 
 #: ../vhffs-panel/acl/view.pl:116
 msgid "ACL Administration for : "
@@ -58,15 +58,15 @@
 #: ../vhffs-panel/acl/add_acl_user.pl:79
 #: ../vhffs-panel/acl/add_acl_group.pl:79
 msgid "ACL successfully added"
-msgstr "ACL ajoutée avec succès"
+msgstr "ACL ajoutée avec succès"
 
 #: ../vhffs-panel/acl/submit.pl:81
 msgid "ACL successfully deleted"
-msgstr "ACL supprimée"
+msgstr "ACL supprimée"
 
 #: ../vhffs-panel/acl/submit.pl:92
 msgid "ACL successfully modified"
-msgstr "ACL modifiée"
+msgstr "ACL modifiée"
 
 #: ../vhffs-panel/admin/moderation.pl:84
 #: ../vhffs-panel/admin/moderation.pl:126
@@ -81,13 +81,13 @@
 msgid "Accept"
 msgstr "Accepter"
 
-#: ../vhffs-panel/logout.pl:31 ../vhffs-panel/auth.pl:32
+#: ../vhffs-panel/logout.pl:31 ../vhffs-panel/auth.pl:34
 msgid "Access to panel"
-msgstr "Accéder au panel"
+msgstr "Accéder au panel"
 
 #: ../vhffs-panel/mail/delete_box.pl:82
 msgid "Account successfully deleted"
-msgstr "Compte supprimé"
+msgstr "Compte supprimé"
 
 #: ../vhffs-panel/mail/prefs.pl:75
 msgid "Accounts"
@@ -98,7 +98,7 @@
 msgid "Activate %s@%s email"
 msgstr "Activer l'adresse email %s@%s"
 
-#: ../vhffs-api/src/Vhffs/Functions.pm:346
+#: ../vhffs-api/src/Vhffs/Functions.pm:348
 #: ../vhffs-panel/admin/mail/edit.pl:129 ../vhffs-panel/admin/dns/list.pl:80
 #: ../vhffs-panel/admin/pgsql/edit.pl:88 ../vhffs-panel/admin/pgsql/list.pl:82
 #: ../vhffs-panel/admin/cvs/edit.pl:97 ../vhffs-panel/admin/group/edit.pl:90
@@ -107,35 +107,35 @@
 #: ../vhffs-panel/admin/object/list.pl:77 ../vhffs-panel/admin/web/edit.pl:101
 #: ../vhffs-panel/admin/user/edit.pl:112
 msgid "Activated"
-msgstr "Activé"
-
-#: ../vhffs-panel/dns/prefs.pl:112 ../vhffs-panel/mailinglist/prefs.pl:94
+msgstr "Activé"
+
+#: ../vhffs-panel/dns/prefs.pl:112 ../vhffs-panel/mailinglist/prefs.pl:96
 msgid "Add !"
 msgstr "Ajouter !"
 
 #: ../vhffs-panel/dns/prefs.pl:125
 msgid "Add a CNAME field to your domain"
-msgstr "Ajouter un champ CNAME à votre domaine"
+msgstr "Ajouter un champ CNAME à votre domaine"
 
 #: ../vhffs-panel/dns/prefs.pl:117
 msgid "Add a MX field to your domain"
-msgstr "Ajouter un champ MX à votre domaine"
+msgstr "Ajouter un champ MX à votre domaine"
 
 #: ../vhffs-panel/dns/prefs.pl:133
 msgid "Add a NS field to your domain"
-msgstr "Ajouter un champ NS à votre domaine"
+msgstr "Ajouter un champ NS à votre domaine"
 
 #: ../vhffs-panel/mail/prefs.pl:86 ../vhffs-panel/mail/prefs.pl:96
 msgid "Add a forward on this domain"
 msgstr "Ajouter une redirection sur ce domaine"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:92
+#: ../vhffs-panel/mailinglist/prefs.pl:94
 msgid "Add a member"
 msgstr "Ajouter un membre"
 
 #: ../vhffs-panel/mail/prefs.pl:95
 msgid "Add a popbox to this domain"
-msgstr "Ajouter une boîte mail sur ce domaine"
+msgstr "Ajouter une boîte mail sur ce domaine"
 
 #: ../vhffs-panel/group/prefs.pl:74
 msgid "Add a user in this group"
@@ -155,45 +155,45 @@
 
 #: ../vhffs-panel/group/join_group.pl:83
 msgid "Add this user to this group"
-msgstr "Ajouter cet utilisateur à ce groupe"
+msgstr "Ajouter cet utilisateur à ce groupe"
 
 #: ../vhffs-panel/admin/user/edit.pl:73 ../vhffs-panel/admin/user/show.pl:73
 #: ../vhffs-panel/user/prefs.pl:53 ../vhffs-panel/subscribe.pl:43
 msgid "Address"
 msgstr "Adresse"
 
-#: ../vhffs-panel/web/prefs.pl:65
+#: ../vhffs-panel/web/prefs.pl:64
 msgid "Address (Servername)"
 msgstr "Adresse (directive servername)"
 
 #: ../vhffs-panel/admin/user/edit.pl:70 ../vhffs-panel/admin/user/edit.pl:100
 #: ../vhffs-panel/admin/user/show.pl:70 ../vhffs-panel/admin/user/show.pl:105
-#: ../vhffs-panel/mailinglist/prefs.pl:144
+#: ../vhffs-panel/mailinglist/prefs.pl:146
 msgid "Admin"
 msgstr "Administration"
 
 #: ../vhffs-panel/cvs/prefs.pl:68
 msgid "Admin CVS Repository"
-msgstr "Administration des dépôts CVS"
+msgstr "Administration des dépôts CVS"
 
 #: ../vhffs-panel/dns/prefs.pl:79
 msgid "Admin DNS"
 msgstr "Administration des noms de domaine"
 
 #: ../vhffs-panel/mail/prefs.pl:106 ../vhffs-panel/dns/prefs.pl:92
-#: ../vhffs-panel/web/prefs.pl:92
+#: ../vhffs-panel/web/prefs.pl:91
 msgid "Admin Rights on this object (ACL)"
 msgstr "Droits d'admin sur cet objet (ACL)"
 
 #: ../vhffs-panel/svn/prefs.pl:83
 msgid "Admin Subversion Repository"
-msgstr "Administration les dépôts Subversion"
+msgstr "Administration les dépôts Subversion"
 
 #: ../vhffs-api/src/Vhffs/Panel/Menu.pm:40
 msgid "Admin account : "
 msgstr "Compte administrateur : "
 
-#: ../vhffs-panel/mailinglist/prefs.pl:74
+#: ../vhffs-panel/mailinglist/prefs.pl:76
 msgid "Administration for list "
 msgstr "Administration pour la liste "
 
@@ -204,9 +204,9 @@
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:92
 #, perl-format
 msgid "Adress %s is already a subscriber for this list.\n"
-msgstr "L'adresse %s est déjà inscrite sur cette liste.\n"
-
-#: ../vhffs-panel/web/create.pl:44
+msgstr "L'adresse %s est déjà inscrite sur cette liste.\n"
+
+#: ../vhffs-panel/web/create.pl:43
 msgid "Adress (ServerName directive)"
 msgstr "Adresse (directive servername)"
 
@@ -220,7 +220,7 @@
 
 #: ../vhffs-panel/admin/web/edit.pl:67 ../vhffs-panel/admin/web/show.pl:66
 msgid "Alert state"
-msgstr "État d'alerte"
+msgstr "État d'alerte"
 
 #: ../vhffs-panel/dns/prefs.pl:83
 msgid "All A TYPE for you domain name"
@@ -248,11 +248,11 @@
 
 #: ../vhffs-panel/admin/svn/list.pl:51
 msgid "All Subversion repositories lists"
-msgstr "Liste de tous les dépôts subversion"
+msgstr "Liste de tous les dépôts subversion"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:19
 msgid "All commands can be sent as mail subject.\n"
-msgstr "Toutes les commandes peuvent être envoyées en sujet d'un mail.\n"
+msgstr "Toutes les commandes peuvent être envoyées en sujet d'un mail.\n"
 
 #: ../vhffs-panel/public/allgroups.pl:33
 #, perl-format
@@ -261,18 +261,18 @@
 
 #: ../vhffs-panel/admin/largefile/list.pl:49
 msgid "All hosted files lists"
-msgstr "Liste de tous les fichiers hébergés"
+msgstr "Liste de tous les fichiers hébergés"
 
 #: ../vhffs-panel/admin/broadcast_list.pl:45
 msgid "All mailings sent to hosted"
-msgstr "Tous les mailings envoyés aux hébergés"
+msgstr "Tous les mailings envoyés aux hébergés"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:21
 msgid ""
 "All mails with commands must be sent on \n"
 "                     YOURLIST-request@xxxxxxxxxx list.\n"
 msgstr ""
-" Tous les mails avec des commandes doivent être envoyées sur \n"
+" Tous les mails avec des commandes doivent être envoyées sur \n"
 "                     VOTRELIST-request@xxxxxxxxxxx list.\n"
 
 #: ../vhffs-panel/admin/object/list.pl:52
@@ -283,27 +283,23 @@
 msgid "All users in this group"
 msgstr "Utilisateurs dans ce groupe"
 
-#: ../vhffs-panel/public/allwebsites.pl:33
+#: ../vhffs-panel/public/allwebsites.pl:34
+#: ../vhffs-panel/public/websearch.pl:42
 #, perl-format
 msgid "All websites on %s"
 msgstr "Sites web sur %s"
 
-#: ../vhffs-panel/public/websearch.pl:40
-msgid "All websites on VHFFS"
-msgstr "Sites web sur VHFFS"
-
 #: ../vhffs-panel/mail/add_forward.pl:65
 #, perl-format
 msgid "Already exists for this domain or bad parameters. Check your domain"
 msgstr ""
-"Existe déjà sur ce domaine ou paramètres incorrectes. Vérifiez votre "
-"domaine"
+"Existe déjà sur ce domaine ou paramètres incorrectes. Vérifiez votre domaine"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:243
 #, perl-format
 msgid "An error occcurs while updating languge for the following adress %s.\n"
 msgstr ""
-"Une erreur est survenue lors de la mise à jour du langage pour l'adresse "
+"Une erreur est survenue lors de la mise à jour du langage pour l'adresse "
 "suivante: %s.\n"
 
 #: ../vhffs-panel/mailinglist/submit.pl:95
@@ -312,7 +308,7 @@
 
 #: ../vhffs-panel/user/prefs_save.pl:148
 msgid "An error occured while adding the box"
-msgstr "Une erreur est survenue lors de l'ajout de la boîte"
+msgstr "Une erreur est survenue lors de l'ajout de la boîte"
 
 #: ../vhffs-panel/user/prefs_save.pl:152
 msgid "An error occured while adding the box (anti-spam adding)"
@@ -338,66 +334,67 @@
 msgid "An error occured while applying changes. This user will NOT be deleted"
 msgstr ""
 "Une erreur est survenue lors de l'enregistrement des modifications."
-"L'utilisateur ne sera PAS supprimé."
+"L'utilisateur ne sera PAS supprimé."
 
 #: ../vhffs-panel/web/delete.pl:61
-msgid "An error occured while applying changes. This web area will NOT be deleted"
-msgstr ""
-"Une erreur est survenue lors de l'enregistrement des modifications. Ce "
-"site web ne sera pas détruit"
+msgid ""
+"An error occured while applying changes. This web area will NOT be deleted"
+msgstr ""
+"Une erreur est survenue lors de l'enregistrement des modifications. Ce site "
+"web ne sera pas détruit"
 
 #: ../vhffs-panel/mailinglist/submit.pl:87
 msgid "An error occured while creating the list"
-msgstr "Une erreur est survenue lors de la création de la liste"
+msgstr "Une erreur est survenue lors de la création de la liste"
 
 #: ../vhffs-panel/mail/submit.pl:57
 msgid "An error occured while creating the mail area"
-msgstr "Une erreur est survenue lors de la création du domaine mail"
-
-#: ../vhffs-panel/admin/mailing/mailing_submit.pl:54
+msgstr "Une erreur est survenue lors de la création du domaine mail"
+
+#: ../vhffs-panel/admin/mailing/mailing_submit.pl:53
 msgid "An error occured while creating the message in the database"
 msgstr ""
-"Une erreur est survenue lors de la création du message dans la base de "
-"données"
+"Une erreur est survenue lors de la création du message dans la base de "
+"données"
 
 #: ../vhffs-panel/mysql/submit.pl:74 ../vhffs-panel/svn/svn_submit.pl:59
 msgid "An error occured while creating the object"
-msgstr "Une erreur est survenue lors de la création de l'objet"
+msgstr "Une erreur est survenue lors de la création de l'objet"
 
 #: ../vhffs-panel/pgsql/pgsql_submit.pl:70
 #, perl-format
 msgid "An error occured while creating the object %s %s"
-msgstr "Une erreur est survenue lors de la création de l'objet %s %s"
+msgstr "Une erreur est survenue lors de la création de l'objet %s %s"
 
 #: ../vhffs-panel/largefile/submit.pl:66
 msgid ""
 "An error occured while creating the object. Parameters are invalid or the "
 "file already exists."
 msgstr ""
-"Une erreur est survenue lors de la création de cet objet. Les paramètres "
-"sont invalides ou le fichier existe déjà"
+"Une erreur est survenue lors de la création de cet objet. Les paramètres "
+"sont invalides ou le fichier existe déjà"
 
 #: ../vhffs-panel/dns/dns_submit.pl:52
 msgid ""
 "An error occured while creating the object. The domain is not correct or "
 "aleady exists in Vhffs database"
 msgstr ""
-"Une erreur est survenue lors de la création de l'objet. Le domaine est "
-"incorrect ou  existe déjà sur cette plate-forme"
+"Une erreur est survenue lors de la création de l'objet. Le domaine est "
+"incorrect ou  existe déjà sur cette plate-forme"
 
 #: ../vhffs-panel/cvs/cvs_submit.pl:63
 msgid "An error occured while creating the object.It probably already exists"
 msgstr ""
-"Une erreur est survenue lors de la création de cet objet. Il existe "
-"probablement déjà"
+"Une erreur est survenue lors de la création de cet objet. Il existe "
+"probablement déjà"
 
 #: ../vhffs-panel/cvs/delete.pl:68
 msgid "An error occured while deleting the CVS repository"
-msgstr "Une erreur est survenue lors de la suppression du dépôt cvs"
+msgstr "Une erreur est survenue lors de la suppression du dépôt cvs"
 
 #: ../vhffs-panel/svn/delete.pl:67 ../vhffs-panel/largefile/delete.pl:66
 msgid "An error occured while deleting the Subversion repository"
-msgstr "Une erreur est survenue lors de la suppression du dépôt subversion"
+msgstr "Une erreur est survenue lors de la suppression du dépôt subversion"
 
 #: ../vhffs-panel/admin/broadcast_delete.pl:64
 msgid "An error occured while deleting this mailing"
@@ -406,7 +403,7 @@
 #: ../vhffs-panel/mailinglist/submit.pl:81
 msgid "An error occured while fetching information about this mailing list"
 msgstr ""
-"Une erreur est survenue lors du rappatriement d'informations à propos de "
+"Une erreur est survenue lors du rappatriement d'informations à propos de "
 "cette liste"
 
 #: ../vhffs-api/src/Vhffs/Robots/Mysql.pm:140
@@ -427,40 +424,40 @@
 
 #: ../vhffs-panel/mailinglist/del_member.pl:74
 msgid "An error occured while unsubscribing the user"
-msgstr "Une erreur est survenue lors de la désinscription de l'utilisateur"
+msgstr "Une erreur est survenue lors de la désinscription de l'utilisateur"
 
 #: ../vhffs-panel/admin/user/edit_submit.pl:100
 msgid "An error occured while updating"
-msgstr "Une erreur est survenue lors de la mise à jour"
+msgstr "Une erreur est survenue lors de la mise à jour"
 
 #: ../vhffs-panel/cvs/prefs_save.pl:82
 msgid "An error occured while updating the CVS repository"
-msgstr "Une erreur est survenue lors de la mise à jour du dépôt cvs"
+msgstr "Une erreur est survenue lors de la mise à jour du dépôt cvs"
 
 #: ../vhffs-panel/svn/prefs_save.pl:76
 msgid "An error occured while updating the Subversion repository"
-msgstr "Une erreur est survenue lors de la mise à jour du dépôt subversion"
+msgstr "Une erreur est survenue lors de la mise à jour du dépôt subversion"
 
 #: ../vhffs-panel/mail/save_catchall.pl:65
 msgid "An error occured while updating the mail domain"
-msgstr "Une erreur est survenue lors de la mise à jour du domaine mail"
+msgstr "Une erreur est survenue lors de la mise à jour du domaine mail"
 
 #: ../vhffs-panel/admin/object/edit_submit.pl:58
 msgid "An error occured while updating the object"
-msgstr "Une erreur est survenue lors de la mise à jour de l'objet"
+msgstr "Une erreur est survenue lors de la mise à jour de l'objet"
 
 #: ../vhffs-panel/group/prefs_save.pl:65 ../vhffs-panel/group/delete.pl:58
 msgid "An error occured while updating the project"
-msgstr "Une erreur est survenueu lors de la mise à jour du projet"
+msgstr "Une erreur est survenueu lors de la mise à jour du projet"
 
 #: ../vhffs-panel/user/prefs_save.pl:97
 msgid "An error occured while updating the user account"
-msgstr "Une erreur est survenue lors de la mise à jour du compte utilisateur"
+msgstr "Une erreur est survenue lors de la mise à jour du compte utilisateur"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:151
 #, perl-format
 msgid "An error occurs while you subscribed to the list  %s \n"
-msgstr "Une erreur est survenue lors de votre ajout à la liste %s \n"
+msgstr "Une erreur est survenue lors de votre ajout à la liste %s \n"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:385
 msgid "April"
@@ -484,31 +481,31 @@
 
 #: ../vhffs-listengine/src/archives/archives.pl:224
 msgid "Archives for year"
-msgstr "Archives pour l'année"
+msgstr "Archives pour l'année"
 
 #: ../vhffs-panel/svn/prefs.pl:94 ../vhffs-panel/largefile/prefs.pl:101
 msgid "Are you SURE you want DELETE this  subversion repository ?"
-msgstr "Etes vous SUR de vouloir supprimer ce dépôt subversion ?"
-
-#: ../vhffs-panel/mail/prefs.pl:101 ../vhffs-panel/mailinglist/prefs.pl:163
+msgstr "Etes vous SUR de vouloir supprimer ce dépôt subversion ?"
+
+#: ../vhffs-panel/mail/prefs.pl:101 ../vhffs-panel/mailinglist/prefs.pl:167
 msgid "Are you SURE you want DELETE this Mail Area ?"
-msgstr "Etes vous SUR de vouloir détruit ce domaine mail ?"
+msgstr "Etes vous SUR de vouloir détruit ce domaine mail ?"
 
 #: ../vhffs-panel/mysql/prefs.pl:85
 msgid "Are you SURE you want DELETE this MySQL database ?"
-msgstr "Etes vous SUR de vouloir supprimer cette base de données mysql ?"
+msgstr "Etes vous SUR de vouloir supprimer cette base de données mysql ?"
 
 #: ../vhffs-panel/pgsql/prefs.pl:78
 msgid "Are you SURE you want DELETE this PostgreSQL database ?"
-msgstr "Etes vous SUR de vouloir supprimer cette base de données postgres ?"
-
-#: ../vhffs-panel/web/prefs.pl:98
+msgstr "Etes vous SUR de vouloir supprimer cette base de données postgres ?"
+
+#: ../vhffs-panel/web/prefs.pl:97
 msgid "Are you SURE you want DELETE this Web Area ?"
 msgstr "Etes vous SUR de vouloir supprimer cette zone web ?"
 
 #: ../vhffs-panel/cvs/prefs.pl:77
 msgid "Are you SURE you want DELETE this cvs repository ?"
-msgstr "Etes vous SUR de vouloir supprimer ce dépôt cvs ?"
+msgstr "Etes vous SUR de vouloir supprimer ce dépôt cvs ?"
 
 #: ../vhffs-panel/dns/prefs.pl:100
 msgid "Are you SURE you want DELETE this domain ?"
@@ -524,11 +521,11 @@
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:401
 msgid "August"
-msgstr "Août"
+msgstr "Août"
 
 #: ../vhffs-panel/admin/object/delete_avatar.pl:68
 msgid "Avatar deleted"
-msgstr "Avatar supprimé"
+msgstr "Avatar supprimé"
 
 #: ../vhffs-panel/admin/object/edit.pl:163
 msgid "Avatar management"
@@ -541,7 +538,7 @@
 
 #: ../vhffs-panel/subscribe.pl:45 ../vhffs-panel/subscribe_complete.pl:213
 msgid "Back to Login"
-msgstr "Retour à la page d'authentification"
+msgstr "Retour à la page d'authentification"
 
 #: ../vhffs-listengine/src/archives/archives.pl:160
 #, perl-format
@@ -551,15 +548,15 @@
 #: ../vhffs-listengine/src/archives/archives.pl:189
 #, perl-format
 msgid "Back to archives by year ( %s )"
-msgstr "Retour aux archives par année ( %s )"
+msgstr "Retour aux archives par année ( %s )"
 
 #: ../vhffs-listengine/src/archives/archives.pl:130
 msgid "Back to list by day"
-msgstr "Retour à la liste par jour"
+msgstr "Retour à la liste par jour"
 
 #: ../vhffs-panel/lost.pl:28
 msgid "Back to login page"
-msgstr "Retour à la page d'authentification"
+msgstr "Retour à la page d'authentification"
 
 #: ../vhffs-listengine/src/archives/show_msg.pl:40
 msgid "Bad listname"
@@ -579,7 +576,7 @@
 "Be careful ! If you click on modify, VHFFS will stop the database and set a "
 "new password for this database."
 msgstr ""
-"Faîtes attention ! Si vous cliquer, VHFFS arrêtera la base de données et "
+"Faîtes attention ! Si vous cliquer, VHFFS arrêtera la base de données et "
 "modifiera le mot de passe pour cette base"
 
 #: ../vhffs-panel/dns/create.pl:35
@@ -588,17 +585,17 @@
 "our servers."
 msgstr ""
 "Faites attention ! Vous devez donner la raison pour laquelle vous voulez "
-"héberger ce domaine sur nos serveur."
-
-#: ../vhffs-panel/web/create.pl:45
+"héberger ce domaine sur nos serveur."
+
+#: ../vhffs-panel/web/create.pl:44
 msgid ""
 "Be careful, if you want create www.domain.tld, you should create a webspace "
 "with servername as domain.tld. VHFFS redirect all request from www.domain."
 "tld to domain.tld"
 msgstr ""
-"Faites attention, si vous souhaitez créer www.domaine.ext, vous devez "
-"créer un espace webayant pour nom (servername) domaine.ext. VHFFS redirige "
-"toutes les requêtes dewww.domaine.ext à domaine.ext"
+"Faites attention, si vous souhaitez créer www.domaine.ext, vous devez créer "
+"un espace webayant pour nom (servername) domaine.ext. VHFFS redirige toutes "
+"les requêtes dewww.domaine.ext à domaine.ext"
 
 #: ../vhffs-panel/admin/broadcast_view.pl:57
 msgid "Body"
@@ -610,7 +607,7 @@
 "password will be sent to you by email!"
 msgstr ""
 "Mais nous sommes gentils: tapez votre nom de login ici<br/> et un nouveau "
-"mot de passe vous sera envoyé par mail"
+"mot de passe vous sera envoyé par mail"
 
 #: ../vhffs-panel/mail/delete_forward.pl:53
 #: ../vhffs-panel/mail/change_forward.pl:59
@@ -652,7 +649,7 @@
 msgid "CGI ERROR ! %s"
 msgstr "Erreur CGI %s"
 
-#: ../vhffs-panel/public/group.pl:38 ../vhffs-panel/public/user.pl:37
+#: ../vhffs-panel/public/group.pl:39 ../vhffs-panel/public/user.pl:38
 #: ../vhffs-panel/public/largefile.pl:48
 msgid "CGI ERROR!"
 msgstr "Erreur CGI"
@@ -671,7 +668,7 @@
 msgstr "Erreur CGI"
 
 #: ../vhffs-panel/pgsql/delete.pl:50
-#: ../vhffs-panel/admin/mailing/mailing_submit.pl:48
+#: ../vhffs-panel/admin/mailing/mailing_submit.pl:47
 #: ../vhffs-panel/admin/group/edit_submit.pl:65
 #: ../vhffs-panel/admin/broadcast_delete.pl:52
 #: ../vhffs-panel/admin/broadcast_submit.pl:52
@@ -695,7 +692,7 @@
 #: ../vhffs-panel/dns/add_cname.pl:49 ../vhffs-panel/dns/add_a.pl:52
 #: ../vhffs-panel/dns/modif_cname.pl:49 ../vhffs-panel/dns/add_mx.pl:49
 #: ../vhffs-panel/dns/modif_a.pl:49 ../vhffs-panel/dns/modif_mx.pl:49
-#: ../vhffs-panel/dns/delete_ns.pl:48 ../vhffs-panel/dns/delete_a.pl:49
+#: ../vhffs-panel/dns/delete_ns.pl:47 ../vhffs-panel/dns/delete_a.pl:49
 #: ../vhffs-panel/dns/delete.pl:48 ../vhffs-panel/pgsql/pgsql_submit.pl:42
 #: ../vhffs-panel/mailinglist/save_options.pl:53
 #: ../vhffs-panel/mailinglist/del_member.pl:48
@@ -713,57 +710,57 @@
 
 #: ../vhffs-panel/admin/moderation_submit.pl:59
 msgid "CGI problem"
-msgstr "Problème CGI"
+msgstr "Problème CGI"
 
 #: ../vhffs-panel/dns/modif_cname.pl:73
 msgid "CNAME field successfully updated"
-msgstr "Le champs CNAME a été mis à jour avec succès"
+msgstr "Le champs CNAME a été mis à jour avec succès"
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:116
 msgid "CVS Admin"
-msgstr "Administration des dépôts CVS"
+msgstr "Administration des dépôts CVS"
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:118
 msgid "CVS Search"
-msgstr "Recherche de dépôts CVS"
+msgstr "Recherche de dépôts CVS"
 
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:318
 msgid "CVS repositories for this group"
-msgstr "Dépôts CVS pour ce groupe"
-
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:91
+msgstr "Dépôts CVS pour ce groupe"
+
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:90
 msgid "CVS repository"
-msgstr "Dépôt CVS"
+msgstr "Dépôt CVS"
 
 #: ../vhffs-panel/admin/moderation.pl:186
 msgid "CVS repository awaiting validation"
-msgstr "Dépôts CVS en attente de validation"
-
-#: ../vhffs-panel/public/group.pl:115
+msgstr "Dépôts CVS en attente de validation"
+
+#: ../vhffs-panel/public/group.pl:114
 msgid "CVS repository for this group"
-msgstr "Dépôts CVS pour ce groupe"
+msgstr "Dépôts CVS pour ce groupe"
 
 #: ../vhffs-panel/cvs/prefs_save.pl:86
 msgid "CVS repository updated"
-msgstr "Dépôt CVS mis à jour"
+msgstr "Dépôt CVS mis à jour"
 
 #: ../vhffs-panel/admin/stats.pl:88
 msgid "CVS stats"
 msgstr "Statistiques CVS"
 
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:108
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:107
 msgid "CVSweb"
 msgstr "CVS par le web"
 
 #: ../vhffs-panel/acl/view.pl:133 ../vhffs-panel/acl/view.pl:158
 #: ../vhffs-panel/acl/view.pl:206
 msgid "Can destroy this service"
-msgstr "Peut détruire ce service"
+msgstr "Peut détruire ce service"
 
 #: ../vhffs-panel/acl/view.pl:132 ../vhffs-panel/acl/view.pl:157
 #: ../vhffs-panel/acl/view.pl:205
 msgid "Can manage ACL for this service"
-msgstr "Peut gérer les ACL pour ce service"
+msgstr "Peut gérer les ACL pour ce service"
 
 #: ../vhffs-panel/acl/view.pl:131 ../vhffs-panel/acl/view.pl:156
 #: ../vhffs-panel/acl/view.pl:204
@@ -778,7 +775,7 @@
 #: ../vhffs-panel/acl/view.pl:129 ../vhffs-panel/acl/view.pl:154
 #: ../vhffs-panel/acl/view.pl:202
 msgid "Can't access"
-msgstr "Ne pas pas accéder"
+msgstr "Ne pas pas accéder"
 
 #: ../vhffs-panel/mail/password_box.pl:81
 msgid "Can't change password"
@@ -787,7 +784,7 @@
 #: ../vhffs-panel/mail/delete_box.pl:78
 #, perl-format
 msgid "Can't delete box %s"
-msgstr "Impossible de supprimer la boîte %s"
+msgstr "Impossible de supprimer la boîte %s"
 
 #: ../vhffs-panel/mail/change_forward.pl:81
 #: ../vhffs-panel/admin/mail/change_forward.pl:82
@@ -807,7 +804,7 @@
 #: ../vhffs-panel/dns/add_a.pl:76 ../vhffs-panel/dns/add_a.pl:92
 #: ../vhffs-panel/dns/add_mx.pl:69
 msgid "Cannot add this ressource to this domain"
-msgstr "Impossible d'ajouter cette ressource à ce domaine"
+msgstr "Impossible d'ajouter cette ressource à ce domaine"
 
 #: ../vhffs-panel/group/join_group.pl:55
 msgid "Cannot add this user in this group"
@@ -815,7 +812,7 @@
 
 #: ../vhffs-panel/subscribe_complete.pl:199
 msgid "Cannot apply changes to the user"
-msgstr "Impossible d'appliquer les modifications à cet utilisateur"
+msgstr "Impossible d'appliquer les modifications à cet utilisateur"
 
 #: ../vhffs-panel/admin/moderation_submit.pl:106
 msgid "Cannot apply modifications"
@@ -831,25 +828,25 @@
 
 #: ../vhffs-panel/mailinglist/delete.pl:75
 msgid "Cannot commit changes on this object, will NOT be deleted"
-msgstr "Ne peut mettre à jour l'objet, il ne sera PAS détruit"
+msgstr "Ne peut mettre à jour l'objet, il ne sera PAS détruit"
 
 #: ../vhffs-panel/subscribe_complete.pl:178
 msgid "Cannot create user, the username you entered already exists"
 msgstr ""
-"Impossible de créer l'utilisateur. Le nom d'utilisateur que vous avez "
-"entré est déjà pris"
+"Impossible de créer l'utilisateur. Le nom d'utilisateur que vous avez entré "
+"est déjà pris"
 
 #: ../vhffs-panel/subscribe_complete.pl:211
 msgid ""
 "Cannot create user. Your username should contain at least 3 characters which "
 "are only lower case and digits."
 msgstr ""
-"Impossible de créer l'utilisateur. Votre nom d'utilisateur doit contenir au "
-"moins 3 caractères alphanumériques qui doivent être obligatoirement en "
+"Impossible de créer l'utilisateur. Votre nom d'utilisateur doit contenir au "
+"moins 3 caractères alphanumériques qui doivent être obligatoirement en "
 "minuscules"
 
 #: ../vhffs-panel/dns/delete_cname.pl:68 ../vhffs-panel/dns/delete_mx.pl:68
-#: ../vhffs-panel/dns/delete_ns.pl:68 ../vhffs-panel/dns/delete_a.pl:69
+#: ../vhffs-panel/dns/delete_ns.pl:67 ../vhffs-panel/dns/delete_a.pl:69
 msgid "Cannot delete it."
 msgstr "Impossible de le supprimer"
 
@@ -904,7 +901,7 @@
 #: ../vhffs-panel/dns/add_cname.pl:54 ../vhffs-panel/dns/add_a.pl:56
 #: ../vhffs-panel/dns/modif_cname.pl:54 ../vhffs-panel/dns/add_mx.pl:54
 #: ../vhffs-panel/dns/modif_a.pl:54 ../vhffs-panel/dns/modif_mx.pl:54
-#: ../vhffs-panel/dns/delete_ns.pl:53 ../vhffs-panel/dns/delete_a.pl:54
+#: ../vhffs-panel/dns/delete_ns.pl:52 ../vhffs-panel/dns/delete_a.pl:54
 #: ../vhffs-panel/dns/delete.pl:53 ../vhffs-panel/pgsql/prefs.pl:40
 #: ../vhffs-panel/admin/mail/delete_forward.pl:52
 #: ../vhffs-panel/admin/mail/change_forward.pl:53
@@ -912,10 +909,10 @@
 #: ../vhffs-panel/svn/prefs.pl:63
 #: ../vhffs-panel/mailinglist/save_options.pl:61
 #: ../vhffs-panel/mailinglist/del_member.pl:56
-#: ../vhffs-panel/mailinglist/prefs.pl:53
+#: ../vhffs-panel/mailinglist/prefs.pl:55
 #: ../vhffs-panel/mailinglist/add_sub.pl:56
 #: ../vhffs-panel/mailinglist/change_right.pl:58
-#: ../vhffs-panel/mailinglist/delete.pl:55 ../vhffs-panel/web/prefs.pl:42
+#: ../vhffs-panel/mailinglist/delete.pl:55 ../vhffs-panel/web/prefs.pl:41
 #: ../vhffs-panel/largefile/prefs.pl:64
 msgid "Cannot get informations on this object"
 msgstr "Impossible d'obtenir des informations sur cet objet"
@@ -947,23 +944,23 @@
 
 #: ../vhffs-panel/admin/moderation_submit.pl:63
 msgid "Cannot obtain information about this object"
-msgstr "Impossible d'obtenir des informations à propos de cet objet"
+msgstr "Impossible d'obtenir des informations à propos de cet objet"
 
 #: ../vhffs-panel/group/remove_user_from_group.pl:52
 msgid "Cannot remove the owner from a group"
-msgstr "Impossible de supprimer le propriétaire d'un groupe"
+msgstr "Impossible de supprimer le propriétaire d'un groupe"
 
 #: ../vhffs-panel/cvs/prefs_save.pl:47 ../vhffs-panel/cvs/delete.pl:47
 msgid "Cannot retrieve informations about this CVS repository"
-msgstr "Impossible d'obtenir des informations à propos de ce dépôt cvs"
+msgstr "Impossible d'obtenir des informations à propos de ce dépôt cvs"
 
 #: ../vhffs-panel/svn/prefs_save.pl:47
 msgid "Cannot retrieve informations about this Subversion repository"
-msgstr "Impossible d'obtenir des informations sur ce dépôts suversion"
+msgstr "Impossible d'obtenir des informations sur ce dépôts suversion"
 
 #: ../vhffs-panel/svn/delete.pl:46 ../vhffs-panel/largefile/delete.pl:45
 msgid "Cannot retrieve informations about this repository"
-msgstr "Impossible de consulter ce dépôt"
+msgstr "Impossible de consulter ce dépôt"
 
 #: ../vhffs-panel/mailinglist/save_options.pl:123
 msgid "Cannot save"
@@ -975,11 +972,11 @@
 
 #: ../vhffs-panel/dns/modif_cname.pl:69
 msgid "Cannot update CNAME on this domain"
-msgstr "Impossible de mettre à jour le champs CNAME sur ce domaine"
+msgstr "Impossible de mettre à jour le champs CNAME sur ce domaine"
 
 #: ../vhffs-panel/dns/modif_mx.pl:69
 msgid "Cannot update MX on this domain"
-msgstr "Impossible de mettre à jour le champs MX sur ce domaine"
+msgstr "Impossible de mettre à jour le champs MX sur ce domaine"
 
 #: ../vhffs-panel/admin/mail/edit.pl:67 ../vhffs-panel/admin/mail/show.pl:67
 msgid "Catchall"
@@ -987,7 +984,7 @@
 
 #: ../vhffs-panel/mail/save_catchall.pl:69
 msgid "Catchall address successfully added"
-msgstr "Adresse de type catchall a été ajoutée avec succès"
+msgstr "Adresse de type catchall a été ajoutée avec succès"
 
 #: ../vhffs-panel/mail/prefs.pl:70
 msgid "Catchall adress"
@@ -1025,7 +1022,7 @@
 msgid "Change language"
 msgstr "Changer le langage"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:130
+#: ../vhffs-panel/mailinglist/prefs.pl:132
 msgid "Change rights\n"
 msgstr "Changer les droits\n"
 
@@ -1035,7 +1032,7 @@
 
 #: ../vhffs-listengine/src/archives/archives.pl:87
 msgid "Change theme"
-msgstr "Changer le thème"
+msgstr "Changer le thème"
 
 #: ../vhffs-panel/admin/web/list.pl:78
 msgid "Change this Website"
@@ -1045,15 +1042,15 @@
 msgid "Change user-id"
 msgstr "Changer d'identifiant utilisateur"
 
-#: ../vhffs-robots/src/refused_postgres.pl:47
-#: ../vhffs-robots/src/refused_cvs.pl:48
-#: ../vhffs-robots/src/refused_mail.pl:47
-#: ../vhffs-robots/src/refused_dns.pl:47
-#: ../vhffs-robots/src/refused_mysql.pl:47
-#: ../vhffs-robots/src/refused_svn.pl:47 ../vhffs-robots/src/refused_ml.pl:47
-#: ../vhffs-robots/src/refused_groups.pl:47
-#: ../vhffs-robots/src/refused_web.pl:47
-#: ../vhffs-robots/src/refused_largefile.pl:47
+#: ../vhffs-robots/src/refused_postgres.pl:49
+#: ../vhffs-robots/src/refused_cvs.pl:50
+#: ../vhffs-robots/src/refused_mail.pl:49
+#: ../vhffs-robots/src/refused_dns.pl:49
+#: ../vhffs-robots/src/refused_mysql.pl:49
+#: ../vhffs-robots/src/refused_svn.pl:49 ../vhffs-robots/src/refused_ml.pl:49
+#: ../vhffs-robots/src/refused_groups.pl:49
+#: ../vhffs-robots/src/refused_web.pl:49
+#: ../vhffs-robots/src/refused_largefile.pl:49
 #: ../vhffs-panel/admin/moderation_submit.pl:77 ../vhffs-irc/modobot.pl:371
 msgid "Cheers,"
 msgstr "Respectueusement,"
@@ -1077,7 +1074,7 @@
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:200
 msgid "Confirmation code was wrong.\n"
-msgstr "Le code de confirmation était faux.\n"
+msgstr "Le code de confirmation était faux.\n"
 
 #: ../vhffs-panel/admin/user/edit.pl:76 ../vhffs-panel/admin/user/show.pl:76
 #: ../vhffs-panel/user/prefs.pl:54 ../vhffs-panel/subscribe.pl:42
@@ -1088,76 +1085,76 @@
 msgid "Crawl"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:122
-#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:111
-#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:85
-#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:117
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:90
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:121
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:110
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:84
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:116
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:89
 #: ../vhffs-api/src/Vhffs/Panel/Group.pm:114
-#: ../vhffs-api/src/Vhffs/Panel/Mailinglist.pm:99
-#: ../vhffs-api/src/Vhffs/Panel/Web.pm:106
-#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:116
+#: ../vhffs-api/src/Vhffs/Panel/Mailinglist.pm:98
+#: ../vhffs-api/src/Vhffs/Panel/Web.pm:105
+#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:115
 #: ../vhffs-api/src/Vhffs/Panel/LargeFile.pm:33
 msgid "Create"
-msgstr "Créer"
+msgstr "Créer"
 
 #: ../vhffs-panel/cvs/create.pl:33
 msgid "Create a CVS Repository"
-msgstr "Créer un dépôt cvs"
+msgstr "Créer un dépôt cvs"
 
 #: ../vhffs-panel/dns/create.pl:33
 msgid "Create a DNS "
-msgstr "Créer un domaine dns"
+msgstr "Créer un domaine dns"
 
 #: ../vhffs-panel/mysql/create.pl:33
 msgid "Create a MySQL database"
-msgstr "Créer une base de données mysql"
+msgstr "Créer une base de données mysql"
 
 #: ../vhffs-panel/pgsql/create.pl:33
 msgid "Create a Postgres database"
-msgstr "Créer une base de données postgres"
+msgstr "Créer une base de données postgres"
 
 #: ../vhffs-panel/group/create.pl:30
 msgid "Create a Project"
-msgstr "Créer un groupe/projet"
+msgstr "Créer un groupe/projet"
 
 #: ../vhffs-panel/svn/create.pl:39
 msgid "Create a Subversion Repository"
-msgstr "Créer un dépôt subversion"
+msgstr "Créer un dépôt subversion"
 
 #: ../vhffs-panel/mail/create.pl:33
 msgid "Create a mail space"
-msgstr "Créer un espace mail"
+msgstr "Créer un espace mail"
 
 #: ../vhffs-panel/mailinglist/create.pl:56
 msgid "Create a new mailing list"
-msgstr "Créer une liste de diffusion"
-
-#: ../vhffs-panel/web/create.pl:43
+msgstr "Créer une liste de diffusion"
+
+#: ../vhffs-panel/web/create.pl:42
 msgid "Create a web space"
-msgstr "Créer un site web"
-
-#: ../vhffs-api/src/Vhffs/Functions.pm:342
+msgstr "Créer un site web"
+
+#: ../vhffs-api/src/Vhffs/Functions.pm:344
 #: ../vhffs-panel/admin/mail/edit.pl:130 ../vhffs-panel/admin/pgsql/edit.pl:89
 #: ../vhffs-panel/admin/cvs/edit.pl:98 ../vhffs-panel/admin/group/edit.pl:91
 #: ../vhffs-panel/admin/mysql/edit.pl:89
 #: ../vhffs-panel/admin/object/edit.pl:89 ../vhffs-panel/admin/web/edit.pl:102
 #: ../vhffs-panel/admin/user/edit.pl:113
 msgid "Created"
-msgstr "Créé"
-
-#: ../vhffs-api/src/Vhffs/Functions.pm:338
+msgstr "Créé"
+
+#: ../vhffs-api/src/Vhffs/Functions.pm:340
 #: ../vhffs-panel/admin/mail/edit.pl:128 ../vhffs-panel/admin/pgsql/edit.pl:87
 #: ../vhffs-panel/admin/cvs/edit.pl:96 ../vhffs-panel/admin/group/edit.pl:89
 #: ../vhffs-panel/admin/mysql/edit.pl:87
 #: ../vhffs-panel/admin/object/edit.pl:87 ../vhffs-panel/admin/web/edit.pl:100
 #: ../vhffs-panel/admin/user/edit.pl:111
 msgid "Creating error"
-msgstr "Erreur de création"
+msgstr "Erreur de création"
 
 #: ../vhffs-panel/group/prefs.pl:80 ../vhffs-panel/user/prefs.pl:80
 msgid "Current avatar"
-msgstr "Avatar utilisé"
+msgstr "Avatar utilisé"
 
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:498
 #, perl-format
@@ -1170,9 +1167,9 @@
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:131
 msgid "DB Search"
-msgstr "Recherche de base de données"
-
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:123
+msgstr "Recherche de base de données"
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:122
 msgid "DNS"
 msgstr "Nom de domaine"
 
@@ -1188,34 +1185,35 @@
 msgid "DNS stats"
 msgstr "Statistiques des DNS"
 
-#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:113
-#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:87
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:112
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:86
 msgid "Database Access"
-msgstr "Accès à la base de données"
+msgstr "Accès à la base de données"
 
 #: ../vhffs-panel/admin/pgsql/edit.pl:64 ../vhffs-panel/admin/pgsql/show.pl:63
 msgid "Database Name"
-msgstr "Nom de la base de données"
+msgstr "Nom de la base de données"
 
 #: ../vhffs-panel/mysql/submit.pl:52
 msgid "Database name must contain at least 3 caracters"
-msgstr "Le nom de la base de données doit contenir au moins 3 caractères"
+msgstr "Le nom de la base de données doit contenir au moins 3 caractères"
 
 #: ../vhffs-panel/pgsql/pgsql_submit.pl:54
 msgid "Database name must contain between 3 and 16 characters"
-msgstr "Le nom de la base de données doit contenue entre 3 et 16 caractères"
+msgstr "Le nom de la base de données doit contenue entre 3 et 16 caractères"
 
 #: ../vhffs-panel/pgsql/pgsql_submit.pl:46
 msgid "Database password must contains at least 3 characters"
-msgstr "Le mot de passe de la base de données doit contenir au moins 3 caractères"
+msgstr ""
+"Le mot de passe de la base de données doit contenir au moins 3 caractères"
 
 #: ../vhffs-panel/pgsql/delete.pl:54
 msgid "Database will NOT be deleted !"
-msgstr "La base de données ne sera pas supprimée"
+msgstr "La base de données ne sera pas supprimée"
 
 #: ../vhffs-panel/pgsql/delete.pl:66
 msgid "Database will be DELETE"
-msgstr "La base de données sera supprimée"
+msgstr "La base de données sera supprimée"
 
 #: ../vhffs-panel/admin/broadcast_view.pl:54
 msgid "Date"
@@ -1223,19 +1221,19 @@
 
 #: ../vhffs-panel/admin/object/edit.pl:64
 msgid "Date of creation"
-msgstr "Date de création"
+msgstr "Date de création"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:417
 msgid "December"
-msgstr "Décembre"
+msgstr "Décembre"
 
 #: ../vhffs-panel/mail/prefs.pl:104 ../vhffs-panel/dns/prefs.pl:103
 #: ../vhffs-panel/dns/prefs.pl:153 ../vhffs-panel/dns/prefs.pl:174
 #: ../vhffs-panel/dns/prefs.pl:194 ../vhffs-panel/dns/prefs.pl:215
 #: ../vhffs-panel/pgsql/prefs.pl:81 ../vhffs-panel/cvs/prefs.pl:80
 #: ../vhffs-panel/group/prefs.pl:71 ../vhffs-panel/mysql/prefs.pl:88
-#: ../vhffs-panel/svn/prefs.pl:97 ../vhffs-panel/mailinglist/prefs.pl:166
-#: ../vhffs-panel/web/prefs.pl:101 ../vhffs-panel/user/prefs.pl:77
+#: ../vhffs-panel/svn/prefs.pl:97 ../vhffs-panel/mailinglist/prefs.pl:170
+#: ../vhffs-panel/web/prefs.pl:100 ../vhffs-panel/user/prefs.pl:77
 #: ../vhffs-panel/largefile/prefs.pl:104
 msgid "Delete"
 msgstr "Supprimer"
@@ -1248,17 +1246,17 @@
 msgid "Delete avatar for this object"
 msgstr "Supprimer l'avatar de cet objet"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:129
+#: ../vhffs-panel/mailinglist/prefs.pl:131
 msgid "Delete from list"
 msgstr "Supprimer de la liste"
 
 #: ../vhffs-panel/pgsql/prefs.pl:76
 msgid "Delete this PostgreSQL database"
-msgstr "Supprimer cette base de données postgres"
+msgstr "Supprimer cette base de données postgres"
 
 #: ../vhffs-panel/mysql/prefs.pl:83
 msgid "Delete this database"
-msgstr "Supprimer cette base de données"
+msgstr "Supprimer cette base de données"
 
 #: ../vhffs-panel/dns/prefs.pl:98
 msgid "Delete this domain name from the VHFFS platform"
@@ -1272,7 +1270,7 @@
 msgid "Delete this forward"
 msgstr "Supprimer cette redirection"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:161
+#: ../vhffs-panel/mailinglist/prefs.pl:165
 msgid "Delete this list"
 msgstr "Supprimer cette liste"
 
@@ -1294,9 +1292,9 @@
 
 #: ../vhffs-panel/svn/prefs.pl:92
 msgid "Delete this repository"
-msgstr "Supprimer ce dépôt"
-
-#: ../vhffs-panel/web/prefs.pl:96
+msgstr "Supprimer ce dépôt"
+
+#: ../vhffs-panel/web/prefs.pl:95
 msgid "Delete this web area"
 msgstr "Supprimer ce site web"
 
@@ -1309,13 +1307,13 @@
 #: ../vhffs-panel/admin/object/edit.pl:66 ../vhffs-panel/admin/web/edit.pl:73
 #: ../vhffs-panel/admin/web/show.pl:70 ../vhffs-panel/cvs/create.pl:40
 #: ../vhffs-panel/group/create.pl:35 ../vhffs-panel/mysql/create.pl:41
-#: ../vhffs-panel/svn/create.pl:46 ../vhffs-panel/public/allgroups.pl:48
-#: ../vhffs-panel/public/group.pl:56 ../vhffs-panel/public/lastgroups.pl:45
+#: ../vhffs-panel/svn/create.pl:46 ../vhffs-panel/public/allgroups.pl:46
+#: ../vhffs-panel/public/group.pl:57 ../vhffs-panel/public/lastgroups.pl:46
 #: ../vhffs-panel/largefile/create.pl:42
 msgid "Description"
 msgstr "Description"
 
-#: ../vhffs-panel/web/prefs.pl:69
+#: ../vhffs-panel/web/prefs.pl:68
 msgid "Description of your webarea"
 msgstr "Description de votre site web"
 
@@ -1325,14 +1323,14 @@
 
 #: ../vhffs-panel/mail/prefs.pl:134
 msgid "Disable anti-spam"
-msgstr "Désactiver l'anti-spam"
+msgstr "Désactiver l'anti-spam"
 
 #: ../vhffs-panel/mail/prefs.pl:153
 msgid "Disable anti-virus"
-msgstr "Désactiver l'anti-virus"
-
-#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:119
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:92
+msgstr "Désactiver l'anti-virus"
+
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:118
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:91
 msgid "Documentation"
 msgstr "Documentation"
 
@@ -1342,7 +1340,7 @@
 
 #: ../vhffs-panel/public/largefile.pl:55
 msgid "Does not support largefile"
-msgstr "Ne supporte pas l'hébergement de fichiers"
+msgstr "Ne supporte pas l'hébergement de fichiers"
 
 #: ../vhffs-panel/mail/create.pl:34 ../vhffs-panel/admin/mail/edit.pl:66
 #: ../vhffs-panel/admin/mail/show.pl:66
@@ -1363,16 +1361,16 @@
 
 #: ../vhffs-panel/public/largefile.pl:113
 msgid "Download"
-msgstr "Télécharger"
+msgstr "Télécharger"
 
 #: ../vhffs-panel/public/largefile.pl:78
 #, perl-format
 msgid "Download %s"
-msgstr "Télécharger %s"
+msgstr "Télécharger %s"
 
 #: ../vhffs-panel/admin/cvs/edit.pl:61
 msgid "Edit CVS"
-msgstr "Editer ce dépôt CVS"
+msgstr "Editer ce dépôt CVS"
 
 #: ../vhffs-panel/admin/group/edit.pl:61
 msgid "Edit Group"
@@ -1384,7 +1382,7 @@
 
 #: ../vhffs-panel/admin/mysql/edit.pl:61
 msgid "Edit MySQL database"
-msgstr "Editer cette base de données mysql"
+msgstr "Editer cette base de données mysql"
 
 #: ../vhffs-panel/admin/object/edit.pl:59
 msgid "Edit Object"
@@ -1392,7 +1390,7 @@
 
 #: ../vhffs-panel/admin/pgsql/edit.pl:61
 msgid "Edit PostgreSQL database"
-msgstr "Editer cette base de données postgres"
+msgstr "Editer cette base de données postgres"
 
 #: ../vhffs-panel/admin/user/edit.pl:61
 msgid "Edit User"
@@ -1406,7 +1404,7 @@
 msgid "Edit this object"
 msgstr "Editer cet objet"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:93
+#: ../vhffs-panel/mailinglist/prefs.pl:95
 msgid "Email adress"
 msgstr "Adresse mail"
 
@@ -1420,7 +1418,8 @@
 
 #: ../vhffs-panel/mail/prefs.pl:72
 msgid "Enter a mail address to catch all email for this domain"
-msgstr "Entrez une adresse mail valide qui prendre tous les emails pour ce domaine"
+msgstr ""
+"Entrez une adresse mail valide qui prendre tous les emails pour ce domaine"
 
 #: ../vhffs-panel/admin/broadcast_submit.pl:64
 msgid "Error !"
@@ -1431,7 +1430,7 @@
 "Error ! You MUST provide a password in your account when you create your "
 "popable account"
 msgstr ""
-"Erreur. Vous DEVEZ renseigner le mot de passe lorsque vous créer votre "
+"Erreur. Vous DEVEZ renseigner le mot de passe lorsque vous créer votre "
 "compte mail"
 
 #: ../vhffs-panel/user/prefs_save.pl:184 ../vhffs-panel/user/prefs_save.pl:195
@@ -1457,25 +1456,25 @@
 
 #: ../vhffs-panel/mailinglist/submit.pl:99
 msgid "Error while creating list (unknow problem)"
-msgstr "Erreur lors de la création de la liste (erreur inconnue)"
+msgstr "Erreur lors de la création de la liste (erreur inconnue)"
 
 #: ../vhffs-panel/web/web_submit.pl:61
 msgid "Error while creating the user. The username already exists"
-msgstr "Erreur lors de la création de l'utilisateur. Le nom existe déjà"
+msgstr "Erreur lors de la création de l'utilisateur. Le nom existe déjà"
 
 #: ../vhffs-panel/group/project_submit.pl:64
 msgid "Error while creation !"
-msgstr "Erreur lors de la création"
+msgstr "Erreur lors de la création"
 
 #: ../vhffs-panel/dns/delete.pl:71
 msgid "Error while switching state. DNS will NOT be deleted"
-msgstr "Erreur lors du changement d'état. Le domaine dns ne sera PAS supprimé"
+msgstr "Erreur lors du changement d'état. Le domaine dns ne sera PAS supprimé"
 
 #: ../vhffs-panel/mysql/prefs_save.pl:52
 msgid "Error, password can be only alphanumeric caracters"
 msgstr ""
-"Erreur, les mot de passe peuvent seulement contenir des caractères "
-"alphanumériques"
+"Erreur, les mot de passe peuvent seulement contenir des caractères "
+"alphanumériques"
 
 #: ../vhffs-panel/group/delete.pl:51
 msgid ""
@@ -1483,7 +1482,7 @@
 "and try again"
 msgstr ""
 "Erreur, votre groupe n'est pas vide. Merci de supprimer tous les services "
-"associés à votre groupe et de réessayer"
+"associés à votre groupe et de réessayer"
 
 #: ../vhffs-panel/group/prefs.pl:39
 msgid "Error. This group doesn't exists"
@@ -1491,7 +1490,7 @@
 
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:106
 msgid "Expired session ! Please login again"
-msgstr "Session expirée. Merci de vous authentifier à nouveau"
+msgstr "Session expirée. Merci de vous authentifier à nouveau"
 
 #: ../vhffs-panel/admin/user/edit_note.pl:70
 msgid "Failed to modify note"
@@ -1499,7 +1498,7 @@
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:377
 msgid "February"
-msgstr "Février"
+msgstr "Février"
 
 #: ../vhffs-panel/object/upavatar.pl:87
 msgid "File to big. Max size if 5000 bytes for an avatar"
@@ -1515,7 +1514,7 @@
 
 #: ../vhffs-panel/largefile/submit.pl:48
 msgid "Filename is too short. Must contains at least 3 caracters"
-msgstr "Le nom du fichier doit contenir au moins 3 caractères"
+msgstr "Le nom du fichier doit contenir au moins 3 caractères"
 
 #: ../vhffs-panel/admin/largefile/list.pl:82
 msgid "Filename(size in Mb/type)"
@@ -1531,10 +1530,11 @@
 
 #: ../vhffs-panel/object/upavatar.pl:83
 msgid "Filetype not supported"
-msgstr "Type de fichier non supporté. Merci d'envoyer un fichier au format PNG."
+msgstr ""
+"Type de fichier non supporté. Merci d'envoyer un fichier au format PNG."
 
 #: ../vhffs-panel/admin/user/edit.pl:65 ../vhffs-panel/admin/user/show.pl:66
-#: ../vhffs-panel/public/lastusers.pl:47 ../vhffs-panel/public/user.pl:54
+#: ../vhffs-panel/public/lastusers.pl:46 ../vhffs-panel/public/user.pl:55
 #: ../vhffs-panel/user/prefs.pl:49 ../vhffs-panel/subscribe.pl:38
 msgid "Firstname"
 msgstr "Nom"
@@ -1542,7 +1542,7 @@
 #: ../vhffs-panel/user/prefs.pl:142
 #, perl-format
 msgid "Forward emails from %s@%s to %s"
-msgstr "Rediriger les emails de %s@%s à %s"
+msgstr "Rediriger les emails de %s@%s à %s"
 
 #: ../vhffs-panel/admin/mail/edit.pl:84 ../vhffs-panel/admin/mail/show.pl:84
 msgid "Forward for"
@@ -1555,7 +1555,7 @@
 #: ../vhffs-panel/mail/change_forward.pl:91
 #: ../vhffs-panel/admin/mail/change_forward.pl:92
 msgid "Forwarding successfully added"
-msgstr "Redirection ajoutée avec succès"
+msgstr "Redirection ajoutée avec succès"
 
 #: ../vhffs-panel/mail/prefs.pl:84
 msgid "Forwards"
@@ -1572,11 +1572,11 @@
 
 #: ../vhffs-panel/admin/user/edit.pl:78 ../vhffs-panel/admin/user/show.pl:78
 msgid "GPG key"
-msgstr "Clé PGP"
+msgstr "Clé PGP"
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:53
 msgid "General"
-msgstr "Général"
+msgstr "Général"
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:54
 msgid "Get Statistics"
@@ -1585,6 +1585,13 @@
 #: ../vhffs-panel/lost.pl:27
 msgid "Give me a new password"
 msgstr "Donnez moi un nouveau mot de passe"
+
+#: ../vhffs-panel/public/allwebsites.pl:58
+#: ../vhffs-panel/public/lastusers.pl:81 ../vhffs-panel/public/index.pl:51
+#: ../vhffs-panel/public/allgroups.pl:74 ../vhffs-panel/public/group.pl:217
+#: ../vhffs-panel/public/user.pl:85 ../vhffs-panel/public/lastgroups.pl:73
+msgid "Go on login page"
+msgstr "Aller à la page d'authentification"
 
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:251
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:275
@@ -1596,21 +1603,21 @@
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:433
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:458
 msgid "Go to admin"
-msgstr "Aller à l'administration"
+msgstr "Aller à l'administration"
 
 #: ../vhffs-panel/dns/prefs.pl:230 ../vhffs-panel/svn/prefs.pl:122
-#: ../vhffs-panel/mailinglist/prefs.pl:176
+#: ../vhffs-panel/mailinglist/prefs.pl:180
 #: ../vhffs-panel/largefile/prefs.pl:114
 msgid "Go to object-part admin"
-msgstr "Aller à l'administration de la partie objet"
-
-#: ../vhffs-panel/auth.pl:53
+msgstr "Aller à l'administration de la partie objet"
+
+#: ../vhffs-panel/auth.pl:54
 msgid "Go to public area"
 msgstr "Aller dans la zone publique"
 
 #: ../vhffs-panel/svn/prefs.pl:58 ../vhffs-panel/largefile/prefs.pl:59
 msgid "Grant an user access to this repository"
-msgstr "Autoriser un utilisateur à accéder à ce dépôt"
+msgstr "Autoriser un utilisateur à accéder à ce dépôt"
 
 #: ../vhffs-panel/admin/mail/edit.pl:68 ../vhffs-panel/admin/mail/show.pl:68
 #: ../vhffs-panel/admin/pgsql/edit.pl:67 ../vhffs-panel/admin/pgsql/show.pl:65
@@ -1639,39 +1646,39 @@
 
 #: ../vhffs-panel/cvs/create.pl:35
 msgid "Group owning this CVS"
-msgstr "Groupe propriétaire de ce dépôt cvs"
+msgstr "Groupe propriétaire de ce dépôt cvs"
 
 #: ../vhffs-panel/dns/create.pl:37
 msgid "Group owning this DNS"
-msgstr "Groupe propriétaire de ce nom de domaine"
+msgstr "Groupe propriétaire de ce nom de domaine"
 
 #: ../vhffs-panel/svn/create.pl:41
 msgid "Group owning this Subversion repository"
-msgstr "Groupe propriétaire de ce dépôt subversion"
+msgstr "Groupe propriétaire de ce dépôt subversion"
 
 #: ../vhffs-panel/pgsql/create.pl:36 ../vhffs-panel/mysql/create.pl:35
 msgid "Group owning this database"
-msgstr "Groupe propriétaire de cette base de données"
+msgstr "Groupe propriétaire de cette base de données"
 
 #: ../vhffs-panel/mailinglist/create.pl:58
 msgid "Group owning this mailing list"
-msgstr "Groupe propriétaire de cette liste"
-
-#: ../vhffs-panel/mail/create.pl:35 ../vhffs-panel/web/create.pl:46
+msgstr "Groupe propriétaire de cette liste"
+
+#: ../vhffs-panel/mail/create.pl:35 ../vhffs-panel/web/create.pl:45
 msgid "Group owning this web space"
-msgstr "Groupe propriétaire de ce site web"
-
-#: ../vhffs-panel/public/index.pl:40
+msgstr "Groupe propriétaire de ce site web"
+
+#: ../vhffs-panel/public/index.pl:41
 msgid "Group public area"
 msgstr "Zone publique des groupes"
 
 #: ../vhffs-panel/admin/group/edit.pl:64 ../vhffs-panel/admin/group/show.pl:63
-#: ../vhffs-panel/acl/view.pl:119 ../vhffs-panel/public/allgroups.pl:44
-#: ../vhffs-panel/public/group.pl:55 ../vhffs-panel/public/lastgroups.pl:41
+#: ../vhffs-panel/acl/view.pl:119 ../vhffs-panel/public/allgroups.pl:42
+#: ../vhffs-panel/public/group.pl:56 ../vhffs-panel/public/lastgroups.pl:42
 msgid "Groupname"
 msgstr "Nom du groupe"
 
-#: ../vhffs-panel/public/lastusers.pl:51 ../vhffs-panel/public/user.pl:58
+#: ../vhffs-panel/public/lastusers.pl:50 ../vhffs-panel/public/user.pl:59
 msgid "Groups"
 msgstr "Groupes"
 
@@ -1705,7 +1712,7 @@
 msgstr ""
 "Bonjour %s %s,\n"
 "\n"
-"Vous avez modifié votre email. Voici un rappel de vos informations :\n"
+"Vous avez modifié votre email. Voici un rappel de vos informations :\n"
 "\n"
 "Utilisateur: %s\n"
 "Adresse mail: %s\n"
@@ -1726,23 +1733,23 @@
 
 #: ../vhffs-panel/alert.pl:37
 msgid "Here, you can report a bug to the admin team"
-msgstr "Ici, vous pouvez rapporter un bug à l'équipe d'administration"
-
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:142
-#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:127
-#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:136
-#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:102
-#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:111
-#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:133
-#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:142
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:106
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:117
-#: ../vhffs-api/src/Vhffs/Panel/Mailinglist.pm:117
-#: ../vhffs-api/src/Vhffs/Panel/Mailinglist.pm:124
-#: ../vhffs-api/src/Vhffs/Panel/Web.pm:122
-#: ../vhffs-api/src/Vhffs/Panel/Web.pm:131
-#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:131
-#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:139
+msgstr "Ici, vous pouvez rapporter un bug à l'équipe d'administration"
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:141
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:126
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:135
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:101
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:110
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:132
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:141
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:105
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:116
+#: ../vhffs-api/src/Vhffs/Panel/Mailinglist.pm:116
+#: ../vhffs-api/src/Vhffs/Panel/Mailinglist.pm:123
+#: ../vhffs-api/src/Vhffs/Panel/Web.pm:121
+#: ../vhffs-api/src/Vhffs/Panel/Web.pm:130
+#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:130
+#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:138
 #: ../vhffs-api/src/Vhffs/Panel/LargeFile.pm:49
 #: ../vhffs-api/src/Vhffs/Panel/LargeFile.pm:56
 #: ../vhffs-panel/admin/mail/edit.pl:73 ../vhffs-panel/admin/mail/show.pl:72
@@ -1762,37 +1769,44 @@
 
 #: ../vhffs-panel/admin/user/edit.pl:69 ../vhffs-panel/admin/user/show.pl:69
 msgid "Home"
-msgstr "Répertoire utilisateur"
+msgstr "Répertoire utilisateur"
+
+#: ../vhffs-panel/public/allwebsites.pl:57
+#: ../vhffs-panel/public/lastusers.pl:80 ../vhffs-panel/public/index.pl:50
+#: ../vhffs-panel/public/allgroups.pl:73 ../vhffs-panel/public/group.pl:216
+#: ../vhffs-panel/public/user.pl:84 ../vhffs-panel/public/lastgroups.pl:72
+msgid "Homepage of public area"
+msgstr "Aller à la page d'accueil de la zone publique"
 
 #: ../vhffs-panel/largefile/create.pl:33
 msgid "Host a file"
-msgstr "Héberger un fichier"
+msgstr "Héberger un fichier"
 
 #: ../vhffs-panel/admin/user/edit.pl:101 ../vhffs-panel/admin/user/show.pl:109
 msgid "Hosted"
-msgstr "Hébergé"
+msgstr "Hébergé"
 
 #: ../vhffs-panel/largefile/prefs.pl:84
 msgid "Hosted file administration"
-msgstr "Administration des fichiers hébergés"
+msgstr "Administration des fichiers hébergés"
 
 #: ../vhffs-api/src/Vhffs/Panel/LargeFile.pm:34
 msgid "Hosted files"
-msgstr "Fichiers hébergés"
+msgstr "Fichiers hébergés"
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:195
 msgid "Hosted files admin"
-msgstr "Administration des fichiers hébergés"
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:424 ../vhffs-panel/public/group.pl:168
+msgstr "Administration des fichiers hébergés"
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:424 ../vhffs-panel/public/group.pl:167
 msgid "Hosted files for this group"
-msgstr "Fichiers hébergés pour ce groupe"
+msgstr "Fichiers hébergés pour ce groupe"
 
 #: ../vhffs-panel/admin/stats.pl:138
 msgid "Hosted files stats"
-msgstr "Statistiques des fichiers hébergés"
-
-#: ../vhffs-panel/auth.pl:33
+msgstr "Statistiques des fichiers hébergés"
+
+#: ../vhffs-panel/auth.pl:35
 msgid "I've lost my password"
 msgstr "J'ai perdu mon mot de passe"
 
@@ -1810,21 +1824,21 @@
 "If this mail is an error and you don't ask to be a subscriber to this list, "
 "please do not answer to this mail\n"
 msgstr ""
-"Si vous n'avez pas sollicité ce mail et que vous n'avez pas essayé "
-"desouscrire à cette liste, merci de ne pas répondre à ce mail\n"
-
-#: ../vhffs-robots/src/refused_postgres.pl:46
-#: ../vhffs-robots/src/refused_cvs.pl:47
-#: ../vhffs-robots/src/refused_mail.pl:46
-#: ../vhffs-robots/src/refused_dns.pl:46
-#: ../vhffs-robots/src/refused_mysql.pl:46
-#: ../vhffs-robots/src/refused_svn.pl:46 ../vhffs-robots/src/refused_ml.pl:46
-#: ../vhffs-robots/src/refused_groups.pl:46
-#: ../vhffs-robots/src/refused_web.pl:46
-#: ../vhffs-robots/src/refused_largefile.pl:46
+"Si vous n'avez pas sollicité ce mail et que vous n'avez pas essayé "
+"desouscrire à cette liste, merci de ne pas répondre à ce mail\n"
+
+#: ../vhffs-robots/src/refused_postgres.pl:48
+#: ../vhffs-robots/src/refused_cvs.pl:49
+#: ../vhffs-robots/src/refused_mail.pl:48
+#: ../vhffs-robots/src/refused_dns.pl:48
+#: ../vhffs-robots/src/refused_mysql.pl:48
+#: ../vhffs-robots/src/refused_svn.pl:48 ../vhffs-robots/src/refused_ml.pl:48
+#: ../vhffs-robots/src/refused_groups.pl:48
+#: ../vhffs-robots/src/refused_web.pl:48
+#: ../vhffs-robots/src/refused_largefile.pl:48
 #, perl-format
 msgid "If you encounters problem, please mail: %s\n"
-msgstr "Si vous rencontrez des problèmes, envoyez un mail à %s\n"
+msgstr "Si vous rencontrez des problèmes, envoyez un mail à %s\n"
 
 #: ../vhffs-panel/group/prefs.pl:58
 msgid ""
@@ -1833,20 +1847,20 @@
 "group."
 msgstr ""
 "Si vous souhaitez obtenir plus d'espace disque pour votre groupe/projet, "
-"remplissez un dysfonctionnement via le formulaire à gauche du site."
-"N'oubliez pas de mentionner le nom de votre groupe"
-
-#: ../vhffs-robots/src/refused_postgres.pl:40
-#: ../vhffs-robots/src/refused_cvs.pl:41
-#: ../vhffs-robots/src/refused_mail.pl:40
-#: ../vhffs-robots/src/refused_dns.pl:40
-#: ../vhffs-robots/src/refused_mysql.pl:40
-#: ../vhffs-robots/src/refused_svn.pl:40 ../vhffs-robots/src/refused_ml.pl:40
-#: ../vhffs-robots/src/refused_groups.pl:40
-#: ../vhffs-robots/src/refused_web.pl:40
-#: ../vhffs-robots/src/refused_largefile.pl:40
+"remplissez un dysfonctionnement via le formulaire à gauche du site.N'oubliez "
+"pas de mentionner le nom de votre groupe"
+
+#: ../vhffs-robots/src/refused_postgres.pl:42
+#: ../vhffs-robots/src/refused_cvs.pl:43
+#: ../vhffs-robots/src/refused_mail.pl:42
+#: ../vhffs-robots/src/refused_dns.pl:42
+#: ../vhffs-robots/src/refused_mysql.pl:42
+#: ../vhffs-robots/src/refused_svn.pl:42 ../vhffs-robots/src/refused_ml.pl:42
+#: ../vhffs-robots/src/refused_groups.pl:42
+#: ../vhffs-robots/src/refused_web.pl:42
+#: ../vhffs-robots/src/refused_largefile.pl:42
 msgid "In hope to keep you in our hosting service"
-msgstr "Dans l'espoir de vous garder dans notre service d'hébergement"
+msgstr "Dans l'espoir de vous garder dans notre service d'hébergement"
 
 #: ../vhffs-panel/dns/add_a.pl:88 ../vhffs-panel/dns/modif_a.pl:69
 msgid "Invalid IP"
@@ -1866,11 +1880,11 @@
 
 #: ../vhffs-panel/cvs/prefs.pl:71
 msgid "Is this CVS repository public ??"
-msgstr "Ce dépôt cvs doit-il être public ?"
+msgstr "Ce dépôt cvs doit-il être public ?"
 
 #: ../vhffs-panel/svn/prefs.pl:88
 msgid "Is this a public repository ?"
-msgstr "Ce dépôt doit-il être public ?"
+msgstr "Ce dépôt doit-il être public ?"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:373
 msgid "January"
@@ -1888,21 +1902,35 @@
 msgid "Language"
 msgstr "Langage"
 
-#: ../vhffs-panel/public/lastgroups.pl:32
+#: ../vhffs-panel/public/allwebsites.pl:60
+#: ../vhffs-panel/public/lastusers.pl:83 ../vhffs-panel/public/index.pl:53
+#: ../vhffs-panel/public/allgroups.pl:76 ../vhffs-panel/public/group.pl:219
+#: ../vhffs-panel/public/user.pl:87 ../vhffs-panel/public/lastgroups.pl:75
+msgid "Last groups"
+msgstr "Derniers groupes"
+
+#: ../vhffs-panel/public/lastgroups.pl:33
 #, perl-format
 msgid "Last groups on %s"
 msgstr "Derniers groupes sur %s"
 
-#: ../vhffs-panel/public/lastusers.pl:35
+#: ../vhffs-panel/public/allwebsites.pl:61
+#: ../vhffs-panel/public/lastusers.pl:84 ../vhffs-panel/public/index.pl:54
+#: ../vhffs-panel/public/allgroups.pl:77 ../vhffs-panel/public/group.pl:220
+#: ../vhffs-panel/public/user.pl:88 ../vhffs-panel/public/lastgroups.pl:76
+msgid "Last users"
+msgstr "Derniers utilisateurs"
+
+#: ../vhffs-panel/public/lastusers.pl:36
 #, perl-format
 msgid "Last users on %s"
 msgstr "Derniers utilisateurs sur %s"
 
 #: ../vhffs-panel/admin/user/edit.pl:66 ../vhffs-panel/admin/user/show.pl:67
-#: ../vhffs-panel/public/lastusers.pl:49 ../vhffs-panel/public/user.pl:56
+#: ../vhffs-panel/public/lastusers.pl:48 ../vhffs-panel/public/user.pl:57
 #: ../vhffs-panel/user/prefs.pl:50 ../vhffs-panel/subscribe.pl:39
 msgid "Lastname"
-msgstr "Prénom"
+msgstr "Prénom"
 
 #: ../vhffs-panel/largefile/create.pl:37 ../vhffs-panel/largefile/prefs.pl:90
 msgid "Licence"
@@ -1913,8 +1941,8 @@
 "Licence is too short. Please tell use about legal aspect for the use of this "
 "new file."
 msgstr ""
-"La licence est trop courte. Merci de remplit les aspects légal quant au "
-"téléchargement de ce nouveau fichier ."
+"La licence est trop courte. Merci de remplit les aspects légal quant au "
+"téléchargement de ce nouveau fichier ."
 
 #: ../vhffs-panel/public/largefile.pl:82
 msgid "Licence of this file"
@@ -1922,19 +1950,19 @@
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:117
 msgid "List all CVS"
-msgstr "Lister tous les dépôts cvs"
+msgstr "Lister tous les dépôts cvs"
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:130
 msgid "List all DBs"
-msgstr "Liste toutes les bases de données"
+msgstr "Liste toutes les bases de données"
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:170
 msgid "List all Postgres DB"
-msgstr "Lister toutes les bases de données postgres"
+msgstr "Lister toutes les bases de données postgres"
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:103
 msgid "List all SVN repo"
-msgstr "Lister tous les dépôts subversion"
+msgstr "Lister tous les dépôts subversion"
 
 #: ../vhffs-panel/mail/prefs.pl:76
 msgid "List all accounts"
@@ -1962,13 +1990,13 @@
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:196
 msgid "List all hosted files"
-msgstr "Afficher tous les fichier hébergés"
+msgstr "Afficher tous les fichier hébergés"
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:157
 msgid "List all lists"
 msgstr "Lister toutes les listes de diffusion"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:91
+#: ../vhffs-panel/mailinglist/prefs.pl:93
 msgid "List all members"
 msgstr "Lister tous les membres"
 
@@ -1986,15 +2014,15 @@
 
 #: ../vhffs-panel/admin/cvs/list.pl:53
 msgid "List of all CVS repositories"
-msgstr "Liste de tous les dépôts cvs"
+msgstr "Liste de tous les dépôts cvs"
 
 #: ../vhffs-panel/admin/mysql/list.pl:53
 msgid "List of all MySQL databases"
-msgstr "Liste de toutes les bases de données mysql"
+msgstr "Liste de toutes les bases de données mysql"
 
 #: ../vhffs-panel/admin/pgsql/list.pl:53
 msgid "List of all PostgreSQL databases"
-msgstr "Liste de toutes les bases de données postgres"
+msgstr "Liste de toutes les bases de données postgres"
 
 #: ../vhffs-panel/admin/dns/list.pl:53
 msgid "List of all domains"
@@ -2008,7 +2036,7 @@
 msgid "List of all mail-domain"
 msgstr "Liste de tous les domaines de mail"
 
-#: ../vhffs-panel/admin/mailing/list.pl:55
+#: ../vhffs-panel/admin/mailing/list.pl:54
 msgid "List of all mailing-list"
 msgstr "Liste de toutes les listes de diffusion"
 
@@ -2016,7 +2044,10 @@
 msgid "List of all users"
 msgstr "Liste de tous les utilisateurs"
 
-#: ../vhffs-panel/admin/web/list.pl:53
+#: ../vhffs-panel/admin/web/list.pl:53 ../vhffs-panel/public/allwebsites.pl:59
+#: ../vhffs-panel/public/lastusers.pl:82 ../vhffs-panel/public/index.pl:52
+#: ../vhffs-panel/public/allgroups.pl:75 ../vhffs-panel/public/group.pl:218
+#: ../vhffs-panel/public/user.pl:86 ../vhffs-panel/public/lastgroups.pl:74
 msgid "List of all websites"
 msgstr "Liste de tous les sites web"
 
@@ -2026,9 +2057,9 @@
 
 #: ../vhffs-panel/mailinglist/delete.pl:67
 msgid "List will NOT be deleted"
-msgstr "La liste de diffusion ne sera PAS supprimée"
-
-#: ../vhffs-panel/public/group.pl:195
+msgstr "La liste de diffusion ne sera PAS supprimée"
+
+#: ../vhffs-panel/public/group.pl:194
 msgid "List(s) for this group"
 msgstr "Liste(s) de diffusion de ce groupe"
 
@@ -2044,40 +2075,33 @@
 msgid "Local Part for this account"
 msgstr "Partie locale de ce compte"
 
-#: ../vhffs-panel/public/allwebsites.pl:35
-#: ../vhffs-panel/public/lastusers.pl:37 ../vhffs-panel/public/index.pl:48
-#: ../vhffs-panel/public/user.pl:62
-msgid "Log in"
-msgstr "S'authentifier"
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:139
-#: ../vhffs-panel/public/allgroups.pl:35 ../vhffs-panel/public/group.pl:61
-#: ../vhffs-panel/login.pl:59 ../vhffs-panel/login.pl:100
-#: ../vhffs-panel/lost_ack.pl:41 ../vhffs-panel/lost_ack.pl:52
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:139 ../vhffs-panel/login.pl:59
+#: ../vhffs-panel/login.pl:100 ../vhffs-panel/lost_ack.pl:41
+#: ../vhffs-panel/lost_ack.pl:52
 msgid "Login"
 msgstr "Nom d'utilisateur"
 
 #: ../vhffs-panel/login.pl:89
 msgid "Login OK, please wait..."
-msgstr "Authentification réussie, merci de patienter ..."
+msgstr "Authentification réussie, merci de patienter ..."
 
 #: ../vhffs-panel/login.pl:58 ../vhffs-panel/login.pl:99
 msgid "Login failed !"
-msgstr "Authentification échouée"
+msgstr "Authentification échouée"
 
 #: ../vhffs-api/src/Vhffs/Panel/Menu.pm:57
 msgid "Logout"
-msgstr "Se déconnecter"
+msgstr "Se déconnecter"
 
 #: ../vhffs-panel/dns/modif_mx.pl:73
 msgid "MX successfully changed"
-msgstr "Champs mx modifiés avec succès"
+msgstr "Champs mx modifiés avec succès"
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:129
 msgid "MYSQL Admin"
-msgstr "Administration des bases de données mysql"
-
-#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:117
+msgstr "Administration des bases de données mysql"
+
+#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:116
 #: ../vhffs-panel/admin/user/edit.pl:77 ../vhffs-panel/admin/user/show.pl:77
 msgid "Mail"
 msgstr "Mail"
@@ -2096,7 +2120,7 @@
 
 #: ../vhffs-panel/mail/submit.pl:53
 msgid "Mail area successfully created !"
-msgstr "Domaine mail créé avec succès"
+msgstr "Domaine mail créé avec succès"
 
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:397
 msgid "Mail domain for this group"
@@ -2110,13 +2134,13 @@
 msgid "Mail stats"
 msgstr "Statistiques des mails"
 
-#: ../vhffs-panel/admin/mailing/mailing_submit.pl:58
+#: ../vhffs-panel/admin/mailing/mailing_submit.pl:57
 msgid "Mail successfully sent"
-msgstr "Mail envoyé avec succès"
+msgstr "Mail envoyé avec succès"
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:59
 msgid "Mail to all hosted people"
-msgstr "Envoyer un message à tous les hébergés"
+msgstr "Envoyer un message à tous les hébergés"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:322
 #, perl-format
@@ -2125,27 +2149,27 @@
 
 #: ../vhffs-panel/user/prefs_save.pl:90
 msgid "Mailbox modified"
-msgstr "Boîte mail modifiée"
+msgstr "Boîte mail modifiée"
 
 #: ../vhffs-panel/user/prefs_save.pl:161
 msgid "Mailbox successfully added"
-msgstr "Boîte mail ajoutée avec succès"
-
-#: ../vhffs-api/src/Vhffs/Panel/Mailinglist.pm:100
+msgstr "Boîte mail ajoutée avec succès"
+
+#: ../vhffs-api/src/Vhffs/Panel/Mailinglist.pm:99
 msgid "Mailing List"
 msgstr "Liste de diffusion"
 
 #: ../vhffs-panel/admin/broadcast_submit.pl:60
 msgid "Mailing successfully added"
-msgstr "Envoi ajouté avec succès"
+msgstr "Envoi ajouté avec succès"
 
 #: ../vhffs-panel/admin/broadcast_delete.pl:60
 msgid "Mailing successfully deleted"
-msgstr "Envoi supprimé avec succès"
+msgstr "Envoi supprimé avec succès"
 
 #: ../vhffs-panel/mailinglist/submit.pl:78
 msgid "Mailing-list successfully created !"
-msgstr "Liste de diffusion créé avec succès"
+msgstr "Liste de diffusion créé avec succès"
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:156
 msgid "Mailing-lists Admin"
@@ -2157,15 +2181,16 @@
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:60
 msgid "Manage mailings"
-msgstr "Gérer les envoi de masse"
-
-#: ../vhffs-panel/mailinglist/prefs.pl:90
+msgstr "Gérer les envoi de masse"
+
+#: ../vhffs-panel/mailinglist/prefs.pl:92
 msgid "Manage members"
-msgstr "Gérer les membres"
+msgstr "Gérer les membres"
 
 #: ../vhffs-panel/group/join_group.pl:74
 msgid "Many users matched your query. Please choose between them"
-msgstr "Plusieurs utilisateurs répondent à votre requête. Choisissez parmi ceux-ci"
+msgstr ""
+"Plusieurs utilisateurs répondent à votre requête. Choisissez parmi ceux-ci"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:381
 msgid "March"
@@ -2186,11 +2211,11 @@
 
 #: ../vhffs-panel/alert_submit.pl:43
 msgid "Message sent by the following account"
-msgstr "Message envoyé par le compte suivant"
+msgstr "Message envoyé par le compte suivant"
 
 #: ../vhffs-panel/alert_submit.pl:49
 msgid "Message sent successfully"
-msgstr "Message envoyé avec succès"
+msgstr "Message envoyé avec succès"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:291
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:306
@@ -2202,14 +2227,14 @@
 msgid "Mirrors"
 msgstr "Serveurs mirroirs"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:80
+#: ../vhffs-panel/mailinglist/prefs.pl:82
 msgid "Moderated"
-msgstr "Modéré"
+msgstr "Modéré"
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:55
 #: ../vhffs-panel/admin/moderation.pl:53
 msgid "Moderation"
-msgstr "Modération"
+msgstr "Modération"
 
 #: ../vhffs-panel/admin/user/edit.pl:99 ../vhffs-panel/admin/user/show.pl:101
 msgid "Moderator"
@@ -2217,18 +2242,18 @@
 
 #: ../vhffs-api/src/Vhffs/Panel/Menu.pm:44
 msgid "Moderator account : "
-msgstr "Compte modérateur : "
-
-#: ../vhffs-api/src/Vhffs/Functions.pm:366
+msgstr "Compte modérateur : "
+
+#: ../vhffs-api/src/Vhffs/Functions.pm:368
 #: ../vhffs-panel/admin/mail/edit.pl:135 ../vhffs-panel/admin/pgsql/edit.pl:94
 #: ../vhffs-panel/admin/cvs/edit.pl:103 ../vhffs-panel/admin/group/edit.pl:96
 #: ../vhffs-panel/admin/mysql/edit.pl:94
 #: ../vhffs-panel/admin/object/edit.pl:94 ../vhffs-panel/admin/web/edit.pl:107
 #: ../vhffs-panel/admin/user/edit.pl:118
 msgid "Modification applied"
-msgstr "Modification(s) appliquée(s)"
-
-#: ../vhffs-api/src/Vhffs/Functions.pm:362
+msgstr "Modification(s) appliquée(s)"
+
+#: ../vhffs-api/src/Vhffs/Functions.pm:364
 #: ../vhffs-panel/admin/mail/edit.pl:134 ../vhffs-panel/admin/pgsql/edit.pl:93
 #: ../vhffs-panel/admin/cvs/edit.pl:102 ../vhffs-panel/admin/group/edit.pl:95
 #: ../vhffs-panel/admin/mysql/edit.pl:93
@@ -2239,33 +2264,33 @@
 
 #: ../vhffs-panel/admin/moderation_submit.pl:110
 msgid "Modifications applied successfully"
-msgstr "Les modifications ont été appliquées avec succès"
+msgstr "Les modifications ont été appliquées avec succès"
 
 #: ../vhffs-panel/pgsql/prefs_save.pl:69
 msgid "Modifications applied to your database"
-msgstr "Modifications appliquées à votre base de données"
+msgstr "Modifications appliquées à votre base de données"
 
 #: ../vhffs-panel/web/prefs_save.pl:64
 msgid "Modifications applied to your webarea"
-msgstr "Modifications appliquées à votre site web"
+msgstr "Modifications appliquées à votre site web"
 
 #: ../vhffs-panel/admin/pgsql/edit_submit.pl:71
 #: ../vhffs-panel/admin/cvs/edit_submit.pl:73
 #: ../vhffs-panel/admin/group/edit_submit.pl:84
 #: ../vhffs-panel/admin/mysql/edit_submit.pl:71
 msgid "Modifications successfully added"
-msgstr "Modifications appliquées"
+msgstr "Modifications appliquées"
 
 #: ../vhffs-panel/admin/web/edit_submit.pl:72
 #: ../vhffs-panel/admin/user/edit_submit.pl:104
 msgid "Modifications successfully applied"
-msgstr "Modifications appliquées avec succès"
+msgstr "Modifications appliquées avec succès"
 
 #: ../vhffs-panel/dns/prefs.pl:154 ../vhffs-panel/dns/prefs.pl:175
 #: ../vhffs-panel/dns/prefs.pl:195 ../vhffs-panel/pgsql/prefs.pl:75
 #: ../vhffs-panel/cvs/prefs.pl:74 ../vhffs-panel/group/prefs.pl:65
 #: ../vhffs-panel/mysql/prefs.pl:82 ../vhffs-panel/svn/prefs.pl:91
-#: ../vhffs-panel/web/prefs.pl:89 ../vhffs-panel/user/prefs.pl:59
+#: ../vhffs-panel/web/prefs.pl:88 ../vhffs-panel/user/prefs.pl:59
 msgid "Modify"
 msgstr "Modifier"
 
@@ -2275,19 +2300,19 @@
 
 #: ../vhffs-panel/admin/cvs/list.pl:79
 msgid "Modify this CVS repository"
-msgstr "Modifier de dépôt cvs"
+msgstr "Modifier de dépôt cvs"
 
 #: ../vhffs-panel/admin/mysql/list.pl:94
 msgid "Modify this MySQL area"
-msgstr "Modifier cette base de donnée mysql"
+msgstr "Modifier cette base de donnée mysql"
 
 #: ../vhffs-panel/admin/pgsql/list.pl:94
 msgid "Modify this PostgreSQL database"
-msgstr "Modifier cette base de données postgres"
+msgstr "Modifier cette base de données postgres"
 
 #: ../vhffs-panel/admin/svn/list.pl:76
 msgid "Modify this Subversion repository"
-msgstr "Modifier ce dépôt subversion"
+msgstr "Modifier ce dépôt subversion"
 
 #: ../vhffs-panel/admin/dns/list.pl:93
 msgid "Modify this domain"
@@ -2301,7 +2326,7 @@
 msgid "Modify this hosted file"
 msgstr "Modifier ce fichier"
 
-#: ../vhffs-panel/admin/mailing/list.pl:88
+#: ../vhffs-panel/admin/mailing/list.pl:87
 msgid "Modify this list"
 msgstr "Modifier cette liste"
 
@@ -2315,7 +2340,7 @@
 
 #: ../vhffs-panel/dns/prefs.pl:107
 msgid "Must we redirect the DNS on our servers ?"
-msgstr "Les DNS doivent-ils être redirigés sur nos serveurs ?"
+msgstr "Les DNS doivent-ils être redirigés sur nos serveurs ?"
 
 #: ../vhffs-api/src/Vhffs/Panel/Group.pm:112
 msgid "My Projects"
@@ -2325,17 +2350,17 @@
 msgid "MySQL Administration"
 msgstr "Administration mysql"
 
-#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:112
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:111
 msgid "MySQL Databases"
-msgstr "Bases de données mysql"
+msgstr "Bases de données mysql"
 
 #: ../vhffs-panel/admin/moderation.pl:362
 msgid "MySQL database awaiting validation"
-msgstr "Bases de données mysql en attente de validation"
+msgstr "Bases de données mysql en attente de validation"
 
 #: ../vhffs-panel/mysql/create.pl:37
 msgid "MySQL database name "
-msgstr "Nom de la base de données "
+msgstr "Nom de la base de données "
 
 #: ../vhffs-panel/mysql/create.pl:38
 msgid "MySQL password for this database "
@@ -2347,7 +2372,7 @@
 
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:266
 msgid "Mysql database for this group"
-msgstr "Bases de données mysql pour ce groupe"
+msgstr "Bases de données mysql pour ce groupe"
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:182
 msgid "NS Admin"
@@ -2363,7 +2388,7 @@
 
 #: ../vhffs-panel/pgsql/prefs.pl:62 ../vhffs-panel/mysql/prefs.pl:69
 msgid "Name of the database"
-msgstr "Nom de la base de données"
+msgstr "Nom de la base de données"
 
 #: ../vhffs-panel/dns/prefs.pl:118
 msgid "Name of your MX"
@@ -2376,21 +2401,21 @@
 
 #: ../vhffs-panel/dns/prefs.pl:109 ../vhffs-panel/admin/cvs/edit.pl:73
 #: ../vhffs-panel/admin/cvs/show.pl:77 ../vhffs-panel/cvs/prefs.pl:73
-#: ../vhffs-panel/svn/prefs.pl:90 ../vhffs-panel/web/prefs.pl:86
+#: ../vhffs-panel/svn/prefs.pl:90 ../vhffs-panel/web/prefs.pl:85
 msgid "No"
 msgstr "Non"
 
 #: ../vhffs-panel/dns/prefs.pl:162
 msgid "No A type found"
-msgstr "Aucun type A trouvé"
+msgstr "Aucun type A trouvé"
 
 #: ../vhffs-panel/dns/prefs.pl:203
 msgid "No CNAME available on this domain"
-msgstr "Aucun champs CNAME trouvé pour ce domaine"
+msgstr "Aucun champs CNAME trouvé pour ce domaine"
 
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:335
 msgid "No CVS repository for this group"
-msgstr "Aucun dépôt cvs pour ce groupe"
+msgstr "Aucun dépôt cvs pour ce groupe"
 
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:466
 msgid "No DNS domain for this group"
@@ -2398,19 +2423,19 @@
 
 #: ../vhffs-panel/admin/moderation.pl:176
 msgid "No DNS to validate"
-msgstr "Aucun nom de domaine à valider"
+msgstr "Aucun nom de domaine à valider"
 
 #: ../vhffs-panel/admin/moderation.pl:93
 msgid "No Group to validate"
-msgstr "Aucun groupe à valider"
+msgstr "Aucun groupe à valider"
 
 #: ../vhffs-panel/dns/prefs.pl:183
 msgid "No MX reccord for this domain"
-msgstr "Aucun champs MX trouvé pour ce domaine"
+msgstr "Aucun champs MX trouvé pour ce domaine"
 
 #: ../vhffs-panel/admin/moderation.pl:353
 msgid "No Mail Area to validate"
-msgstr "Aucun domaine mail à valider"
+msgstr "Aucun domaine mail à valider"
 
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:414
 msgid "No Mail domain for this group"
@@ -2426,30 +2451,30 @@
 
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:309
 msgid "No PostgreSQL database for this group"
-msgstr "Aucune base de données postgres pour ce groupe"
+msgstr "Aucune base de données postgres pour ce groupe"
 
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:361
 msgid "No SVN repository for this group"
-msgstr "Aucun dépôt subversion pour ce groupe"
+msgstr "Aucun dépôt subversion pour ce groupe"
 
 #: ../vhffs-panel/admin/moderation.pl:135
 msgid "No Web Area to validate"
-msgstr "Aucun site web à valider"
+msgstr "Aucun site web à valider"
 
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:96
 msgid "No cookie found, please accept the cookie and then please login again !"
 msgstr ""
-"Aucun cookie n'a été trouvé. Merci de vous réauthentifier ou d'accepter "
-"les cookies"
-
-#: ../vhffs-panel/public/group.pl:130
+"Aucun cookie n'a été trouvé. Merci de vous réauthentifier ou d'accepter les "
+"cookies"
+
+#: ../vhffs-panel/public/group.pl:129
 msgid "No cvs repository available for this group"
-msgstr "Aucun dépôt cvs pour ce groupe"
+msgstr "Aucun dépôt cvs pour ce groupe"
 
 #: ../vhffs-panel/admin/moderation.pl:396
 #: ../vhffs-panel/admin/moderation.pl:438
 msgid "No database to validate"
-msgstr "Aucune base de données à valider"
+msgstr "Aucune base de données à valider"
 
 #: ../vhffs-panel/object/upavatar.pl:74
 msgid "No enough rights"
@@ -2457,19 +2482,19 @@
 
 #: ../vhffs-panel/admin/object/edit.pl:172 ../vhffs-panel/history.pl:84
 msgid "No event about this object"
-msgstr "Aucun évênement à propos de cet objet"
-
-#: ../vhffs-panel/public/group.pl:186
+msgstr "Aucun évênement à propos de cet objet"
+
+#: ../vhffs-panel/public/group.pl:185
 msgid "No file available for this group"
-msgstr "Aucun fichier n'est hébergé pour ce groupe"
+msgstr "Aucun fichier n'est hébergé pour ce groupe"
 
 #: ../vhffs-panel/admin/moderation.pl:479
 msgid "No files to validate"
-msgstr "Aucune demande d'hébergement de fichier"
-
-#: ../vhffs-panel/public/lastusers.pl:63 ../vhffs-panel/public/allgroups.pl:58
-#: ../vhffs-panel/public/group.pl:70 ../vhffs-panel/public/user.pl:70
-#: ../vhffs-panel/public/lastgroups.pl:54
+msgstr "Aucune demande d'hébergement de fichier"
+
+#: ../vhffs-panel/public/lastusers.pl:62 ../vhffs-panel/public/allgroups.pl:56
+#: ../vhffs-panel/public/group.pl:69 ../vhffs-panel/public/user.pl:69
+#: ../vhffs-panel/public/lastgroups.pl:55
 msgid "No group for this user"
 msgstr "Aucun groupe pour cet utilisateur"
 
@@ -2479,50 +2504,51 @@
 
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:441
 msgid "No hosted files for this group"
-msgstr "Aucun hébergement de fichiers pour ce groupe"
-
-#: ../vhffs-panel/public/group.pl:210
+msgstr "Aucun hébergement de fichiers pour ce groupe"
+
+#: ../vhffs-panel/public/group.pl:209
 msgid "No list available for this group"
 msgstr "Aucune liste de diffusion n'existe pour ce groupe"
 
 #: ../vhffs-panel/admin/moderation.pl:263
 msgid "No list to validate"
-msgstr "Aucune liste de diffusion à valider"
-
-#: ../vhffs-panel/mailinglist/prefs.pl:157
+msgstr "Aucune liste de diffusion à valider"
+
+#: ../vhffs-panel/mailinglist/prefs.pl:161
 msgid "No member on this list"
 msgstr "Aucun membre sur cette liste de diffusion"
 
-#: ../vhffs-listengine/src/listengine.pl:557
+#: ../vhffs-listengine/src/listengine.pl:559
 msgid "No message to moderate"
-msgstr "Aucun message à modérer"
+msgstr "Aucun message à modérer"
 
 #: ../vhffs-panel/pgsql/prefs_save.pl:65
 msgid "No modification can be applied. Please check your fields."
-msgstr "Aucune modification ne peut être appliquées. Merci de vérifier les champs."
+msgstr ""
+"Aucune modification ne peut être appliquées. Merci de vérifier les champs."
 
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:283
 msgid "No mysql database for this group"
-msgstr "Aucune base de données mysql pour ce groupe"
+msgstr "Aucune base de données mysql pour ce groupe"
 
 #: ../vhffs-panel/admin/moderation.pl:220
 #: ../vhffs-panel/admin/moderation.pl:308
 msgid "No repository to validate"
-msgstr "Aucun dépôt à modérer"
+msgstr "Aucun dépôt à modérer"
 
 #: ../vhffs-panel/public/largefile.pl:105
 msgid "No server"
 msgstr "Aucun serveur"
 
-#: ../vhffs-panel/public/group.pl:157
+#: ../vhffs-panel/public/group.pl:156
 msgid "No subversion repository available for this group"
-msgstr "Aucun dépôt subversion disponible pour ce groupe"
-
-#: ../vhffs-panel/public/largefile.pl:62
+msgstr "Aucun dépôt subversion disponible pour ce groupe"
+
+#: ../vhffs-panel/public/group.pl:46 ../vhffs-panel/public/largefile.pl:62
 msgid "No such group"
 msgstr "Ne trouve pas le groupe"
 
-#: ../vhffs-panel/public/group.pl:45 ../vhffs-panel/public/user.pl:44
+#: ../vhffs-panel/public/user.pl:45
 msgid "No such user"
 msgstr "Ne trouve pas l'utilisateur"
 
@@ -2534,22 +2560,22 @@
 msgid "No webarea for this group"
 msgstr "Aucun site web pour ce groupe"
 
-#: ../vhffs-panel/public/group.pl:106
+#: ../vhffs-panel/public/group.pl:105
 msgid "No website available for this group"
 msgstr "Aucun site web pour ce groupe"
 
-#: ../vhffs-panel/dns/prefs.pl:102 ../vhffs-panel/web/prefs.pl:100
+#: ../vhffs-panel/dns/prefs.pl:102 ../vhffs-panel/web/prefs.pl:99
 #: ../vhffs-panel/user/prefs.pl:76
 msgid "No, I'm not sure, I prefer to keep it."
-msgstr "Non, je suis pas sûr, je préfère le garder"
+msgstr "Non, je suis pas sûr, je préfère le garder"
 
 #: ../vhffs-panel/mail/prefs.pl:103 ../vhffs-panel/pgsql/prefs.pl:80
 #: ../vhffs-panel/cvs/prefs.pl:79 ../vhffs-panel/group/prefs.pl:70
 #: ../vhffs-panel/mysql/prefs.pl:87 ../vhffs-panel/svn/prefs.pl:96
-#: ../vhffs-panel/mailinglist/prefs.pl:165
+#: ../vhffs-panel/mailinglist/prefs.pl:169
 #: ../vhffs-panel/largefile/prefs.pl:103
 msgid "No, I'm not sure, I prefer to keep this project."
-msgstr "Non, je ne suis pas sûr, je préfère garder ce projet"
+msgstr "Non, je ne suis pas sûr, je préfère garder ce projet"
 
 #: ../vhffs-panel/mailinglist/del_member.pl:68
 #: ../vhffs-panel/mailinglist/add_sub.pl:68
@@ -2559,7 +2585,7 @@
 
 #: ../vhffs-panel/admin/user/edit_note.pl:66
 msgid "Note successfully modified"
-msgstr "Note ajoutée avec succès"
+msgstr "Note ajoutée avec succès"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:413
 msgid "November"
@@ -2581,14 +2607,14 @@
 msgstr "Identifiant de l'objet"
 
 #: ../vhffs-panel/dns/prefs.pl:231 ../vhffs-panel/svn/prefs.pl:123
-#: ../vhffs-panel/mailinglist/prefs.pl:177
+#: ../vhffs-panel/mailinglist/prefs.pl:181
 #: ../vhffs-panel/largefile/prefs.pl:115
 msgid "Object part"
 msgstr "Partie objet"
 
 #: ../vhffs-panel/admin/object/edit_submit.pl:62
 msgid "Object successfully updated"
-msgstr "Objet mis à jour avec succès"
+msgstr "Objet mis à jour avec succès"
 
 #: ../vhffs-panel/object/upavatar.pl:66
 msgid "Object-ID error"
@@ -2599,9 +2625,9 @@
 msgstr "Octobre"
 
 #: ../vhffs-panel/mail/prefs.pl:108 ../vhffs-panel/dns/prefs.pl:94
-#: ../vhffs-panel/web/prefs.pl:94
+#: ../vhffs-panel/web/prefs.pl:93
 msgid "Ok, go to ACL admin"
-msgstr "Aller à l'administration des ACL"
+msgstr "Aller à l'administration des ACL"
 
 #: ../vhffs-panel/admin/broadcast.pl:49
 msgid "Ok, send it !"
@@ -2611,29 +2637,29 @@
 msgid "Only this list administrators can use the following commands.\n"
 msgstr "Les administrateurs peuvent utiliser les commandes suivantes.\n"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:83
+#: ../vhffs-panel/mailinglist/prefs.pl:85
 msgid "Open archives"
 msgstr "Archives ouvertes publiquement"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:81
+#: ../vhffs-panel/mailinglist/prefs.pl:83
 msgid "Open post"
 msgstr "Post ouvert au public"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:82
+#: ../vhffs-panel/mailinglist/prefs.pl:84
 msgid "Open subscribing"
 msgstr "Inscription ouverte au public"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:79
+#: ../vhffs-panel/mailinglist/prefs.pl:81
 msgid "Options"
 msgstr "Options"
 
 #: ../vhffs-panel/mailinglist/save_options.pl:127
 msgid "Options successfully modified"
-msgstr "Options modifiées avec succès"
-
-#: ../vhffs-panel/public/allwebsites.pl:46
+msgstr "Options modifiées avec succès"
+
+#: ../vhffs-panel/public/allwebsites.pl:45
 msgid "Owned by"
-msgstr "Appartient à"
+msgstr "Appartient à"
 
 #: ../vhffs-panel/admin/mail/edit.pl:69 ../vhffs-panel/admin/mail/show.pl:69
 #: ../vhffs-panel/admin/pgsql/edit.pl:68 ../vhffs-panel/admin/pgsql/show.pl:66
@@ -2643,45 +2669,45 @@
 #: ../vhffs-panel/admin/web/edit.pl:69 ../vhffs-panel/admin/web/show.pl:68
 #: ../vhffs-panel/group/create.pl:32
 msgid "Owner"
-msgstr "Propriétaire"
+msgstr "Propriétaire"
 
 #: ../vhffs-panel/admin/largefile/list.pl:83
 msgid "Owner group"
-msgstr "Groupe propriétaire"
+msgstr "Groupe propriétaire"
 
 #: ../vhffs-panel/admin/user/edit.pl:195
 msgid "Owner of this group"
-msgstr "Propriétaire de ce groupe"
+msgstr "Propriétaire de ce groupe"
 
 #: ../vhffs-panel/login.pl:90
 msgid "Panel Access"
-msgstr "Accès au panel"
+msgstr "Accès au panel"
 
 #: ../vhffs-panel/mail/prefs.pl:80 ../vhffs-panel/admin/pgsql/edit.pl:66
 #: ../vhffs-panel/admin/mysql/edit.pl:66 ../vhffs-panel/admin/user/edit.pl:68
-#: ../vhffs-panel/user/prefs.pl:55 ../vhffs-panel/auth.pl:31
+#: ../vhffs-panel/user/prefs.pl:55 ../vhffs-panel/auth.pl:33
 msgid "Password"
 msgstr "Mot de passe"
 
 #: ../vhffs-panel/pgsql/prefs.pl:68 ../vhffs-panel/mysql/prefs.pl:75
 msgid "Password for this database"
-msgstr "Password pour cette base de données"
+msgstr "Password pour cette base de données"
 
 #: ../vhffs-panel/mysql/submit.pl:56
 msgid "Password must contain at least 3 caracters"
-msgstr "Le mot de passe doit contenir au moins 3 caractères"
+msgstr "Le mot de passe doit contenir au moins 3 caractères"
 
 #: ../vhffs-panel/pgsql/pgsql_submit.pl:50
 msgid "Password must contains only alphanum caracters"
-msgstr "Le mot de passe doit contenir que des caractères alphanumériques"
+msgstr "Le mot de passe doit contenir que des caractères alphanumériques"
 
 #: ../vhffs-panel/lost_ack.pl:51
 msgid "Password recovery failed!"
-msgstr "Le mot de passe n'a pas été retrouvé"
+msgstr "Le mot de passe n'a pas été retrouvé"
 
 #: ../vhffs-panel/mail/password_box.pl:91
 msgid "Password successfully changed"
-msgstr "Le mot de passe a été modifié avec succès"
+msgstr "Le mot de passe a été modifié avec succès"
 
 #: ../vhffs-robots/src/create_largefile.pl:64
 #, perl-format
@@ -2697,14 +2723,14 @@
 msgstr "Statistiques postgres"
 
 #: ../vhffs-panel/login.pl:46 ../vhffs-panel/panel.pl:37
-#: ../vhffs-panel/auth.pl:68
+#: ../vhffs-panel/auth.pl:69
 msgid "Platform temporary closed"
-msgstr "Plate-forme fermée temporairement"
+msgstr "Plate-forme fermée temporairement"
 
 #: ../vhffs-panel/login.pl:47 ../vhffs-panel/panel.pl:38
-#: ../vhffs-panel/auth.pl:69
+#: ../vhffs-panel/auth.pl:70
 msgid "Platform temporary closed."
-msgstr "Plate-forme fermée temporairement."
+msgstr "Plate-forme fermée temporairement."
 
 #: ../vhffs-panel/subscribe_complete.pl:155
 msgid "Please enter a correct city"
@@ -2719,7 +2745,7 @@
 msgid "Please enter a correct firstname"
 msgstr "Veuillez fournir un nom correct"
 
-#: ../vhffs-panel/auth.pl:29
+#: ../vhffs-panel/auth.pl:31
 msgid "Please enter your username and password"
 msgstr "Veuillez entrer votre nom d'utilisateur et votre mot de passe"
 
@@ -2729,7 +2755,7 @@
 "you"
 msgstr ""
 "Veuillez remplir tous les champs. Un mail contenant votre password vous sera "
-"envoyé"
+"envoyé"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:257
 msgid "Please read help of listengine\n"
@@ -2737,32 +2763,33 @@
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:153
 msgid "Please try again\n"
-msgstr "Veuillez réessayer\n"
+msgstr "Veuillez réessayer\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:201
 msgid "Please try again.\n"
-msgstr "Veuillez réessayer.\n"
+msgstr "Veuillez réessayer.\n"
 
 #: ../vhffs-panel/lost_ack.pl:40
 #, perl-format
 msgid "Please wait %s, a new password will be sent to you in a few minutes..."
 msgstr ""
-"Veuillez patienter %s, un nouveau mot de passe va vous être envoyé dans "
+"Veuillez patienter %s, un nouveau mot de passe va vous être envoyé dans "
 "quelques minutes ..."
 
 #: ../vhffs-panel/pgsql/prefs_save.pl:50 ../vhffs-panel/pgsql/prefs.pl:53
 msgid "Please wait modification, creation or deletion"
-msgstr "Veuillez attendre la modification, création ou suppression"
+msgstr "Veuillez attendre la modification, création ou suppression"
 
 #: ../vhffs-panel/subscribe_complete.pl:204
-msgid "Please wait while we are creating the account, it will take some minutes"
-msgstr ""
-"Merci de patienter pendant que nous créons votre compte. Cela prendra "
+msgid ""
+"Please wait while we are creating the account, it will take some minutes"
+msgstr ""
+"Merci de patienter pendant que nous créons votre compte. Cela prendra "
 "quelques minutes"
 
 #: ../vhffs-panel/admin/moderation_submit.pl:76 ../vhffs-irc/modobot.pl:370
 msgid "Please wait while we are creating your object\n"
-msgstr "Veuillez patienter pendant que nous créons votre service\n"
+msgstr "Veuillez patienter pendant que nous créons votre service\n"
 
 #: ../vhffs-panel/admin/mail/edit.pl:85 ../vhffs-panel/admin/mail/show.pl:85
 msgid "Popboxes for"
@@ -2772,17 +2799,17 @@
 msgid "PostgreSQL Administration"
 msgstr "Administration des bases postgres"
 
-#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:86
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:85
 msgid "PostgreSQL Databases"
-msgstr "Bases de données postgres"
+msgstr "Bases de données postgres"
 
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:292
 msgid "PostgreSQL database for this group"
-msgstr "Bases de données postgres pour ce groupe"
+msgstr "Bases de données postgres pour ce groupe"
 
 #: ../vhffs-panel/pgsql/create.pl:34
 msgid "PostgreSQL database name"
-msgstr "Nom de la base de données"
+msgstr "Nom de la base de données"
 
 #: ../vhffs-panel/pgsql/create.pl:35
 msgid "PostgreSQL password for this database"
@@ -2794,19 +2821,19 @@
 
 #: ../vhffs-panel/admin/moderation.pl:404
 msgid "Postgres database awaiting validation"
-msgstr "Bases de données postgres en attente de validation"
-
-#: ../vhffs-panel/mailinglist/prefs.pl:85
+msgstr "Bases de données postgres en attente de validation"
+
+#: ../vhffs-panel/mailinglist/prefs.pl:87
 msgid "Prefix on subject"
-msgstr "Préfixe devant le sujet du mail"
+msgstr "Préfixe devant le sujet du mail"
 
 #: ../vhffs-panel/dns/prefs.pl:119
 msgid "Priority of your MX"
-msgstr "Priorité de votre MX"
+msgstr "Priorité de votre MX"
 
 #: ../vhffs-panel/dns/prefs.pl:172
 msgid "Priority: "
-msgstr "Priorité: "
+msgstr "Priorité: "
 
 #: ../vhffs-api/src/Vhffs/Panel/Menu.pm:90
 msgid "Project : "
@@ -2826,32 +2853,25 @@
 
 #: ../vhffs-panel/group/prefs.pl:60
 msgid "Project Owner"
-msgstr "Propriétaire du groupe"
+msgstr "Propriétaire du groupe"
 
 #: ../vhffs-panel/group/prefs.pl:57
 msgid "Project Preferences"
-msgstr "Préférences du groupe"
+msgstr "Préférences du groupe"
 
 #: ../vhffs-panel/group/project_submit.pl:74
 msgid "Project Successfully created !"
-msgstr "Projet créé avec succès"
+msgstr "Projet créé avec succès"
 
 #: ../vhffs-panel/group/prefs_save.pl:67
 msgid "Project Successfully modified"
-msgstr "Projet modifié avec succès"
+msgstr "Projet modifié avec succès"
 
 #: ../vhffs-panel/admin/cvs/edit.pl:65 ../vhffs-panel/admin/cvs/show.pl:64
 #: ../vhffs-panel/svn/prefs.pl:87
 msgid "Public"
 msgstr "Public"
 
-#: ../vhffs-panel/public/allwebsites.pl:34
-#: ../vhffs-panel/public/lastusers.pl:36 ../vhffs-panel/public/index.pl:47
-#: ../vhffs-panel/public/allgroups.pl:34 ../vhffs-panel/public/group.pl:60
-#: ../vhffs-panel/public/user.pl:61
-msgid "Public Area"
-msgstr "Zone publique"
-
 #: ../vhffs-panel/admin/group/edit.pl:67 ../vhffs-panel/admin/group/show.pl:66
 msgid "Quota"
 msgstr "Quota"
@@ -2860,28 +2880,28 @@
 #: ../vhffs-panel/admin/group/edit.pl:81
 #, perl-format
 msgid "Quota (used/total) : %s/%s"
-msgstr "Quota (utilisé/total) : %s/%s"
+msgstr "Quota (utilisé/total) : %s/%s"
 
 #: ../vhffs-panel/admin/group/edit.pl:68 ../vhffs-panel/admin/group/show.pl:67
 msgid "Quota used"
-msgstr "Quota utilisé"
+msgstr "Quota utilisé"
 
 #: ../vhffs-panel/public/rss/lastgroups.pl:76
 #: ../vhffs-panel/public/rss/lastusers.pl:75
 msgid "RSS infos are not published"
-msgstr "Les informations ne sont pas publiées au format RSS"
-
-#: ../vhffs-robots/src/refused_postgres.pl:43
-#: ../vhffs-robots/src/refused_cvs.pl:44
-#: ../vhffs-robots/src/refused_mail.pl:43
-#: ../vhffs-robots/src/refused_dns.pl:43
-#: ../vhffs-robots/src/refused_mysql.pl:43
-#: ../vhffs-robots/src/refused_svn.pl:43 ../vhffs-robots/src/refused_ml.pl:43
-#: ../vhffs-robots/src/refused_groups.pl:43
-#: ../vhffs-robots/src/refused_web.pl:43
-#: ../vhffs-robots/src/refused_largefile.pl:43
+msgstr "Les informations ne sont pas publiées au format RSS"
+
+#: ../vhffs-robots/src/refused_postgres.pl:45
+#: ../vhffs-robots/src/refused_cvs.pl:46
+#: ../vhffs-robots/src/refused_mail.pl:45
+#: ../vhffs-robots/src/refused_dns.pl:45
+#: ../vhffs-robots/src/refused_mysql.pl:45
+#: ../vhffs-robots/src/refused_svn.pl:45 ../vhffs-robots/src/refused_ml.pl:45
+#: ../vhffs-robots/src/refused_groups.pl:45
+#: ../vhffs-robots/src/refused_web.pl:45
+#: ../vhffs-robots/src/refused_largefile.pl:45
 msgid "Reason given : "
-msgstr "Raison donnée : "
+msgstr "Raison donnée : "
 
 #: ../vhffs-panel/subscribe.pl:47
 msgid "Recopy the code"
@@ -2904,41 +2924,41 @@
 msgid "Remove this user from this group"
 msgstr "Supprimer cet utilisateur du groupe"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:84
+#: ../vhffs-panel/mailinglist/prefs.pl:86
 msgid "Reply to: on list"
 msgstr "Champs Reply-to: actif"
 
 #: ../vhffs-panel/cvs/create.pl:34 ../vhffs-panel/svn/create.pl:40
 msgid "Repository Name"
-msgstr "Nom du dépôt"
+msgstr "Nom du dépôt"
 
 #: ../vhffs-panel/svn/prefs_save.pl:80
 msgid "Repository updated"
-msgstr "Dépôt mis à jour"
+msgstr "Dépôt mis à jour"
 
 #: ../vhffs-panel/dns/add_ns.pl:72 ../vhffs-panel/dns/add_cname.pl:73
 #: ../vhffs-panel/dns/add_a.pl:80 ../vhffs-panel/dns/add_a.pl:96
 #: ../vhffs-panel/dns/add_mx.pl:73
 msgid "Resource successfully added to this domain"
-msgstr "Ressource ajoutée au domaine avec succès"
+msgstr "Ressource ajoutée au domaine avec succès"
 
 #: ../vhffs-panel/mailinglist/change_right.pl:84
 msgid "Rights successfully changed"
-msgstr "Droit modifiés avec succès"
+msgstr "Droit modifiés avec succès"
 
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:344
 msgid "SVN repositories for this group"
-msgstr "Dépôts subversion pour ce groupe"
-
-#: ../vhffs-panel/public/group.pl:141
+msgstr "Dépôts subversion pour ce groupe"
+
+#: ../vhffs-panel/public/group.pl:140
 msgid "SVN repository for this group"
-msgstr "Dépôt subversion pour ce groupe"
+msgstr "Dépôt subversion pour ce groupe"
 
 #: ../vhffs-panel/admin/stats.pl:95
 msgid "SVN stats"
 msgstr "Statistiques subversion"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:88
+#: ../vhffs-panel/mailinglist/prefs.pl:90
 msgid "Save options"
 msgstr "Sauvegarder les options"
 
@@ -2948,21 +2968,21 @@
 
 #: ../vhffs-panel/admin/cvs/search.pl:46
 msgid "Search for a CVS repository"
-msgstr "Chercher un dépôt cvs"
+msgstr "Chercher un dépôt cvs"
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:171
 msgid "Search for a PostgreSQL database"
-msgstr "Chercher une base de données postgres"
+msgstr "Chercher une base de données postgres"
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:104
 #: ../vhffs-panel/admin/svn/search.pl:48
 msgid "Search for a SVN repository"
-msgstr "Chercher un dépôt svn"
+msgstr "Chercher un dépôt svn"
 
 #: ../vhffs-panel/admin/pgsql/search.pl:47
 #: ../vhffs-panel/admin/mysql/search.pl:47
 msgid "Search for a database"
-msgstr "Recher d'une base de données"
+msgstr "Recher d'une base de données"
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:184
 msgid "Search for a domain"
@@ -2975,7 +2995,7 @@
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:197
 #: ../vhffs-panel/admin/largefile/search.pl:47
 msgid "Search for a file"
-msgstr "Recherche d'un fichier hébergé"
+msgstr "Recherche d'un fichier hébergé"
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:80
 #: ../vhffs-panel/admin/group/search.pl:47
@@ -2983,7 +3003,7 @@
 msgstr "Recherche de groupe"
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:158
-#: ../vhffs-panel/admin/mailing/search.pl:47
+#: ../vhffs-panel/admin/mailing/search.pl:46
 msgid "Search for a list"
 msgstr "Recherche d'une liste de diffusion"
 
@@ -2996,7 +3016,7 @@
 msgid "Search for a web area"
 msgstr "Recherche d'un site web"
 
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:90 ../vhffs-panel/public/index.pl:45
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:90 ../vhffs-panel/public/index.pl:46
 msgid "Search for a website"
 msgstr "Recherche d'un site web"
 
@@ -3011,49 +3031,57 @@
 
 #: ../vhffs-panel/admin/group/list.pl:53
 msgid "Search result"
-msgstr "Résultat de la recherche"
+msgstr "Résultat de la recherche"
 
 #: ../vhffs-panel/admin/object/list.pl:48
 msgid "Search result "
-msgstr "Résultat de la recherche "
-
-#: ../vhffs-panel/admin/mailing/list.pl:51
+msgstr "Résultat de la recherche "
+
+#: ../vhffs-panel/admin/mailing/list.pl:50
 #: ../vhffs-panel/admin/mail/list.pl:49 ../vhffs-panel/admin/web/list.pl:49
 #: ../vhffs-panel/admin/user/list.pl:49
 msgid "Search result for"
-msgstr "Résultat de la recherche pour"
+msgstr "Résultat de la recherche pour"
 
 #: ../vhffs-panel/admin/cvs/list.pl:49
 msgid "Search result for CVS repository"
-msgstr "Résultat de la recherche de dépôt cvs"
+msgstr "Résultat de la recherche de dépôt cvs"
 
 #: ../vhffs-panel/admin/svn/list.pl:47
 msgid "Search result for Subversion repository"
-msgstr "Résultat de la recherche de dépôt subversion"
+msgstr "Résultat de la recherche de dépôt subversion"
 
 #: ../vhffs-panel/admin/pgsql/list.pl:49 ../vhffs-panel/admin/mysql/list.pl:49
 msgid "Search result for database"
-msgstr "Résultats de recherche de base de données"
+msgstr "Résultats de recherche de base de données"
 
 #: ../vhffs-panel/admin/dns/list.pl:49
 msgid "Search result for domain"
-msgstr "Résultat de recherche pour un nom de domaine"
+msgstr "Résultat de recherche pour un nom de domaine"
 
 #: ../vhffs-panel/admin/largefile/list.pl:45
 msgid "Search result for file"
-msgstr "Résultat de la recherche pour le fichier"
-
-#: ../vhffs-panel/mysql/create.pl:40 ../vhffs-panel/largefile/create.pl:41
+msgstr "Résultat de la recherche pour le fichier"
+
+#: ../vhffs-panel/public/allwebsites.pl:62
+#: ../vhffs-panel/public/lastusers.pl:85 ../vhffs-panel/public/index.pl:55
+#: ../vhffs-panel/public/allgroups.pl:78 ../vhffs-panel/public/group.pl:221
+#: ../vhffs-panel/public/user.pl:89 ../vhffs-panel/public/lastgroups.pl:77
+msgid "Search:"
+msgstr "Recherche:"
+
+#: ../vhffs-panel/mysql/create.pl:40 ../vhffs-panel/svn/create.pl:45
+#: ../vhffs-panel/alert.pl:40 ../vhffs-panel/largefile/create.pl:41
 msgid "Send"
 msgstr "Envoyer"
 
 #: ../vhffs-panel/admin/broadcast.pl:45
 msgid "Send an email to all hosted people"
-msgstr "Envoyer un mail à tous les hébergés"
+msgstr "Envoyer un mail à tous les hébergés"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:258
 msgid "Send email with the subject \"help\" to the following adress: \n"
-msgstr "Envoyez un mail ayant pour sujet \"help\" à l'adresse suivante: \n"
+msgstr "Envoyez un mail ayant pour sujet \"help\" à l'adresse suivante: \n"
 
 #: ../vhffs-panel/acl/view.pl:138
 msgid "Send it"
@@ -3075,11 +3103,10 @@
 #: ../vhffs-panel/admin/user/edit.pl:80
 #: ../vhffs-panel/admin/broadcast_view.pl:69
 #: ../vhffs-panel/admin/broadcast_list.pl:68 ../vhffs-panel/cvs/create.pl:39
-#: ../vhffs-panel/group/create.pl:34 ../vhffs-panel/svn/create.pl:45
-#: ../vhffs-panel/mailinglist/create.pl:70 ../vhffs-panel/web/create.pl:50
-#: ../vhffs-panel/alert.pl:40
+#: ../vhffs-panel/group/create.pl:34 ../vhffs-panel/mailinglist/create.pl:70
+#: ../vhffs-panel/web/create.pl:49
 msgid "Sent"
-msgstr "Envoyé"
+msgstr "Envoyé"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:405
 msgid "September"
@@ -3100,7 +3127,7 @@
 
 #: ../vhffs-panel/admin/cvs/show.pl:61
 msgid "Show CVS"
-msgstr "Montrer le dépôt cvs"
+msgstr "Montrer le dépôt cvs"
 
 #: ../vhffs-panel/admin/group/show.pl:61
 msgid "Show Group"
@@ -3112,11 +3139,11 @@
 
 #: ../vhffs-panel/admin/mysql/show.pl:60
 msgid "Show MySQL database"
-msgstr "Montrer la base de données mysql"
+msgstr "Montrer la base de données mysql"
 
 #: ../vhffs-panel/admin/pgsql/show.pl:61
 msgid "Show PostgreSQL database"
-msgstr "Montrer la base de données postgres"
+msgstr "Montrer la base de données postgres"
 
 #: ../vhffs-panel/admin/user/show.pl:63
 msgid "Show User"
@@ -3126,50 +3153,50 @@
 msgid "Show Web Area"
 msgstr "Montrer le site web"
 
-#: ../vhffs-panel/public/index.pl:39
+#: ../vhffs-panel/public/index.pl:40
 #, perl-format
 msgid "Show me all groups on %s"
-msgstr "Voir tous les groupes/projets enregistrés sur %s"
-
-#: ../vhffs-panel/public/index.pl:43
+msgstr "Voir tous les groupes/projets enregistrés sur %s"
+
+#: ../vhffs-panel/public/index.pl:44
 msgid "Show me all websites"
 msgstr "Voir tous les sites web"
 
-#: ../vhffs-panel/public/index.pl:38
+#: ../vhffs-panel/public/index.pl:39
 #, perl-format
 msgid "Show me last groups on %s"
 msgstr "Voir les derniers groupes sur %s"
 
-#: ../vhffs-panel/public/index.pl:32
+#: ../vhffs-panel/public/index.pl:33
 #, perl-format
 msgid "Show me last users on %s"
 msgstr "Voir les derniers utilisateurs sur %s"
 
-#: ../vhffs-panel/public/index.pl:41
+#: ../vhffs-panel/public/index.pl:42
 msgid "Show me this group according to this username"
 msgstr "Voir ce groupe"
 
-#: ../vhffs-panel/public/index.pl:34
+#: ../vhffs-panel/public/index.pl:35
 msgid "Show me this user according to this username"
 msgstr "Voir cet utilisateur"
 
 #: ../vhffs-panel/admin/cvs/list.pl:81
 msgid "Show this CVS repository"
-msgstr "Voir ce dépôt cvs"
+msgstr "Voir ce dépôt cvs"
 
 #: ../vhffs-panel/admin/mysql/list.pl:96
 msgid "Show this MySQL area"
-msgstr "Voir cette base de données mysql"
+msgstr "Voir cette base de données mysql"
 
 #: ../vhffs-panel/admin/pgsql/list.pl:96
 msgid "Show this PostgreSQL database"
-msgstr "Voir cette base de données postgres"
+msgstr "Voir cette base de données postgres"
 
 #: ../vhffs-panel/admin/group/list.pl:83
 msgid "Show this group"
 msgstr "Voir ce groupe"
 
-#: ../vhffs-panel/admin/mailing/list.pl:90
+#: ../vhffs-panel/admin/mailing/list.pl:89
 msgid "Show this list"
 msgstr "Voir cette liste de diffusion"
 
@@ -3198,25 +3225,25 @@
 
 #: ../vhffs-panel/largefile/submit.pl:56
 msgid "Size is only a number (in Mo)"
-msgstr "La taille est seulement un nombre (exprimé en Mo)"
+msgstr "La taille est seulement un nombre (exprimé en Mo)"
 
 #: ../vhffs-panel/acl/add_acl_user.pl:75
 #: ../vhffs-panel/acl/add_acl_group.pl:75 ../vhffs-panel/acl/submit.pl:88
 msgid "Sorry, can't add ACL"
-msgstr "Désolé, je ne peux ajouter l'ACL"
+msgstr "Désolé, je ne peux ajouter l'ACL"
 
 #: ../vhffs-panel/acl/submit.pl:77
 msgid "Sorry, can't delete this ACL"
-msgstr "Désolé, je ne peux ps supprimer cette ACL"
+msgstr "Désolé, je ne peux ps supprimer cette ACL"
 
 #: ../vhffs-panel/mail/spambox.pl:78
 msgid "Spam protection is not allowed"
-msgstr "La protection anti-spam n'est pas autorisée"
+msgstr "La protection anti-spam n'est pas autorisée"
 
 #: ../vhffs-panel/mail/spambox.pl:97
 #, perl-format
 msgid "Spam status updated for box %s"
-msgstr "La protection anti-spam pour la boite %s a été mise à jour"
+msgstr "La protection anti-spam pour la boite %s a été mise à jour"
 
 #: ../vhffs-panel/admin/broadcast_view.pl:56
 msgid "State"
@@ -3237,12 +3264,12 @@
 
 #: ../vhffs-panel/admin/su.pl:48
 msgid "Su !"
-msgstr "Changer d'identité"
+msgstr "Changer d'identité"
 
 #: ../vhffs-panel/panel.pl:62
 #, perl-format
 msgid "Su successfull with name %s "
-msgstr "Changement d'identitié réalisé avec succès. Vous êtes maintenant %s"
+msgstr "Changement d'identitié réalisé avec succès. Vous êtes maintenant %s"
 
 #: ../vhffs-panel/dns/prefs.pl:128
 msgid "Subdomain name"
@@ -3282,20 +3309,20 @@
 #: ../vhffs-panel/subscribe_complete.pl:150
 #: ../vhffs-panel/subscribe_complete.pl:157
 #: ../vhffs-panel/subscribe_complete.pl:164
-#: ../vhffs-panel/subscribe_complete.pl:219 ../vhffs-panel/auth.pl:34
+#: ../vhffs-panel/subscribe_complete.pl:219 ../vhffs-panel/auth.pl:36
 msgid "Subscribe"
 msgstr "Inscription"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:106
 #, perl-format
 msgid "Subscribe to the list %s is forbidden\n"
-msgstr "L'inscription à la liste %s est interdit\n"
-
-#: ../vhffs-panel/mailinglist/prefs.pl:141
+msgstr "L'inscription à la liste %s est interdit\n"
+
+#: ../vhffs-panel/mailinglist/prefs.pl:143
 msgid "Subscribed. Waiting for confirmation"
 msgstr "Inscrit. En attente de confirmation"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:140
+#: ../vhffs-panel/mailinglist/prefs.pl:142
 msgid "Subscriber"
 msgstr "Inscrit"
 
@@ -3309,35 +3336,36 @@
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:102
 msgid "Subversion Admin"
-msgstr "Administration des dépôts subversion"
-
-#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:118
+msgstr "Administration des dépôts subversion"
+
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:117
 msgid "Subversion repository"
-msgstr "Dépôt subversion"
+msgstr "Dépôt subversion"
 
 #: ../vhffs-panel/admin/moderation.pl:274
 msgid "Subversion repository awaiting validation"
-msgstr "Dépôts subversion en attente de validation"
+msgstr "Dépôts subversion en attente de validation"
 
 #: ../vhffs-panel/object/upavatar.pl:95
 msgid "Successfull create or replace avatar"
-msgstr "Avatar reçu et copié"
+msgstr "Avatar reçu et copié"
 
 #: ../vhffs-panel/mailinglist/add_sub.pl:78
 msgid "Successfully added"
-msgstr "Ajouté avec succès"
+msgstr "Ajouté avec succès"
 
 #: ../vhffs-panel/mailinglist/del_member.pl:78
 msgid "Successfully deleted"
-msgstr "Supprimé avec succès"
+msgstr "Supprimé avec succès"
 
 #: ../vhffs-panel/group/join_group.pl:59
-msgid "Sucessfully added this user to this group. Please wait while robots add him"
-msgstr ""
-"Utilisateur ajouté au groupe avec succès. Veuillez patienter pendant que "
-"les robots l'ajoutent"
-
-#: ../vhffs-api/src/Vhffs/Functions.pm:350
+msgid ""
+"Sucessfully added this user to this group. Please wait while robots add him"
+msgstr ""
+"Utilisateur ajouté au groupe avec succès. Veuillez patienter pendant que les "
+"robots l'ajoutent"
+
+#: ../vhffs-api/src/Vhffs/Functions.pm:352
 #: ../vhffs-panel/admin/mail/edit.pl:131 ../vhffs-panel/admin/mail/edit.pl:132
 #: ../vhffs-panel/admin/pgsql/edit.pl:90 ../vhffs-panel/admin/pgsql/edit.pl:91
 #: ../vhffs-panel/admin/cvs/edit.pl:99 ../vhffs-panel/admin/cvs/edit.pl:100
@@ -3349,7 +3377,7 @@
 msgid "Suspended"
 msgstr "Suspendu"
 
-#: ../vhffs-api/src/Vhffs/Functions.pm:354
+#: ../vhffs-api/src/Vhffs/Functions.pm:356
 #: ../vhffs-panel/admin/user/edit.pl:115
 msgid "Suspended before deletion"
 msgstr "Suspendu avant suppression"
@@ -3362,71 +3390,75 @@
 msgid "Tell us what the use of this mailing list will be"
 msgstr "Expliquer quel sera l'usage de cette liste de diffusion"
 
-#: ../vhffs-panel/web/create.pl:51
+#: ../vhffs-panel/web/create.pl:50
 msgid "Tell us what the use of this web space will be"
 msgstr "Expliquer quel sera l'usage de ce site web"
 
 #: ../vhffs-panel/cvs/cvs_submit.pl:59
 msgid "The CVS object was successfully created !"
-msgstr "Dépôt cvs créé avec succès"
+msgstr "Dépôt cvs créé avec succès"
 
 #: ../vhffs-panel/dns/dns_submit.pl:48
 msgid "The DNS object was successfully created !"
-msgstr "Nom de domaine créé avec succès"
-
-#: ../vhffs-robots/src/refused_postgres.pl:48
-#: ../vhffs-robots/src/refused_cvs.pl:49
-#: ../vhffs-robots/src/refused_mail.pl:48
-#: ../vhffs-robots/src/refused_dns.pl:48
-#: ../vhffs-robots/src/refused_mysql.pl:48
-#: ../vhffs-robots/src/refused_svn.pl:48 ../vhffs-robots/src/refused_ml.pl:48
-#: ../vhffs-robots/src/refused_groups.pl:48
-#: ../vhffs-robots/src/refused_web.pl:48
-#: ../vhffs-robots/src/refused_largefile.pl:48
+msgstr "Nom de domaine créé avec succès"
+
+#: ../vhffs-robots/src/refused_postgres.pl:50
+#: ../vhffs-robots/src/refused_cvs.pl:51
+#: ../vhffs-robots/src/refused_mail.pl:50
+#: ../vhffs-robots/src/refused_dns.pl:50
+#: ../vhffs-robots/src/refused_mysql.pl:50
+#: ../vhffs-robots/src/refused_svn.pl:50 ../vhffs-robots/src/refused_ml.pl:50
+#: ../vhffs-robots/src/refused_groups.pl:50
+#: ../vhffs-robots/src/refused_web.pl:50
+#: ../vhffs-robots/src/refused_largefile.pl:50
 #: ../vhffs-panel/admin/moderation_submit.pl:78 ../vhffs-irc/modobot.pl:372
 msgid "The Moderator and Admin team"
-msgstr "L'équipe de modérateurs et d'administrateurs"
+msgstr "L'équipe de modérateurs et d'administrateurs"
 
 #: ../vhffs-panel/mysql/submit.pl:70
 msgid "The MySQL object was successfully created !"
-msgstr "La base de données mysql a été créée avec succès"
+msgstr "La base de données mysql a été créée avec succès"
 
 #: ../vhffs-panel/pgsql/pgsql_submit.pl:66
 msgid "The PostgreSQL object was successfully created !"
-msgstr "La base de données postgres a été créée avec succès"
+msgstr "La base de données postgres a été créée avec succès"
 
 #: ../vhffs-panel/svn/svn_submit.pl:66
 msgid "The Subversion object was successfully created !"
-msgstr "Le dépôt subversion a été créé avec succès"
+msgstr "Le dépôt subversion a été créé avec succès"
 
 #: ../vhffs-panel/user/prefs.pl:82
 msgid ""
 "The avatar is a pictures that describes you. You can upload an PNG image and "
 "use it as avatar. This image will then appear in the public section."
-msgstr "L'avatar est une image qui vous décrit. Vous pouvez utilisé une image au format PNG et l'envoyer pour l'utiliser comme avatar. Cette image apparaitra sur votre profil dans la section publique."
+msgstr ""
+"L'avatar est une image qui vous décrit. Vous pouvez utilisé une image au "
+"format PNG et l'envoyer pour l'utiliser comme avatar. Cette image apparaitra "
+"sur votre profil dans la section publique."
 
 #: ../vhffs-panel/group/prefs.pl:79
 msgid "The avatar is an image to describe the group"
-msgstr "L'avatar est une image utilisée pour décrire graphiquement le groupe"
+msgstr "L'avatar est une image utilisée pour décrire graphiquement le groupe"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:152
 msgid "The confirmation code was wrond\n"
-msgstr "Le code de confirmation était éronné\n"
+msgstr "Le code de confirmation était éronné\n"
 
 #: ../vhffs-panel/mysql/submit.pl:60
 msgid "The database name is not valid"
-msgstr "Le nom de la base de données n'est pas valide"
+msgstr "Le nom de la base de données n'est pas valide"
 
 #: ../vhffs-panel/mysql/submit.pl:48
 msgid "The database name is too long. There is a 32 character limit"
-msgstr "Le nom de la base de données est trop long (supérieur à 32 caractères)"
+msgstr "Le nom de la base de données est trop long (supérieur à 32 caractères)"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:340
 #, perl-format
-msgid "The following adress %s is not allowed to execute commandes on the list %s\n"
-msgstr ""
-"L'adresse suivante %s n'est pas autorisée à éxécuter des commandes sur "
-"cette liste %s\n"
+msgid ""
+"The following adress %s is not allowed to execute commandes on the list %s\n"
+msgstr ""
+"L'adresse suivante %s n'est pas autorisée à éxécuter des commandes sur cette "
+"liste %s\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:168
 #, perl-format
@@ -3439,30 +3471,32 @@
 
 #: ../vhffs-panel/group/project_submit.pl:47
 msgid "The groupname can have no more than 12 caracters."
-msgstr "Le nom du groupe ne peut pas avoir plus de douze caractères"
+msgstr "Le nom du groupe ne peut pas avoir plus de douze caractères"
 
 #: ../vhffs-panel/group/project_submit.pl:55
 msgid ""
 "The groupname should contain at least 3 caracters and must contain only "
 "letters or numbers"
-msgstr "Le nom du groupe doit contenir au moins trois caractères alphanumériques"
+msgstr ""
+"Le nom du groupe doit contenir au moins trois caractères alphanumériques"
 
 #: ../vhffs-panel/group/project_submit.pl:43
 msgid ""
 "The groupname should contain at least 3 caracters and must contain only "
 "letters or numbers in lower case"
 msgstr ""
-"Le nom du groupe doit contenir au moins 3 caractères et doit être écrit "
-"en minuscule qu'avec des caractères alphénumériques"
+"Le nom du groupe doit contenir au moins 3 caractères et doit être écrit en "
+"minuscule qu'avec des caractères alphénumériques"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:229
 #, perl-format
-msgid "The listengine language preference was changed for the following adress %s.\n"
-msgstr "La langue pour l'adresse %s a été changée.\n"
+msgid ""
+"The listengine language preference was changed for the following adress %s.\n"
+msgstr "La langue pour l'adresse %s a été changée.\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:277
 msgid "The message does not exists or was moderated before you.\n"
-msgstr "Le message n'existe pas ou a été modéré avant votre passage.\n"
+msgstr "Le message n'existe pas ou a été modéré avant votre passage.\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:274
 #, perl-format
@@ -3472,8 +3506,8 @@
 #: ../vhffs-panel/largefile/submit.pl:62
 msgid "The new file has been created. Please wait mail."
 msgstr ""
-"Le fichier a été créé. Vous allez recevoir un mail dans quelques "
-"dizaines de minutes."
+"Le fichier a été créé. Vous allez recevoir un mail dans quelques dizaines de "
+"minutes."
 
 #: ../vhffs-panel/mysql/submit.pl:64
 msgid "The password is not valid"
@@ -3486,21 +3520,23 @@
 "will be %s_DBNAME<br>. One user will be created, which will be called %"
 "s_DBNAME"
 msgstr ""
-"Le prefixe de votre base de données est constant. Le nom de votre base "
-"dedonnées sera %s_NOMDELABASE<br>. Un utilisateur sera créé et s'appelera "
-"%s_NOMDELABASE"
+"Le prefixe de votre base de données est constant. Le nom de votre base "
+"dedonnées sera %s_NOMDELABASE<br>. Un utilisateur sera créé et s'appelera %"
+"s_NOMDELABASE"
 
 #: ../vhffs-panel/svn/svn_submit.pl:45
 msgid ""
 "The repository name is too short. It must contains at least 3 caracters, and "
 "must only contain letters and numbers"
 msgstr ""
-"Le nom du dépôt est trop court. Il doit contenir au moins 3 caractères et "
-"ne doit contenir que des caractères alphanumériques"
+"Le nom du dépôt est trop court. Il doit contenir au moins 3 caractères et ne "
+"doit contenir que des caractères alphanumériques"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:93
-msgid "The state of you subscription was not changed, you are always a subscriber\n"
-msgstr "L'état de votre inscription n'a pas changé, vous êtes toujours inscrit\n"
+msgid ""
+"The state of you subscription was not changed, you are always a subscriber\n"
+msgstr ""
+"L'état de votre inscription n'a pas changé, vous êtes toujours inscrit\n"
 
 #: ../vhffs-panel/acl/add_acl_user.pl:63
 msgid "The user does not exist"
@@ -3508,14 +3544,14 @@
 
 #: ../vhffs-panel/user/prefs.pl:58
 msgid "Theme"
-msgstr "Thème"
+msgstr "Thème"
 
 #: ../vhffs-panel/user/prefs_save.pl:237
 msgid ""
 "There is a problem with the address you filled in your profile, unable to "
 "add forwarding"
 msgstr ""
-"Il y a un problème avec l'adresse indiqué dans vos informations "
+"Il y a un problème avec l'adresse indiqué dans vos informations "
 "personnelles. Impossible d'ajouter la redirection."
 
 #: ../vhffs-panel/user/prefs.pl:140
@@ -3524,24 +3560,24 @@
 
 #: ../vhffs-panel/cvs/delete.pl:72
 msgid "This CVS will be delete"
-msgstr "Ce dépôt cvs sera détruit"
+msgstr "Ce dépôt cvs sera détruit"
 
 #: ../vhffs-panel/mail/prefs.pl:100 ../vhffs-panel/dns/prefs.pl:99
 #: ../vhffs-panel/pgsql/prefs.pl:77 ../vhffs-panel/cvs/prefs.pl:76
 #: ../vhffs-panel/group/prefs.pl:67 ../vhffs-panel/mysql/prefs.pl:84
-#: ../vhffs-panel/svn/prefs.pl:93 ../vhffs-panel/mailinglist/prefs.pl:162
-#: ../vhffs-panel/web/prefs.pl:97 ../vhffs-panel/largefile/prefs.pl:100
+#: ../vhffs-panel/svn/prefs.pl:93 ../vhffs-panel/mailinglist/prefs.pl:166
+#: ../vhffs-panel/web/prefs.pl:96 ../vhffs-panel/largefile/prefs.pl:100
 msgid ""
 "This action is non-reversible. All services associated to this project will "
 "be DESTROYED."
 msgstr ""
-"Cette action n'est aucunement réversible. Tous les services associés au "
-"projet seront détruits."
+"Cette action n'est aucunement réversible. Tous les services associés au "
+"projet seront détruits."
 
 #: ../vhffs-panel/user/prefs.pl:73
 msgid "This action is non-reversible. WHEN YOU DELETE IT, YOU CANNOT CANCEL."
 msgstr ""
-"Cette action n'est pas réversible. Quand vous le supprimer, vous ne pouvez "
+"Cette action n'est pas réversible. Quand vous le supprimer, vous ne pouvez "
 "pas annuler."
 
 #: ../vhffs-panel/mail/add_account.pl:73
@@ -3549,32 +3585,32 @@
 "This box already exists for this domain or parameters are not valid. Check "
 "your domain."
 msgstr ""
-"Cette boîte mail existe déjà pour le domaine ou les paramètres transmis "
-"ne sont pas valides. Veuillez vérifier votre domaine"
+"Cette boîte mail existe déjà pour le domaine ou les paramètres transmis ne "
+"sont pas valides. Veuillez vérifier votre domaine"
 
 #: ../vhffs-panel/mail/add_account.pl:83
 msgid "This box has been successfully added to this domain"
-msgstr "Cette boîte a été ajoutée au domaine mail avec succès"
+msgstr "Cette boîte a été ajoutée au domaine mail avec succès"
 
 #: ../vhffs-panel/cvs/delete.pl:59
 msgid "This cvs will NOT be deleted"
-msgstr "Ce dépôt cvs ne sera PAS détruit"
+msgstr "Ce dépôt cvs ne sera PAS détruit"
 
 #: ../vhffs-panel/pgsql/delete.pl:62
 msgid "This database cannot be deleted"
-msgstr "Cette base de données ne peut pas être détruite"
+msgstr "Cette base de données ne peut pas être détruite"
 
 #: ../vhffs-panel/mysql/delete.pl:41
 msgid "This database doesn't exist in VHFFS database"
-msgstr "Cette base de données n'existe pas"
+msgstr "Cette base de données n'existe pas"
 
 #: ../vhffs-panel/mysql/prefs_save.pl:44
 msgid "This database doesn't exist on VHFFS"
-msgstr "Cette base de données n'existe pas"
+msgstr "Cette base de données n'existe pas"
 
 #: ../vhffs-panel/mysql/delete.pl:53
 msgid "This database will NOT be deleted"
-msgstr "Cette base de données ne sera PAS détruite"
+msgstr "Cette base de données ne sera PAS détruite"
 
 #: ../vhffs-panel/dns/dns_type_submit.pl:42
 msgid "This domain name doesn't exist in the VHFFS database"
@@ -3582,27 +3618,27 @@
 
 #: ../vhffs-panel/dns/delete.pl:80
 msgid "This domain will NOT be DELETED from Vhffs platform"
-msgstr "Ce nom de domaine ne sera PAS détruit"
+msgstr "Ce nom de domaine ne sera PAS détruit"
 
 #: ../vhffs-panel/dns/delete.pl:75
 msgid "This domain will be DELETED from Vhffs platform"
-msgstr "Ce nom de domaine sera détruit"
+msgstr "Ce nom de domaine sera détruit"
 
 #: ../vhffs-panel/mail/add_forward.pl:75
 msgid "This forward has been successfully added to this domain"
-msgstr "Cette redicrection a été ajoutée avec succès au domaine"
+msgstr "Cette redicrection a été ajoutée avec succès au domaine"
 
 #: ../vhffs-panel/group/project_submit.pl:60
 msgid "This group already exists"
-msgstr "Ce groupe existe déjà"
+msgstr "Ce groupe existe déjà"
 
 #: ../vhffs-panel/group/prefs_save.pl:56
 msgid "This group is not activated yet"
-msgstr "Ce groupe n'est pas encore activé"
+msgstr "Ce groupe n'est pas encore activé"
 
 #: ../vhffs-panel/group/delete.pl:60
 msgid "This group will be deleted"
-msgstr "Ce groupe sera détruit"
+msgstr "Ce groupe sera détruit"
 
 #: ../vhffs-panel/mail/save_catchall.pl:59
 msgid "This is not a correct mail adress"
@@ -3610,15 +3646,16 @@
 
 #: ../vhffs-panel/mail/delete.pl:71
 msgid "This mail domain WILL BE DELETED"
-msgstr "Ce domaine mail sera détruit"
+msgstr "Ce domaine mail sera détruit"
 
 #: ../vhffs-panel/mail/delete.pl:59
 msgid "This mail domain will NOT be DELETED"
-msgstr "Ce domaine mail ne sera pas détruit"
+msgstr "Ce domaine mail ne sera pas détruit"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:75
 #, perl-format
-msgid "This mail must contains the following subject : \"confirm unsubscribe %s\"\n"
+msgid ""
+"This mail must contains the following subject : \"confirm unsubscribe %s\"\n"
 msgstr "Ce mail doit contenir le sujet suivant : \"confirm unsubscribe %s\"\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:57
@@ -3629,21 +3666,21 @@
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:357
 #, perl-format
 msgid "This mail was sent by  %s with the following subject: \n"
-msgstr "Ce mail a été envoyé par %s avec le sujet suivant : \n"
+msgstr "Ce mail a été envoyé par %s avec le sujet suivant : \n"
 
 #: ../vhffs-panel/mailinglist/add_sub.pl:74
 msgid "This member already exists on this list !"
-msgstr "Ce membre existe déjà sur la liste"
+msgstr "Ce membre existe déjà sur la liste"
 
 #: ../vhffs-panel/admin/object/delete_avatar.pl:73
 msgid "This object does not have an avatar"
-msgstr "Cet objet ne possède pas d'avatar"
+msgstr "Cet objet ne possède pas d'avatar"
 
 #: ../vhffs-panel/group/prefs.pl:44
 msgid "This object is not functional yet. Please wait creation or moderation."
 msgstr ""
-"Ce service n'est pas fonctionnel actuellement. Veuillez attendre la "
-"création ou la modération"
+"Ce service n'est pas fonctionnel actuellement. Veuillez attendre la création "
+"ou la modération"
 
 #: ../vhffs-panel/mail/delete_forward.pl:58
 #: ../vhffs-panel/mail/change_forward.pl:66
@@ -3663,15 +3700,15 @@
 #: ../vhffs-panel/svn/delete.pl:54
 #: ../vhffs-panel/mailinglist/save_options.pl:65
 #: ../vhffs-panel/mailinglist/del_member.pl:60
-#: ../vhffs-panel/mailinglist/prefs.pl:61
+#: ../vhffs-panel/mailinglist/prefs.pl:63
 #: ../vhffs-panel/mailinglist/add_sub.pl:60
 #: ../vhffs-panel/mailinglist/change_right.pl:62
 #: ../vhffs-panel/mailinglist/delete.pl:59 ../vhffs-panel/web/prefs_save.pl:51
-#: ../vhffs-panel/web/prefs.pl:50 ../vhffs-panel/largefile/delete.pl:53
+#: ../vhffs-panel/web/prefs.pl:49 ../vhffs-panel/largefile/delete.pl:53
 msgid "This object is not functionnal yet. Please wait creation or moderation."
 msgstr ""
-"Ce service n'est pas encore actif. Merci d'attendre la création ou la "
-"modération"
+"Ce service n'est pas encore actif. Merci d'attendre la création ou la "
+"modération"
 
 #: ../vhffs-panel/cvs/prefs.pl:61 ../vhffs-panel/svn/prefs.pl:76
 #: ../vhffs-panel/largefile/prefs.pl:77
@@ -3679,21 +3716,21 @@
 "This object is not functionnal yet. Please wait creation, moderation or "
 "modification."
 msgstr ""
-"Ce service n'est pas/plus actif. Veuillez attendre la création, "
-"modification ou modération"
+"Ce service n'est pas/plus actif. Veuillez attendre la création, modification "
+"ou modération"
 
 #: ../vhffs-panel/web/delete.pl:65
 msgid "This object will BE DELETED"
-msgstr "Ce service sera détruit"
+msgstr "Ce service sera détruit"
 
 #: ../vhffs-panel/group/delete.pl:47 ../vhffs-panel/web/delete.pl:70
 msgid "This object will NOT be DELETED"
-msgstr "Ce service ne sera pas détruit"
+msgstr "Ce service ne sera pas détruit"
 
 #: ../vhffs-panel/dns/delete_cname.pl:72 ../vhffs-panel/dns/delete_mx.pl:72
-#: ../vhffs-panel/dns/delete_ns.pl:72 ../vhffs-panel/dns/delete_a.pl:73
+#: ../vhffs-panel/dns/delete_ns.pl:71 ../vhffs-panel/dns/delete_a.pl:73
 msgid "This part of the domain is now removed."
-msgstr "Cette partie du domaine a été supprimée"
+msgstr "Cette partie du domaine a été supprimée"
 
 #: ../vhffs-panel/object/upavatar.pl:62
 msgid "This platform does not provide avatar support"
@@ -3701,10 +3738,10 @@
 
 #: ../vhffs-panel/admin/object/delete_avatar.pl:42
 msgid "This platform does not support avatar"
-msgstr "Cette plate-forme n'a pas le support des avatars activé"
+msgstr "Cette plate-forme n'a pas le support des avatars activé"
 
 #: ../vhffs-panel/login.pl:48 ../vhffs-panel/panel.pl:39
-#: ../vhffs-panel/auth.pl:70
+#: ../vhffs-panel/auth.pl:71
 msgid ""
 "This platform is temporary closed. Administrators are performing some "
 "maintenances tasks. Please come back in a few minutes to log in."
@@ -3712,19 +3749,19 @@
 
 #: ../vhffs-panel/svn/svn_submit.pl:51
 msgid "This repository name already exists"
-msgstr "Ce nom de dépôt existe déjà"
+msgstr "Ce nom de dépôt existe déjà"
 
 #: ../vhffs-panel/svn/delete.pl:71 ../vhffs-panel/largefile/delete.pl:70
 msgid "This repository will be delete"
-msgstr "Ce dépôt sera détruit"
+msgstr "Ce dépôt sera détruit"
 
 #: ../vhffs-panel/svn/delete.pl:58 ../vhffs-panel/largefile/delete.pl:57
 msgid "This subversion repository will NOT be deleted"
-msgstr "Ce dépôt subversion ne sera PAS détruit"
+msgstr "Ce dépôt subversion ne sera PAS détruit"
 
 #: ../vhffs-panel/acl/view.pl:92
 msgid "This type of object is not treated in the panel."
-msgstr "Ce type de service n'est pas traîté dans le panel."
+msgstr "Ce type de service n'est pas traîté dans le panel."
 
 #: ../vhffs-panel/group/remove_user_from_group.pl:48
 msgid "This user does not exists "
@@ -3744,15 +3781,15 @@
 
 #: ../vhffs-panel/user/delete.pl:56
 msgid "This user will BE DELETED"
-msgstr "Cet utilisateur sera détruit"
+msgstr "Cet utilisateur sera détruit"
 
 #: ../vhffs-panel/user/delete.pl:62
 msgid "This user will NOT be DELETED"
-msgstr "Cet utilisateur ne sera PAS détruit"
+msgstr "Cet utilisateur ne sera PAS détruit"
 
 #: ../vhffs-panel/group/remove_user_from_group.pl:61
 msgid "This user will be removed from this group as soon as possible"
-msgstr "Cet utilisateur sera supprimé de ce groupe dès que possible"
+msgstr "Cet utilisateur sera supprimé de ce groupe dès que possible"
 
 #: ../vhffs-panel/web/prefs_save.pl:47 ../vhffs-panel/web/delete.pl:48
 msgid "This web area doesn't exist in VHFFS database"
@@ -3772,31 +3809,31 @@
 
 #: ../vhffs-panel/admin/stats.pl:89
 msgid "Total CVS in moderation"
-msgstr "Total de dépôts cvs en modération"
+msgstr "Total de dépôts cvs en modération"
 
 #: ../vhffs-panel/admin/stats.pl:81
 msgid "Total DNS in moderation"
-msgstr "Total de noms de domaine en modération"
+msgstr "Total de noms de domaine en modération"
 
 #: ../vhffs-panel/admin/stats.pl:103
 msgid "Total Mail domains in moderation"
-msgstr "Total de domaines mail en modération"
+msgstr "Total de domaines mail en modération"
 
 #: ../vhffs-panel/admin/stats.pl:64
 msgid "Total Moderator Users in VHFFS database"
-msgstr "Total de modérateurs"
+msgstr "Total de modérateurs"
 
 #: ../vhffs-panel/admin/stats.pl:115
 msgid "Total MySQL in moderation"
-msgstr "Total de bases de données mysql en modération"
+msgstr "Total de bases de données mysql en modération"
 
 #: ../vhffs-panel/admin/stats.pl:122
 msgid "Total PostgreSQL in moderation"
-msgstr "Total de bases de données postgres en modération"
+msgstr "Total de bases de données postgres en modération"
 
 #: ../vhffs-panel/admin/stats.pl:96
 msgid "Total SVN in moderation"
-msgstr "Total de dépôt subversion en modération"
+msgstr "Total de dépôt subversion en modération"
 
 #: ../vhffs-panel/admin/stats.pl:60
 msgid "Total Users in VHFFS database"
@@ -3804,47 +3841,47 @@
 
 #: ../vhffs-panel/admin/stats.pl:74
 msgid "Total Web Areas in moderation"
-msgstr "Total de sites web en modération"
+msgstr "Total de sites web en modération"
 
 #: ../vhffs-panel/admin/stats.pl:91
 msgid "Total activated CVS"
-msgstr "Total de dépôts cvs activés"
+msgstr "Total de dépôts cvs activés"
 
 #: ../vhffs-panel/admin/stats.pl:83
 msgid "Total activated DNS"
-msgstr "Total de noms de domaine activés"
+msgstr "Total de noms de domaine activés"
 
 #: ../vhffs-panel/admin/stats.pl:105
 msgid "Total activated Mail domains"
-msgstr "Total de domaines mail activés"
+msgstr "Total de domaines mail activés"
 
 #: ../vhffs-panel/admin/stats.pl:117
 msgid "Total activated MySQL"
-msgstr "Total de bases de données mysql activées"
+msgstr "Total de bases de données mysql activées"
 
 #: ../vhffs-panel/admin/stats.pl:124
 msgid "Total activated PostgreSQL"
-msgstr "Total de bases de données postgres activées"
+msgstr "Total de bases de données postgres activées"
 
 #: ../vhffs-panel/admin/stats.pl:98
 msgid "Total activated SVN"
-msgstr "Total de dépôts subversion activés"
+msgstr "Total de dépôts subversion activés"
 
 #: ../vhffs-panel/admin/stats.pl:76
 msgid "Total activated Web Areas"
-msgstr "Total de sites web activés"
+msgstr "Total de sites web activés"
 
 #: ../vhffs-panel/admin/stats.pl:70
 msgid "Total activated groups"
-msgstr "Total de groupes activés"
+msgstr "Total de groupes activés"
 
 #: ../vhffs-panel/admin/stats.pl:140
 msgid "Total activated hoted files"
-msgstr "Total des fichiers hébergés"
+msgstr "Total des fichiers hébergés"
 
 #: ../vhffs-panel/admin/stats.pl:132
 msgid "Total activated lists"
-msgstr "Total de listes de diffusion activées"
+msgstr "Total de listes de diffusion activées"
 
 #: ../vhffs-panel/admin/stats.pl:68
 msgid "Total groups in database"
@@ -3852,7 +3889,7 @@
 
 #: ../vhffs-panel/admin/stats.pl:109
 msgid "Total hosted boxes"
-msgstr "Total de boîtes mail"
+msgstr "Total de boîtes mail"
 
 #: ../vhffs-panel/admin/stats.pl:107
 msgid "Total hosted forwards"
@@ -3860,11 +3897,11 @@
 
 #: ../vhffs-panel/admin/stats.pl:139
 msgid "Total hoted files"
-msgstr "Total des fichiers hébergés"
+msgstr "Total des fichiers hébergés"
 
 #: ../vhffs-panel/admin/stats.pl:130
 msgid "Total lists in moderation"
-msgstr "Total des listes de diffusion en modération"
+msgstr "Total des listes de diffusion en modération"
 
 #: ../vhffs-panel/admin/stats.pl:134
 msgid "Total subscribtion for lists"
@@ -3880,15 +3917,15 @@
 
 #: ../vhffs-panel/admin/object/edit.pl:63
 msgid "UID of owner"
-msgstr "Identifiant utilisateur du propriétaire"
+msgstr "Identifiant utilisateur du propriétaire"
 
 #: ../vhffs-panel/mysql/prefs_save.pl:64
 msgid "Unable to change this database's password"
-msgstr "Impossible de changer le mot de passe de cette base de données"
+msgstr "Impossible de changer le mot de passe de cette base de données"
 
 #: ../vhffs-panel/mail/delete.pl:67
 msgid "Unable to delete this domain"
-msgstr "Impossible de détruire ce domaine mail"
+msgstr "Impossible de détruire ce domaine mail"
 
 #: ../vhffs-panel/admin/pgsql/edit_submit.pl:67
 #: ../vhffs-panel/admin/mysql/edit_submit.pl:67
@@ -3927,19 +3964,19 @@
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:199
 #, perl-format
 msgid "Unsubscribe for the list %s was not complete.\n"
-msgstr "La désinscription pour la liste %s n'est pas complète.\n"
+msgstr "La désinscription pour la liste %s n'est pas complète.\n"
 
 #: ../vhffs-panel/admin/user/edit.pl:229
 msgid "Update note"
-msgstr "Mettre à jour la note"
+msgstr "Mettre à jour la note"
 
 #: ../vhffs-panel/dns/modif_a.pl:77
 msgid "Updated !"
-msgstr "Mis à jour"
+msgstr "Mis à jour"
 
 #: ../vhffs-panel/admin/web/edit.pl:71 ../vhffs-panel/admin/web/show.pl:84
 msgid "Use Crawl"
-msgstr "Utiliser le système de crawl"
+msgstr "Utiliser le système de crawl"
 
 #: ../vhffs-panel/user/prefs.pl:141
 #, perl-format
@@ -3947,8 +3984,8 @@
 "Use VHFFS servers to manage this mail,<br>you should use use the host pop.%s "
 "or imap.%s to fetch your mails"
 msgstr ""
-"Utiliser nos serveurs pour gérer cette adresse mail,<br>vous devez utiliser "
-"le serveur pop.%s ou imap.%s pour récupérer vos mails"
+"Utiliser nos serveurs pour gérer cette adresse mail,<br>vous devez utiliser "
+"le serveur pop.%s ou imap.%s pour récupérer vos mails"
 
 #: ../vhffs-panel/user/prefs.pl:147
 msgid "Use anti-spam protection"
@@ -3958,7 +3995,7 @@
 msgid "Use anti-virus protection"
 msgstr "Utiliser la protection par anti-virus"
 
-#: ../vhffs-panel/web/prefs.pl:68
+#: ../vhffs-panel/web/prefs.pl:67
 msgid "Use crawl (useful for web-search engine)"
 msgstr "Utiliser le crawl (utile pour les moteurs de recherche)"
 
@@ -3978,15 +4015,15 @@
 
 #: ../vhffs-api/src/Vhffs/Panel/Menu.pm:54 ../vhffs-panel/user/prefs.pl:45
 msgid "User Preferences"
-msgstr "Préférences utilisateur"
+msgstr "Préférences utilisateur"
 
 #: ../vhffs-panel/subscribe_complete.pl:203
 msgid "User Successfully created"
-msgstr "Utilisateur créé avec succès"
+msgstr "Utilisateur créé avec succès"
 
 #: ../vhffs-panel/user/prefs_save.pl:101
 msgid "User Successfully modified"
-msgstr "Utilisateur modifié avec succès"
+msgstr "Utilisateur modifié avec succès"
 
 #: ../vhffs-api/src/Vhffs/Panel/Menu.pm:48
 msgid "User account : "
@@ -3996,25 +4033,25 @@
 msgid "User does not exist"
 msgstr "L'utilisateur n'existe pas"
 
-#: ../vhffs-panel/public/index.pl:33
+#: ../vhffs-panel/public/index.pl:34
 msgid "User public area"
 msgstr "Zone publique des utilisateurs"
 
 #: ../vhffs-panel/admin/su.pl:47 ../vhffs-panel/group/prefs.pl:73
-#: ../vhffs-panel/acl/view.pl:118 ../vhffs-panel/public/lastusers.pl:45
-#: ../vhffs-panel/public/user.pl:52 ../vhffs-panel/user/prefs.pl:47
+#: ../vhffs-panel/acl/view.pl:118 ../vhffs-panel/public/lastusers.pl:44
+#: ../vhffs-panel/public/user.pl:53 ../vhffs-panel/user/prefs.pl:47
 #: ../vhffs-panel/subscribe.pl:36 ../vhffs-panel/lost.pl:26
-#: ../vhffs-panel/auth.pl:30
+#: ../vhffs-panel/auth.pl:32
 msgid "Username"
 msgstr "Nom d'utilisateur"
 
 #: ../vhffs-panel/pgsql/prefs.pl:65 ../vhffs-panel/mysql/prefs.pl:72
 msgid "Username for this database"
-msgstr "Nom d'utilisateur pour cette base de données"
+msgstr "Nom d'utilisateur pour cette base de données"
 
 #: ../vhffs-panel/subscribe_complete.pl:78
 msgid "Username must contain between 3 and 12 characters"
-msgstr "Le nom d'utilisateur doit contenir entre 3 et 12 caractères"
+msgstr "Le nom d'utilisateur doit contenir entre 3 et 12 caractères"
 
 #: ../vhffs-panel/admin/user/edit.pl:64 ../vhffs-panel/admin/user/show.pl:65
 msgid "Username:"
@@ -4025,8 +4062,8 @@
 msgid "Username: %s\n"
 msgstr "Nom d'utilisateur: %s\n"
 
-#: ../vhffs-panel/public/allgroups.pl:46 ../vhffs-panel/public/group.pl:59
-#: ../vhffs-panel/public/lastgroups.pl:43
+#: ../vhffs-panel/public/allgroups.pl:44 ../vhffs-panel/public/group.pl:60
+#: ../vhffs-panel/public/lastgroups.pl:44
 msgid "Users"
 msgstr "Utilisateurs"
 
@@ -4034,21 +4071,21 @@
 msgid "Users stats"
 msgstr "Statistiques des utilisateurs"
 
-#: ../vhffs-panel/auth.pl:27
+#: ../vhffs-panel/auth.pl:28
 msgid "VHFFS Login"
 msgstr "Authentification sur VHFFS"
 
 #: ../vhffs-panel/login.pl:88
 msgid "VHFFS Login OK"
-msgstr "Authentification réussie"
+msgstr "Authentification réussie"
 
 #: ../vhffs-panel/login.pl:57 ../vhffs-panel/login.pl:98
 msgid "VHFFS Login failed"
-msgstr "Authentification échouée"
+msgstr "Authentification échouée"
 
 #: ../vhffs-panel/logout.pl:29
 msgid "VHFFS Logout"
-msgstr "Déconnexion"
+msgstr "Déconnexion"
 
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:177
 msgid "VHFFS Panel"
@@ -4062,14 +4099,14 @@
 msgid "VHFFS Password Lost failed"
 msgstr "Impossible de retrouver l'utilisateur"
 
-#: ../vhffs-api/src/Vhffs/Functions.pm:330
+#: ../vhffs-api/src/Vhffs/Functions.pm:332
 #: ../vhffs-panel/admin/mail/edit.pl:126 ../vhffs-panel/admin/pgsql/edit.pl:85
 #: ../vhffs-panel/admin/cvs/edit.pl:94 ../vhffs-panel/admin/group/edit.pl:87
 #: ../vhffs-panel/admin/mysql/edit.pl:85
 #: ../vhffs-panel/admin/object/edit.pl:85 ../vhffs-panel/admin/web/edit.pl:98
 #: ../vhffs-panel/admin/user/edit.pl:109
 msgid "Validation refused"
-msgstr "Validation resuée"
+msgstr "Validation resuée"
 
 #: ../vhffs-panel/admin/stats.pl:57
 msgid "Vhffs Statistics"
@@ -4080,7 +4117,7 @@
 msgid "View"
 msgstr "Voir"
 
-#: ../vhffs-panel/public/group.pl:203
+#: ../vhffs-panel/public/group.pl:202
 msgid "View archives"
 msgstr "Allez aux archives de cette liste"
 
@@ -4106,18 +4143,18 @@
 
 #: ../vhffs-panel/mail/spamvirus.pl:78
 msgid "Virus protection is not allowed"
-msgstr "La protection par anti-virus n'est pas autorisé"
+msgstr "La protection par anti-virus n'est pas autorisé"
 
 #: ../vhffs-panel/mail/spamvirus.pl:97
 #, perl-format
 msgid "Virus status updated for box %s"
-msgstr "Le statut de la protection anti-virus a été changée pour la boite %s"
+msgstr "Le statut de la protection anti-virus a été changée pour la boite %s"
 
 #: ../vhffs-panel/admin/stats.pl:73
 msgid "WEB stats"
 msgstr "Statistiques des sites webs"
 
-#: ../vhffs-api/src/Vhffs/Functions.pm:334
+#: ../vhffs-api/src/Vhffs/Functions.pm:336
 #: ../vhffs-panel/admin/mail/edit.pl:127 ../vhffs-panel/admin/dns/list.pl:76
 #: ../vhffs-panel/admin/pgsql/edit.pl:86 ../vhffs-panel/admin/pgsql/list.pl:78
 #: ../vhffs-panel/admin/cvs/edit.pl:95 ../vhffs-panel/admin/group/edit.pl:88
@@ -4126,16 +4163,16 @@
 #: ../vhffs-panel/admin/object/list.pl:73 ../vhffs-panel/admin/web/edit.pl:99
 #: ../vhffs-panel/admin/user/edit.pl:110
 msgid "Waiting for creation"
-msgstr "En attente de création"
+msgstr "En attente de création"
 
 #: ../vhffs-panel/admin/dns/list.pl:84 ../vhffs-panel/admin/pgsql/list.pl:86
 #: ../vhffs-panel/admin/mysql/list.pl:86
 #: ../vhffs-panel/admin/object/list.pl:81
-#: ../vhffs-panel/mailinglist/prefs.pl:142
+#: ../vhffs-panel/mailinglist/prefs.pl:144
 msgid "Waiting for delete"
 msgstr "En attente de suppression"
 
-#: ../vhffs-api/src/Vhffs/Functions.pm:358
+#: ../vhffs-api/src/Vhffs/Functions.pm:360
 #: ../vhffs-panel/admin/mail/edit.pl:133 ../vhffs-panel/admin/pgsql/edit.pl:92
 #: ../vhffs-panel/admin/cvs/edit.pl:101 ../vhffs-panel/admin/group/edit.pl:94
 #: ../vhffs-panel/admin/mysql/edit.pl:92
@@ -4144,7 +4181,7 @@
 msgid "Waiting for modification"
 msgstr "En attente de modification"
 
-#: ../vhffs-api/src/Vhffs/Functions.pm:326
+#: ../vhffs-api/src/Vhffs/Functions.pm:328
 #: ../vhffs-panel/admin/mail/edit.pl:125 ../vhffs-panel/admin/dns/list.pl:88
 #: ../vhffs-panel/admin/pgsql/edit.pl:84 ../vhffs-panel/admin/pgsql/list.pl:90
 #: ../vhffs-panel/admin/cvs/edit.pl:93 ../vhffs-panel/admin/group/edit.pl:86
@@ -4157,20 +4194,20 @@
 
 #: ../vhffs-panel/alert.pl:36
 msgid "Warn the admin team"
-msgstr "Alerter l'équipe d'administrateurs"
+msgstr "Alerter l'équipe d'administrateurs"
 
 #: ../vhffs-panel/user/prefs.pl:139
 #, perl-format
 msgid "We offer you the possibility to have one email box on the domain %s"
 msgstr ""
-"Nous vous offrons la possibilité de bénéficier d'un compte mail sur le "
+"Nous vous offrons la possibilité de bénéficier d'un compte mail sur le "
 "domaine %s"
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:88
 msgid "Web Admin"
 msgstr "Administration web"
 
-#: ../vhffs-panel/web/prefs.pl:63
+#: ../vhffs-panel/web/prefs.pl:62
 msgid "Web Area Administration"
 msgstr "Administration web"
 
@@ -4178,23 +4215,23 @@
 msgid "Web Area awaiting validation"
 msgstr "Sites web en attente de validation"
 
-#: ../vhffs-api/src/Vhffs/Panel/Web.pm:107
+#: ../vhffs-api/src/Vhffs/Panel/Web.pm:106
 msgid "Web Areas"
 msgstr "Sites web"
 
 #: ../vhffs-panel/web/web_submit.pl:57
 msgid "Web area successfully created !"
-msgstr "Site web créé avec succès"
+msgstr "Site web créé avec succès"
 
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:242
 msgid "Webarea for this group"
 msgstr "Sites web pour ce groupe"
 
-#: ../vhffs-panel/public/group.pl:91
+#: ../vhffs-panel/public/group.pl:90
 msgid "Website for this group"
 msgstr "Site web pour ce groupe"
 
-#: ../vhffs-panel/public/index.pl:44
+#: ../vhffs-panel/public/index.pl:45
 msgid "Websites area"
 msgstr "Zone des sites web"
 
@@ -4202,50 +4239,50 @@
 msgid "Welcome"
 msgstr "Bienvenue"
 
-#: ../vhffs-panel/auth.pl:28
-msgid "Welcome to "
-msgstr "Bienvenue sur "
+#: ../vhffs-panel/auth.pl:29
+msgid "Welcome on %s"
+msgstr "Bienvenue sur %s"
 
 #: ../vhffs-panel/mailinglist/delete.pl:79
 msgid "Will be DELETED in a few minutes"
-msgstr "Sera détruit dans quelques minutes"
-
-#: ../vhffs-api/src/Vhffs/Functions.pm:370
+msgstr "Sera détruit dans quelques minutes"
+
+#: ../vhffs-api/src/Vhffs/Functions.pm:372
 #: ../vhffs-panel/admin/mail/edit.pl:136 ../vhffs-panel/admin/pgsql/edit.pl:95
 #: ../vhffs-panel/admin/cvs/edit.pl:104 ../vhffs-panel/admin/group/edit.pl:97
 #: ../vhffs-panel/admin/mysql/edit.pl:95
 #: ../vhffs-panel/admin/object/edit.pl:95 ../vhffs-panel/admin/web/edit.pl:108
 #: ../vhffs-panel/admin/user/edit.pl:119
 msgid "Will be deleted"
-msgstr "Sera détruit"
-
-#: ../vhffs-panel/auth.pl:48
+msgstr "Sera détruit"
+
+#: ../vhffs-panel/auth.pl:49
 #, perl-format
 msgid "Woah, %s users and %s groups already trust %s"
-msgstr "Youhou, %s utilisateurs et %s groupes font déjà confiance à %s"
+msgstr "Youhou, %s utilisateurs et %s groupes font déjà confiance à %s"
 
 #: ../vhffs-panel/dns/prefs.pl:108 ../vhffs-panel/admin/cvs/edit.pl:74
 #: ../vhffs-panel/admin/cvs/show.pl:73 ../vhffs-panel/cvs/prefs.pl:72
-#: ../vhffs-panel/svn/prefs.pl:89 ../vhffs-panel/web/prefs.pl:85
+#: ../vhffs-panel/svn/prefs.pl:89 ../vhffs-panel/web/prefs.pl:84
 msgid "Yes"
 msgstr "Oui"
 
 #: ../vhffs-panel/mail/prefs.pl:102 ../vhffs-panel/dns/prefs.pl:101
 #: ../vhffs-panel/pgsql/prefs.pl:79 ../vhffs-panel/cvs/prefs.pl:78
 #: ../vhffs-panel/group/prefs.pl:69 ../vhffs-panel/mysql/prefs.pl:86
-#: ../vhffs-panel/svn/prefs.pl:95 ../vhffs-panel/mailinglist/prefs.pl:164
-#: ../vhffs-panel/web/prefs.pl:99 ../vhffs-panel/user/prefs.pl:75
+#: ../vhffs-panel/svn/prefs.pl:95 ../vhffs-panel/mailinglist/prefs.pl:168
+#: ../vhffs-panel/web/prefs.pl:98 ../vhffs-panel/user/prefs.pl:75
 #: ../vhffs-panel/largefile/prefs.pl:102
 msgid "Yes I'm sure of what I do"
 msgstr "Oui, je suis sur de ce que je fais"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:185
 msgid "You are not a subscriber on this list.\n"
-msgstr "Vous n'êtes pas inscrit à la liste.\n"
-
-#: ../vhffs-panel/admin/mailing/search.pl:40
-#: ../vhffs-panel/admin/mailing/list.pl:42
-#: ../vhffs-panel/admin/mailing/mailing_submit.pl:44
+msgstr "Vous n'êtes pas inscrit à la liste.\n"
+
+#: ../vhffs-panel/admin/mailing/search.pl:39
+#: ../vhffs-panel/admin/mailing/list.pl:41
+#: ../vhffs-panel/admin/mailing/mailing_submit.pl:43
 #: ../vhffs-panel/admin/mail/search.pl:40 ../vhffs-panel/admin/mail/edit.pl:44
 #: ../vhffs-panel/admin/mail/list.pl:40 ../vhffs-panel/admin/mail/show.pl:44
 #: ../vhffs-panel/admin/dns/search.pl:40 ../vhffs-panel/admin/dns/list.pl:40
@@ -4283,31 +4320,30 @@
 #: ../vhffs-panel/admin/largefile/list.pl:37
 #: ../vhffs-panel/admin/largefile/search.pl:40
 msgid "You are not allowed to see it"
-msgstr "Vous n'êtes pas autorisé à voir ceci"
+msgstr "Vous n'êtes pas autorisé à voir ceci"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:91
 #, perl-format
 msgid "You ask to be subscribed to the following list: %s\n"
-msgstr "Vous avez demandé à être inscrit à la liste suivante: %s\n"
+msgstr "Vous avez demandé à être inscrit à la liste suivante: %s\n"
 
 #: ../vhffs-panel/mail/prefs.pl:107 ../vhffs-panel/dns/prefs.pl:93
-#: ../vhffs-panel/web/prefs.pl:93
+#: ../vhffs-panel/web/prefs.pl:92
 msgid ""
 "You can Manage rights on this service for each user in the VHFFS database. "
 "Please read help before manage it."
 msgstr ""
-"Pour chaque utilisateur, vous pouvez gérer les droits sur ce service. Merci "
+"Pour chaque utilisateur, vous pouvez gérer les droits sur ce service. Merci "
 "de lire l'aide avant de modifier"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:20
 msgid "You can also send a command list in the mail body.\n"
 msgstr ""
-"Vous pouvez également envoyer une liste de commandes dans le corps du "
-"mail.\n"
+"Vous pouvez également envoyer une liste de commandes dans le corps du mail.\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:124
 msgid "You can have some help on listengine, sending an email to\n"
-msgstr "Vous pouvez obtenir de l'aide sur listengine en envoyant à mail à\n"
+msgstr "Vous pouvez obtenir de l'aide sur listengine en envoyant à mail à\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:122
 msgid "You can post on the list now."
@@ -4320,48 +4356,48 @@
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:184
 #, perl-format
 msgid "You cannot unsubscribe from the list %s\n"
-msgstr "Vous ne pouvez pas vous désinscrire de la liste %s\n"
+msgstr "Vous ne pouvez pas vous désinscrire de la liste %s\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:169
 msgid "You demand was refused\n"
-msgstr "Votre demande a été refusée\n"
+msgstr "Votre demande a été refusée\n"
 
 #: ../vhffs-panel/mailinglist/submit.pl:69
 msgid "You don't own this domain"
-msgstr "Vous ne possédez pas ce domaine"
+msgstr "Vous ne possédez pas ce domaine"
 
 #: ../vhffs-robots/src/create_largefile.pl:65
 msgid "You have 24H to put your file on the FTP server. After\n"
 msgstr ""
-"Vous avez à présent 24H pour déposer votre fichier sur le serveur FTP. "
-"Après\n"
+"Vous avez à présent 24H pour déposer votre fichier sur le serveur FTP. "
+"Après\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:138
 #, perl-format
 msgid "You have been successfully removed from the list %s\n"
-msgstr "Vous avez été retiré de la liste %s avec succès\n"
+msgstr "Vous avez été retiré de la liste %s avec succès\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:214
 #, perl-format
 msgid "You have been successfully removed from the list %s.\n"
-msgstr "Vous avez été supprimer de la liste %s avec succès.\n"
+msgstr "Vous avez été supprimer de la liste %s avec succès.\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:120
 #, perl-format
 msgid "You have been successfully subscribed to the list %s\n"
-msgstr "Vous avez été inscrit sur la liste %s avec succès\n"
+msgstr "Vous avez été inscrit sur la liste %s avec succès\n"
 
 #: ../vhffs-panel/logout.pl:30
 msgid "You left your VHFFS session!"
-msgstr "Vous avez quitté votre session"
+msgstr "Vous avez quitté votre session"
 
 #: ../vhffs-panel/lost.pl:24
 msgid "You lost your password? You're a bad guy!"
-msgstr "Vous avez perdu votre mot de passe ? çaimal(tm)"
+msgstr "Vous avez perdu votre mot de passe ? çaimal(tm)"
 
 #: ../vhffs-panel/user/prefs_save.pl:134
 msgid "You must choose a method for your mail"
-msgstr "Vous devez choisir une méthode de gestion pour votre mail"
+msgstr "Vous devez choisir une méthode de gestion pour votre mail"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:74
 msgid "You must confirm this request by seding a email\n"
@@ -4369,11 +4405,12 @@
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:56
 msgid "You must confirm your request by sending a confirmation emailn\n"
-msgstr "Vous devez confirmer votre requête en envoyant un mail de confirmation\n"
+msgstr ""
+"Vous devez confirmer votre requête en envoyant un mail de confirmation\n"
 
 #: ../vhffs-panel/subscribe_complete.pl:127
 msgid "You must declare a valid mail address"
-msgstr "Vous devez déclarer une adresse mail valide"
+msgstr "Vous devez déclarer une adresse mail valide"
 
 #: ../vhffs-panel/subscribe_complete.pl:92
 msgid "You must declare your city"
@@ -4389,7 +4426,7 @@
 
 #: ../vhffs-panel/subscribe_complete.pl:113
 msgid "You must declare your lastname"
-msgstr "Vous devez entrer votre prénom"
+msgstr "Vous devez entrer votre prénom"
 
 #: ../vhffs-panel/subscribe_complete.pl:120
 msgid "You must declare your mail address"
@@ -4405,11 +4442,12 @@
 
 #: ../vhffs-panel/mailinglist/create.pl:50
 msgid "You need to manage at least a domain to host a mailing-list"
-msgstr "Vous devez gérer au moins un domaine mail pour avoir une liste de diffusion"
+msgstr ""
+"Vous devez gérer au moins un domaine mail pour avoir une liste de diffusion"
 
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:123
 msgid "You're are not allowed to browse panel"
-msgstr "Vous n'êtes pas autorisé à parcourir le panel"
+msgstr "Vous n'êtes pas autorisé à parcourir le panel"
 
 #: ../vhffs-panel/mail/change_forward.pl:72
 #: ../vhffs-panel/mail/save_catchall.pl:54
@@ -4426,8 +4464,8 @@
 #: ../vhffs-panel/dns/modif_cname.pl:63 ../vhffs-panel/dns/add_mx.pl:59
 #: ../vhffs-panel/dns/add_mx.pl:63 ../vhffs-panel/dns/modif_a.pl:59
 #: ../vhffs-panel/dns/modif_a.pl:63 ../vhffs-panel/dns/modif_mx.pl:59
-#: ../vhffs-panel/dns/modif_mx.pl:63 ../vhffs-panel/dns/delete_ns.pl:58
-#: ../vhffs-panel/dns/delete_ns.pl:62 ../vhffs-panel/dns/delete_a.pl:59
+#: ../vhffs-panel/dns/modif_mx.pl:63 ../vhffs-panel/dns/delete_ns.pl:57
+#: ../vhffs-panel/dns/delete_ns.pl:61 ../vhffs-panel/dns/delete_a.pl:59
 #: ../vhffs-panel/dns/delete_a.pl:63 ../vhffs-panel/dns/delete.pl:58
 #: ../vhffs-panel/dns/delete.pl:62 ../vhffs-panel/pgsql/prefs_save.pl:54
 #: ../vhffs-panel/pgsql/prefs.pl:47 ../vhffs-panel/pgsql/delete.pl:46
@@ -4447,106 +4485,106 @@
 #: ../vhffs-panel/svn/prefs.pl:70 ../vhffs-panel/svn/delete.pl:50
 #: ../vhffs-panel/mailinglist/save_options.pl:69
 #: ../vhffs-panel/mailinglist/del_member.pl:64
-#: ../vhffs-panel/mailinglist/prefs.pl:67
+#: ../vhffs-panel/mailinglist/prefs.pl:69
 #: ../vhffs-panel/mailinglist/add_sub.pl:64
 #: ../vhffs-panel/mailinglist/change_right.pl:66
 #: ../vhffs-panel/mailinglist/delete.pl:63 ../vhffs-panel/web/prefs_save.pl:55
-#: ../vhffs-panel/web/prefs.pl:56 ../vhffs-panel/web/delete.pl:52
+#: ../vhffs-panel/web/prefs.pl:55 ../vhffs-panel/web/delete.pl:52
 #: ../vhffs-panel/largefile/prefs.pl:71 ../vhffs-panel/largefile/delete.pl:49
 msgid "You're not allowed to do this (ACL rights)"
-msgstr "Vous n'êtes pas autorisé à voir ceci. (droits ACL insuffisants)"
+msgstr "Vous n'êtes pas autorisé à voir ceci. (droits ACL insuffisants)"
 
 #: ../vhffs-panel/mail/delete_forward.pl:63
 #: ../vhffs-panel/admin/mail/delete_forward.pl:72
 msgid "You're not allowed to do this (ACL rights) "
-msgstr "Vous n'êtes pas autorisé à faire ceci (droits ACL insuffisants)"
+msgstr "Vous n'êtes pas autorisé à faire ceci (droits ACL insuffisants)"
 
 #: ../vhffs-panel/acl/add_acl_user.pl:69 ../vhffs-panel/acl/view.pl:109
 #: ../vhffs-panel/acl/add_acl_group.pl:69 ../vhffs-panel/acl/submit.pl:68
 #: ../vhffs-panel/history.pl:67
 msgid "You're not allowed to view this object's ACL"
-msgstr "Vous n'êtes pas autorisé à voir l'ACL de ce service"
+msgstr "Vous n'êtes pas autorisé à voir l'ACL de ce service"
 
 #: ../vhffs-panel/panel.pl:71
 msgid "You're not an administrator"
-msgstr "Vous n'êtes pas un administrateur"
-
-#: ../vhffs-robots/src/refused_cvs.pl:51
+msgstr "Vous n'êtes pas un administrateur"
+
+#: ../vhffs-robots/src/refused_cvs.pl:53
 msgid "Your CVS repository request"
-msgstr "Votre demande de dépôt cvs"
-
-#: ../vhffs-robots/src/refused_cvs.pl:39
+msgstr "Votre demande de dépôt cvs"
+
+#: ../vhffs-robots/src/refused_cvs.pl:41
 #, perl-format
 msgid "Your CVS request : %s "
-msgstr "Votre demande de dépôt cvs : %s "
-
-#: ../vhffs-robots/src/refused_dns.pl:50
+msgstr "Votre demande de dépôt cvs : %s "
+
+#: ../vhffs-robots/src/refused_dns.pl:52
 msgid "Your DNS hosting request"
 msgstr "Votre demande de nom de domaine"
 
-#: ../vhffs-robots/src/refused_dns.pl:38
+#: ../vhffs-robots/src/refused_dns.pl:40
 #, perl-format
 msgid "Your DNS hosting request for the domain : %s "
 msgstr "Votre demande de nom de domaine : %s "
 
-#: ../vhffs-robots/src/refused_groups.pl:50
+#: ../vhffs-robots/src/refused_groups.pl:52
 msgid "Your Group request"
 msgstr "Votre demande de groupe/projet"
 
-#: ../vhffs-robots/src/refused_groups.pl:38
+#: ../vhffs-robots/src/refused_groups.pl:40
 #, perl-format
 msgid "Your Group request : %s "
 msgstr "Votre demande de groupe/projet : %s "
 
-#: ../vhffs-robots/src/refused_mail.pl:50
-#: ../vhffs-robots/src/refused_web.pl:50
+#: ../vhffs-robots/src/refused_mail.pl:52
+#: ../vhffs-robots/src/refused_web.pl:52
 msgid "Your Mail hosting request"
 msgstr "Votre demande de domaine mail"
 
-#: ../vhffs-robots/src/refused_mail.pl:38
+#: ../vhffs-robots/src/refused_mail.pl:40
 #, perl-format
 msgid "Your Mail hosting request for the domain: %s "
 msgstr "Votre demande de domaine mail pour le domaine : %s "
 
-#: ../vhffs-robots/src/refused_ml.pl:49
+#: ../vhffs-robots/src/refused_ml.pl:51
 msgid "Your Mailing-list request"
 msgstr "Votre demande de liste de diffusion"
 
-#: ../vhffs-robots/src/refused_ml.pl:38
+#: ../vhffs-robots/src/refused_ml.pl:40
 #, perl-format
 msgid "Your Mailing-list request : %s "
 msgstr "Votre demande pour la liste de diffusion : %s "
 
-#: ../vhffs-robots/src/refused_mysql.pl:50
+#: ../vhffs-robots/src/refused_mysql.pl:52
 msgid "Your MySQL database request"
-msgstr "Votre demande de base de données mysql"
-
-#: ../vhffs-robots/src/refused_mysql.pl:38
+msgstr "Votre demande de base de données mysql"
+
+#: ../vhffs-robots/src/refused_mysql.pl:40
 #, perl-format
 msgid "Your MySQL database request : %s "
-msgstr "Votre demande de base de données mysql %s "
-
-#: ../vhffs-robots/src/refused_postgres.pl:50
+msgstr "Votre demande de base de données mysql %s "
+
+#: ../vhffs-robots/src/refused_postgres.pl:52
 msgid "Your PostgreSQL database request"
-msgstr "Votre demande de base de données postgres"
-
-#: ../vhffs-robots/src/refused_postgres.pl:38
+msgstr "Votre demande de base de données postgres"
+
+#: ../vhffs-robots/src/refused_postgres.pl:40
 #, perl-format
 msgid "Your PostgreSQL database request : %s "
-msgstr "Votre demande de base de données postgres %s"
-
-#: ../vhffs-robots/src/refused_svn.pl:50
+msgstr "Votre demande de base de données postgres %s"
+
+#: ../vhffs-robots/src/refused_svn.pl:52
 msgid "Your Subversion repository request"
-msgstr "Votre demande de dépôt subversion"
-
-#: ../vhffs-robots/src/refused_svn.pl:38
+msgstr "Votre demande de dépôt subversion"
+
+#: ../vhffs-robots/src/refused_svn.pl:40
 #, perl-format
 msgid "Your Subversion repository request : %s"
-msgstr "Votre demande de dépôt subversion %s "
-
-#: ../vhffs-robots/src/refused_largefile.pl:50
+msgstr "Votre demande de dépôt subversion %s "
+
+#: ../vhffs-robots/src/refused_largefile.pl:52
 msgid "Your file hosting request"
-msgstr "Votre demande d'hébergement de fichiers"
+msgstr "Votre demande d'hébergement de fichiers"
 
 #: ../vhffs-panel/alert.pl:39
 msgid "Your message"
@@ -4554,26 +4592,26 @@
 
 #: ../vhffs-panel/pgsql/prefs_save.pl:58
 msgid "Your password is not correct. Please check it."
-msgstr "Votre mot de passe n'est pas correct. Merci de le vérifier."
+msgstr "Votre mot de passe n'est pas correct. Merci de le vérifier."
 
 #: ../vhffs-robots/src/create_largefile.pl:60
 #, perl-format
 msgid "Your request for hosting the file %s was accepted.\n"
-msgstr "Votre requête pour héberger le fichier %s a été acceptée\n"
-
-#: ../vhffs-robots/src/refused_largefile.pl:38
+msgstr "Votre requête pour héberger le fichier %s a été acceptée\n"
+
+#: ../vhffs-robots/src/refused_largefile.pl:40
 #, perl-format
 msgid "Your request for hosting the file: %s"
-msgstr "Votre demande d'hébergement pour le fichier : %s "
+msgstr "Votre demande d'hébergement pour le fichier : %s "
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:107
 msgid "Your request has been removed.\n"
-msgstr "Votre requête a été supprimée.\n"
+msgstr "Votre requête a été supprimée.\n"
 
 #: ../vhffs-robots/src/create_largefile.pl:68
 #, perl-format
 msgid "Your request on %s for hosting file"
-msgstr "Votre demande d'hébergement de fichier sur %s"
+msgstr "Votre demande d'hébergement de fichier sur %s"
 
 #: ../vhffs-panel/admin/moderation_submit.pl:80 ../vhffs-irc/modobot.pl:374
 msgid "Your request on VHFFS platform"
@@ -4581,9 +4619,9 @@
 
 #: ../vhffs-panel/admin/moderation_submit.pl:75 ../vhffs-irc/modobot.pl:369
 msgid "Your request on VHFFS was accepted\n"
-msgstr "Votre requête sur la plate-forme VHFFS a été acceptée\n"
-
-#: ../vhffs-robots/src/refused_web.pl:38
+msgstr "Votre requête sur la plate-forme VHFFS a été acceptée\n"
+
+#: ../vhffs-robots/src/refused_web.pl:40
 #, perl-format
 msgid "Your web hosting request for the servername : %s "
 msgstr "Votre demande de site web %s "
@@ -4603,23 +4641,23 @@
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:308
 msgid "cannot be removed from the list\n"
-msgstr "ne peut pas être supprimé de la liste\n"
+msgstr "ne peut pas être supprimé de la liste\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:276
 msgid "cannot be removed.\n"
-msgstr "ne peut pas être supprimé.\n"
-
-#: ../vhffs-robots/src/refused_postgres.pl:39
-#: ../vhffs-robots/src/refused_cvs.pl:40
-#: ../vhffs-robots/src/refused_mail.pl:39
-#: ../vhffs-robots/src/refused_dns.pl:39
-#: ../vhffs-robots/src/refused_mysql.pl:39
-#: ../vhffs-robots/src/refused_svn.pl:39 ../vhffs-robots/src/refused_ml.pl:39
-#: ../vhffs-robots/src/refused_groups.pl:39
-#: ../vhffs-robots/src/refused_web.pl:39
-#: ../vhffs-robots/src/refused_largefile.pl:39
+msgstr "ne peut pas être supprimé.\n"
+
+#: ../vhffs-robots/src/refused_postgres.pl:41
+#: ../vhffs-robots/src/refused_cvs.pl:42
+#: ../vhffs-robots/src/refused_mail.pl:41
+#: ../vhffs-robots/src/refused_dns.pl:41
+#: ../vhffs-robots/src/refused_mysql.pl:41
+#: ../vhffs-robots/src/refused_svn.pl:41 ../vhffs-robots/src/refused_ml.pl:41
+#: ../vhffs-robots/src/refused_groups.pl:41
+#: ../vhffs-robots/src/refused_web.pl:41
+#: ../vhffs-robots/src/refused_largefile.pl:41
 msgid "has been refused by the Moderators team"
-msgstr "a été refusé par l'équipe de modérateurs"
+msgstr "a été refusé par l'équipe de modérateurs"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:25
 msgid "help\t\t - show this help\n"
@@ -4628,37 +4666,37 @@
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:323
 #, perl-format
 msgid "in the moderation queue of the list %s"
-msgstr "dans la queue de modération de la liste %s"
+msgstr "dans la queue de modération de la liste %s"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:28
 msgid "lang [fr|us|es]\t - set listengine language\n"
 msgstr "lang [fr|us|es]\t - modifier le langage de listengine\n"
 
-#: ../vhffs-listengine/src/listengine.pl:729
+#: ../vhffs-listengine/src/listengine.pl:748
 #, perl-format
 msgid "listengine - list of messages to moderate for %s"
 msgstr "listengine - list of messages to moderate for %s"
 
-#: ../vhffs-listengine/src/listengine.pl:612
-#: ../vhffs-listengine/src/listengine.pl:634
-#: ../vhffs-listengine/src/listengine.pl:645
+#: ../vhffs-listengine/src/listengine.pl:631
+#: ../vhffs-listengine/src/listengine.pl:653
+#: ../vhffs-listengine/src/listengine.pl:664
 msgid "listengine help"
 msgstr "listenfine help"
 
-#: ../vhffs-listengine/src/listengine.pl:677
-#: ../vhffs-listengine/src/listengine.pl:688
-#: ../vhffs-listengine/src/listengine.pl:704
-#: ../vhffs-listengine/src/listengine.pl:716
-#: ../vhffs-listengine/src/listengine.pl:743
-#: ../vhffs-listengine/src/listengine.pl:754
+#: ../vhffs-listengine/src/listengine.pl:696
+#: ../vhffs-listengine/src/listengine.pl:707
+#: ../vhffs-listengine/src/listengine.pl:723
+#: ../vhffs-listengine/src/listengine.pl:735
+#: ../vhffs-listengine/src/listengine.pl:762
+#: ../vhffs-listengine/src/listengine.pl:773
 msgid "listengine moderation"
-msgstr "modération sur listengine"
-
-#: ../vhffs-listengine/src/listengine.pl:662
+msgstr "modération sur listengine"
+
+#: ../vhffs-listengine/src/listengine.pl:681
 msgid "listengine result command"
-msgstr "résultat de la commande sur listengine"
-
-#: ../vhffs-listengine/src/listengine.pl:782
+msgstr "résultat de la commande sur listengine"
+
+#: ../vhffs-listengine/src/listengine.pl:800
 msgid "listengine: unknown command"
 msgstr "listengine: commande inconnue"
 
@@ -4668,18 +4706,21 @@
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:31
 msgid "moderate XXXXX\t\t\t - moderate the message with message-id XXXXX\n"
-msgstr "moderate XXXXX\t\t\t - modérer le message ayant l'identifiant XXXXX\n"
+msgstr "moderate XXXXX\t\t\t - modérer le message ayant l'identifiant XXXXX\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:34
 msgid "moderate list\t\t\t - give the message list for moderation\n"
-msgstr "moderate list\t\t\t - donne la liste de message à modérer\n"
+msgstr "moderate list\t\t\t - donne la liste de message à modérer\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:33
-msgid "moderate refused XXXXX\t\t\t - refuse the message with message-id XXXXX\n"
-msgstr "moderate refused XXXXX\t\t\t - refuse le message ayant l'identifiant XXXXX\n"
+msgid ""
+"moderate refused XXXXX\t\t\t - refuse the message with message-id XXXXX\n"
+msgstr ""
+"moderate refused XXXXX\t\t\t - refuse le message ayant l'identifiant XXXXX\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:32
-msgid "moderate validate XXXXX\t\t\t - moderate the message with message-id XXXXX\n"
+msgid ""
+"moderate validate XXXXX\t\t\t - moderate the message with message-id XXXXX\n"
 msgstr ""
 "moderate validate XXXXX\t\t\t - accepte le message ayant l'identifiant "
 "XXXXX\n"
@@ -4690,17 +4731,17 @@
 
 #: ../vhffs-panel/admin/object/edit.pl:187 ../vhffs-panel/history.pl:98
 msgid "no information about date"
-msgstr "aucune information à propos de la date"
+msgstr "aucune information à propos de la date"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:275
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:307
 #, perl-format
 msgid "present in the moderation queue for the list %s"
-msgstr "présent dans la queue de modération de la liste %s"
+msgstr "présent dans la queue de modération de la liste %s"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:26
 msgid "subscribe\t - subscribe the shipper to the list\n"
-msgstr "subscribe\t - souscrire à la liste\n"
+msgstr "subscribe\t - souscrire à la liste\n"
 
 #: ../vhffs-robots/src/create_largefile.pl:62
 msgid "the following login and password :\n"
@@ -4708,12 +4749,12 @@
 
 #: ../vhffs-robots/src/create_largefile.pl:66
 msgid "this delay, your request will be delete\n"
-msgstr "ce délai, votre demande sera détruite\n"
+msgstr "ce délai, votre demande sera détruite\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:361
 #, perl-format
 msgid "to %s-request@%s with the following subject : \"moderate %s\" \n"
-msgstr "à %s-request@%s avec le sujet suivant : \"moderate %s\" \n"
+msgstr "à %s-request@%s avec le sujet suivant : \"moderate %s\" \n"
 
 #: ../vhffs-listengine/src/archives/show_msg.pl:68
 #, perl-format
@@ -4722,17 +4763,18 @@
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:27
 msgid "unsubscribe\t - unsubscribe from this list\n"
-msgstr "unsubscribe\t - désinscrire de la liste\n"
+msgstr "unsubscribe\t - désinscrire de la liste\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:39
 msgid "user info user@xxxxxxxxxx\t\t - show this user's informations\n"
-msgstr "user info user@xxxxxxxxxx\t\t - affiche les informations utilisateurs\n"
+msgstr ""
+"user info user@xxxxxxxxxx\t\t - affiche les informations utilisateurs\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:37
 msgid "user right RIGHT user@xxxxxxxxxx\t - change right for this user\n"
 msgstr ""
 "user right RIGHT user@xxxxxxxxxx\t - change le droit pour l'utilisateur "
-"désigné\n"
+"désigné\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:36
 msgid ""
@@ -4743,7 +4785,8 @@
 "liste\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:35
-msgid "user unsubscribe user@xxxxxxxxxx\t - delete user user@xxxxxxxxxx from list\n"
+msgid ""
+"user unsubscribe user@xxxxxxxxxx\t - delete user user@xxxxxxxxxx from list\n"
 msgstr ""
 "user unsubscribe user@xxxxxxxxxx\t - supprimer l'utilisateur user@xxxxxxxxxx "
 "de la liste\n"
@@ -4751,9 +4794,17 @@
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:292
 #, perl-format
 msgid "was removed from the moderation queue from the list %s"
-msgstr "a été supprimé de la queue de modération de la liste %s"
+msgstr "a été supprimé de la queue de modération de la liste %s"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:324
 msgid "was sent on the list.\n"
-msgstr "a été envoyé sur la liste\n"
-
+msgstr "a été envoyé sur la liste\n"
+
+#~ msgid "All websites on VHFFS"
+#~ msgstr "Sites web sur VHFFS"
+
+#~ msgid "Log in"
+#~ msgstr "S'authentifier"
+
+#~ msgid "Public Area"
+#~ msgstr "Zone publique"

Modified: trunk/vhffs-panel/auth.pl
==============================================================================
--- trunk/vhffs-panel/auth.pl (original)
+++ trunk/vhffs-panel/auth.pl Tue May  9 01:25:04 2006
@@ -17,57 +17,48 @@
 my $cookie = Vhffs::Panel::Main::cook_lang( $vhffs );
 
 my $templatedir = $vhffs->get_config->get_templatedir;
+my $hostname = $vhffs->get_config->get_host_name;
 my $cgi = new CGI;
 my $template;
 
-if( $vhffs->get_config->get_panel_open == 1 )
-{
-	$template = new HTML::Template( filename => $templatedir."/main/auth.tmpl", associate => $cgi );
+Vhffs::Panel::Main::check( $vhffs );
 
-	$template->param( TITLE => gettext("VHFFS Login") );
-	$template->param( TEXT_WELCOME => gettext("Welcome to ") . Vhffs::Constants::VHFFS_RELEASE_NAME );
-	$template->param( TEXT_PLEASEIDENTIFY => gettext("Please enter your username and password") );
-	$template->param( TEXT_USERNAME => gettext("Username") );
-	$template->param( TEXT_PASSWORD => gettext("Password") );
-	$template->param( TEXT_LOGIN => gettext("Access to panel") );
-	$template->param( TEXT_LOSTPASSWORD => gettext("I've lost my password") );
-	$template->param( TEXT_SUBSCRIBE => gettext("Subscribe") );
+$template = new HTML::Template( filename => $templatedir."/main/auth.tmpl", associate => $cgi );
 
-	$template->param( LANGS => Vhffs::Panel::Main::select_lang( $vhffs ) );
+$template->param( TITLE => gettext("VHFFS Login") );
+$template->param( TEXT_WELCOME => sprintf( gettext("Welcome on %s") , $hostname )   );
+$template->param( VHFFS_INFO => sprintf( "Run VHFFS %s (%s)" , Vhffs::Constants::VHFFS_VERSION , Vhffs::Constants::VHFFS_RELEASE_NAME ) );
+$template->param( TEXT_PLEASEIDENTIFY => gettext("Please enter your username and password") );
+$template->param( TEXT_USERNAME => gettext("Username") );
+$template->param( TEXT_PASSWORD => gettext("Password") );
+$template->param( TEXT_LOGIN => gettext("Access to panel") );
+$template->param( TEXT_LOSTPASSWORD => gettext("I've lost my password") );
+$template->param( TEXT_SUBSCRIBE => gettext("Subscribe") );
+
+$template->param( LANGS => Vhffs::Panel::Main::select_lang( $vhffs ) );
 
 
-	if( $vhffs->get_config->stats_on_home == 1 )
-	{
-	    use Vhffs::Stats;
-	    my $stats = new Vhffs::Stats( $vhffs );
-	    $stats->fetch;
-	    my $users  = $stats->get_user_total;
-	    my $groups = $stats->get_groups_total;
-	    my $hostname = $vhffs->get_config->get_host_name;
+if( $vhffs->get_config->stats_on_home == 1 )
+{
+    use Vhffs::Stats;
+    my $stats = new Vhffs::Stats( $vhffs );
+    $stats->fetch;
+    my $users  = $stats->get_user_total;
+    my $groups = $stats->get_groups_total;
 
-	    $template->param( TEXT_STATS => sprintf( gettext( "Woah, %s users and %s groups already trust %s" ) , $users, $groups , $hostname ) );
-	}
+    $template->param( TEXT_STATS => sprintf( gettext( "Woah, %s users and %s groups already trust %s" ) , $users, $groups , $hostname ) );
+}
 
-	if( $vhffs->get_config->get_panel_public == 1 )
-	{
-	    $template->param( TEXT_PUBLIC => gettext( "Go to public area" ) );
-	}
+if( $vhffs->get_config->get_panel_public == 1 )
+{
+    $template->param( TEXT_PUBLIC => gettext( "Go to public area" ) );
+}
 
-	if( defined $cookie )
-	{
-		display_light Vhffs::Panel::Main( $template , $cookie );
-	}
-	else
-	{
-		display_light Vhffs::Panel::Main( $template );
-	}
+if( defined $cookie )
+{
+	display_light Vhffs::Panel::Main( $template , $cookie );
 }
 else
 {
-	$template = new HTML::Template( filename => $templatedir."/main/close.tmpl" );
-	$template->param( TITLE 		=> gettext("Platform temporary closed") );
-	$template->param( TEXT_CLOSE 	=> gettext("Platform temporary closed.") );
-	$template->param( TEXT_EXPLAIN 	=> gettext("This platform is temporary closed. Administrators are performing some maintenances tasks. Please come back in a few minutes to log in.") );
-	
 	display_light Vhffs::Panel::Main( $template );
 }

Modified: trunk/vhffs-panel/panel.pl
==============================================================================
--- trunk/vhffs-panel/panel.pl (original)
+++ trunk/vhffs-panel/panel.pl Tue May  9 01:25:04 2006
@@ -30,17 +30,7 @@
 my $projectname = $cgi->param("project");
 my $templatedir = $vhffs->get_config->get_templatedir;
 
-#If platform is closed, the user cannot log in
-if( $vhffs->get_config->get_panel_open == 0 )
-{
-    $template = new HTML::Template( filename => $templatedir."/main/close.tmpl" );
-    $template->param( TITLE         => gettext("Platform temporary closed") );
-    $template->param( TEXT_CLOSE    => gettext("Platform temporary closed.") );
-    $template->param( TEXT_EXPLAIN  => gettext("This platform is temporary closed. Administrators are performing some maintenances tasks. Please come back in a few minutes to log in.") );
-    display_light Vhffs::Panel::Main($template);
-    exit 0;
-}
-
+Vhffs::Panel::Main::check( $vhffs );
 
 
 #We try to know if an admin want to su

Modified: trunk/vhffs-panel/subscribe.pl
==============================================================================
--- trunk/vhffs-panel/subscribe.pl (original)
+++ trunk/vhffs-panel/subscribe.pl Tue May  9 01:25:04 2006
@@ -17,7 +17,7 @@
 my $template;
 my $confirmation;
 
-
+Vhffs::Panel::Main::check( $vhffs );
 Vhffs::Panel::Main::cook_lang( $vhffs );
 
 if( $vhffs->get_config->get_allow_subscribe == 0 )

Modified: trunk/vhffs-panel/subscribe_complete.pl
==============================================================================
--- trunk/vhffs-panel/subscribe_complete.pl (original)
+++ trunk/vhffs-panel/subscribe_complete.pl Tue May  9 01:25:04 2006
@@ -34,6 +34,7 @@
 $vhffs = init Vhffs::Main;
 $templatedir = $vhffs->get_config->get_templatedir;
 
+Vhffs::Panel::Main::check( $vhffs );
 Vhffs::Panel::Main::cook_lang( $vhffs );
 
 

Modified: trunk/vhffs-panel/templates/main/auth.tmpl
==============================================================================
--- trunk/vhffs-panel/templates/main/auth.tmpl (original)
+++ trunk/vhffs-panel/templates/main/auth.tmpl Tue May  9 01:25:04 2006
@@ -18,8 +18,7 @@
 		</div>
 		
 		<div class="misc" id="misc">
-		
-			<h1><tmpl_var name="TEXT_WELCOME"></h1>
+				<h1><tmpl_var name="TEXT_WELCOME"></h1>
 		
 
 			
@@ -67,6 +66,8 @@
 		</div>
 
 
-
+		<div id="footer">
+			<a href="http://www.vhffs.org";><tmpl_var name="VHFFS_INFO"></a>
+		</div>
 	</body>
 </html>

Modified: trunk/vhffs-panel/themes/default/main.css
==============================================================================
--- trunk/vhffs-panel/themes/default/main.css (original)
+++ trunk/vhffs-panel/themes/default/main.css Tue May  9 01:25:04 2006
@@ -610,6 +610,7 @@
 	min-width:30%;
 
 }
+
 #misc h1
 {
 	text-align: right;
@@ -804,3 +805,11 @@
 {
 	text-align: center;
 }
+
+#footer
+{
+	font-size: 0.8em;
+	text-align: right;
+	padding-right: 5em;
+}
+




Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/