[vhffs-dev] [svn] commit: r152 - in /trunk: ./ vhffs-api/src/Vhffs/ vhffs-api/src/Vhffs/Listengine/ vhffs-api/src/Vhffs/Robots/ vhffs-api/src/Vhffs/Services/ vhffs-backend/conf/ vhffs-backend/src/pgsql/ vhffs-intl/result/fr_FR/LC_MESSAGES/ vhffs-intl/src/fr/ vhffs-listengine/src/archives/ vhffs-panel/object/ vhffs-panel/public/ vhffs-panel/templates/admin/largefile/ vhffs-panel/templates/largefile/ vhffs-panel/templates/public/ vhffs-panel/templates/public/misc/ vhffs-panel/templates/user/ vhffs-panel/themes/default/ vhffs-panel/themes/default/images/ vhffs-robots/src/

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


Author: soda
Date: Thu Feb  9 23:01:27 2006
New Revision: 152

Log:
Big update. Where ?























































DANS TON CUL 


Added:
    trunk/vhffs-api/src/Vhffs/Robots/LargeFile.pm
    trunk/vhffs-install.sh   (with props)
    trunk/vhffs-panel/public/largefile.pl   (with props)
    trunk/vhffs-panel/templates/admin/largefile/part-modo.tmpl
    trunk/vhffs-panel/templates/public/largefile.tmpl
    trunk/vhffs-panel/templates/public/misc/largefile-dl.tmpl
    trunk/vhffs-panel/templates/public/misc/largefile-part.tmpl
    trunk/vhffs-panel/templates/public/misc/list-part.tmpl
    trunk/vhffs-panel/themes/default/images/largefile.png   (with props)
    trunk/vhffs-panel/themes/default/images/largefilecreate.png   (with props)
    trunk/vhffs-panel/themes/default/images/largefileentry.png   (with props)
    trunk/vhffs-robots/src/create_largefile.pl   (with props)
    trunk/vhffs-robots/src/refused_largefile.pl   (with props)
Modified:
    trunk/Changelog
    trunk/Makefile
    trunk/Relases.notes
    trunk/vhffs-api/src/Vhffs/Conf.pm
    trunk/vhffs-api/src/Vhffs/Constants.pm
    trunk/vhffs-api/src/Vhffs/Listengine/Listengine.pm
    trunk/vhffs-api/src/Vhffs/Services/Mailing.pm
    trunk/vhffs-backend/conf/vhffs.conf
    trunk/vhffs-backend/src/pgsql/create_largefile.sql
    trunk/vhffs-intl/result/fr_FR/LC_MESSAGES/vhffs.mo
    trunk/vhffs-intl/src/fr/fr.pot
    trunk/vhffs-listengine/src/archives/archives.pl
    trunk/vhffs-listengine/src/archives/show_msg.pl
    trunk/vhffs-panel/object/upavatar.pl
    trunk/vhffs-panel/public/group.pl
    trunk/vhffs-panel/templates/largefile/menu.tmpl
    trunk/vhffs-panel/templates/largefile/menu_sub.tmpl
    trunk/vhffs-panel/templates/largefile/menu_sub_wait.tmpl
    trunk/vhffs-panel/templates/public/group.tmpl
    trunk/vhffs-panel/templates/user/mailuser.tmpl
    trunk/vhffs-panel/templates/user/mailuserspam.tmpl
    trunk/vhffs-panel/templates/user/mailuservirus.tmpl
    trunk/vhffs-panel/templates/user/prefs.tmpl
    trunk/vhffs-panel/themes/default/images/logout.png
    trunk/vhffs-panel/themes/default/images/projectcreate.png
    trunk/vhffs-panel/themes/default/images/projectowner.png
    trunk/vhffs-panel/themes/default/images/projectownerentry.png
    trunk/vhffs-panel/themes/default/main.css

Modified: trunk/Changelog
==============================================================================
--- trunk/Changelog (original)
+++ trunk/Changelog Thu Feb  9 23:01:27 2006
@@ -30,6 +30,10 @@
 		  file and lockfile is defined.
 		- Robots use log only if use_logging is set to "yes" in config file
 		  and logfile is defined
+		- Improve install script : vhffs should work on all *nix which runs
+		  perl
+		- Add largefile logo
+		- Update some logos and images for panel
 
 
 

Modified: trunk/Makefile
==============================================================================
--- trunk/Makefile (original)
+++ trunk/Makefile Thu Feb  9 23:01:27 2006
@@ -24,32 +24,40 @@
 DEPS_MODULES="HTML::Template Data::Dumper Config::General LockFile::Simple Locale::gettext DBI Digest::MD5 Crypt::PasswdMD5 Date::Simple CGI::Session XML::RSS"
 DEPS_DEB="libconfig-general-perl libappconfig-perl libcrypt-passwdmd5-perl libdbd-pg-perl libxml-parser-perl libxml-rss-perl libmime-lite-perl libdate-simple-perl libcgi-session-perl libapahe-htpasswd-perl liblocale-gettext-perl libhtml-template-perl libemail-valid-perl"
 
-echo "Choose an install method"
-echo "1 - Debian style"
-echo "2 - Standard style"
-echo "----------------"
-echo "Your choice" :
-
-read STYLE
-
-if [ ${STYLE} = 1 ]; then
-	echo "Debian style"
-	METHOD="debian"
-else
-	if [ ${STYLE} = 2 ]; then
-	echo "Other"
-	METHOD="standard"
-	else
-		echo "Unknow method"
-		exit 1
-	fi
-fi
-
-echo "plop"
+parse_opts ()
+{
+	getopt -n vhffs-install.sh
+}
+
+
+choose_method ()
+{
+	echo "Choose an install method"
+	echo "1 - Debian style"
+	echo "2 - Standard style"
+	echo "----------------"
+	echo "Your choice" :
+
+	read STYLE
+
+	if [ ${STYLE} = 1 ]; then
+		echo "Debian style"
+		METHOD="debian"
+	else
+		if [ ${STYLE} = 2 ]; then
+		echo "Other"
+		METHOD="standard"
+		else
+			echo "Unknow method"
+			exit 1
+		fi
+	fi
+}
+
 
 install_deps ()
 {
-	if [ ${METHOD} = "standard" ]; then
+	if [ -eq "${METHOD}" "standard" ]; then
 		echo "Please answer yes to all questions"
 		read
 		for v in "${DEPS_MODULES}"; do
@@ -67,16 +75,16 @@
 		
 }
 
-install_deps
-
-exit
-
-echo -n "Will install VHFFS in /"
-echo ${DESTDIR}
-
-
-echo -n "Install main VHFFS API ... "
+
+install ()
+{
+	echo -n "Will install VHFFS in /"
+	echo ${DESTDIR}
+
+
+	echo -n "Install main VHFFS API ... "
 	rm -rf "${DESTDIR}/${APIDIR}" 1>/dev/null 2>&1
+
 	mkdir -p "${DESTDIR}/${APIDIR}"
 	if [ ! -d "${CURRENTDIR}/vhffs-api" ]; then
 		echo "vhffs-api module not found in sources"
@@ -84,28 +92,27 @@
 		cp -r vhffs-api/src/Vhffs/* "${DESTDIR}/${APIDIR}/"
 		find "${DESTDIR}/${APIDIR}/" -type f | xargs chmod 644
 	fi
-echo "done"
-
-
-
-
-echo -n "Install main VHFFS Panel ... "
+	echo "done"
+
+
+
+
+	echo -n "Install main VHFFS Panel ... "
 	rm -rf "${DESTDIR}/${PANELDIR}" 1>/dev/null 2>&1
 	mkdir -p "${DESTDIR}/${PANELDIR}"
 	if [ ! -d "${CURRENTDIR}/vhffs-panel" ]; then
 		echo "vhffs-panel module not found in sources"
 	else
-
 		cp -r vhffs-panel/* "${DESTDIR}/${PANELDIR}/"
 		rm -fr "${DESTDIR}/${PANELDIR}/templates"
 		find "${DESTDIR}/${PANELDIR}/" -type f | xargs chmod 755
 		find "${DESTDIR}/${PANELDIR}/themes" -type f | xargs chmod 644
 	fi
-echo "done"
-
-
-
-echo -n "Install main VHFFS Templates ... "
+	echo "done"
+
+
+
+	echo -n "Install main VHFFS Templates ... "
 	rm -rf "${DESTDIR}/${TEMPLATESDIR}" 1>/dev/null 2>&1
 	mkdir -p "${DESTDIR}/${TEMPLATESDIR}"
 	if [ ! -d "${CURRENTDIR}/vhffs-panel/templates" ]; then
@@ -114,10 +121,10 @@
 		cp -r vhffs-panel/templates/* "${DESTDIR}/${TEMPLATESDIR}/"
 		find "${DESTDIR}/${TEMPLATESDIR}/" -type f | xargs chmod 644
 	fi
-echo "done"
-
-
-echo -n "Install VHFFS backend files ... "
+	echo "done"
+
+
+	echo -n "Install VHFFS backend files ... "
 	rm -rf "${DESTDIR}/${BACKENDDIR}" 1>/dev/null 2>&1
 	mkdir -p "${DESTDIR}/${BACKENDDIR}/tools"
 	if [ ! -d "${CURRENTDIR}/vhffs-backend/src/pgsql" ]; then
@@ -128,11 +135,11 @@
 		find "${DESTDIR}/${BACKENDDIR}/" -type f | xargs chmod 644
 		find "${DESTDIR}/${BACKENDDIR}/tools" -type f | xargs chmod 755
 	fi
-echo "done"
-
-
-
-echo -n "Install VHFFS doc ... "
+	echo "done"
+
+
+
+	echo -n "Install VHFFS doc ... "
 	rm -rf "${DESTDIR}/${DOCDIR}" 1>/dev/null 2>&1
 	mkdir -p "${DESTDIR}/${DOCDIR}"
 	if [ ! -d "${CURRENTDIR}/vhffs-doc" ]; then
@@ -141,10 +148,10 @@
 		cp -r vhffs-doc/* "${DESTDIR}/${DOCDIR}/"
 		find "${DESTDIR}/${DOCDIR}/" -type f | xargs chmod 644
 	fi
-echo "done"
-
-
-echo -n "Install VHFFS bots ... "
+	echo "done"
+
+
+	echo -n "Install VHFFS bots ... "
 	rm -rf "${DESTDIR}/${BOTSDIR}" 1>/dev/null 2>&1
 	mkdir -p "${DESTDIR}/${BOTSDIR}"
 	if [ ! -d "${CURRENTDIR}/vhffs-robots/src/" ]; then
@@ -157,9 +164,11 @@
 			fi
 		done
 	fi
-echo "done"
-
-echo -n "Install VHFFS jabber driver ... "
+	echo "done"
+
+
+
+	echo -n "Install VHFFS jabber driver ... "
 	rm -rf "${DESTDIR}/${JABBERDIR}" 1>/dev/null 2>&1
 	mkdir -p "${DESTDIR}/${JABBERDIR}"
 	if [ ! -d "${CURRENTDIR}/vhffs-jabber/" ]; then
@@ -172,7 +181,7 @@
 		echo "done"
 	fi
 
-echo -n "Install VHFFS intl ... "
+	echo -n "Install VHFFS intl ... "
 	rm -rf "${DESTDIR}/${INTLDIR}" 1>/dev/null 2>&1
 	mkdir -p "${DESTDIR}/${INTLDIR}"
 	if [ ! -d "${CURRENTDIR}/vhffs-intl/" ]; then
@@ -183,7 +192,7 @@
 		echo "done"
 	fi
 
-echo -n "Install VHFFS listengine ... "
+	echo -n "Install VHFFS listengine ... "
 	mkdir -p "${DESTDIR}/${LEDIR}"
 	mkdir -p "${DESTDIR}/${LEARCHIVES}"
 	mkdir -p "${DESTDIR}/${LEARCHIVES}/web"
@@ -212,7 +221,7 @@
 
 
 
-echo -n "Install VHFFS config file ... "
+	echo -n "Install VHFFS config file ... "
 	mkdir -p "${DESTDIR}/${CONFDIR}"
 	if [ ! -d "${CURRENTDIR}/vhffs-backend/conf" ]; then
 		echo "vhffs-conf module not found in sources"
@@ -226,7 +235,7 @@
 		fi
 	fi
 
-echo -n "Install VHFFS shells ... "
+	echo -n "Install VHFFS shells ... "
 	if [ ! -d "${CURRENTDIR}/vhffs-shells/" ]; then
 		echo "could not find shells module"
 	else
@@ -247,12 +256,12 @@
 		echo "/bin/tuxshell" >> "${DESTDIR}/etc/shells"
 	fi
 
-echo "done"
-
-
-
-
-echo -n "Install VHFFS tools ... "
+	echo "done"
+
+
+
+
+	echo -n "Install VHFFS tools ... "
     mkdir -p "${DESTDIR}/${TOOLSDIR}"
     if [ ! -d "${CURRENTDIR}/vhffs-tools/src" ]; then
         echo "vhffs-tools module not found in sources"
@@ -264,11 +273,16 @@
 		echo "done"
     fi 
 
-echo ""
-echo "*********************************"
-echo ""
-echo "VHFFS is now probably installed."
-echo "You can check your installation with vhffs-checkinstall."
-echo "For help: http://vhffs.org or post on vhffs@xxxxxxxxx."
+	echo ""
+	echo "*********************************"
+	echo ""
+	echo "VHFFS is now probably installed."
+	echo "You can check your installation with vhffs-checkinstall."
+	echo "For help: http://vhffs.org or post on vhffs@xxxxxxxxx."
+}
+
+parse_opts
+exit
+install_deps
 
 exit 0

Modified: trunk/Relases.notes
==============================================================================
--- trunk/Relases.notes (original)
+++ trunk/Relases.notes Thu Feb  9 23:01:27 2006
@@ -1,14 +1,32 @@
 Release Notes for RC9:
-- Full internationalisation, panel, public area are now internationalized.
-  Language can be chosen on the auth.pl page
-- Robots now logs on /var/log/vhffs.log
-- Robots have lock files, two robots cannot run on the same machine
-- ALL services uses now the getall() functions to get objects
-- Robots can now destroy users and groups.
-- add some tools : 	* vhffs-usermod to modify users from command line
-					* vhffs-groupdel to delete a group from command line
-					* vhffs-moderate to moderate objects from command line
-- Add irc bot support to moderate request on vhffs
-- Full French intl
+
+Language can now be chosen from the auth.pl page for panel.
 
 
+NEW DIRECTIVES IN vhffs.conf
+---------------
+Robots can now logging actions and use lockfile. If you want to use lockfile, 
+specify it in your config file. See in vhffs-backend/conf the new config file
+and see the new <robots/> section (end of file)
+
+New directives use_nospam and use_novirus. Please see the config file 
+(vhffs-backend/conf/vhffs.conf) for informations.
+
+The directive use_largefile and the <largefile/> section appears now. Please see the
+config file in vhffs-backend.
+
+
+
+DATABASE SCHEMA
+---------------
+With nospam and novirus directives, the schema of vhffs-boxes changed. So,
+if you install a new vhffs platform, this is not a problem. If you upgrade
+from previous version, please update the schema. You have to append a nospam column
+and a novirus column. So, the vhffs_boxes schema should seems to :
+vhffs_boxes( domain , local_part , domain_hash , password_hash , mbox_name , password , nospam, novirus)
+The new columns have a boolean type. You can add this columns with those PostgreSQL commands:
+ALTER TABLE vhffs_boxes ADD COLUMN nospam boolean;
+ALTER TABLE vhffs_boxes ADD COLUMN novirus boolean;
+
+
+

Modified: trunk/vhffs-api/src/Vhffs/Conf.pm
==============================================================================
--- trunk/vhffs-api/src/Vhffs/Conf.pm (original)
+++ trunk/vhffs-api/src/Vhffs/Conf.pm Thu Feb  9 23:01:27 2006
@@ -755,7 +755,7 @@
 }
 
 
-sub robots_logging
+sub use_logging
 {
 	if( $Config{"robots"}{"use_logging"} )
 	{
@@ -776,7 +776,7 @@
 	return undef;
 }
 
-sub robots_locking
+sub use_locking
 {
 	if( $Config{"robots"}{"use_lock"} )
 	{
@@ -797,4 +797,28 @@
 	return undef;
 }
 
+sub largefile_mirrors
+{
+	if( defined $Config{"services"}{"largefile"}{"mirrors"}{"server"} )
+	{
+		return( $Config{"services"}{"largefile"}{"mirrors"}{"server"} );
+	}
+}
+
+sub largefile_upload_host
+{
+	if( defined $Config{"services"}{"largefile"}{"upload-host"} )
+	{
+		return( $Config{"services"}{"largefile"}{"upload-host"} );
+	}
+}
+
+sub get_www_archives
+{
+	if( defined $Config{"services"}{"listengine"}{"www-archives"} )
+	{
+		return( $Config{"services"}{"listengine"}{"www-archives"} );
+	}
+}
+
 1;

Modified: trunk/vhffs-api/src/Vhffs/Constants.pm
==============================================================================
--- trunk/vhffs-api/src/Vhffs/Constants.pm (original)
+++ trunk/vhffs-api/src/Vhffs/Constants.pm Thu Feb  9 23:01:27 2006
@@ -37,6 +37,7 @@
     HOMEDIR	=> "web/",
     WEBDIR	=> "web/",
     CVSDIR => "cvs/",
+    LARGEFILEDIR => "largefile/",
     
     WEB_SUFFIX => "-web",
     
@@ -102,6 +103,8 @@
 
 =head2 CVSDIR
 
+=head2 LARGEFILEDIR
+
 =head2 USER_NORMAL
 
 =head2 USER_ADMIN

Modified: trunk/vhffs-api/src/Vhffs/Listengine/Listengine.pm
==============================================================================
--- trunk/vhffs-api/src/Vhffs/Listengine/Listengine.pm (original)
+++ trunk/vhffs-api/src/Vhffs/Listengine/Listengine.pm Thu Feb  9 23:01:27 2006
@@ -121,6 +121,8 @@
     my $mail;
    	my $header; 
 	my $mid;
+	my $final;
+	my $key;
 
     return undef if( ! defined ( $year ) );
     return undef if( ! ( $year =~ /^[0-9]+$/ ) );
@@ -161,9 +163,28 @@
 			$mail->{'mid'} = $mid;
 		    $result->{$hash} = $mail if( defined $mail );
 		}
+
     }
 
     return( \$result );
+}
+
+sub sort_hash_msg
+{
+	my $init = shift;
+	my $key;
+	my $msg;
+	foreach $key ( %{$init} )
+	{
+		next if( $init->{$key}->{'treated'} == 1 );
+		
+		if( $init->{$key}->{first} == 1 )
+		{
+			$init->{$key}->{treated} = 1;
+			$msg = sort_msg( $init->{$key} );
+		}
+		
+	}
 }
 
 sub fetch_mail_from_file

Modified: trunk/vhffs-api/src/Vhffs/Services/Mailing.pm
==============================================================================
--- trunk/vhffs-api/src/Vhffs/Services/Mailing.pm (original)
+++ trunk/vhffs-api/src/Vhffs/Services/Mailing.pm Thu Feb  9 23:01:27 2006
@@ -591,7 +591,7 @@
     $query .= " AND ( ( local LIKE '%".$name."%' ) OR (domain LIKE '%".$name."'% ) )" if( defined $name );
     $query .= " AND ( domain='".$domain."')" if( defined $domain );
 
-    my $request = $vhffs->get_db_object->{'DB_WRITE'}->prepare( $query );
+    my $request = $vhffs->get_db_object->{'DB_READ'}->prepare( $query );
     my $rows = $request->execute() or return -3;
 	return undef if( $rows <= 0 );
     my $result = $request->fetchall_hashref('ml_id');
@@ -609,6 +609,40 @@
     return( \@plop );
 }
 
+
+
+#Returns all the lists for a group
+sub getall_by_group
+{
+    my $vhffs = shift;
+    my $group = shift;
+
+    my $query;
+    return undef if( ! defined $vhffs );
+
+	$query = "SELECT * FROM vhffs_ml ml, vhffs_object o WHERE o.object_id=ml.object_id";
+	$query .= " AND ml.owner_gid='".$group->get_gid."'" if( defined $group );
+
+    my $request = $vhffs->get_db_object->{'DB_READ'}->prepare( $query );
+    my $rows = $request->execute() or return -3;
+	return undef if( $rows <= 0 );
+    my $result = $request->fetchall_hashref('ml_id');
+    my $object;
+    my @plop;
+
+
+    
+    foreach( keys %{$result} ) 
+    {
+		$object = new Vhffs::Services::Mailing( $vhffs , $result->{$_}{local_part} , $result->{$_}{domain} );
+		push( @plop , $object ) if( ( defined $object ) && ( $object->fetch > 0 ) );
+    }
+
+    return( \@plop );
+}
+
+
+
 sub get_title
 {
     my $self = shift;

Modified: trunk/vhffs-backend/conf/vhffs.conf
==============================================================================
--- trunk/vhffs-backend/conf/vhffs.conf (original)
+++ trunk/vhffs-backend/conf/vhffs.conf Thu Feb  9 23:01:27 2006
@@ -22,6 +22,7 @@
 		use_mailing		=	yes
 		use_mail		=	yes
 		use_mailuser	=	no
+		use_largefile	= 	yes
 	</modules>
 	<panel>
 		url				=   http://your.panel.url
@@ -201,7 +202,27 @@
 		listmaster		= "listmaster@xxxxxxxxxx"
 		smtp_server	= "localhost"
 		templatesdir	=	""
+		www-archives	=	http://localhost/listengine
 	</listengine>
+	<largefile>
+		upload-host	=	"largefile.tuxfamily.org"
+		<mirrors>
+			<server>
+				name = "OVH"
+				country = fr
+				logo = http://blabla
+				url = http://free.fr/download/tuxfamily/
+				link = http://ovh.fr
+			</server>
+			<server>
+				name = "Tuxfamily"
+				country = fr
+				logo = http://blibli
+				url = http://download.tuxfamily.net/mirror/
+				link = http://tuxfamily.org
+			</server>
+		</mirrors>
+	</largefile>
 </services>
 
 <robots>

Modified: trunk/vhffs-backend/src/pgsql/create_largefile.sql
==============================================================================
--- trunk/vhffs-backend/src/pgsql/create_largefile.sql (original)
+++ trunk/vhffs-backend/src/pgsql/create_largefile.sql Thu Feb  9 23:01:27 2006
@@ -1,3 +1,17 @@
+CREATE SEQUENCE seq_virtualuid
+	INCREMENT 1
+	MINVALUE 10000
+	MAXVALUE 2147483647
+	START 10000
+	CACHE 1;
+
+CREATE SEQUENCE seq_virtualgid
+	INCREMENT 1
+	MINVALUE 10000
+	MAXVALUE 2147483647
+	START 10000
+	CACHE 1;
+
 CREATE TABLE vhffs_largefile
 (
 	file_id SERIAL,
@@ -5,11 +19,16 @@
 	size			int4 NOT NULL,
 	type			varchar NOT NULL,
 	licence			varchar,
-	creating_date	DATE NOT NULL,
+	hash			varchar,
+	creating_date	DATE,
+	last_check		DATE,
 	end_date		DATE,
 	username		varchar,
 	password		varchar,
-	hash			varchar,
+	home			varchar,
+	ncheck			int4 DEFAULT '0',
+	virtual_uid		int4 DEFAULT nextval('seq_virtualuid'::text),
+	virtual_gid		int4 NOT NULL DEFAULT nextval('seq_virtualgid'::text),
 	owner_uid int4 REFERENCES vhffs_users( uid ), 
 	owner_gid int4 REFERENCES vhffs_groups( gid ),
 	object_id int4 REFERENCES vhffs_object( object_id ),

Modified: trunk/vhffs-intl/result/fr_FR/LC_MESSAGES/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 Thu Feb  9 23:01:27 2006
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: 4.0rc9\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-01-06 11:21+0100\n"
+"POT-Creation-Date: 2006-02-07 15:31+0100\n"
 "PO-Revision-Date: 2006-01-08 11:00+01\n"
 "Last-Translator: Julien Delange <julien@xxxxxxxxx>\n"
 "Language-Team: French <julien@xxxxxxxxx>\n"
@@ -18,7 +18,7 @@
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:38
 msgid "\t\t\t\t   RIGHT can be subscriber or admin\n"
-msgstr "\t\t\t\t	RIGHT peut souscrire ou admin\n"
+msgstr "\t\t\t\t\tRIGHT peut souscrire ou admin\n"
 
 #: ../vhffs-panel/public/index.pl:31
 #, perl-format
@@ -33,37 +33,37 @@
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:121
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:123
 msgid "------\n"
-msgstr ""
+msgstr "------\n"
 
 #: ../vhffs-panel/web/create.pl:39
 msgid "<new site>."
-msgstr "<votre nom de site>."
+msgstr "<nom de votre 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"
-
-#: ../vhffs-panel/acl/view.pl:112
+msgstr "Un mail à modérer est arrivé sur la liste %s.\n"
+
+#: ../vhffs-panel/acl/view.pl:117
 msgid "ACL Administration for : "
 msgstr "Administration des ACL pour : "
 
-#: ../vhffs-panel/acl/view.pl:131
+#: ../vhffs-panel/acl/view.pl:136
 msgid "ACL level"
 msgstr "Niveau d'ACL"
 
 #: ../vhffs-panel/acl/add_acl_user.pl:80
 #: ../vhffs-panel/acl/add_acl_group.pl:80
 msgid "ACL successfully added"
-msgstr "ACL ajouté avec succès"
+msgstr "ACL ajouté avec succès"
 
 #: ../vhffs-panel/acl/submit.pl:82
 msgid "ACL successfully deleted"
-msgstr "ACL supprimée avec succès"
+msgstr "ACL supprimée avec succès"
 
 #: ../vhffs-panel/acl/submit.pl:93
 msgid "ACL successfully modified"
-msgstr "ACL modifiée avec succès"
+msgstr "ACL modifiée avec succès"
 
 #: ../vhffs-panel/admin/moderation.pl:84
 #: ../vhffs-panel/admin/moderation.pl:126
@@ -74,23 +74,28 @@
 #: ../vhffs-panel/admin/moderation.pl:344
 #: ../vhffs-panel/admin/moderation.pl:387
 #: ../vhffs-panel/admin/moderation.pl:429
+#: ../vhffs-panel/admin/moderation.pl:470
 msgid "Accept"
 msgstr "Accepter"
 
+#: ../vhffs-panel/logout.pl:31 ../vhffs-panel/auth.pl:29
+msgid "Access to panel"
+msgstr "Accéder au panel"
+
 #: ../vhffs-panel/mail/delete_box.pl:83
 msgid "Account successfully deleted"
-msgstr "Compte supprimé avec succès"
-
-#: ../vhffs-panel/mail/prefs.pl:73
+msgstr "Compte supprimé avec succès"
+
+#: ../vhffs-panel/mail/prefs.pl:76
 msgid "Accounts"
 msgstr "Comptes"
 
-#: ../vhffs-panel/user/prefs.pl:131
+#: ../vhffs-panel/user/prefs.pl:137
 #, perl-format
 msgid "Activate %s@%s email"
 msgstr "Activer l'adresse email %s@%s"
 
-#: ../vhffs-api/src/Vhffs/Functions.pm:339
+#: ../vhffs-api/src/Vhffs/Functions.pm:346
 #: ../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:88
@@ -99,7 +104,7 @@
 #: ../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é"
+msgstr "Activé"
 
 #: ../vhffs-panel/dns/prefs.pl:112 ../vhffs-panel/mailinglist/prefs.pl:95
 msgid "Add !"
@@ -107,17 +112,17 @@
 
 #: ../vhffs-panel/dns/prefs.pl:125
 msgid "Add a CNAME field to your domain"
-msgstr "Ajouter un champs CNAME à votre domaine"
+msgstr "Ajouter un champs CNAME à votre domaine"
 
 #: ../vhffs-panel/dns/prefs.pl:117
 msgid "Add a MX field to your domain"
-msgstr "Ajouter un champs MX à votre domaine"
+msgstr "Ajouter un champs MX à votre domaine"
 
 #: ../vhffs-panel/dns/prefs.pl:133
 msgid "Add a NS field to your domain"
-msgstr "Ajouter un champs NS à votre domaine"
-
-#: ../vhffs-panel/mail/prefs.pl:84 ../vhffs-panel/mail/prefs.pl:94
+msgstr "Ajouter un champs NS à votre domaine"
+
+#: ../vhffs-panel/mail/prefs.pl:87 ../vhffs-panel/mail/prefs.pl:97
 msgid "Add a forward on this domain"
 msgstr "Ajouter une redirection sur ce domaine"
 
@@ -125,11 +130,11 @@
 msgid "Add a member"
 msgstr "Ajouter un membre"
 
-#: ../vhffs-panel/mail/prefs.pl:93
+#: ../vhffs-panel/mail/prefs.pl:96
 msgid "Add a popbox to this domain"
 msgstr "Ajouter une boite mail sur ce domaine"
 
-#: ../vhffs-panel/group/prefs.pl:67
+#: ../vhffs-panel/group/prefs.pl:68
 msgid "Add a user in this group"
 msgstr "Ajouter un utilisateur dans ce groupe"
 
@@ -137,11 +142,11 @@
 msgid "Add an A record"
 msgstr "Ajouter un enregistrement de type A"
 
-#: ../vhffs-panel/mail/prefs.pl:75
+#: ../vhffs-panel/mail/prefs.pl:78
 msgid "Add an account"
 msgstr "Ajouter un compte"
 
-#: ../vhffs-panel/group/prefs.pl:68
+#: ../vhffs-panel/group/prefs.pl:69
 msgid "Add this user !"
 msgstr "Ajouter cet utilisateur !"
 
@@ -150,7 +155,7 @@
 msgstr "Ajouter cet utilisateur dans le groupe"
 
 #: ../vhffs-panel/admin/user/edit.pl:73 ../vhffs-panel/admin/user/show.pl:73
-#: ../vhffs-panel/user/prefs.pl:54 ../vhffs-panel/subscribe.pl:43
+#: ../vhffs-panel/user/prefs.pl:53 ../vhffs-panel/subscribe.pl:43
 msgid "Address"
 msgstr "Adresse"
 
@@ -166,22 +171,22 @@
 
 #: ../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 "Administrations des noms de domaine"
 
-#: ../vhffs-panel/mail/prefs.pl:104 ../vhffs-panel/dns/prefs.pl:92
+#: ../vhffs-panel/mail/prefs.pl:107 ../vhffs-panel/dns/prefs.pl:92
 #: ../vhffs-panel/web/prefs.pl:92
 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 "Administrer les dépôts subversion"
-
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:44
+msgstr "Administrer les dépôts subversion"
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:43
 msgid "Admin account : "
 msgstr "Compte administrateur : "
 
@@ -192,7 +197,7 @@
 #: ../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 la liste.\n"
+msgstr "L'adresse %s est déjà inscrite sur la liste.\n"
 
 #: ../vhffs-panel/web/create.pl:44
 msgid "Adress (ServerName directive)"
@@ -236,34 +241,38 @@
 
 #: ../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
 msgid "All groups on %s"
 msgstr "Tous les groupes sur %s"
 
+#: ../vhffs-panel/admin/largefile/list.pl:49
+msgid "All hosted files lists"
+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 mailins envoyés aux hébergés"
+msgstr "Tous les mailins 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
 msgid "All objects List"
 msgstr "Liste de tous les objets"
 
-#: ../vhffs-panel/group/prefs.pl:82
+#: ../vhffs-panel/group/prefs.pl:88
 msgid "All users in this group"
 msgstr "Tous les utilisateurs dans ce groupe"
 
@@ -279,22 +288,33 @@
 #: ../vhffs-panel/mail/add_forward.pl:66
 #, 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"
+msgstr ""
+"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 suivante: %s.\n"
+msgstr ""
+"Une erreur est survenue lors de la mise à jour du langage pour l'adresse "
+"suivante: %s.\n"
 
 #: ../vhffs-panel/mailinglist/submit.pl:95
 msgid "An error occured while adding an ACL for the group"
 msgstr "Une erreur est survenue lors de l'ajout d'une ACL pour le groupe"
 
-#: ../vhffs-panel/user/prefs_save.pl:129
+#: ../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"
-
-#: ../vhffs-panel/user/prefs_save.pl:161
+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)"
+msgstr "Une erreur est survenue lors de l'ajout de la protection anti-spam"
+
+#: ../vhffs-panel/user/prefs_save.pl:156
+msgid "An error occured while adding the box (anti-virus adding)"
+msgstr "Une erreur est survenue lors de l'ajout de le l'anti-virus"
+
+#: ../vhffs-panel/user/prefs_save.pl:243
 msgid "An error occured while adding the forwarding"
 msgstr "Une erreur est survenue lors de l'ajout de la redirection"
 
@@ -308,52 +328,69 @@
 
 #: ../vhffs-panel/user/delete.pl:52
 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é."
+msgstr ""
+"Une erreur est survenue lors de l'enregistrement des modifications. "
+"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 survenur lors de l'enregistrement des modiciations. Cette zone web ne sera pas détruite"
+msgstr ""
+"Une erreur est survenur lors de l'enregistrement des modiciations. Cette "
+"zone web ne sera pas détruite"
 
 #: ../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"
+msgstr "Une erreur est survenue lors de la création du domaine mail"
 
 #: ../vhffs-panel/admin/mailing/mailing_submit.pl:54
 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"
+msgstr ""
+"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à"
 
 #: ../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 incorrecte ou "
-" existe déjà dans la base de données"
+msgstr ""
+"Une erreur est survenue lors de la création de l'objet. Le domaine est "
+"incorrecte ou  existe déjà dans la base de données"
 
 #: ../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à"
+msgstr ""
+"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"
-
-#: ../vhffs-panel/svn/delete.pl:68
+msgstr "Une erreur est survenue lors de la suppression du dépôt cvs"
+
+#: ../vhffs-panel/svn/delete.pl:68 ../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"
@@ -361,7 +398,9 @@
 
 #: ../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 cette liste"
+msgstr ""
+"Une erreur est survenue lors du rappatriement d'informations à propos de "
+"cette liste"
 
 #: ../vhffs-api/src/Vhffs/Robots/Mysql.pm:140
 msgid "An error occured while granting privileges to an admin user"
@@ -375,86 +414,86 @@
 msgid "An error occured while setting up the ACL"
 msgstr "Une erreur est survenue lors de la mise en place des ACL"
 
-#: ../vhffs-panel/user/prefs_save.pl:173
+#: ../vhffs-panel/user/prefs_save.pl:255
 msgid "An error occured while the forwarding"
 msgstr "Une erreur est survenue lors de l'ajout de la redirection"
 
 #: ../vhffs-panel/mailinglist/del_member.pl:75
 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:66
 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:66 ../vhffs-panel/group/delete.pl:59
 msgid "An error occured while updating the project"
-msgstr "Une erreur est survenueu lors de la mise à jour du projet"
-
-#: ../vhffs-panel/user/prefs_save.pl:98
+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"
 msgstr "Avril"
 
-#: ../vhffs-listengine/src/archives/show_msg.pl:61
-#: ../vhffs-listengine/src/archives/archives.pl:89
+#: ../vhffs-listengine/src/archives/show_msg.pl:62
+#: ../vhffs-listengine/src/archives/archives.pl:116
 msgid "Archive are not open for this list"
 msgstr "Les archives ne sont pas ouvertes pour cette liste"
 
-#: ../vhffs-listengine/src/archives/archives.pl:102
-#: ../vhffs-listengine/src/archives/archives.pl:133
-#: ../vhffs-listengine/src/archives/archives.pl:155
-#: ../vhffs-listengine/src/archives/archives.pl:179
+#: ../vhffs-listengine/src/archives/archives.pl:129
+#: ../vhffs-listengine/src/archives/archives.pl:166
+#: ../vhffs-listengine/src/archives/archives.pl:188
+#: ../vhffs-listengine/src/archives/archives.pl:212
 msgid "Archives"
 msgstr "Archives"
 
-#: ../vhffs-listengine/src/archives/archives.pl:167
+#: ../vhffs-listengine/src/archives/archives.pl:200
 msgid "Archives for "
 msgstr "Archives pour "
 
-#: ../vhffs-listengine/src/archives/archives.pl:196
+#: ../vhffs-listengine/src/archives/archives.pl:224
 msgid "Archives for year"
-msgstr "Archives pour l'année"
-
-#: ../vhffs-panel/svn/prefs.pl:94
+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:99 ../vhffs-panel/mailinglist/prefs.pl:164
+msgstr "Etes vous SUR de vouloir supprimer ce dépôt subversion ?"
+
+#: ../vhffs-panel/mail/prefs.pl:102 ../vhffs-panel/mailinglist/prefs.pl:164
 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:86
 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:79
 msgid "Are you SURE you want DELETE this PostgreSQL database ?"
-msgstr "Etes vous SUR de vouloir supprimer cette base de données postgres ?"
+msgstr "Etes vous SUR de vouloir supprimer cette base de données postgres ?"
 
 #: ../vhffs-panel/web/prefs.pl:98
 msgid "Are you SURE you want DELETE this Web Area ?"
@@ -462,17 +501,17 @@
 
 #: ../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 ?"
 msgstr "Etes vous SUR de vouloir supprimer ce domaine ?"
 
-#: ../vhffs-panel/group/prefs.pl:61
+#: ../vhffs-panel/group/prefs.pl:62
 msgid "Are you SURE you want DELETE this project ?"
 msgstr "Etes vous SUR de vouloir supprimer ce projet ?"
 
-#: ../vhffs-panel/user/prefs.pl:73
+#: ../vhffs-panel/user/prefs.pl:74
 msgid "Are you SURE you want DELETE this user?"
 msgstr "Etes vous SUR de vouloir supprimer cet utilisateur ?"
 
@@ -487,36 +526,36 @@
 
 #: ../vhffs-panel/subscribe.pl:45 ../vhffs-panel/subscribe_complete.pl:213
 msgid "Back to Login"
-msgstr "Retour à la page d'authentification"
-
-#: ../vhffs-listengine/src/archives/archives.pl:127
+msgstr "Retour à la page d'authentification"
+
+#: ../vhffs-listengine/src/archives/archives.pl:160
 #, perl-format
 msgid "Back to archives by month ( %s )"
 msgstr "Retour aux archives par mois ( %s )"
 
-#: ../vhffs-listengine/src/archives/archives.pl:156
+#: ../vhffs-listengine/src/archives/archives.pl:189
 #, perl-format
 msgid "Back to archives by year ( %s )"
-msgstr "Retour aux archives par année ( %s )"
-
-#: ../vhffs-listengine/src/archives/archives.pl:103
+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"
-
-#: ../vhffs-panel/lost.pl:30
+msgstr "Retour à la liste par jour"
+
+#: ../vhffs-panel/lost.pl:28
 msgid "Back to login page"
-msgstr "Retour à la page d'authentification"
-
-#: ../vhffs-listengine/src/archives/show_msg.pl:39
+msgstr "Retour à la page d'authentification"
+
+#: ../vhffs-listengine/src/archives/show_msg.pl:40
 msgid "Bad listname"
 msgstr "Mauvais nom de liste"
 
-#: ../vhffs-listengine/src/archives/archives.pl:73
+#: ../vhffs-listengine/src/archives/archives.pl:100
 #, perl-format
 msgid "Bad listname %s"
 msgstr "Mauvais nom de liste %s"
 
-#: ../vhffs-listengine/src/archives/show_msg.pl:55
+#: ../vhffs-listengine/src/archives/show_msg.pl:56
 msgid "Bad message-id"
 msgstr "Mauvais identifiant de message"
 
@@ -524,39 +563,46 @@
 msgid ""
 "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"
-" modifiera le mot de passe pour cette base"
+msgstr ""
+"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
 msgid ""
 "Be careful ! You must give the reason why you want to host this domain on "
 "our servers."
-msgstr "Faites attention ! Vous devez donner la raison pour laquelle vous voulez héberger ce domaine sur nos serveur."
+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
 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 web"
-"ayant pour nom (servername) domaine.ext. VHFFS redirige toutes les requêtes de"
-"www.domaine.ext à domaine.ext"
+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"
 
 #: ../vhffs-panel/admin/broadcast_view.pl:57
 msgid "Body"
 msgstr "Corps du message"
 
-#: ../vhffs-panel/lost.pl:27
+#: ../vhffs-panel/lost.pl:25
 msgid ""
 "But fortunately we're smart, so just type your login here<br/>and a new "
 "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"
+msgstr ""
+"Mais nous sommes gentils: tapez votre nom de login ici<br/> et un nouveau "
+"mot de passe vous sera envoyé par mail"
 
 #: ../vhffs-panel/mail/delete_forward.pl:54
 #: ../vhffs-panel/mail/change_forward.pl:60
 #: ../vhffs-panel/mail/delete_box.pl:57 ../vhffs-panel/mail/password_box.pl:60
 #: ../vhffs-panel/mail/add_forward.pl:49 ../vhffs-panel/mail/delete.pl:44
-#: ../vhffs-panel/mail/add_account.pl:52
+#: ../vhffs-panel/mail/add_account.pl:52 ../vhffs-panel/mail/spambox.pl:60
+#: ../vhffs-panel/mail/spamvirus.pl:60
 #: ../vhffs-panel/admin/mail/delete_forward.pl:59
 #: ../vhffs-panel/admin/mail/change_forward.pl:60
 #: ../vhffs-panel/admin/mail/delete_box.pl:59
@@ -590,7 +636,8 @@
 msgid "CGI ERROR ! %s"
 msgstr "Erreur CGI %s"
 
-#: ../vhffs-panel/public/group.pl:36 ../vhffs-panel/public/user.pl:37
+#: ../vhffs-panel/public/group.pl:38 ../vhffs-panel/public/user.pl:37
+#: ../vhffs-panel/public/largefile.pl:48
 msgid "CGI ERROR!"
 msgstr "Erreur CGI"
 
@@ -598,6 +645,7 @@
 #: ../vhffs-panel/group/remove_user_from_group.pl:41
 #: ../vhffs-panel/acl/submit.pl:55 ../vhffs-panel/svn/prefs.pl:52
 #: ../vhffs-panel/svn/create.pl:34 ../vhffs-panel/mailinglist/submit.pl:65
+#: ../vhffs-panel/largefile/prefs.pl:53
 msgid "CGI Error"
 msgstr "Erreur CGI"
 
@@ -616,6 +664,7 @@
 #: ../vhffs-panel/mysql/prefs.pl:41 ../vhffs-panel/mysql/delete.pl:46
 #: ../vhffs-panel/mysql/submit.pl:44 ../vhffs-panel/svn/svn_submit.pl:41
 #: ../vhffs-panel/svn/delete.pl:43 ../vhffs-panel/history.pl:54
+#: ../vhffs-panel/largefile/submit.pl:44 ../vhffs-panel/largefile/delete.pl:41
 msgid "CGI Error !"
 msgstr "Erreur CGI"
 
@@ -638,7 +687,7 @@
 #: ../vhffs-panel/mailinglist/change_right.pl:50
 #: ../vhffs-panel/mailinglist/change_right.pl:74
 #: ../vhffs-panel/mailinglist/delete.pl:47 ../vhffs-panel/web/web_submit.pl:41
-#: ../vhffs-panel/user/prefs_save.pl:61
+#: ../vhffs-panel/user/prefs_save.pl:60
 msgid "CGI Error!"
 msgstr "Erreur CGI"
 
@@ -648,39 +697,39 @@
 
 #: ../vhffs-panel/admin/moderation_submit.pl:59
 msgid "CGI problem"
-msgstr "Problème de CGI"
+msgstr "Problème de CGI"
 
 #: ../vhffs-panel/dns/modif_cname.pl:73
 msgid "CNAME field successfully updated"
-msgstr "Le champs CNAME a été mis à jour avec succès"
-
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:118
+msgstr "Le champs CNAME a été mis à jour avec succès"
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:117
 msgid "CVS Admin"
-msgstr "Administration des dépôts CVS"
-
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:120
+msgstr "Administration des dépôts CVS"
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:119
 msgid "CVS Search"
-msgstr "Recherche de dépôts CVS"
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:303
+msgstr "Recherche de dépôts CVS"
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:302
 msgid "CVS repositories for this group"
-msgstr "Dépôts CVS pour ce groupe"
+msgstr "Dépôts CVS pour ce groupe"
 
 #: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:91
 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:110
+msgstr "Dépôts CVS en attente de validation"
+
+#: ../vhffs-panel/public/group.pl:112
 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"
@@ -688,32 +737,32 @@
 
 #: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:108
 msgid "CVSweb"
-msgstr ""
-
-#: ../vhffs-panel/acl/view.pl:129 ../vhffs-panel/acl/view.pl:154
-#: ../vhffs-panel/acl/view.pl:202
+msgstr "CVS par le web"
+
+#: ../vhffs-panel/acl/view.pl:134 ../vhffs-panel/acl/view.pl:159
+#: ../vhffs-panel/acl/view.pl:207
 msgid "Can destroy this service"
-msgstr "Peut détruire ce service"
-
-#: ../vhffs-panel/acl/view.pl:128 ../vhffs-panel/acl/view.pl:153
-#: ../vhffs-panel/acl/view.pl:201
+msgstr "Peut détruire ce service"
+
+#: ../vhffs-panel/acl/view.pl:133 ../vhffs-panel/acl/view.pl:158
+#: ../vhffs-panel/acl/view.pl:206
 msgid "Can manage ACL for this service"
-msgstr "Peut gérer les ACL pour ce service"
-
-#: ../vhffs-panel/acl/view.pl:127 ../vhffs-panel/acl/view.pl:152
-#: ../vhffs-panel/acl/view.pl:200
+msgstr "Peut gérer les ACL pour ce service"
+
+#: ../vhffs-panel/acl/view.pl:132 ../vhffs-panel/acl/view.pl:157
+#: ../vhffs-panel/acl/view.pl:205
 msgid "Can modify this service"
 msgstr "Peut modifier ce service"
 
-#: ../vhffs-panel/acl/view.pl:126 ../vhffs-panel/acl/view.pl:151
-#: ../vhffs-panel/acl/view.pl:199
+#: ../vhffs-panel/acl/view.pl:131 ../vhffs-panel/acl/view.pl:156
+#: ../vhffs-panel/acl/view.pl:204
 msgid "Can view this service"
 msgstr "Peut voir ce service"
 
-#: ../vhffs-panel/acl/view.pl:125 ../vhffs-panel/acl/view.pl:150
-#: ../vhffs-panel/acl/view.pl:198
+#: ../vhffs-panel/acl/view.pl:130 ../vhffs-panel/acl/view.pl:155
+#: ../vhffs-panel/acl/view.pl:203
 msgid "Can't access"
-msgstr "Ne pas pas accéder"
+msgstr "Ne pas pas accéder"
 
 #: ../vhffs-panel/mail/password_box.pl:82
 msgid "Can't change password"
@@ -722,7 +771,7 @@
 #: ../vhffs-panel/mail/delete_box.pl:79
 #, 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:82
 #: ../vhffs-panel/admin/mail/change_forward.pl:82
@@ -742,7 +791,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:56
 msgid "Cannot add this user in this group"
@@ -750,7 +799,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"
@@ -766,18 +815,22 @@
 
 #: ../vhffs-panel/mailinglist/delete.pl:75
 msgid "Cannot commit changes on this object, will NOT be deleted"
-msgstr "Ne peut pas mettre à jour l'objet, il ne sera PAS détruit"
+msgstr "Ne peut pas 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 spécifié est déjà pris"
+msgstr ""
+"Impossible de créer l'utilisateur. Le nom d'utilisateur que vous avez "
+"spécifié 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 minuscules"
+"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
@@ -818,8 +871,9 @@
 #: ../vhffs-panel/mail/change_forward.pl:53
 #: ../vhffs-panel/mail/save_catchall.pl:44
 #: ../vhffs-panel/mail/delete_box.pl:50 ../vhffs-panel/mail/password_box.pl:53
-#: ../vhffs-panel/mail/add_forward.pl:44 ../vhffs-panel/mail/prefs.pl:44
+#: ../vhffs-panel/mail/add_forward.pl:44 ../vhffs-panel/mail/prefs.pl:47
 #: ../vhffs-panel/mail/delete.pl:48 ../vhffs-panel/mail/add_account.pl:45
+#: ../vhffs-panel/mail/spambox.pl:53 ../vhffs-panel/mail/spamvirus.pl:53
 #: ../vhffs-panel/dns/delete_cname.pl:53 ../vhffs-panel/dns/delete_mx.pl:53
 #: ../vhffs-panel/dns/add_ns.pl:53 ../vhffs-panel/dns/prefs.pl:54
 #: ../vhffs-panel/dns/add_cname.pl:54 ../vhffs-panel/dns/add_a.pl:56
@@ -837,10 +891,11 @@
 #: ../vhffs-panel/mailinglist/add_sub.pl:57
 #: ../vhffs-panel/mailinglist/change_right.pl:58
 #: ../vhffs-panel/mailinglist/delete.pl:55 ../vhffs-panel/web/prefs.pl:42
+#: ../vhffs-panel/largefile/prefs.pl:64
 msgid "Cannot get informations on this object"
 msgstr "Impossible d'obtenir des informations sur cet objet"
 
-#: ../vhffs-panel/acl/view.pl:98
+#: ../vhffs-panel/acl/view.pl:103
 #, perl-format
 msgid "Cannot get informations on this object %s %s"
 msgstr "Impossible d'obtenir des informations sur cet objet %s %s"
@@ -852,6 +907,7 @@
 #: ../vhffs-panel/mail/delete_forward.pl:44
 #: ../vhffs-panel/mail/change_forward.pl:46
 #: ../vhffs-panel/mail/delete_box.pl:43 ../vhffs-panel/mail/password_box.pl:46
+#: ../vhffs-panel/mail/spambox.pl:46 ../vhffs-panel/mail/spamvirus.pl:46
 #: ../vhffs-panel/admin/mail/delete_forward.pl:45
 #: ../vhffs-panel/admin/mail/change_forward.pl:46
 #: ../vhffs-panel/admin/mail/delete_box.pl:45
@@ -866,23 +922,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:53
 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"
-
-#: ../vhffs-panel/svn/delete.pl:47
+msgstr "Impossible d'obtenir des informations sur ce dépôts suversion"
+
+#: ../vhffs-panel/svn/delete.pl:47 ../vhffs-panel/largefile/delete.pl:45
 msgid "Cannot retrieve informations about this repository"
-msgstr "Impossible de rappatrier des informations à propos de ce dépôt"
+msgstr "Impossible de rappatrier des informations à propos de ce dépôt"
 
 #: ../vhffs-panel/mailinglist/save_options.pl:124
 msgid "Cannot save"
@@ -894,11 +950,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"
@@ -906,29 +962,33 @@
 
 #: ../vhffs-panel/mail/save_catchall.pl:70
 msgid "Catchall address successfully added"
-msgstr "Adresse de type catchall a été ajoutée avec succès"
-
-#: ../vhffs-panel/mail/prefs.pl:68
+msgstr "Adresse de type catchall a été ajoutée avec succès"
+
+#: ../vhffs-panel/mail/prefs.pl:71
 msgid "Catchall adress"
 msgstr "Adresse de type catchall"
 
-#: ../vhffs-panel/mail/prefs.pl:71
+#: ../vhffs-panel/mail/prefs.pl:74
 msgid "Catchall mail"
 msgstr ""
 
-#: ../vhffs-listengine/src/archives/show_msg.pl:76
+#: ../vhffs-listengine/src/archives/show_msg.pl:77
 msgid "Cc: "
 msgstr "Cc: "
 
-#: ../vhffs-panel/mail/prefs.pl:133
+#: ../vhffs-panel/mail/prefs.pl:180
 msgid "Change Forward"
 msgstr "Modifier la redirection"
 
-#: ../vhffs-panel/mail/prefs.pl:117 ../vhffs-panel/admin/mail/edit.pl:111
+#: ../vhffs-panel/mail/prefs.pl:121 ../vhffs-panel/admin/mail/edit.pl:111
 msgid "Change Password"
 msgstr "Modifier le mot de passe"
 
-#: ../vhffs-panel/mail/prefs.pl:92
+#: ../vhffs-panel/user/prefs_save.pl:207 ../vhffs-panel/user/prefs_save.pl:219
+msgid "Change anti-virus status for your account\n"
+msgstr "Ajouter ou supprimer les protections anti-virus ou anti-spam\n"
+
+#: ../vhffs-panel/mail/prefs.pl:95
 msgid "Change catchall forward"
 msgstr "Changer la redirection catchall"
 
@@ -936,7 +996,7 @@
 msgid "Change forward"
 msgstr "Modifier la redirection"
 
-#: ../vhffs-listengine/src/archives/archives.pl:49
+#: ../vhffs-listengine/src/archives/archives.pl:88
 msgid "Change language"
 msgstr "Changer le langage"
 
@@ -944,15 +1004,19 @@
 msgid "Change rights\n"
 msgstr "Changer les droits\n"
 
-#: ../vhffs-listengine/src/archives/archives.pl:48
+#: ../vhffs-panel/user/prefs_save.pl:180 ../vhffs-panel/user/prefs_save.pl:191
+msgid "Change spam protection status for your account\n"
+msgstr "Activer/supprimer la protection anti-spam pour ce compte\n"
+
+#: ../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"
 msgstr "Changer ce site web"
 
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:60 ../vhffs-panel/admin/su.pl:45
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:59 ../vhffs-panel/admin/su.pl:45
 msgid "Change user-id"
 msgstr "Changer d'identifiant utilisateur"
 
@@ -964,12 +1028,13 @@
 #: ../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-panel/admin/moderation_submit.pl:77
+#: ../vhffs-robots/src/refused_largefile.pl:47
+#: ../vhffs-panel/admin/moderation_submit.pl:77 ../vhffs-irc/modobot.pl:371
 msgid "Cheers,"
 msgstr "Respectueusement,"
 
 #: ../vhffs-panel/admin/user/edit.pl:74 ../vhffs-panel/admin/user/show.pl:74
-#: ../vhffs-panel/user/prefs.pl:53 ../vhffs-panel/subscribe.pl:41
+#: ../vhffs-panel/user/prefs.pl:52 ../vhffs-panel/subscribe.pl:41
 msgid "City"
 msgstr "Ville"
 
@@ -981,16 +1046,16 @@
 msgid "Codes do not match"
 msgstr "Les codes ne correspondent pas"
 
-#: ../vhffs-panel/user/prefs.pl:57
+#: ../vhffs-panel/user/prefs.pl:56
 msgid "Confirm Password"
-msgstr ""
+msgstr "Confirmation du mot de passe"
 
 #: ../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:55 ../vhffs-panel/subscribe.pl:42
+#: ../vhffs-panel/user/prefs.pl:54 ../vhffs-panel/subscribe.pl:42
 msgid "Country"
 msgstr "Pays"
 
@@ -1007,74 +1072,75 @@
 #: ../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/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:34
 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:34
 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:31
 msgid "Create a Project"
-msgstr "Créer un groupe/projet"
+msgstr "Créer un groupe/projet"
 
 #: ../vhffs-panel/svn/create.pl:40
 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:34
 msgid "Create a mail space"
-msgstr "Créer un espace mail"
+msgstr "Créer un espace mail"
 
 #: ../vhffs-panel/mailinglist/create.pl:57
 msgid "Create a new mailing list"
-msgstr "Créer une liste de diffusion"
+msgstr "Créer une liste de diffusion"
 
 #: ../vhffs-panel/web/create.pl:43
 msgid "Create a web space"
-msgstr "Créer un site web"
-
-#: ../vhffs-api/src/Vhffs/Functions.pm:335
+msgstr "Créer un site web"
+
+#: ../vhffs-api/src/Vhffs/Functions.pm:342
 #: ../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:89
 #: ../vhffs-panel/admin/mysql/edit.pl:89
 #: ../vhffs-panel/admin/object/edit.pl:90 ../vhffs-panel/admin/web/edit.pl:102
 #: ../vhffs-panel/admin/user/edit.pl:113
 msgid "Created"
-msgstr "Créé"
-
-#: ../vhffs-api/src/Vhffs/Functions.pm:331
+msgstr "Créé"
+
+#: ../vhffs-api/src/Vhffs/Functions.pm:338
 #: ../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:87
 #: ../vhffs-panel/admin/mysql/edit.pl:87
 #: ../vhffs-panel/admin/object/edit.pl:88 ../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/admin/cvs/edit.pl:64 ../vhffs-panel/admin/cvs/show.pl:63
 msgid "Cvsroot"
 msgstr "cvsroot"
 
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:133
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:132
 msgid "DB Search"
-msgstr "Recherche de base de données"
+msgstr "Recherche de base de données"
 
 #: ../vhffs-api/src/Vhffs/Panel/DNS.pm:123
 msgid "DNS"
-msgstr ""
+msgstr "Nom de domaine"
 
 #: ../vhffs-panel/admin/moderation.pl:144
 msgid "DNS awaiting validation"
@@ -1091,31 +1157,32 @@
 #: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:113
 #: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:87
 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:55
 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:67
 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"
@@ -1123,23 +1190,24 @@
 
 #: ../vhffs-panel/admin/object/edit.pl:65
 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"
-
-#: ../vhffs-panel/mail/prefs.pl:102 ../vhffs-panel/dns/prefs.pl:103
+msgstr "Décembre"
+
+#: ../vhffs-panel/mail/prefs.pl:105 ../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:82 ../vhffs-panel/cvs/prefs.pl:80
-#: ../vhffs-panel/group/prefs.pl:64 ../vhffs-panel/mysql/prefs.pl:89
+#: ../vhffs-panel/group/prefs.pl:65 ../vhffs-panel/mysql/prefs.pl:89
 #: ../vhffs-panel/svn/prefs.pl:97 ../vhffs-panel/mailinglist/prefs.pl:167
-#: ../vhffs-panel/web/prefs.pl:101 ../vhffs-panel/user/prefs.pl:76
+#: ../vhffs-panel/web/prefs.pl:101 ../vhffs-panel/user/prefs.pl:77
+#: ../vhffs-panel/largefile/prefs.pl:104
 msgid "Delete"
 msgstr "Supprimer"
 
-#: ../vhffs-panel/user/prefs.pl:71
+#: ../vhffs-panel/user/prefs.pl:72
 msgid "Delete YOUR user"
 msgstr "Supprimer votre compte utilisateur"
 
@@ -1149,17 +1217,21 @@
 
 #: ../vhffs-panel/pgsql/prefs.pl:77
 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:84
 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"
 msgstr "Supprimer ce nom de domaine"
 
-#: ../vhffs-panel/mail/prefs.pl:134 ../vhffs-panel/admin/mail/edit.pl:113
+#: ../vhffs-panel/largefile/prefs.pl:99
+msgid "Delete this file from servers"
+msgstr "Supprimer ce fichier des serveurs"
+
+#: ../vhffs-panel/mail/prefs.pl:181 ../vhffs-panel/admin/mail/edit.pl:113
 msgid "Delete this forward"
 msgstr "Supprimer cette redirection"
 
@@ -1167,11 +1239,11 @@
 msgid "Delete this list"
 msgstr "Supprimer cette liste"
 
-#: ../vhffs-panel/mail/prefs.pl:118 ../vhffs-panel/admin/mail/edit.pl:98
+#: ../vhffs-panel/mail/prefs.pl:122 ../vhffs-panel/admin/mail/edit.pl:98
 msgid "Delete this mail account"
 msgstr "Supprimer ce compte mail"
 
-#: ../vhffs-panel/mail/prefs.pl:97
+#: ../vhffs-panel/mail/prefs.pl:100
 msgid "Delete this mail domain"
 msgstr "Supprimer ce domaine de mail"
 
@@ -1179,13 +1251,13 @@
 msgid "Delete this mailing"
 msgstr "Supprimer cet envoi en masse"
 
-#: ../vhffs-panel/cvs/prefs.pl:75 ../vhffs-panel/group/prefs.pl:59
+#: ../vhffs-panel/cvs/prefs.pl:75 ../vhffs-panel/group/prefs.pl:60
 msgid "Delete this project"
 msgstr "Supprimer ce groupe/projet"
 
 #: ../vhffs-panel/svn/prefs.pl:92
 msgid "Delete this repository"
-msgstr "Supprimer ce dépôt"
+msgstr "Supprimer ce dépôt"
 
 #: ../vhffs-panel/web/prefs.pl:96
 msgid "Delete this web area"
@@ -1201,7 +1273,8 @@
 #: ../vhffs-panel/admin/web/show.pl:70 ../vhffs-panel/cvs/create.pl:40
 #: ../vhffs-panel/group/create.pl:36 ../vhffs-panel/mysql/create.pl:42
 #: ../vhffs-panel/svn/create.pl:47 ../vhffs-panel/public/allgroups.pl:46
-#: ../vhffs-panel/public/group.pl:54 ../vhffs-panel/public/lastgroups.pl:45
+#: ../vhffs-panel/public/group.pl:56 ../vhffs-panel/public/lastgroups.pl:45
+#: ../vhffs-panel/largefile/create.pl:42
 msgid "Description"
 msgstr "Description"
 
@@ -1212,6 +1285,14 @@
 #: ../vhffs-panel/dns/prefs.pl:127
 msgid "Destination"
 msgstr "Destination"
+
+#: ../vhffs-panel/mail/prefs.pl:135
+msgid "Disable anti-spam"
+msgstr "Désactiver l'anti-spam"
+
+#: ../vhffs-panel/mail/prefs.pl:154
+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
@@ -1222,6 +1303,10 @@
 msgid "Doe not exist in the VHFFS database"
 msgstr "N'existe pas sur cette plate-forme VHFFS"
 
+#: ../vhffs-panel/public/largefile.pl:55
+msgid "Does not support largefile"
+msgstr "Ne supporte pas l'hébergement de fichiers"
+
 #: ../vhffs-panel/mail/create.pl:35 ../vhffs-panel/admin/mail/edit.pl:66
 #: ../vhffs-panel/admin/mail/show.pl:66
 msgid "Domain"
@@ -1231,7 +1316,7 @@
 msgid "Domain Name"
 msgstr "Nom de domaine"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:409
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:433
 msgid "Domains for this group"
 msgstr "Domaines pour ce groupe"
 
@@ -1239,9 +1324,18 @@
 msgid "Don't use Crawl"
 msgstr "Ne pas utiliser le crawl"
 
+#: ../vhffs-panel/public/largefile.pl:113
+msgid "Download"
+msgstr "Télécharger"
+
+#: ../vhffs-panel/public/largefile.pl:78
+#, perl-format
+msgid "Download %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"
@@ -1253,7 +1347,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:60
 msgid "Edit Object"
@@ -1261,7 +1355,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"
@@ -1279,60 +1373,85 @@
 msgid "Email adress"
 msgstr "Adresse mail"
 
-#: ../vhffs-panel/mail/prefs.pl:70
+#: ../vhffs-panel/mail/prefs.pl:139
+msgid "Enable anti-spam"
+msgstr "Activer l'anti-spam"
+
+#: ../vhffs-panel/mail/prefs.pl:158
+msgid "Enable anti-virus"
+msgstr "Activer l'anti-virus"
+
+#: ../vhffs-panel/mail/prefs.pl:73
 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 !"
 msgstr "Erreur"
 
-#: ../vhffs-panel/user/prefs_save.pl:125
+#: ../vhffs-panel/user/prefs_save.pl:144
 msgid ""
 "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 compte mail"
-
-#: ../vhffs-listengine/src/archives/show_msg.pl:44
-#: ../vhffs-listengine/src/archives/archives.pl:78
+"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
+msgid "Error for spam protection\n"
+msgstr "Erreur sur la protection anti-spam\n"
+
+#: ../vhffs-panel/user/prefs_save.pl:211 ../vhffs-panel/user/prefs_save.pl:223
+msgid "Error for virus protection\n"
+msgstr "Erreur sur la protection par anti-virus\n"
+
+#: ../vhffs-listengine/src/archives/show_msg.pl:45
+#: ../vhffs-listengine/src/archives/archives.pl:105
 msgid "Error in listname"
 msgstr "Erreur dans le nom de la liste"
 
+#: ../vhffs-panel/mail/spambox.pl:88 ../vhffs-panel/mail/spamvirus.pl:88
+msgid "Error when applying changes"
+msgstr "Une erreur est survenue lors de l'enregistrement des modifications"
+
 #: ../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:53
 msgid "Error, password can be only alphanumeric caracters"
-msgstr "Erreur, les mot de passe peuvent seulement contenir des caractères alphanumériques"
+msgstr ""
+"Erreur, les mot de passe peuvent seulement contenir des caractères "
+"alphanumériques"
 
 #: ../vhffs-panel/group/delete.pl:52
 msgid ""
 "Error, your group is not empty. Please remove all objects from this group "
 "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"
+"Erreur, votre groupe n'est pas vide. Merci de supprimer tous les services "
+"associés à votre groupe et de réessayer"
 
 #: ../vhffs-panel/group/prefs.pl:39
 msgid "Error. This group doesn't exists"
 msgstr "Erreur. Ce groupe n'existe pas"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:107
+#: ../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"
@@ -1340,37 +1459,61 @@
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:377
 msgid "February"
-msgstr "Février"
+msgstr "Février"
+
+#: ../vhffs-panel/public/largefile.pl:79 ../vhffs-panel/public/largefile.pl:84
+msgid "File type"
+msgstr "Type du fichier"
+
+#: ../vhffs-panel/largefile/create.pl:34 ../vhffs-panel/largefile/prefs.pl:87
+msgid "Filename"
+msgstr "Nom de fichier"
+
+#: ../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"
+
+#: ../vhffs-panel/admin/largefile/list.pl:82
+msgid "Filename(size in Mb/type)"
+msgstr "Nom du fichier(taille en Mo/type)"
+
+#: ../vhffs-panel/admin/moderation.pl:445
+msgid "Files awaiting validation"
+msgstr "Fichiers en attente de validation"
+
+#: ../vhffs-panel/largefile/create.pl:36
+msgid "Filetype (extension, ...)"
+msgstr "Type du fichier (extension, ...)"
 
 #: ../vhffs-panel/admin/user/edit.pl:65 ../vhffs-panel/admin/user/show.pl:66
 #: ../vhffs-panel/public/lastusers.pl:45 ../vhffs-panel/public/user.pl:56
-#: ../vhffs-panel/user/prefs.pl:50 ../vhffs-panel/subscribe.pl:38
+#: ../vhffs-panel/user/prefs.pl:49 ../vhffs-panel/subscribe.pl:38
 msgid "Firstname"
 msgstr "Nom"
 
-#: ../vhffs-panel/user/prefs.pl:135
+#: ../vhffs-panel/user/prefs.pl:141
 #, perl-format
 msgid "Forward emails from %s@%s to %s"
-msgstr "Redirigé les emails de %s@%s à %s"
+msgstr "Redirigé les emails de %s@%s à %s"
 
 #: ../vhffs-panel/admin/mail/edit.pl:84 ../vhffs-panel/admin/mail/show.pl:84
 msgid "Forward for"
 msgstr "Redirection pour"
 
-#: ../vhffs-panel/mail/prefs.pl:87
+#: ../vhffs-panel/mail/prefs.pl:90
 msgid "Forward mail"
 msgstr "Adresse de redirection"
 
 #: ../vhffs-panel/mail/change_forward.pl:92
 #: ../vhffs-panel/admin/mail/change_forward.pl:92
 msgid "Forwarding successfully added"
-msgstr "Redirection ajoutée avec succès"
-
-#: ../vhffs-panel/mail/prefs.pl:82
+msgstr "Redirection ajoutée avec succès"
+
+#: ../vhffs-panel/mail/prefs.pl:85
 msgid "Forwards"
 msgstr "Redirections"
 
-#: ../vhffs-listengine/src/archives/show_msg.pl:74
+#: ../vhffs-listengine/src/archives/show_msg.pl:75
 msgid "From: "
 msgstr "De: "
 
@@ -1381,42 +1524,45 @@
 
 #: ../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:54
+msgid "General"
+msgstr "Général"
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:55
-msgid "General"
-msgstr "Général"
-
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:56
 msgid "Get Statistics"
 msgstr "Afficher les statistiques"
 
-#: ../vhffs-panel/lost.pl:29
+#: ../vhffs-panel/lost.pl:27
 msgid "Give me a new password"
 msgstr "Donnez moi un nouveau mot de passe"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:236
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:260
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:286
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:312
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:338
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:365
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:391
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:418
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:235
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:259
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:285
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:311
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:337
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:364
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:390
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:417
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:442
 msgid "Go to admin"
-msgstr "Aller à l'administration"
-
-#: ../vhffs-panel/dns/prefs.pl:230 ../vhffs-panel/mailinglist/prefs.pl:177
+msgstr "Aller à l'administration"
+
+#: ../vhffs-panel/dns/prefs.pl:230 ../vhffs-panel/svn/prefs.pl:122
+#: ../vhffs-panel/mailinglist/prefs.pl:177
+#: ../vhffs-panel/largefile/prefs.pl:114
 msgid "Go to object-part admin"
-msgstr "Aller à l'administration de la partie objet"
+msgstr "Aller à l'administration de la partie objet"
 
 #: ../vhffs-panel/auth.pl:50
 msgid "Go to public area"
 msgstr "Aller dans la zone publique"
 
-#: ../vhffs-panel/svn/prefs.pl:58
+#: ../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
@@ -1426,50 +1572,54 @@
 msgid "Group"
 msgstr "Groupe"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:223
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:222
 #, perl-format
 msgid "Group %s"
 msgstr "Groupe %s"
 
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:80
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:79
 msgid "Group Admin"
 msgstr "Administration des groupes"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:218
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:217
 msgid "Group error"
 msgstr "Erreur sur le groupe"
 
+#: ../vhffs-panel/largefile/create.pl:39
+msgid "Group for this new file"
+msgstr "Groupes de ce fichier"
+
 #: ../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:42
 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:37 ../vhffs-panel/mysql/create.pl:36
 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:59
 msgid "Group owning this mailing list"
-msgstr "Groupe propriétaire de cette liste"
+msgstr "Groupe propriétaire de cette liste"
 
 #: ../vhffs-panel/mail/create.pl:36 ../vhffs-panel/web/create.pl:46
 msgid "Group owning this web space"
-msgstr "Groupe propriétaire de ce site web"
+msgstr "Groupe propriétaire de ce site web"
 
 #: ../vhffs-panel/public/index.pl:40
 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:115 ../vhffs-panel/public/allgroups.pl:42
-#: ../vhffs-panel/public/group.pl:53 ../vhffs-panel/public/lastgroups.pl:41
+#: ../vhffs-panel/acl/view.pl:120 ../vhffs-panel/public/allgroups.pl:42
+#: ../vhffs-panel/public/group.pl:55 ../vhffs-panel/public/lastgroups.pl:41
 msgid "Groupname"
 msgstr "Nom du groupe"
 
@@ -1489,7 +1639,11 @@
 msgid "Groups stats"
 msgstr "Statistiques des groupes"
 
-#: ../vhffs-panel/user/prefs_save.pl:92
+#: ../vhffs-panel/public/largefile.pl:81 ../vhffs-panel/largefile/create.pl:40
+msgid "Hash"
+msgstr "Hash du fichier"
+
+#: ../vhffs-panel/user/prefs_save.pl:91
 #, perl-format
 msgid ""
 "Hello %s %s,\n"
@@ -1503,7 +1657,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"
@@ -1514,7 +1668,7 @@
 msgid "Hello and welcome on listengine help\n"
 msgstr "Bonjour et bienvenue dans l'aide de listengine\n"
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:43
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:45
 msgid "Help"
 msgstr "Aide"
 
@@ -1524,7 +1678,7 @@
 
 #: ../vhffs-panel/alert.pl:38
 msgid "Here, you can report a bug to the admin team"
-msgstr "Ici, vous pouvez rapporter un bug à l'équipe d'administration"
+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
@@ -1541,6 +1695,8 @@
 #: ../vhffs-api/src/Vhffs/Panel/Web.pm:131
 #: ../vhffs-api/src/Vhffs/Panel/Mail.pm:131
 #: ../vhffs-api/src/Vhffs/Panel/Mail.pm:139
+#: ../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
 #: ../vhffs-panel/admin/pgsql/edit.pl:72 ../vhffs-panel/admin/pgsql/show.pl:69
 #: ../vhffs-panel/admin/cvs/edit.pl:71 ../vhffs-panel/admin/cvs/show.pl:69
@@ -1558,11 +1714,35 @@
 
 #: ../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/largefile/create.pl:33
+msgid "Host a file"
+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"
+
+#: ../vhffs-api/src/Vhffs/Panel/LargeFile.pm:34
+msgid "Hosted files"
+msgstr "Fichiers hébergés"
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:196
+msgid "Hosted files admin"
+msgstr "Administration des fichiers hébergés"
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:408 ../vhffs-panel/public/group.pl:165
+msgid "Hosted files for this group"
+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:30
 msgid "I've lost my password"
@@ -1582,8 +1762,8 @@
 "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é de"
-"souscrire à cette liste, merci de ne pas répondre à ce mail\n"
+"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
@@ -1593,9 +1773,10 @@
 #: ../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
 #, 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:52
 msgid ""
@@ -1604,8 +1785,8 @@
 "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"
+"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
@@ -1615,8 +1796,9 @@
 #: ../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
 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"
@@ -1626,17 +1808,21 @@
 msgid "Invalid domain name"
 msgstr "Nom de domaine invalide"
 
+#: ../vhffs-panel/public/largefile.pl:70
+msgid "Invalid file"
+msgstr "Fichier invalide"
+
 #: ../vhffs-panel/mail/submit.pl:47
 msgid "Invalid mail domain"
 msgstr "Nom de domaine mail invalide"
 
 #: ../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"
@@ -1650,7 +1836,7 @@
 msgid "June"
 msgstr "Juin"
 
-#: ../vhffs-panel/user/prefs.pl:58
+#: ../vhffs-panel/user/prefs.pl:57
 msgid "Language"
 msgstr "Langage"
 
@@ -1666,27 +1852,43 @@
 
 #: ../vhffs-panel/admin/user/edit.pl:66 ../vhffs-panel/admin/user/show.pl:67
 #: ../vhffs-panel/public/lastusers.pl:47 ../vhffs-panel/public/user.pl:58
-#: ../vhffs-panel/user/prefs.pl:51 ../vhffs-panel/subscribe.pl:39
+#: ../vhffs-panel/user/prefs.pl:50 ../vhffs-panel/subscribe.pl:39
 msgid "Lastname"
-msgstr "Prénom"
-
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:119
+msgstr "Prénom"
+
+#: ../vhffs-panel/largefile/create.pl:37 ../vhffs-panel/largefile/prefs.pl:90
+msgid "Licence"
+msgstr "Licence"
+
+#: ../vhffs-panel/largefile/submit.pl:52
+msgid ""
+"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 ."
+
+#: ../vhffs-panel/public/largefile.pl:82
+msgid "Licence of this file"
+msgstr "Licence de ce fichier"
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:118
 msgid "List all CVS"
-msgstr "Lister tous les dépôts cvs"
-
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:132
+msgstr "Lister tous les dépôts cvs"
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:131
 msgid "List all DBs"
-msgstr "Liste toutes les bases de données"
-
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:172
+msgstr "Liste toutes les bases de données"
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:171
 msgid "List all Postgres DB"
-msgstr "Lister toutes les bases de données postgres"
-
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:105
+msgstr "Lister toutes les bases de données postgres"
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:104
 msgid "List all SVN repo"
-msgstr "Lister tous les dépôts subversion"
-
-#: ../vhffs-panel/mail/prefs.pl:74
+msgstr "Lister tous les dépôts subversion"
+
+#: ../vhffs-panel/mail/prefs.pl:77
 msgid "List all accounts"
 msgstr "Lister tous les comptes utilisateur"
 
@@ -1694,23 +1896,27 @@
 msgid "List all all A reccords"
 msgstr "Lister tous les enregistrements de type A"
 
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:146
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:145
 msgid "List all domain names"
 msgstr "Lister tous les noms de domaine"
 
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:185
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:184
 msgid "List all domains"
 msgstr "Lister tous les domaines"
 
-#: ../vhffs-panel/mail/prefs.pl:83
+#: ../vhffs-panel/mail/prefs.pl:86
 msgid "List all forwardings for this domain"
 msgstr "Liste de toutes les redirections pour ce domaine"
 
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:81
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:80
 msgid "List all groups"
 msgstr "Lister tous les groupes"
 
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:159
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:197
+msgid "List all hosted files"
+msgstr "Afficher tous les fichier hébergés"
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:158
 msgid "List all lists"
 msgstr "Lister toutes les listes de diffusion"
 
@@ -1718,11 +1924,11 @@
 msgid "List all members"
 msgstr "Lister tous les membres"
 
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:63
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:62
 msgid "List all objects"
 msgstr "Lister tous les objets"
 
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:73
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:72
 msgid "List all users"
 msgstr "Lister tous les utilisateurs"
 
@@ -1732,15 +1938,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"
@@ -1766,66 +1972,66 @@
 msgid "List of all websites"
 msgstr "Liste de tous les sites web"
 
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:91
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:90
 msgid "List websites"
 msgstr "Lister les sites web"
 
 #: ../vhffs-panel/mailinglist/delete.pl:67
 msgid "List will NOT be deleted"
-msgstr "La liste de diffusion ne sera PAS supprimée"
-
-#: ../vhffs-panel/admin/stats.pl:128
+msgstr "La liste de diffusion ne sera PAS supprimée"
+
+#: ../vhffs-panel/public/group.pl:192
+msgid "List(s) for this group"
+msgstr "Liste(s) de diffusion de ce groupe"
+
+#: ../vhffs-panel/admin/stats.pl:129
 msgid "Listengine stats"
 msgstr "Statistiques de listengine"
 
-#: ../vhffs-panel/mail/prefs.pl:86
+#: ../vhffs-panel/mail/prefs.pl:89
 msgid "Local Part"
 msgstr "Partie locale"
 
-#: ../vhffs-panel/mail/prefs.pl:77
+#: ../vhffs-panel/mail/prefs.pl:80
 msgid "Local Part for this account"
 msgstr "Partie locale de ce compte"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:140 ../vhffs-panel/logout.pl:33
-#: ../vhffs-panel/login.pl:49 ../vhffs-panel/login.pl:90
-#: ../vhffs-panel/lost_ack.pl:46 ../vhffs-panel/lost_ack.pl:57
-#: ../vhffs-panel/auth.pl:29
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:139 ../vhffs-panel/login.pl:47
+#: ../vhffs-panel/login.pl:88 ../vhffs-panel/lost_ack.pl:41
+#: ../vhffs-panel/lost_ack.pl:52
 msgid "Login"
 msgstr "Nom d'utilisateur"
 
-msgid "Access to panel"
-msgstr "Accéder au panel"
-
-#: ../vhffs-panel/login.pl:79
+#: ../vhffs-panel/login.pl:77
 msgid "Login OK, please wait..."
-msgstr "Authentification réussie, merci de patienter ..."
-
-#: ../vhffs-panel/login.pl:48 ../vhffs-panel/login.pl:89
+msgstr "Authentification réussie, merci de patienter ..."
+
+#: ../vhffs-panel/login.pl:46 ../vhffs-panel/login.pl:87
 msgid "Login failed !"
-msgstr "Authentification échouée"
-
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:45
+msgstr "Authentification échouée"
+
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:47
 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"
-
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:131
+msgstr "Champs mx modifiés avec succès"
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:130
 msgid "MYSQL Admin"
-msgstr "Administration des bases de données mysql"
+msgstr "Administration des bases de données mysql"
 
 #: ../vhffs-api/src/Vhffs/Panel/Mail.pm:117
 #: ../vhffs-panel/admin/user/edit.pl:77 ../vhffs-panel/admin/user/show.pl:77
 msgid "Mail"
 msgstr "Mail"
 
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:145
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:144
 msgid "Mail Admin"
 msgstr "Administration des domaines mail"
 
-#: ../vhffs-panel/mail/prefs.pl:65
+#: ../vhffs-panel/mail/prefs.pl:68
 msgid "Mail Administration for domain "
 msgstr "Administration des mails pour le domaine "
 
@@ -1835,9 +2041,9 @@
 
 #: ../vhffs-panel/mail/submit.pl:53
 msgid "Mail area successfully created !"
-msgstr "Domaine mail créé avec succès"
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:382
+msgstr "Domaine mail créé avec succès"
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:381
 msgid "Mail domain for this group"
 msgstr "Domaines mail pour ce groupe"
 
@@ -1851,24 +2057,24 @@
 
 #: ../vhffs-panel/admin/mailing/mailing_submit.pl:58
 msgid "Mail successfully sent"
-msgstr "Mail envoyé avec succès"
-
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:61
+msgstr "Mail envoyé avec succès"
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:60
 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
 msgid "Mail with id %s"
 msgstr "Mail avec l'identifiant %s"
 
-#: ../vhffs-panel/user/prefs_save.pl:91
+#: ../vhffs-panel/user/prefs_save.pl:90
 msgid "Mailbox modified"
-msgstr "Boîte mail modifiée"
-
-#: ../vhffs-panel/user/prefs_save.pl:134
+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"
+msgstr "Boîte mail ajoutée avec succès"
 
 #: ../vhffs-api/src/Vhffs/Panel/Mailinglist.pm:100
 msgid "Mailing List"
@@ -1876,35 +2082,36 @@
 
 #: ../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"
-
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:158
+msgstr "Liste de diffusion créé avec succès"
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:157
 msgid "Mailing-lists Admin"
 msgstr "Administrer les listes de diffusion"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:356
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:355
 msgid "Mailing-lists for this group"
 msgstr "Listes de diffusion pour ce groupe"
 
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:62
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:61
 msgid "Manage mailings"
-msgstr "Gérer les envoi de masse"
+msgstr "Gérer les envoi de masse"
 
 #: ../vhffs-panel/mailinglist/prefs.pl:91
 msgid "Manage members"
-msgstr "Gérer les membres"
+msgstr "Gérer les membres"
 
 #: ../vhffs-panel/group/join_group.pl:75
 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"
@@ -1918,18 +2125,18 @@
 msgid "Message"
 msgstr "Message"
 
-#: ../vhffs-listengine/src/archives/show_msg.pl:84
+#: ../vhffs-listengine/src/archives/show_msg.pl:89
 #, perl-format
 msgid "Message from list %s"
 msgstr "Message de la liste %s"
 
 #: ../vhffs-panel/alert_submit.pl:44
 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:50
 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
@@ -1937,33 +2144,37 @@
 msgid "Message with id: %s"
 msgstr "Message avec l'identifiant: %s"
 
+#: ../vhffs-panel/public/largefile.pl:99
+msgid "Mirrors"
+msgstr "Serveurs mirroirs"
+
 #: ../vhffs-panel/mailinglist/prefs.pl:81
 msgid "Moderated"
-msgstr "Modéré"
-
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:57
+msgstr "Modéré"
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:56
 #: ../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"
 msgstr "Moderateur"
 
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:49
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:48
 msgid "Moderator account : "
-msgstr "Compte modérateur : "
-
-#: ../vhffs-api/src/Vhffs/Functions.pm:359
+msgstr "Compte modérateur : "
+
+#: ../vhffs-api/src/Vhffs/Functions.pm:366
 #: ../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:94
 #: ../vhffs-panel/admin/mysql/edit.pl:94
 #: ../vhffs-panel/admin/object/edit.pl:95 ../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:355
+msgstr "Modification(s) appliquée(s)"
+
+#: ../vhffs-api/src/Vhffs/Functions.pm:362
 #: ../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:93
 #: ../vhffs-panel/admin/mysql/edit.pl:93
@@ -1974,55 +2185,55 @@
 
 #: ../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:70
 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:76
-#: ../vhffs-panel/cvs/prefs.pl:74 ../vhffs-panel/group/prefs.pl:58
+#: ../vhffs-panel/cvs/prefs.pl:74 ../vhffs-panel/group/prefs.pl:59
 #: ../vhffs-panel/mysql/prefs.pl:83 ../vhffs-panel/svn/prefs.pl:91
-#: ../vhffs-panel/web/prefs.pl:89 ../vhffs-panel/user/prefs.pl:60
+#: ../vhffs-panel/web/prefs.pl:89 ../vhffs-panel/user/prefs.pl:59
 msgid "Modify"
 msgstr "Modifier"
 
-#: ../vhffs-panel/acl/view.pl:155 ../vhffs-panel/acl/view.pl:203
+#: ../vhffs-panel/acl/view.pl:160 ../vhffs-panel/acl/view.pl:208
 msgid "Modify this ACL"
 msgstr "Modifier cette ACL"
 
 #: ../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"
@@ -2032,6 +2243,10 @@
 msgid "Modify this group"
 msgstr "Modifier ce groupe"
 
+#: ../vhffs-panel/admin/largefile/list.pl:77
+msgid "Modify this hosted file"
+msgstr "Modifier ce fichier"
+
 #: ../vhffs-panel/admin/mailing/list.pl:88
 msgid "Modify this list"
 msgstr "Modifier cette liste"
@@ -2046,7 +2261,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:113
 msgid "My Projects"
@@ -2058,15 +2273,15 @@
 
 #: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:112
 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:38
 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:39
 msgid "MySQL password for this database "
@@ -2076,11 +2291,11 @@
 msgid "MySQL stats"
 msgstr "Statistiques mysql"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:251
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:250
 msgid "Mysql database for this group"
-msgstr "Bases de données mysql pour ce groupe"
-
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:184
+msgstr "Bases de données mysql pour ce groupe"
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:183
 msgid "NS Admin"
 msgstr "Administration des noms de domaine"
 
@@ -2094,7 +2309,7 @@
 
 #: ../vhffs-panel/pgsql/prefs.pl:63 ../vhffs-panel/mysql/prefs.pl:70
 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"
@@ -2113,41 +2328,41 @@
 
 #: ../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"
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:320
+msgstr "Aucun champs CNAME trouvé pour ce domaine"
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:319
 msgid "No CVS repository for this group"
-msgstr "Aucun dépôt cvs pour ce groupe"
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:426
+msgstr "Aucun dépôt cvs pour ce groupe"
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:450
 msgid "No DNS domain for this group"
 msgstr "Aucun nom de domaine pour ce groupe"
 
 #: ../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"
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:399
+msgstr "Aucun domaine mail à valider"
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:398
 msgid "No Mail domain for this group"
 msgstr "Aucun domaine mail pour ce groupe"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:373
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:372
 msgid "No Mailing-list for this group"
 msgstr "Aucune liste de diffusion pour ce groupe"
 
@@ -2155,71 +2370,102 @@
 msgid "No NS available on this domain"
 msgstr "Aucun NS disponible pour ce domaine"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:294
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:293
 msgid "No PostgreSQL database for this group"
-msgstr "Aucune base de données postgres pour ce groupe"
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:346
+msgstr "Aucune base de données postgres pour ce groupe"
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:345
 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"
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:97
+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:125
+msgstr ""
+"Aucun cookie n'a été trouvé. Merci de vous réauthentifier ou d'accepter les "
+"cookies"
+
+#: ../vhffs-panel/public/group.pl:127
 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/admin/object/edit.pl:171 ../vhffs-panel/history.pl:85
 msgid "No event about this object"
-msgstr "Aucun évênement à propos de cet objet"
+msgstr "Aucun évênement à propos de cet objet"
+
+#: ../vhffs-panel/public/group.pl:183
+msgid "No file available for this group"
+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:57 ../vhffs-panel/public/allgroups.pl:55
-#: ../vhffs-panel/public/group.pl:65 ../vhffs-panel/public/user.pl:68
+#: ../vhffs-panel/public/group.pl:67 ../vhffs-panel/public/user.pl:68
 #: ../vhffs-panel/public/lastgroups.pl:54
 msgid "No group for this user"
 msgstr "Aucun groupe pour cet utilisateur"
 
+#: ../vhffs-panel/public/largefile.pl:89
+msgid "No hash"
+msgstr "Pas de hash"
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:425
+msgid "No hosted files for this group"
+msgstr "Aucun hébergement de fichiers pour ce groupe"
+
+#: ../vhffs-panel/public/group.pl:207
+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"
+msgstr "Aucune liste de diffusion à valider"
 
 #: ../vhffs-panel/mailinglist/prefs.pl:158
 msgid "No member on this list"
 msgstr "Aucun membre sur cette liste de diffusion"
 
-#: ../vhffs-listengine/src/listengine.pl:589
+#: ../vhffs-listengine/src/listengine.pl:558
 msgid "No message to moderate"
-msgstr "Aucun message à modérer"
+msgstr "Aucun message à modérer"
 
 #: ../vhffs-panel/pgsql/prefs_save.pl:66
 msgid "No modification can be applied. Please check your fields."
-msgstr "Aucune modification ne peut être appliquées. Merci de vérifier les champs."
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:268
+msgstr ""
+"Aucune modification ne peut être appliquées. Merci de vérifier les champs."
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:267
 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"
-
-#: ../vhffs-panel/public/group.pl:149
+msgstr "Aucun dépôt à modérer"
+
+#: ../vhffs-panel/public/largefile.pl:105
+msgid "No server"
+msgstr "Aucun serveur"
+
+#: ../vhffs-panel/public/group.pl:154
 msgid "No subversion repository available for this group"
-msgstr "Aucun dépôt subversion disponible pour ce groupe"
-
-#: ../vhffs-panel/public/group.pl:43 ../vhffs-panel/public/user.pl:44
+msgstr "Aucun dépôt subversion disponible pour ce groupe"
+
+#: ../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
 msgid "No such user"
 msgstr "Ne trouve pas l'utilisateur"
 
@@ -2227,25 +2473,26 @@
 msgid "No such user on Vhffs"
 msgstr "Ne trouve pas l'utilisateur"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:244
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:243
 msgid "No webarea for this group"
 msgstr "Aucun site web pour ce groupe"
 
-#: ../vhffs-panel/public/group.pl:101
+#: ../vhffs-panel/public/group.pl:103
 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/user/prefs.pl:75
+#: ../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"
-
-#: ../vhffs-panel/mail/prefs.pl:101 ../vhffs-panel/pgsql/prefs.pl:81
-#: ../vhffs-panel/cvs/prefs.pl:79 ../vhffs-panel/group/prefs.pl:63
+msgstr "Non, je suis pas sûr, je préfère le garder"
+
+#: ../vhffs-panel/mail/prefs.pl:104 ../vhffs-panel/pgsql/prefs.pl:81
+#: ../vhffs-panel/cvs/prefs.pl:79 ../vhffs-panel/group/prefs.pl:64
 #: ../vhffs-panel/mysql/prefs.pl:88 ../vhffs-panel/svn/prefs.pl:96
 #: ../vhffs-panel/mailinglist/prefs.pl:166
+#: ../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:69
 #: ../vhffs-panel/mailinglist/add_sub.pl:69
@@ -2255,11 +2502,16 @@
 
 #: ../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"
 msgstr "Novembre"
+
+#: ../vhffs-robots/src/create_largefile.pl:61
+#, perl-format
+msgid "Now, you have to log in on the ftp server %s with\n"
+msgstr "Maintenant, vous pouvez vous authentifier sur le serveur ftp %s avec\n"
 
 #: ../vhffs-panel/acl/add_acl_user.pl:60
 #: ../vhffs-panel/acl/add_acl_group.pl:60 ../vhffs-panel/acl/submit.pl:59
@@ -2271,22 +2523,24 @@
 msgid "Object id"
 msgstr "Identifiant de l'objet"
 
-#: ../vhffs-panel/dns/prefs.pl:231 ../vhffs-panel/mailinglist/prefs.pl:178
+#: ../vhffs-panel/dns/prefs.pl:231 ../vhffs-panel/svn/prefs.pl:123
+#: ../vhffs-panel/mailinglist/prefs.pl:178
+#: ../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-api/src/Vhffs/Listengine/Intl.pm:409
 msgid "October"
 msgstr "Octobre"
 
-#: ../vhffs-panel/mail/prefs.pl:106 ../vhffs-panel/dns/prefs.pl:94
+#: ../vhffs-panel/mail/prefs.pl:109 ../vhffs-panel/dns/prefs.pl:94
 #: ../vhffs-panel/web/prefs.pl:94
 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 !"
@@ -2314,11 +2568,11 @@
 
 #: ../vhffs-panel/mailinglist/save_options.pl:128
 msgid "Options successfully modified"
-msgstr "Options modifiées avec succès"
+msgstr "Options modifiées avec succès"
 
 #: ../vhffs-panel/public/allwebsites.pl:42
 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
@@ -2328,43 +2582,51 @@
 #: ../vhffs-panel/admin/web/edit.pl:69 ../vhffs-panel/admin/web/show.pl:68
 #: ../vhffs-panel/group/create.pl:33
 msgid "Owner"
-msgstr "Propriétaire"
+msgstr "Propriétaire"
+
+#: ../vhffs-panel/admin/largefile/list.pl:83
+msgid "Owner group"
+msgstr "Groupe propriétaire"
 
 #: ../vhffs-panel/admin/user/edit.pl:195
 msgid "Owner of this group"
-msgstr "Propriétaire de ce groupe"
-
-#: ../vhffs-panel/login.pl:80
+msgstr "Propriétaire de ce groupe"
+
+#: ../vhffs-panel/login.pl:78
 msgid "Panel Access"
-msgstr "Accès au panel"
-
-#: ../vhffs-panel/mail/prefs.pl:78 ../vhffs-panel/admin/pgsql/edit.pl:66
+msgstr "Accès au panel"
+
+#: ../vhffs-panel/mail/prefs.pl:81 ../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:56 ../vhffs-panel/auth.pl:28
+#: ../vhffs-panel/user/prefs.pl:55 ../vhffs-panel/auth.pl:28
 msgid "Password"
 msgstr "Mot de passe"
 
 #: ../vhffs-panel/pgsql/prefs.pl:69 ../vhffs-panel/mysql/prefs.pl:76
 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"
-
-#: ../vhffs-panel/lost_ack.pl:56
+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:92
 msgid "Password successfully changed"
-msgstr "Le mot de passe a été modifié avec succès"
-
-#: ../vhffs-panel/user/prefs_save.pl:69
+msgstr "Le mot de passe a été modifié avec succès"
+
+#: ../vhffs-robots/src/create_largefile.pl:64
+msgid "Password: %s\n"
+msgstr "Mot de passe: %s\n"
+
+#: ../vhffs-panel/user/prefs_save.pl:68
 msgid "Passwords don't match"
 msgstr "Les mots de passe ne correspondent pas"
 
@@ -2393,7 +2655,9 @@
 msgid ""
 "Please fill in all fields, a mail containing your password will be sent to "
 "you"
-msgstr "Veuillez remplir tous les champs. Un mail contenant votre password vous sera envoyé"
+msgstr ""
+"Veuillez remplir tous les champs. Un mail contenant votre password vous sera "
+"envoyé"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:257
 msgid "Please read help of listengine\n"
@@ -2401,29 +2665,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"
-
-#: ../vhffs-panel/lost_ack.pl:45
+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 quelques minutes ..."
+msgstr ""
+"Veuillez patienter %s, un nouveau mot de passe va vous être envoyé dans "
+"quelques minutes ..."
 
 #: ../vhffs-panel/pgsql/prefs_save.pl:51 ../vhffs-panel/pgsql/prefs.pl:54
 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 quelques minutes"
-
-#: ../vhffs-panel/admin/moderation_submit.pl:76
+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"
@@ -2435,45 +2703,45 @@
 
 #: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:86
 msgid "PostgreSQL Databases"
-msgstr "Bases de données postgres"
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:277
+msgstr "Bases de données postgres"
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:276
 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:35
 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:36
 msgid "PostgreSQL password for this database"
 msgstr "Mot de passe"
 
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:171
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:170
 msgid "Postgres Admin"
 msgstr "Administration postgres"
 
 #: ../vhffs-panel/admin/moderation.pl:404
 msgid "Postgres database awaiting validation"
-msgstr "Bases de données postgres en attente de validation"
+msgstr "Bases de données postgres en attente de validation"
 
 #: ../vhffs-panel/mailinglist/prefs.pl:86
 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é: "
-
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:77
+msgstr "Priorité: "
+
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:79
 msgid "Project : "
 msgstr "Groupe/Projet : "
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:78
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:80
 msgid "Project Configuration"
 msgstr "Configuration du groupe/projet"
 
@@ -2487,19 +2755,19 @@
 
 #: ../vhffs-panel/group/prefs.pl:54
 msgid "Project Owner"
-msgstr "Propriétaire du groupe"
+msgstr "Propriétaire du groupe"
 
 #: ../vhffs-panel/group/prefs.pl:51
 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:68
 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
@@ -2512,12 +2780,12 @@
 
 #: ../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"
+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
@@ -2527,8 +2795,9 @@
 #: ../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
 msgid "Reason given : "
-msgstr "Raison donnée : "
+msgstr "Raison donnée : "
 
 #: ../vhffs-panel/subscribe.pl:47
 msgid "Recopy the code"
@@ -2543,10 +2812,11 @@
 #: ../vhffs-panel/admin/moderation.pl:345
 #: ../vhffs-panel/admin/moderation.pl:388
 #: ../vhffs-panel/admin/moderation.pl:430
+#: ../vhffs-panel/admin/moderation.pl:471
 msgid "Refuse"
 msgstr "Refuser"
 
-#: ../vhffs-panel/group/prefs.pl:77
+#: ../vhffs-panel/group/prefs.pl:83
 msgid "Remove this user from this group"
 msgstr "Supprimer cet utilisateur du groupe"
 
@@ -2556,29 +2826,29 @@
 
 #: ../vhffs-panel/cvs/create.pl:34 ../vhffs-panel/svn/create.pl:41
 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"
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:329
+msgstr "Droit modifiés avec succès"
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:328
 msgid "SVN repositories for this group"
-msgstr "Dépôts subversion pour ce groupe"
-
-#: ../vhffs-panel/public/group.pl:133
+msgstr "Dépôts subversion pour ce groupe"
+
+#: ../vhffs-panel/public/group.pl:138
 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"
@@ -2594,23 +2864,23 @@
 
 #: ../vhffs-panel/admin/cvs/search.pl:46
 msgid "Search for a CVS repository"
-msgstr "Chercher un dépôt cvs"
-
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:173
+msgstr "Chercher un dépôt cvs"
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:172
 msgid "Search for a PostgreSQL database"
-msgstr "Chercher une base de données postgres"
-
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:106
+msgstr "Chercher une base de données postgres"
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:105
 #: ../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"
-
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:186
+msgstr "Recher d'une base de données"
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:185
 msgid "Search for a domain"
 msgstr "Recherche d'un domaine"
 
@@ -2618,17 +2888,22 @@
 msgid "Search for a domain name"
 msgstr "Recherche d'un nom de domaine"
 
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:82
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:198
+#: ../vhffs-panel/admin/largefile/search.pl:47
+msgid "Search for a file"
+msgstr "Recherche d'un fichier hébergé"
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:81
 #: ../vhffs-panel/admin/group/search.pl:47
 msgid "Search for a group"
 msgstr "Recherche de groupe"
 
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:160
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:159
 #: ../vhffs-panel/admin/mailing/search.pl:47
 msgid "Search for a list"
 msgstr "Recherche d'une liste de diffusion"
 
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:147
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:146
 #: ../vhffs-panel/admin/mail/search.pl:47
 msgid "Search for a mail domain"
 msgstr "Recherche d'un domaine mail"
@@ -2637,60 +2912,76 @@
 msgid "Search for a web area"
 msgstr "Recherche d'un site web"
 
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:92 ../vhffs-panel/public/index.pl:45
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:91 ../vhffs-panel/public/index.pl:45
 msgid "Search for a website"
 msgstr "Recherche d'un site web"
 
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:64
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:63
 msgid "Search for an object"
 msgstr "Recherche d'un objet"
 
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:74
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:73
 #: ../vhffs-panel/admin/user/search.pl:47
 msgid "Search for an user"
 msgstr "Recherche d'un utilisateur"
 
 #: ../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 "
+msgstr "Résultat de la recherche "
 
 #: ../vhffs-panel/admin/mailing/list.pl:51
 #: ../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:41 ../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"
-
-#: ../vhffs-panel/acl/view.pl:134
+msgstr "Envoyez un mail ayant pour sujet \"help\" à l'adresse suivante: \n"
+
+#: ../vhffs-panel/acl/view.pl:139
 msgid "Send it"
 msgstr "Envoyer"
+
+#: ../vhffs-panel/group/prefs.pl:71 ../vhffs-panel/group/prefs.pl:72
+msgid "Send logo"
+msgstr "Envoyer l'avatar"
+
+#: ../vhffs-panel/user/prefs.pl:79 ../vhffs-panel/user/prefs.pl:80
+msgid "Send my avatar"
+msgstr "Envoyer mon avatar"
 
 #: ../vhffs-panel/mail/create.pl:40 ../vhffs-panel/dns/create.pl:40
 #: ../vhffs-panel/pgsql/create.pl:43 ../vhffs-panel/admin/mail/edit.pl:72
@@ -2700,11 +2991,11 @@
 #: ../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:35 ../vhffs-panel/mysql/create.pl:41
-#: ../vhffs-panel/svn/create.pl:46 ../vhffs-panel/mailinglist/create.pl:71
-#: ../vhffs-panel/web/create.pl:50 ../vhffs-panel/alert.pl:41
+#: ../vhffs-panel/group/create.pl:35 ../vhffs-panel/svn/create.pl:46
+#: ../vhffs-panel/mailinglist/create.pl:71 ../vhffs-panel/web/create.pl:50
+#: ../vhffs-panel/alert.pl:41
 msgid "Sent"
-msgstr "Envoyé"
+msgstr "Envoyé"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:405
 msgid "September"
@@ -2725,7 +3016,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"
@@ -2737,11 +3028,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"
@@ -2754,7 +3045,7 @@
 #: ../vhffs-panel/public/index.pl:39
 #, perl-format
 msgid "Show me all groups on %s"
-msgstr "Voir tous les groupes/projets enregistrés sur %s"
+msgstr "Voir tous les groupes/projets enregistrés sur %s"
 
 #: ../vhffs-panel/public/index.pl:43
 msgid "Show me all websites"
@@ -2780,15 +3071,15 @@
 
 #: ../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"
@@ -2806,14 +3097,36 @@
 msgid "Show this user"
 msgstr "Voir cet utilisateur"
 
+#: ../vhffs-panel/public/largefile.pl:80 ../vhffs-panel/public/largefile.pl:85
+#: ../vhffs-panel/largefile/prefs.pl:93
+msgid "Size"
+msgstr "Taille"
+
+#: ../vhffs-panel/largefile/create.pl:35
+msgid "Size (in Mo)"
+msgstr "Taille (en Mo)"
+
+#: ../vhffs-panel/largefile/submit.pl:56
+msgid "Size is only a number (in Mo)"
+msgstr "La taille est seulement un nombre (exprimé en Mo)"
+
 #: ../vhffs-panel/acl/add_acl_user.pl:76
 #: ../vhffs-panel/acl/add_acl_group.pl:76 ../vhffs-panel/acl/submit.pl:89
 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:78
 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:79
+msgid "Spam protection is not allowed"
+msgstr "La protection anti-spam n'est pas autorisée"
+
+#: ../vhffs-panel/mail/spambox.pl:98
+#, perl-format
+msgid "Spam status updated for box %s"
+msgstr "La protection anti-spam pour la boite %s a été mise à jour"
 
 #: ../vhffs-panel/admin/broadcast_view.pl:56
 msgid "State"
@@ -2828,17 +3141,18 @@
 #: ../vhffs-panel/admin/object/edit.pl:66 ../vhffs-panel/admin/web/edit.pl:70
 #: ../vhffs-panel/admin/web/show.pl:69 ../vhffs-panel/admin/user/edit.pl:106
 #: ../vhffs-panel/admin/user/show.pl:79
+#: ../vhffs-panel/admin/largefile/list.pl:84
 msgid "Status"
 msgstr "Etat"
 
 #: ../vhffs-panel/admin/su.pl:48
 msgid "Su !"
-msgstr "Changer d'identité"
+msgstr "Changer d'identité"
 
 #: ../vhffs-panel/panel.pl:49
 #, 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"
@@ -2849,7 +3163,7 @@
 msgid "Subject"
 msgstr "Sujet"
 
-#: ../vhffs-listengine/src/archives/show_msg.pl:77
+#: ../vhffs-listengine/src/archives/show_msg.pl:78
 msgid "Subject: "
 msgstr "Sujet: "
 
@@ -2858,7 +3172,7 @@
 msgid "Submit"
 msgstr "Envoyer"
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:44
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:46
 msgid "Submit a bug"
 msgstr "Rapporter un dysfonctionnement"
 
@@ -2885,7 +3199,7 @@
 #: ../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"
+msgstr "L'inscription à la liste %s est interdit\n"
 
 #: ../vhffs-panel/mailinglist/prefs.pl:142
 msgid "Subscribed. Waiting for confirmation"
@@ -2903,33 +3217,34 @@
 msgid "Subscription "
 msgstr "Inscription"
 
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:104
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:103
 msgid "Subversion Admin"
-msgstr "Administration des dépôts subversion"
+msgstr "Administration des dépôts subversion"
 
 #: ../vhffs-api/src/Vhffs/Panel/Svn.pm:118
 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/mailinglist/add_sub.pl:79
 msgid "Successfully added"
-msgstr "Ajouté avec succès"
+msgstr "Ajouté avec succès"
 
 #: ../vhffs-panel/mailinglist/del_member.pl:79
 msgid "Successfully deleted"
-msgstr "Supprimé avec succès"
+msgstr "Supprimé avec succès"
 
 #: ../vhffs-panel/group/join_group.pl:60
 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:343
+"Utilisateur ajouté au groupe avec succès. Veuillez patienter pendant que les "
+"robots l'ajoutent"
+
+#: ../vhffs-api/src/Vhffs/Functions.pm:350
 #: ../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
@@ -2941,7 +3256,7 @@
 msgid "Suspended"
 msgstr "Suspendu"
 
-#: ../vhffs-api/src/Vhffs/Functions.pm:347
+#: ../vhffs-api/src/Vhffs/Functions.pm:354
 #: ../vhffs-panel/admin/user/edit.pl:115
 msgid "Suspended before deletion"
 msgstr "Suspendu avant suppression"
@@ -2960,11 +3275,11 @@
 
 #: ../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"
+msgstr "Nom de domaine créé avec succès"
 
 #: ../vhffs-robots/src/refused_postgres.pl:48
 #: ../vhffs-robots/src/refused_cvs.pl:49
@@ -2974,40 +3289,42 @@
 #: ../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-panel/admin/moderation_submit.pl:78
+#: ../vhffs-robots/src/refused_largefile.pl:48
+#: ../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-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"
+"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
@@ -3020,37 +3337,41 @@
 
 #: ../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"
+"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"
+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
 msgid "The message with the following id %s"
 msgstr "Le message avec l'identifiant suivant %s"
+
+#: ../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."
 
 #: ../vhffs-panel/mysql/submit.pl:64
 msgid "The password is not valid"
@@ -3063,89 +3384,97 @@
 "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 de"
-"donné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"
+"L'état de votre inscription n'a pas changé, vous êtes toujours inscrit\n"
 
 #: ../vhffs-panel/acl/add_acl_user.pl:64
 msgid "The user does not exist"
 msgstr "L'utilisateur n'existe pas"
 
-#: ../vhffs-panel/user/prefs.pl:59
+#: ../vhffs-panel/user/prefs.pl:58
 msgid "Theme"
-msgstr "Thème"
-
-#: ../vhffs-panel/user/prefs_save.pl:155
+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 personnelles. Impossible d'ajouter la redirection."
-
-#: ../vhffs-panel/user/prefs.pl:133
+msgstr ""
+"Il y a un problème avec l'adresse indiqué dans vos informations "
+"personnelles. Impossible d'ajouter la redirection."
+
+#: ../vhffs-panel/user/prefs.pl:139
 msgid "There is two possible usages :"
 msgstr "Il y a deux usages possibles : "
 
 #: ../vhffs-panel/cvs/delete.pl:72
 msgid "This CVS will be delete"
-msgstr "Ce dépôt cvs sera détruit"
-
-#: ../vhffs-panel/mail/prefs.pl:98 ../vhffs-panel/dns/prefs.pl:99
+msgstr "Ce dépôt cvs sera détruit"
+
+#: ../vhffs-panel/mail/prefs.pl:101 ../vhffs-panel/dns/prefs.pl:99
 #: ../vhffs-panel/pgsql/prefs.pl:78 ../vhffs-panel/cvs/prefs.pl:76
-#: ../vhffs-panel/group/prefs.pl:60 ../vhffs-panel/mysql/prefs.pl:85
+#: ../vhffs-panel/group/prefs.pl:61 ../vhffs-panel/mysql/prefs.pl:85
 #: ../vhffs-panel/svn/prefs.pl:93 ../vhffs-panel/mailinglist/prefs.pl:163
-#: ../vhffs-panel/web/prefs.pl:97
+#: ../vhffs-panel/web/prefs.pl:97 ../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."
-
-#: ../vhffs-panel/user/prefs.pl:72
+"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 pas annuler."
+msgstr ""
+"Cette action n'est pas réversible. Quand vous le supprimer, vous ne pouvez "
+"pas annuler."
 
 #: ../vhffs-panel/mail/add_account.pl:74
 msgid ""
 "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:84
 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:63
 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:42
 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:45
 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:54
 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"
@@ -3153,27 +3482,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:76
 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:57
 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:61
 msgid "This group will be deleted"
-msgstr "Ce groupe sera détruit"
+msgstr "Ce groupe sera détruit"
 
 #: ../vhffs-panel/mail/save_catchall.pl:60
 msgid "This is not a correct mail adress"
@@ -3181,18 +3510,17 @@
 
 #: ../vhffs-panel/mail/delete.pl:72
 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:60
 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"
-msgstr ""
-"Ce mail doit contenir le sujet suivant : \"confirm unsubscribe %s\"\n"
+msgstr "Ce mail doit contenir le sujet suivant : \"confirm unsubscribe %s\"\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:57
 #, perl-format
@@ -3202,22 +3530,25 @@
 #: ../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:75
 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/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"
+msgstr ""
+"Ce service n'est pas fonctionnel actuellement. Veuillez attendre la création "
+"ou la modération"
 
 #: ../vhffs-panel/mail/delete_forward.pl:59
 #: ../vhffs-panel/mail/change_forward.pl:67
 #: ../vhffs-panel/mail/save_catchall.pl:50
 #: ../vhffs-panel/mail/delete_box.pl:64 ../vhffs-panel/mail/password_box.pl:67
-#: ../vhffs-panel/mail/add_forward.pl:54 ../vhffs-panel/mail/prefs.pl:52
+#: ../vhffs-panel/mail/add_forward.pl:54 ../vhffs-panel/mail/prefs.pl:55
 #: ../vhffs-panel/mail/delete.pl:52 ../vhffs-panel/mail/add_account.pl:59
+#: ../vhffs-panel/mail/spambox.pl:67 ../vhffs-panel/mail/spamvirus.pl:67
 #: ../vhffs-panel/dns/prefs.pl:68
 #: ../vhffs-panel/admin/mail/delete_forward.pl:66
 #: ../vhffs-panel/admin/mail/change_forward.pl:67
@@ -3233,44 +3564,49 @@
 #: ../vhffs-panel/mailinglist/add_sub.pl:61
 #: ../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/web/prefs.pl:50 ../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"
+msgstr ""
+"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
 msgid ""
 "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"
+msgstr ""
+"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:48 ../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
 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/svn/svn_submit.pl:51
 msgid "This repository name already exists"
-msgstr "Ce nom de dépôt existe déjà"
-
-#: ../vhffs-panel/svn/delete.pl:72
+msgstr "Ce nom de dépôt existe déjà"
+
+#: ../vhffs-panel/svn/delete.pl:72 ../vhffs-panel/largefile/delete.pl:70
 msgid "This repository will be delete"
-msgstr "Ce dépôt sera détruit"
-
-#: ../vhffs-panel/svn/delete.pl:59
+msgstr "Ce dépôt sera détruit"
+
+#: ../vhffs-panel/svn/delete.pl:59 ../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"
-
-#: ../vhffs-panel/acl/view.pl:88
+msgstr "Ce dépôt subversion ne sera PAS détruit"
+
+#: ../vhffs-panel/acl/view.pl:93
 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:49
 msgid "This user does not exists "
@@ -3290,15 +3626,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:62
 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"
@@ -3308,7 +3644,7 @@
 msgid "To put this post on the list, send a message  \n"
 msgstr "Pour envoyer ce message sur la liste, envoyez un message \n"
 
-#: ../vhffs-listengine/src/archives/show_msg.pl:75
+#: ../vhffs-listengine/src/archives/show_msg.pl:76
 msgid "To: "
 msgstr "A: "
 
@@ -3318,31 +3654,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"
@@ -3350,43 +3686,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"
-
-#: ../vhffs-panel/admin/stats.pl:131
+msgstr "Total de groupes activés"
+
+#: ../vhffs-panel/admin/stats.pl:140
+msgid "Total activated hoted files"
+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"
@@ -3394,19 +3734,27 @@
 
 #: ../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"
 msgstr "Total de redirection"
 
-#: ../vhffs-panel/admin/stats.pl:129
+#: ../vhffs-panel/admin/stats.pl:139
+msgid "Total hoted files"
+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"
-
-#: ../vhffs-panel/admin/stats.pl:133
+msgstr "Total des listes de diffusion en modération"
+
+#: ../vhffs-panel/admin/stats.pl:134
 msgid "Total subscribtion for lists"
 msgstr "Total des inscriptions sur les listes de diffusion"
+
+#: ../vhffs-panel/largefile/prefs.pl:96
+msgid "Type"
+msgstr ""
 
 #: ../vhffs-panel/admin/user/edit.pl:71 ../vhffs-panel/admin/user/show.pl:71
 msgid "UID"
@@ -3414,15 +3762,15 @@
 
 #: ../vhffs-panel/admin/object/edit.pl:64
 msgid "UID of owner"
-msgstr "Identifiant utilisateur du propriétaire"
+msgstr "Identifiant utilisateur du propriétaire"
 
 #: ../vhffs-panel/mysql/prefs_save.pl:65
 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:68
 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
@@ -3430,7 +3778,8 @@
 msgstr "Impossible de modifier le service"
 
 #: ../vhffs-panel/mail/change_forward.pl:88
-#: ../vhffs-panel/mail/password_box.pl:88
+#: ../vhffs-panel/mail/password_box.pl:88 ../vhffs-panel/mail/spambox.pl:94
+#: ../vhffs-panel/mail/spamvirus.pl:94
 msgid "Unable to reccord changes on this domain"
 msgstr "Impossible d'enregistrer les modifications sur ce domaine"
 
@@ -3439,8 +3788,8 @@
 msgid "Unable to record changes on this domain"
 msgstr "Impossible de sauvegarder les modifications sur ce domaine"
 
-#: ../vhffs-listengine/src/archives/show_msg.pl:49
-#: ../vhffs-listengine/src/archives/archives.pl:83
+#: ../vhffs-listengine/src/archives/show_msg.pl:50
+#: ../vhffs-listengine/src/archives/archives.pl:110
 msgid "Undefined list"
 msgstr "Liste inconnue"
 
@@ -3460,27 +3809,36 @@
 #: ../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"
-
-#: ../vhffs-panel/user/prefs.pl:134
+msgstr "Utiliser le système de crawl"
+
+#: ../vhffs-panel/user/prefs.pl:140
 #, perl-format
 msgid ""
 "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:146
+msgid "Use anti-spam protection"
+msgstr "Utiliser la protection anti-spam"
+
+#: ../vhffs-panel/user/prefs.pl:154
+msgid "Use anti-virus protection"
+msgstr "Utiliser la protection par anti-virus"
 
 #: ../vhffs-panel/web/prefs.pl:68
 msgid "Use crawl (useful for web-search engine)"
@@ -3496,55 +3854,63 @@
 msgid "User %s does not exists"
 msgstr "L'utilisateur %s n'existe pas"
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:41
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:43
 msgid "User Account : "
 msgstr "Compte utilisateur : "
 
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:72
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:71
 msgid "User Admin"
 msgstr "Utilisateur administrateur"
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:42 ../vhffs-panel/user/prefs.pl:46
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:44 ../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"
-
-#: ../vhffs-panel/user/prefs_save.pl:102
+msgstr "Utilisateur créé avec succès"
+
+#: ../vhffs-panel/user/prefs_save.pl:101
 msgid "User Successfully modified"
-msgstr "Utilisateur modifié avec succès"
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:120
+msgstr "Utilisateur modifié avec succès"
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:119
 msgid "User does not exist"
 msgstr "L'utilisateur n'existe pas"
+
+#: ../vhffs-panel/object/upavatar.pl:45
+msgid "User error"
+msgstr "Erreur sur l'utilisateur"
 
 #: ../vhffs-panel/public/index.pl:33
 msgid "User public area"
 msgstr "Zone publique des utilisateurs"
 
-#: ../vhffs-panel/admin/su.pl:47 ../vhffs-panel/group/prefs.pl:66
-#: ../vhffs-panel/acl/view.pl:114 ../vhffs-panel/public/lastusers.pl:43
-#: ../vhffs-panel/public/user.pl:54 ../vhffs-panel/user/prefs.pl:48
-#: ../vhffs-panel/subscribe.pl:36 ../vhffs-panel/lost.pl:28
+#: ../vhffs-panel/admin/su.pl:47 ../vhffs-panel/group/prefs.pl:67
+#: ../vhffs-panel/acl/view.pl:119 ../vhffs-panel/public/lastusers.pl:43
+#: ../vhffs-panel/public/user.pl:54 ../vhffs-panel/user/prefs.pl:47
+#: ../vhffs-panel/subscribe.pl:36 ../vhffs-panel/lost.pl:26
 #: ../vhffs-panel/auth.pl:27
 msgid "Username"
 msgstr "Nom d'utilisateur"
 
 #: ../vhffs-panel/pgsql/prefs.pl:66 ../vhffs-panel/mysql/prefs.pl:73
 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:"
 msgstr "Nom d'utilisateur:"
 
-#: ../vhffs-panel/public/allgroups.pl:44 ../vhffs-panel/public/group.pl:57
+#: ../vhffs-robots/src/create_largefile.pl:63
+msgid "Username: %s\n"
+msgstr "Nom d'utilisateur: %s\n"
+
+#: ../vhffs-panel/public/allgroups.pl:44 ../vhffs-panel/public/group.pl:59
 #: ../vhffs-panel/public/lastgroups.pl:43
 msgid "Users"
 msgstr "Utilisateurs"
@@ -3553,35 +3919,31 @@
 msgid "Users stats"
 msgstr "Statistiques des utilisateurs"
 
-#: ../vhffs-panel/public/group.pl:51
-msgid "VHFFS Group"
-msgstr "Groupe"
-
 #: ../vhffs-panel/auth.pl:24
 msgid "VHFFS Login"
 msgstr "Authentification sur VHFFS"
 
-#: ../vhffs-panel/login.pl:78
+#: ../vhffs-panel/login.pl:76
 msgid "VHFFS Login OK"
-msgstr "Authentification réussie"
-
-#: ../vhffs-panel/login.pl:47 ../vhffs-panel/login.pl:88
+msgstr "Authentification réussie"
+
+#: ../vhffs-panel/login.pl:45 ../vhffs-panel/login.pl:86
 msgid "VHFFS Login failed"
-msgstr "Authentification échouée"
-
-#: ../vhffs-panel/logout.pl:31
+msgstr "Authentification échouée"
+
+#: ../vhffs-panel/logout.pl:29
 msgid "VHFFS Logout"
-msgstr "Déconnexion"
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:166
+msgstr "Déconnexion"
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:165
 msgid "VHFFS Panel"
 msgstr "Panel de VHFFS"
 
-#: ../vhffs-panel/lost_ack.pl:44
+#: ../vhffs-panel/lost_ack.pl:39
 msgid "VHFFS Password Lost OK"
 msgstr "Perte de mot de passe reconnue"
 
-#: ../vhffs-panel/lost_ack.pl:55
+#: ../vhffs-panel/lost_ack.pl:50
 msgid "VHFFS Password Lost failed"
 msgstr "Impossible de retrouver l'utilisateur"
 
@@ -3589,31 +3951,37 @@
 msgid "VHFFS User"
 msgstr "Utilisateur"
 
-#: ../vhffs-api/src/Vhffs/Functions.pm:323
+#: ../vhffs-api/src/Vhffs/Functions.pm:330
 #: ../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:85
 #: ../vhffs-panel/admin/mysql/edit.pl:85
 #: ../vhffs-panel/admin/object/edit.pl:86 ../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"
 msgstr "Statistiques de VHFFS"
 
-#: ../vhffs-listengine/src/archives/archives.pl:115
+#: ../vhffs-listengine/src/archives/archives.pl:37
+#: ../vhffs-listengine/src/archives/archives.pl:144
 msgid "View"
 msgstr "Voir"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:237
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:261
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:287
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:313
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:339
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:366
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:392
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:419
+#: ../vhffs-panel/public/group.pl:200
+msgid "View archives"
+msgstr "Allez aux archives de cette liste"
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:236
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:260
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:286
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:312
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:338
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:365
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:391
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:418
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:443
 msgid "View history"
 msgstr "Voir l'historique"
 
@@ -3625,11 +3993,20 @@
 msgid "View this mailing"
 msgstr "Voir cet envoi"
 
+#: ../vhffs-panel/mail/spamvirus.pl:79
+msgid "Virus protection is not allowed"
+msgstr "La protection par anti-virus n'est pas autorisé"
+
+#: ../vhffs-panel/mail/spamvirus.pl:98
+#, 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"
+
 #: ../vhffs-panel/admin/stats.pl:73
 msgid "WEB stats"
 msgstr "Statistiques des sites webs"
 
-#: ../vhffs-api/src/Vhffs/Functions.pm:327
+#: ../vhffs-api/src/Vhffs/Functions.pm:334
 #: ../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:86
@@ -3638,7 +4015,7 @@
 #: ../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
@@ -3647,7 +4024,7 @@
 msgid "Waiting for delete"
 msgstr "En attente de suppression"
 
-#: ../vhffs-api/src/Vhffs/Functions.pm:351
+#: ../vhffs-api/src/Vhffs/Functions.pm:358
 #: ../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:92
 #: ../vhffs-panel/admin/mysql/edit.pl:92
@@ -3656,7 +4033,7 @@
 msgid "Waiting for modification"
 msgstr "En attente de modification"
 
-#: ../vhffs-api/src/Vhffs/Functions.pm:319
+#: ../vhffs-api/src/Vhffs/Functions.pm:326
 #: ../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:84
@@ -3669,14 +4046,16 @@
 
 #: ../vhffs-panel/alert.pl:37
 msgid "Warn the admin team"
-msgstr "Alerter l'équipe d'administrateurs"
-
-#: ../vhffs-panel/user/prefs.pl:132
+msgstr "Alerter l'équipe d'administrateurs"
+
+#: ../vhffs-panel/user/prefs.pl:138
 #, 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 domaine %s"
-
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:90
+msgstr ""
+"Nous vous offrons la possibilité de bénéficier d'un compte mail sur le "
+"domaine %s"
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:89
 msgid "Web Admin"
 msgstr "Administration web"
 
@@ -3694,13 +4073,13 @@
 
 #: ../vhffs-panel/web/web_submit.pl:57
 msgid "Web area successfully created !"
-msgstr "Site web créé avec succès"
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:227
+msgstr "Site web créé avec succès"
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:226
 msgid "Webarea for this group"
 msgstr "Sites web pour ce groupe"
 
-#: ../vhffs-panel/public/group.pl:86
+#: ../vhffs-panel/public/group.pl:88
 msgid "Website for this group"
 msgstr "Site web pour ce groupe"
 
@@ -3708,7 +4087,7 @@
 msgid "Websites area"
 msgstr "Zone des sites web"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:193
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:192
 msgid "Welcome"
 msgstr "Bienvenue"
 
@@ -3718,21 +4097,21 @@
 
 #: ../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:363
+msgstr "Sera détruit dans quelques minutes"
+
+#: ../vhffs-api/src/Vhffs/Functions.pm:370
 #: ../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:95
 #: ../vhffs-panel/admin/mysql/edit.pl:95
 #: ../vhffs-panel/admin/object/edit.pl:96 ../vhffs-panel/admin/web/edit.pl:108
 #: ../vhffs-panel/admin/user/edit.pl:119
 msgid "Will be deleted"
-msgstr "Sera détruit"
+msgstr "Sera détruit"
 
 #: ../vhffs-panel/auth.pl:45
 #, 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
@@ -3740,17 +4119,18 @@
 msgid "Yes"
 msgstr "Oui"
 
-#: ../vhffs-panel/mail/prefs.pl:100 ../vhffs-panel/dns/prefs.pl:101
+#: ../vhffs-panel/mail/prefs.pl:103 ../vhffs-panel/dns/prefs.pl:101
 #: ../vhffs-panel/pgsql/prefs.pl:80 ../vhffs-panel/cvs/prefs.pl:78
-#: ../vhffs-panel/group/prefs.pl:62 ../vhffs-panel/mysql/prefs.pl:87
+#: ../vhffs-panel/group/prefs.pl:63 ../vhffs-panel/mysql/prefs.pl:87
 #: ../vhffs-panel/svn/prefs.pl:95 ../vhffs-panel/mailinglist/prefs.pl:165
-#: ../vhffs-panel/web/prefs.pl:99 ../vhffs-panel/user/prefs.pl:74
+#: ../vhffs-panel/web/prefs.pl:99 ../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"
+msgstr "Vous n'êtes pas inscrit à la liste.\n"
 
 #: ../vhffs-panel/admin/mailing/search.pl:40
 #: ../vhffs-panel/admin/mailing/list.pl:42
@@ -3788,29 +4168,33 @@
 #: ../vhffs-panel/admin/su.pl:38 ../vhffs-panel/admin/broadcast_view.pl:41
 #: ../vhffs-panel/admin/broadcast_list.pl:39 ../vhffs-panel/admin/stats.pl:50
 #: ../vhffs-panel/admin/broadcast.pl:38
+#: ../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"
-
-#: ../vhffs-panel/mail/prefs.pl:105 ../vhffs-panel/dns/prefs.pl:93
+msgstr "Vous avez demandé à être inscrit à la liste suivante: %s\n"
+
+#: ../vhffs-panel/mail/prefs.pl:108 ../vhffs-panel/dns/prefs.pl:93
 #: ../vhffs-panel/web/prefs.pl:93
 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 de lire l'aide avant de modifier"
+"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"
+msgstr ""
+"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."
@@ -3823,42 +4207,46 @@
 #: ../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"
 
 #: ../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"
-
-#: ../vhffs-panel/logout.pl:32
+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"
-
-#: ../vhffs-panel/lost.pl:26
+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)"
-
-#: ../vhffs-panel/user/prefs_save.pl:115
+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"
@@ -3866,11 +4254,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"
@@ -3886,7 +4275,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"
@@ -3902,17 +4291,19 @@
 
 #: ../vhffs-panel/mailinglist/create.pl:51
 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"
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:124
+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:73
 #: ../vhffs-panel/mail/save_catchall.pl:55
 #: ../vhffs-panel/mail/delete_box.pl:70 ../vhffs-panel/mail/password_box.pl:73
-#: ../vhffs-panel/mail/add_forward.pl:59 ../vhffs-panel/mail/prefs.pl:58
+#: ../vhffs-panel/mail/add_forward.pl:59 ../vhffs-panel/mail/prefs.pl:61
 #: ../vhffs-panel/mail/delete.pl:56 ../vhffs-panel/mail/add_account.pl:65
+#: ../vhffs-panel/mail/spambox.pl:73 ../vhffs-panel/mail/spamvirus.pl:73
 #: ../vhffs-panel/dns/delete_cname.pl:58 ../vhffs-panel/dns/delete_cname.pl:62
 #: ../vhffs-panel/dns/delete_mx.pl:58 ../vhffs-panel/dns/delete_mx.pl:62
 #: ../vhffs-panel/dns/add_ns.pl:58 ../vhffs-panel/dns/add_ns.pl:62
@@ -3948,32 +4339,33 @@
 #: ../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/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:64
 #: ../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)"
-
-#: ../vhffs-panel/acl/add_acl_user.pl:70 ../vhffs-panel/acl/view.pl:105
+msgstr "Vous n'êtes pas autorisé à faire ceci (droits ACL insuffisants)"
+
+#: ../vhffs-panel/acl/add_acl_user.pl:70 ../vhffs-panel/acl/view.pl:110
 #: ../vhffs-panel/acl/add_acl_group.pl:70 ../vhffs-panel/acl/submit.pl:69
 #: ../vhffs-panel/history.pl:68
 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:58
 msgid "You're not an administrator"
-msgstr "Vous n'êtes pas un administrateur"
+msgstr "Vous n'êtes pas un administrateur"
 
 #: ../vhffs-robots/src/refused_cvs.pl:51
 msgid "Your CVS repository request"
-msgstr "Votre demande de dépôt cvs"
+msgstr "Votre demande de dépôt cvs"
 
 #: ../vhffs-robots/src/refused_cvs.pl:39
 #, perl-format
 msgid "Your CVS request : %s "
-msgstr "Votre demande de dépôt cvs : %s "
+msgstr "Votre demande de dépôt cvs : %s "
 
 #: ../vhffs-robots/src/refused_dns.pl:50
 msgid "Your DNS hosting request"
@@ -4014,30 +4406,34 @@
 
 #: ../vhffs-robots/src/refused_mysql.pl:50
 msgid "Your MySQL database request"
-msgstr "Votre demande de base de données mysql"
+msgstr "Votre demande de base de données mysql"
 
 #: ../vhffs-robots/src/refused_mysql.pl:38
 #, perl-format
 msgid "Your MySQL database request : %s "
-msgstr "Votre demande de base de données mysql %s "
+msgstr "Votre demande de base de données mysql %s "
 
 #: ../vhffs-robots/src/refused_postgres.pl:50
 msgid "Your PostgreSQL database request"
-msgstr "Votre demande de base de données postgres"
+msgstr "Votre demande de base de données postgres"
 
 #: ../vhffs-robots/src/refused_postgres.pl:38
 #, perl-format
 msgid "Your PostgreSQL database request : %s "
-msgstr "Votre demande de base de données postgres %s"
+msgstr "Votre demande de base de données postgres %s"
 
 #: ../vhffs-robots/src/refused_svn.pl:50
 msgid "Your Subversion repository request"
-msgstr "Votre demande de dépôt subversion"
+msgstr "Votre demande de dépôt subversion"
 
 #: ../vhffs-robots/src/refused_svn.pl:38
 #, perl-format
 msgid "Your Subversion repository request : %s"
-msgstr "Votre demande de dépôt subversion %s "
+msgstr "Votre demande de dépôt subversion %s "
+
+#: ../vhffs-robots/src/refused_largefile.pl:50
+msgid "Your file hosting request"
+msgstr "Votre demande d'hébergement de fichiers"
 
 #: ../vhffs-panel/alert.pl:40
 msgid "Your message"
@@ -4045,19 +4441,31 @@
 
 #: ../vhffs-panel/pgsql/prefs_save.pl:59
 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
+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
+msgid "Your request for hosting the file: %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"
-
-#: ../vhffs-panel/admin/moderation_submit.pl:80
+msgstr "Votre requête a été supprimée.\n"
+
+#: ../vhffs-robots/src/create_largefile.pl:68
+msgid "Your request on %s for hosting file"
+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"
 msgstr "Votre demande sur la plate-forme VHFFS"
 
-#: ../vhffs-panel/admin/moderation_submit.pl:75
+#: ../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"
+msgstr "Votre requête sur la plate-forme VHFFS a été acceptée\n"
 
 #: ../vhffs-robots/src/refused_web.pl:38
 #, perl-format
@@ -4069,21 +4477,25 @@
 msgstr "Le code postal est incorrect. Veuillez entrer un code postal correct"
 
 #: ../vhffs-panel/admin/user/edit.pl:75 ../vhffs-panel/admin/user/show.pl:75
-#: ../vhffs-panel/user/prefs.pl:52 ../vhffs-panel/subscribe.pl:40
+#: ../vhffs-panel/user/prefs.pl:51 ../vhffs-panel/subscribe.pl:40
 msgid "Zipcode"
 msgstr "Code postal"
 
-#: ../vhffs-panel/user/prefs_save.pl:65
+#: ../vhffs-panel/user/prefs_save.pl:64
 msgid "Zipcode is not correct !"
 msgstr "Le code postal n'est pas correct"
 
+#: ../vhffs-panel/group/prefs.pl:73 ../vhffs-panel/user/prefs.pl:81
+msgid "blablabla /*FIXME*/"
+msgstr ""
+
 #: ../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"
+msgstr "ne peut pas être supprimé.\n"
 
 #: ../vhffs-robots/src/refused_postgres.pl:39
 #: ../vhffs-robots/src/refused_cvs.pl:40
@@ -4093,8 +4505,9 @@
 #: ../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
 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"
@@ -4103,51 +4516,51 @@
 #: ../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:753
+#: ../vhffs-listengine/src/listengine.pl:722
 #, 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:613
+#: ../vhffs-listengine/src/listengine.pl:634
 #: ../vhffs-listengine/src/listengine.pl:644
-#: ../vhffs-listengine/src/listengine.pl:665
-#: ../vhffs-listengine/src/listengine.pl:675
 msgid "listengine help"
 msgstr "listenfine help"
 
-#: ../vhffs-listengine/src/listengine.pl:705
-#: ../vhffs-listengine/src/listengine.pl:715
-#: ../vhffs-listengine/src/listengine.pl:730
-#: ../vhffs-listengine/src/listengine.pl:741
-#: ../vhffs-listengine/src/listengine.pl:766
-#: ../vhffs-listengine/src/listengine.pl:776
+#: ../vhffs-listengine/src/listengine.pl:674
+#: ../vhffs-listengine/src/listengine.pl:684
+#: ../vhffs-listengine/src/listengine.pl:699
+#: ../vhffs-listengine/src/listengine.pl:710
+#: ../vhffs-listengine/src/listengine.pl:735
+#: ../vhffs-listengine/src/listengine.pl:745
 msgid "listengine moderation"
-msgstr ""
-
-#: ../vhffs-listengine/src/listengine.pl:691
+msgstr "modération sur listengine"
+
+#: ../vhffs-listengine/src/listengine.pl:660
 msgid "listengine result command"
-msgstr ""
-
-#: ../vhffs-listengine/src/listengine.pl:803
+msgstr "résultat de la commande sur listengine"
+
+#: ../vhffs-listengine/src/listengine.pl:772
 msgid "listengine: unknown command"
-msgstr ""
-
-#: ../vhffs-panel/user/prefs.pl:49 ../vhffs-panel/subscribe.pl:37
+msgstr "listengine: commande inconnue"
+
+#: ../vhffs-panel/user/prefs.pl:48 ../vhffs-panel/subscribe.pl:37
 msgid "mail"
-msgstr ""
+msgstr "adresse mail"
 
 #: ../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 ""
@@ -4159,7 +4572,8 @@
 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"
+"moderate validate XXXXX\t\t\t - accepte le message ayant l'identifiant "
+"XXXXX\n"
 
 #: ../vhffs-panel/admin/object/edit.pl:82
 msgid "no date"
@@ -4167,56 +4581,73 @@
 
 #: ../vhffs-panel/admin/object/edit.pl:186 ../vhffs-panel/history.pl:99
 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 ""
+msgstr "subscribe\t - souscrire à la liste\n"
+
+#: ../vhffs-robots/src/create_largefile.pl:62
+msgid "the following login and password :\n"
+msgstr "l'identifiant et le mot de passe suivant :\n"
+
+#: ../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"
 
 #: ../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"
-
-#: ../vhffs-listengine/src/archives/show_msg.pl:67
-msgid "unknown message-id"
-msgstr "identifiant de message inconnu"
+msgstr "à %s-request@%s avec le sujet suivant : \"moderate %s\" \n"
+
+#: ../vhffs-listengine/src/archives/show_msg.pl:68
+msgid "unknown message-id t: %s"
+msgstr "identifiant de message inconnu: %s"
 
 #: ../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"
+msgstr ""
+"user right RIGHT user@xxxxxxxxxx\t - change le droit pour l'utilisateur "
+"désigné\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:36
 msgid ""
 "user subscribe user@xxxxxxxxxx\t\t - register the user user@xxxxxxxxxx on "
 "the list\n"
 msgstr ""
-"user subscribe user@xxxxxxxxxx\t\t - enregistrer user@xxxxxxxxxx sur la liste\n"
+"user subscribe user@xxxxxxxxxx\t\t - enregistrer user@xxxxxxxxxx sur la "
+"liste\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:35
 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"
+msgstr ""
+"user unsubscribe user@xxxxxxxxxx\t - supprimer l'utilisateur user@xxxxxxxxxx "
+"de la liste\n"
 
 #: ../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 "VHFFS Group"
+#~ msgstr "Groupe"

Modified: trunk/vhffs-listengine/src/archives/archives.pl
==============================================================================
--- trunk/vhffs-listengine/src/archives/archives.pl (original)
+++ trunk/vhffs-listengine/src/archives/archives.pl Thu Feb  9 23:01:27 2006
@@ -59,7 +59,7 @@
 my $cgi = new CGI;
 
 
-#On récupère les paramètres
+#On recupere les parametres
 my $listname = $cgi->param("list");
 my $day = $cgi->param("day");
 my $month = $cgi->param("month");

Modified: trunk/vhffs-listengine/src/archives/show_msg.pl
==============================================================================
--- trunk/vhffs-listengine/src/archives/show_msg.pl (original)
+++ trunk/vhffs-listengine/src/archives/show_msg.pl Thu Feb  9 23:01:27 2006
@@ -65,7 +65,7 @@
 elsif( ! defined ( $mail = Vhffs::Listengine::Listengine::search_message( $list , $mid ) ) )
 {
     $template = new HTML::Template( filename => $templatedir."/error.tmpl");
-    $template->param( ERROR => gettext("unknown message-id t:$mail") );
+    $template->param( ERROR => sprintf( gettext("unknown message-id t: %s") , $mid ) );
 }
 else
 {

Modified: trunk/vhffs-panel/object/upavatar.pl
==============================================================================
--- trunk/vhffs-panel/object/upavatar.pl (original)
+++ trunk/vhffs-panel/object/upavatar.pl Thu Feb  9 23:01:27 2006
@@ -4,9 +4,8 @@
 use HTML::Template;
 use locale;
 use Locale::gettext;
-use CGI;
+use CGI qw(:standard);
 use CGI::Session;
-use strict;
 
 use Vhffs::User;
 use Vhffs::Main;
@@ -20,14 +19,6 @@
 }
 my $data;
 
-sub hook
-{
-	my ($filename, $buffer, $bytes_read, $data) = @_;
-	open (OUTFILE,">>/tmp/plop.jpg");
-	binmode OUTFILE;
-	print OUTFILE $data;
-	close( OUTFILE );
-}
 			   
 my $vhffs = $panel->{'vhffs'};
 my $session = $panel->{'session'};
@@ -36,6 +27,8 @@
 my $cgi = $panel->{'cgi'};
 
 my $message;
+my $filename;
+my $tmpfilename;
 
 
 my $templatedir = $vhffs->get_config->get_templatedir;
@@ -53,13 +46,21 @@
 }
 else
 {
-	my $plop = CGI::upload( 'AVATAR' );
-	$message .= CGI::uploadInfo('AVATAR');
+	$|=1;
+	$filename = param( 'avatar' );
+	$tmpfilename = tmpFileName( $filename );
+	
+	if( ! defined( $tmpfilename ) )
+	{
+		$message = "error $tmpfilename" ;
+	}
+	else
+	{
+		$message = $tmpfilename;
 
-	while( <$plop> )
-	{
-		$message .= $_;
 	}
+
+	$message.= $tmpfilename;
 
 }
 $template->param( MESSAGE => $message );

Modified: trunk/vhffs-panel/public/group.pl
==============================================================================
--- trunk/vhffs-panel/public/group.pl (original)
+++ trunk/vhffs-panel/public/group.pl Thu Feb  9 23:01:27 2006
@@ -23,6 +23,7 @@
 my $cgi = new CGI;
 my $repos;
 my $files;
+my $objs;
 
 my $name = $cgi->param("name");
 $name = Vhffs::Functions::check_arg( $name );
@@ -49,7 +50,7 @@
 {
 	$template = new HTML::Template( filename => $templatedir."/public/group.tmpl" );
 	$template->param( THEME => Vhffs::Panel::Main::get_theme_name( $cgi->cookie("theme") ) );
-	$template->param( TEXT_TITLE => gettext("VHFFS Group") );
+	$template->param( TEXT_TITLE => $group->get_groupname );
 
 	$template->param( TEXT_GROUPNAME => gettext("Groupname") );
 	$template->param( TEXT_DESCRIPTION => gettext("Description") );
@@ -170,7 +171,8 @@
 			    	$subtemplate->param( FILENAME => $_->get_filename );
 			    	$subtemplate->param( TYPE => $_->get_type );
 			    	$subtemplate->param( LICENCE => $_->get_description );
-			    	$subtemplate->param( DOWNLOAD  => "" );
+					$subtemplate->param( DOWNLOAD  => "Download this file" );
+					$subtemplate->param( GROUPNAME  => $_->get_group->get_groupname );
 			    	$output .= $subtemplate->output;
 				}
 
@@ -182,6 +184,30 @@
 	    	}
 		}
 
+		if( $vhffs->get_config->use_mailing == 1 )
+		{
+			use Vhffs::Services::Mailing;
+			$objs = Vhffs::Services::Mailing::getall_by_group( $vhffs , $group );
+			$output = "";
+		    $template->param( LISTS_TITLE => gettext("List(s) for this group") );
+			if( defined $objs )
+			{
+				foreach(  @{$objs} )
+				{
+			   	 	$subtemplate = new HTML::Template( filename => $templatedir."/public/misc/list-part.tmpl" );
+			    	$subtemplate->param( LISTNAME => $_->get_title );
+			    	$subtemplate->param( ARCHIVESURL => $vhffs->get_config->get_www_archives );
+			    	$subtemplate->param( ARCHIVES_TEXT => gettext( "View archives" ) );
+			    	$output .= $subtemplate->output;
+				}
+				$template->param( LISTS_VALUE => $output );
+			}
+			else
+			{
+				$template->param( LISTS_VALUE => gettext("No list available for this group") );
+			}
+		}
+
 
 	}
 }

Modified: trunk/vhffs-panel/templates/largefile/menu.tmpl
==============================================================================
--- trunk/vhffs-panel/templates/largefile/menu.tmpl (original)
+++ trunk/vhffs-panel/templates/largefile/menu.tmpl Thu Feb  9 23:01:27 2006
@@ -1,10 +1,10 @@
-				<li id="largefile">
+				<li id="largeFileList">
 					<tmpl_var name="TEXT_LARGEFILE">
-					<ul id="largefileMenu">
+					<ul id="largeFileMenu">
 					
 						<tmpl_var name="SUB_LARGEFILE">
 						
-						<li id="mailingListCreate">
+						<li id="largeFileCreate">
 							<a href="/largefile/create.pl" title="<tmpl_var name="TEXT_CREATE">">
 								<tmpl_var name="TEXT_CREATE">
 							</a>

Modified: trunk/vhffs-panel/templates/largefile/menu_sub.tmpl
==============================================================================
--- trunk/vhffs-panel/templates/largefile/menu_sub.tmpl (original)
+++ trunk/vhffs-panel/templates/largefile/menu_sub.tmpl Thu Feb  9 23:01:27 2006
@@ -1,4 +1,4 @@
-						<li class="LargeFileEntry">
+						<li class="largeFileEntry">
 							<a href="/largefile/prefs.pl?name=<tmpl_var name="NAME">" title="<tmpl_var name="NAME">">
 								<tmpl_var name="NAME">
 							</a>

Modified: trunk/vhffs-panel/templates/largefile/menu_sub_wait.tmpl
==============================================================================
--- trunk/vhffs-panel/templates/largefile/menu_sub_wait.tmpl (original)
+++ trunk/vhffs-panel/templates/largefile/menu_sub_wait.tmpl Thu Feb  9 23:01:27 2006
@@ -1,4 +1,4 @@
-			<li class="mailingListEntryWait">
+			<li class="largeFileEntryWait">
 				<tmpl_var name="NAME"> <tmpl_var name="REASON">
 				( <a href="/history.pl?OID=<tmpl_var name="OID">"><tmpl_var name="HISTORY"></a> )
 			</li>

Modified: trunk/vhffs-panel/templates/public/group.tmpl
==============================================================================
--- trunk/vhffs-panel/templates/public/group.tmpl (original)
+++ trunk/vhffs-panel/templates/public/group.tmpl Thu Feb  9 23:01:27 2006
@@ -45,6 +45,19 @@
 		</p>
 
 		<p>
+			<h2><tmpl_var name="LISTS_TITLE"></h2>
+			<ul>
+				<tmpl_var name="LISTS_VALUE">
+			</ul>
+		</p>
+
+		<p>
+			<h2><tmpl_var name="LARGEFILE_TITLE"></h2>
+			<ul>
+				<tmpl_var name="LARGEFILE_VALUE">
+			</ul>
+		</p>
+		<p>
 			<h2><tmpl_var name="LARGEFILE_TITLE"></h2>
 			<ul>
 				<tmpl_var name="LARGEFILE_VALUE">

Modified: trunk/vhffs-panel/templates/user/mailuser.tmpl
==============================================================================
--- trunk/vhffs-panel/templates/user/mailuser.tmpl (original)
+++ trunk/vhffs-panel/templates/user/mailuser.tmpl Thu Feb  9 23:01:27 2006
@@ -16,9 +16,10 @@
 					<p>
 						<input name="mail_usage" id="mail_usage_box" value="1" type="radio" <tmpl_var name="POP_CHECKED">/>
 						<label for="mail_usage_box" ><tmpl_var name="TEXT_MAILBOX"></label>
-						<ul>
-						<tmpl_var name="MAILUSER_OPTIONS">
-						</ul>
+						
+					</p>
+					<p>
+<tmpl_var name="MAILUSER_OPTIONS">
 					</p>
 					<p>
 						<input name="mail_usage" id="mail_usage_foward" value="2" type="radio" <tmpl_var name="FWD_CHECKED">/>

Modified: trunk/vhffs-panel/templates/user/mailuserspam.tmpl
==============================================================================
--- trunk/vhffs-panel/templates/user/mailuserspam.tmpl (original)
+++ trunk/vhffs-panel/templates/user/mailuserspam.tmpl Thu Feb  9 23:01:27 2006
@@ -1,3 +1,2 @@
-<li>
-<input name="mail_nospam" id="mail_activate" type="checkbox" <tmpl_var name="ACTIV_CHECKED">/><tmpl_var name="TEXT_NOSPAM">	
-</li>
+<br/>
+<input name="mail_nospam" id="mail_activate" type="checkbox" <tmpl_var name="ACTIV_CHECKED">/><tmpl_var name="TEXT_NOSPAM">

Modified: trunk/vhffs-panel/templates/user/mailuservirus.tmpl
==============================================================================
--- trunk/vhffs-panel/templates/user/mailuservirus.tmpl (original)
+++ trunk/vhffs-panel/templates/user/mailuservirus.tmpl Thu Feb  9 23:01:27 2006
@@ -1,3 +1,2 @@
-<li>
+<br/>
 <input name="mail_novirus" id="mail_activate" type="checkbox" <tmpl_var name="ACTIV_CHECKED">/><tmpl_var name="TEXT_VIRUS">
-</li>

Modified: trunk/vhffs-panel/templates/user/prefs.tmpl
==============================================================================
--- trunk/vhffs-panel/templates/user/prefs.tmpl (original)
+++ trunk/vhffs-panel/templates/user/prefs.tmpl Thu Feb  9 23:01:27 2006
@@ -83,7 +83,7 @@
 				</p>
 		        <input type="hidden" name="OID" name="<tmpl_var name="VALUE_OID">"/>
 
-				<input type="file" name="AVATAR"/>
+				<input type="file" size="40" name="avatar"/>
 				<input type="submit" value="<tmpl_var name="SEND_AVATAR">" />
 			</form>
 			

Modified: trunk/vhffs-panel/themes/default/images/logout.png
==============================================================================
Binary files - no diff available.

Modified: trunk/vhffs-panel/themes/default/images/projectcreate.png
==============================================================================
Binary files - no diff available.

Modified: trunk/vhffs-panel/themes/default/images/projectowner.png
==============================================================================
Binary files - no diff available.

Modified: trunk/vhffs-panel/themes/default/images/projectownerentry.png
==============================================================================
Binary files - no diff available.

Modified: trunk/vhffs-panel/themes/default/main.css
==============================================================================
--- trunk/vhffs-panel/themes/default/main.css (original)
+++ trunk/vhffs-panel/themes/default/main.css Thu Feb  9 23:01:27 2006
@@ -296,6 +296,19 @@
 #menu .mailingListEntry, #menu .mailingListEntryWait
 {
 	list-style-image:url(./images/mailingentry.png);
+}
+
+#menu #largeFileList
+{
+	list-style-image:url(./images/largefile.png);
+}
+#menu #largeFileCreate
+{
+	list-style-image:url(./images/largefilecreate.png);
+}
+#menu .largeFileEntry, #menu .largeFileEntryWait
+{
+	list-style-image:url(./images/largefileentry.png);
 }
 
 




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