[vhffs-dev] [1019] More and more compilation fixes

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


Revision: 1019
Author:   gradator
Date:     2007-10-22 23:23:34 +0000 (Mon, 22 Oct 2007)

Log Message:
-----------
More and more compilation fixes

Modified Paths:
--------------
    trunk/vhffs-api/src/Vhffs/Functions.pm
    trunk/vhffs-api/src/Vhffs/Object.pm
    trunk/vhffs-api/src/Vhffs/Panel/Admin.pm
    trunk/vhffs-api/src/Vhffs/Robots/Cvs.pm
    trunk/vhffs-api/src/Vhffs/Robots/Group.pm
    trunk/vhffs-api/src/Vhffs/Robots/Mysql.pm
    trunk/vhffs-api/src/Vhffs/Services/Web.pm
    trunk/vhffs-intl/src/es.po
    trunk/vhffs-panel/admin/git/index.pl
    trunk/vhffs-public/user.pl
    trunk/vhffs-robots/src/git_public.pl
    trunk/vhffs-robots/src/mailing.pl
    trunk/vhffs-robots/src/svn_public.pl
    trunk/vhffs-robots/src/user_delete.pl


Modified: trunk/vhffs-api/src/Vhffs/Functions.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Functions.pm	2007-10-22 22:42:38 UTC (rev 1018)
+++ trunk/vhffs-api/src/Vhffs/Functions.pm	2007-10-22 23:23:34 UTC (rev 1019)
@@ -109,9 +109,10 @@
 
 sub check_arg
 {
-    my $arg = shift;
-    $arg =~ s/\'//g;
-    return( $arg );
+	my $arg = shift;
+	return undef unless defined $arg;
+	$arg =~ s/\'//g;
+	return( $arg );
 }
 
 

Modified: trunk/vhffs-api/src/Vhffs/Object.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Object.pm	2007-10-22 22:42:38 UTC (rev 1018)
+++ trunk/vhffs-api/src/Vhffs/Object.pm	2007-10-22 23:23:34 UTC (rev 1019)
@@ -657,7 +657,7 @@
 sub get_by_oid
 {
     my ($vhffs, $oid) = @_;
-    return undef unless ( $oid =~ /^\d+$/ );
+    return undef unless ( defined $oid && $oid =~ /^\d+$/ );
 
     my $query = 'SELECT owner_uid, owner_gid, date_creation, description, refuse_reason, state, type FROM vhffs_object WHERE object_id =?';
     my $sth = $vhffs->get_db_object->prepare( $query );

Modified: trunk/vhffs-api/src/Vhffs/Panel/Admin.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Panel/Admin.pm	2007-10-22 22:42:38 UTC (rev 1018)
+++ trunk/vhffs-api/src/Vhffs/Panel/Admin.pm	2007-10-22 23:23:34 UTC (rev 1019)
@@ -188,6 +188,24 @@
     return { CATNAME => gettext( 'CVS Admin' ),    ITEMS => $items, CATTYPE => 'cvs'  };
 }
 
+
+=head2 get_git_category
+
+    Vhffs::Panel::Admin::get_git_category;
+
+Returns a hashref (CATNAME, ITEM) containing git's administration
+items.
+
+=cut
+
+sub get_git_category {
+    my $items = [
+        { LINK => '/admin/git/list.pl',        LABEL => gettext( 'List all Git repos' ) },
+        { LINK => '/admin/git/search.pl',      LABEL => gettext( 'Search for a Git repository' ) }
+    ];
+    return { CATNAME => gettext( 'Git Admin' ),    ITEMS => $items, CATTYPE => 'git'  };
+}
+
 =head2 get_mysql_category
 
     Vhffs::Panel::Admin::get_mysql_category;

Modified: trunk/vhffs-api/src/Vhffs/Robots/Cvs.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Robots/Cvs.pm	2007-10-22 22:42:38 UTC (rev 1018)
+++ trunk/vhffs-api/src/Vhffs/Robots/Cvs.pm	2007-10-22 23:23:34 UTC (rev 1019)
@@ -88,7 +88,7 @@
 
 	if( -x "/usr/bin/cvs" )
 	{
-		$command = "/usr/bin/cvs -d $dir init";
+		my $command = '/usr/bin/cvs -d '.$dir.' init';
 		system( $command );
 
 		if( Vhffs::Functions::change_owner_recur( $dir , $cvs->get_owner_uid , $cvs->get_owner_gid ) < 0 )

Modified: trunk/vhffs-api/src/Vhffs/Robots/Group.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Robots/Group.pm	2007-10-22 22:42:38 UTC (rev 1018)
+++ trunk/vhffs-api/src/Vhffs/Robots/Group.pm	2007-10-22 23:23:34 UTC (rev 1019)
@@ -98,7 +98,7 @@
 	my $main = shift;	
 	my $query = 'SELECT gid, uid FROM vhffs_user_group WHERE state = '.Vhffs::Constants::TO_DELETE;
 
-	$request = $main->get_db_object()->prepare( $query ) or return -1;
+	my $request = $main->get_db_object()->prepare( $query ) or return -1;
 	return -1 unless( $request->execute() );
 
 	return( $request->fetchall_arrayref() );
@@ -122,7 +122,7 @@
 	my $main = shift;	
 	my $query = 'SELECT gid, uid FROM vhffs_user_group WHERE state='.Vhffs::Constants::WAITING_FOR_CREATION;
 
-	$request = $main->{'db'}->prepare( $query ) or return -1;
+	my $request = $main->{'db'}->prepare( $query ) or return -1;
 	return -1 unless ( $request->execute() );
 
 	return( $request->fetchall_arrayref() );
@@ -134,15 +134,15 @@
 	my $group = shift;
 	my $main = shift;
 
-	return -1 if( ! defined $user );
-	return -2 if( ! defined $group );
+	return -1 unless defined $user;
+	return -2 unless defined $group;
 
 	unless( $main->get_config->use_vhffsfs )  {
-		my $path = $user->get_home . "/" . $group->get_groupname;
+		my $path = $user->get_home.'/'.$group->get_groupname;
 		unlink( $path );
 	}
-	$group->add_history("The user ".$user->get_username." leave the group");
-	$user->add_history("The user ".$user->get_username." leave the group");
+	$group->add_history('The user '.$user->get_username.' left the group');
+	$user->add_history('The user '.$user->get_username.' left the group');
 
 	my $query = "DELETE FROM vhffs_user_group WHERE uid='".$user->get_uid."' AND gid='".$group->get_gid."'";
 	my $request = $main->{'db'}->prepare( $query ) or return -2;

Modified: trunk/vhffs-api/src/Vhffs/Robots/Mysql.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Robots/Mysql.pm	2007-10-22 22:42:38 UTC (rev 1018)
+++ trunk/vhffs-api/src/Vhffs/Robots/Mysql.pm	2007-10-22 23:23:34 UTC (rev 1019)
@@ -129,9 +129,7 @@
 	my $dbpass = $mysqlconfig->{'password'};
 	my $dbhost = $mysqlconfig->{'host'};
 
-	$dbi = DBI->connect( "DBI:mysql:dbname=mysql;host=$dbhost",$dbuser,$dbpass ) or return -1;
-	
-	return $dbi;
+	return DBI->connect( "DBI:mysql:dbname=mysql;host=$dbhost",$dbuser,$dbpass ) or -1;
 }
 
 sub update_db

Modified: trunk/vhffs-api/src/Vhffs/Services/Web.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Services/Web.pm	2007-10-22 22:42:38 UTC (rev 1018)
+++ trunk/vhffs-api/src/Vhffs/Services/Web.pm	2007-10-22 23:23:34 UTC (rev 1019)
@@ -222,30 +222,29 @@
 {
     my ($vhffs, $state, $name) = @_;
 
-    my $sql;
-    my $sth;
     my @params;
+    my $sql = 'SELECT h.httpd_id, h.servername, o.owner_uid, o.owner_gid, h.object_id, o.date_creation, o.description, o.state FROM vhffs_httpd h INNER JOIN vhffs_object o ON o.object_id = h.object_id WHERE 1=1';
 
-    my $objs;
-    my $result;
-
-    $sql = 'SELECT h.httpd_id, h.servername, o.owner_uid, o.owner_gid, h.object_id, o.date_creation, o.description, o.state FROM vhffs_httpd h INNER JOIN vhffs_object o ON o.object_id = h.object_id';
-
-    if( ( defined $state ) && ( $state < Vhffs::Constants::TO_DELETE ) ) {
-        $sql .= 'WHERE o.state= ? AND ( o.description LIKE ? OR w.servername LIKE ? )';
+    if( defined $state ) {
+        $sql .= ' AND o.state=?';
         push(@params, $state);
+    }
+
+    if( defined $name )  {
+	$sql .= ' AND ( o.description LIKE ? OR w.servername LIKE ? )';
         push(@params, '%'.$name.'%');
         push(@params, '%'.$name.'%');
     }
     
-    $sql .= " ORDER BY servername";
-    $sth = $vhffs->get_db_object()->prepare( $sql );
+    $sql .= ' ORDER BY servername';
+    my $sth = $vhffs->get_db_object()->prepare( $sql );
 
     my $rows = $sth->execute(@params);
 
     return undef unless($rows);
 
-    while( $result = $sth->fetchrow_arrayref )
+    my $objs;
+    while( my $result = $sth->fetchrow_arrayref )
     {
         push @{$objs}, _new Vhffs::Services::Web($vhffs, @{$result});
     }

Modified: trunk/vhffs-intl/src/es.po
===================================================================
--- trunk/vhffs-intl/src/es.po	2007-10-22 22:42:38 UTC (rev 1018)
+++ trunk/vhffs-intl/src/es.po	2007-10-22 23:23:34 UTC (rev 1019)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: VHFFS 4.1 spanish\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-17 12:44+0200\n"
+"POT-Creation-Date: 2007-10-21 21:49+0200\n"
 "PO-Revision-Date: ??????\n"
 "Last-Translator: black coffee <coffeester@xxxxxxxxx>\n"
 "Language-Team: black coffee <coffeester@xxxxxxxxx>\n"
@@ -32,7 +32,10 @@
 "  %s-request@%s\n"
 "with the following subject :\n"
 "  \"subscription accept %s %s\" \n"
-msgstr "  %s-request@%s\nwith the following subject :\n  \"subscription accept %s %s\" \n"
+msgstr ""
+"  %s-request@%s\n"
+"with the following subject :\n"
+"  \"subscription accept %s %s\" \n"
 
 #: ../vhffs-api/src/Vhffs/Listengine.pm:421
 #, perl-format
@@ -40,24 +43,27 @@
 "  %s-request@%s\n"
 "with the following subject :\n"
 "  \"subscription refuse %s %s\" \n"
-msgstr "  %s-request@%s\nwith the following subject :\n  \"subscription refuse %s %s\" \n"
+msgstr ""
+"  %s-request@%s\n"
+"with the following subject :\n"
+"  \"subscription refuse %s %s\" \n"
 
-#: ../vhffs-panel/mailinglist/add_sub.pl:108
+#: ../vhffs-panel/mailinglist/prefs.pl:313
 #, perl-format
-msgid "%s has been successfully added"
-msgstr "%s has been successfully added"
+msgid "%s has been added"
+msgstr ""
 
-#: ../vhffs-panel/mailinglist/add_sub.pl:105
+#: ../vhffs-panel/mailinglist/prefs.pl:311
 #, perl-format
-msgid "%s is already subscribed"
-msgstr "%s is already subscribed"
+msgid "%s is already a member of this list"
+msgstr ""
 
 #: ../vhffs-panel/mail/prefs.pl:203
 #, perl-format
 msgid "%s is not a correct mail address"
 msgstr "%s is not a correct mail address"
 
-#: ../vhffs-panel/mailinglist/add_sub.pl:102
+#: ../vhffs-panel/mailinglist/prefs.pl:309
 #, perl-format
 msgid "%s is not a valid mail"
 msgstr "%s is not a valid mail"
@@ -87,7 +93,8 @@
 #: ../vhffs-api/src/Vhffs/Panel/DNS.pm:298
 msgid ""
 "A CNAME, A or AAAA record with the same name already exists for this domain"
-msgstr "Ya existe un registro CNAME, A o AAAA con este mismo nombre para este dominio"
+msgstr ""
+"Ya existe un registro CNAME, A o AAAA con este mismo nombre para este dominio"
 
 #: ../vhffs-panel/dns/prefs.pl:127
 msgid "A Record deleted"
@@ -103,7 +110,10 @@
 "A mail to moderate is on the following mailing list:\n"
 "  %s\n"
 "\n"
-msgstr "Nuevo mensaje a revisar en la lista de correos:\n  %s\n\n"
+msgstr ""
+"Nuevo mensaje a revisar en la lista de correos:\n"
+"  %s\n"
+"\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine.pm:413
 #, perl-format
@@ -111,7 +121,10 @@
 "A new person wants to subscribe to the following mailing list:\n"
 "  %s\n"
 "\n"
-msgstr "Nueva persona pendiente de revisión para suscribirse a la lista de correos:\n  %s\n\n"
+msgstr ""
+"Nueva persona pendiente de revisión para suscribirse a la lista de correos:\n"
+"  %s\n"
+"\n"
 
 #: ../vhffs-panel/dns/prefs.pl:150
 msgid "A record added"
@@ -175,7 +188,7 @@
 #: ../vhffs-panel/admin/pgsql/edit.pl:119 ../vhffs-panel/admin/cvs/edit.pl:128
 #: ../vhffs-panel/admin/group/edit.pl:124
 #: ../vhffs-panel/admin/mysql/edit.pl:119
-#: ../vhffs-panel/admin/object/edit.pl:119
+#: ../vhffs-panel/admin/object/edit.pl:120
 #: ../vhffs-panel/admin/user/edit.pl:143
 msgid "Activated"
 msgstr "Activado"
@@ -232,11 +245,11 @@
 msgid "Add an account"
 msgstr "Añadir una cuenta"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:156
+#: ../vhffs-panel/mailinglist/prefs.pl:159
 msgid "Add members"
 msgstr "Añadir miembros"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:158
+#: ../vhffs-panel/mailinglist/prefs.pl:161
 msgid "Add them !"
 msgstr "Añadirlos"
 
@@ -257,13 +270,13 @@
 msgid "Address is not correct !"
 msgstr "¡Su dirección no es correcta!"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:157
+#: ../vhffs-panel/mailinglist/prefs.pl:160
 msgid "Addresses (one per line)"
 msgstr "Direcciones (una por linea)"
 
-#: ../vhffs-panel/admin/user/edit.pl:101 ../vhffs-panel/admin/user/edit.pl:131
-#: ../vhffs-panel/admin/user/show.pl:100 ../vhffs-panel/admin/user/show.pl:135
-#: ../vhffs-panel/mailinglist/prefs.pl:191
+#: ../vhffs-intl/template_strings.pl:20 ../vhffs-panel/admin/user/edit.pl:101
+#: ../vhffs-panel/admin/user/edit.pl:131 ../vhffs-panel/admin/user/show.pl:100
+#: ../vhffs-panel/admin/user/show.pl:135
 msgid "Admin"
 msgstr "Admin"
 
@@ -302,11 +315,12 @@
 msgid "Administration"
 msgstr "Administración"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:107
-msgid "Administration for list "
-msgstr "Administración para la lista "
+#: ../vhffs-panel/mailinglist/prefs.pl:110
+#, perl-format
+msgid "Administration for list %s"
+msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:123
+#: ../vhffs-panel/mailinglist/prefs.pl:127
 msgid "Admins only"
 msgstr "Solo administradores"
 
@@ -374,7 +388,9 @@
 #: ../vhffs-api/src/Vhffs/Listengine.pm:47
 msgid ""
 "All mails with commands must be sent on YOURLIST-request@xxxxxxxxxx list.\n"
-msgstr "Todos los correos con comandos deben ser enviados a SULISTA-request@xxxxxxxxxx.\n"
+msgstr ""
+"Todos los correos con comandos deben ser enviados a SULISTA-request@domain."
+"tld.\n"
 
 #: ../vhffs-panel/admin/object/list.pl:84
 msgid "All objects List"
@@ -409,7 +425,12 @@
 "into the following mailing list:\n"
 "  %s\n"
 "\n"
-msgstr "Ocurrió un error durante la aprobación de la suscripción de:\n  %s\nen la lista de correost:\n  %s\n\n"
+msgstr ""
+"Ocurrió un error durante la aprobación de la suscripción de:\n"
+"  %s\n"
+"en la lista de correost:\n"
+"  %s\n"
+"\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine.pm:191
 #, perl-format
@@ -417,7 +438,10 @@
 "An error occured during your subscription to the following list:\n"
 "  %s\n"
 "\n"
-msgstr "Ocurrió un error durante el proceso de suscripción a la lista:\n  %s\n\n"
+msgstr ""
+"Ocurrió un error durante el proceso de suscripción a la lista:\n"
+"  %s\n"
+"\n"
 
 #: ../vhffs-panel/user/prefs.pl:191
 msgid "An error occured while adding the box"
@@ -425,11 +449,15 @@
 
 #: ../vhffs-panel/user/prefs.pl:193
 msgid "An error occured while adding the box (anti-spam adding)"
-msgstr "Un error ocurrió durante la modificación del buzón (configuración del anti-spam)"
+msgstr ""
+"Un error ocurrió durante la modificación del buzón (configuración del anti-"
+"spam)"
 
 #: ../vhffs-panel/user/prefs.pl:195
 msgid "An error occured while adding the box (anti-virus adding)"
-msgstr "Un error ocurrió durante la modificación del buzón (configuración del anti-virus)"
+msgstr ""
+"Un error ocurrió durante la modificación del buzón (configuración del anti-"
+"virus)"
 
 #: ../vhffs-panel/user/prefs.pl:239
 msgid "An error occured while adding the forwarding"
@@ -437,12 +465,14 @@
 
 #: ../vhffs-panel/user/delete.pl:82
 msgid "An error occured while applying changes. This user will NOT be deleted"
-msgstr "Un error ocurrió durante la modificación Esto usuario NO será destruido"
+msgstr ""
+"Un error ocurrió durante la modificación Esto usuario NO será destruido"
 
 #: ../vhffs-panel/web/delete.pl:91
 msgid ""
 "An error occured while applying changes. This web area will NOT be deleted"
-msgstr "Un error ocurrió durante la modificación Este espacio web NO será destruido"
+msgstr ""
+"Un error ocurrió durante la modificación Este espacio web NO será destruido"
 
 #: ../vhffs-panel/git/create.pl:87
 msgid "An error occured while creating the git repository"
@@ -456,17 +486,22 @@
 msgid ""
 "An error occured while creating the object. Check that this group doesn't "
 "already have a download repository"
-msgstr "Un error ocurrió durante la creación del objeto. Verifique que este grupo no tenga ya un repositorio de download"
+msgstr ""
+"Un error ocurrió durante la creación del objeto. Verifique que este grupo no "
+"tenga ya un repositorio de download"
 
 #: ../vhffs-panel/dns/create.pl:58
 msgid ""
 "An error occured while creating the object. The domain is not correct or "
 "aleady exists in Vhffs database"
-msgstr "Un error ocurrió durante la creación del objeto. El dominio no es correcto o ya existe en la base de datos Vhffs."
+msgstr ""
+"Un error ocurrió durante la creación del objeto. El dominio no es correcto o "
+"ya existe en la base de datos Vhffs."
 
 #: ../vhffs-panel/cvs/create.pl:91 ../vhffs-panel/mailinglist/create.pl:91
 msgid "An error occured while creating the object.It probably already exists"
-msgstr "Un error ocurrió durante la creación del objeto. Probablemente ya existe."
+msgstr ""
+"Un error ocurrió durante la creación del objeto. Probablemente ya existe."
 
 #: ../vhffs-panel/svn/create.pl:87
 msgid "An error occured while creating the svn repository"
@@ -498,20 +533,13 @@
 
 #: ../vhffs-api/src/Vhffs/Robots/Mysql.pm:108
 msgid "An error occured while granting privileges to an admin user"
-msgstr "Un error ocurrió durante el otorgamientos de privilegios a un usuario admin"
+msgstr ""
+"Un error ocurrió durante el otorgamientos de privilegios a un usuario admin"
 
-#: ../vhffs-panel/mailinglist/change_right.pl:107
-msgid "An error occured while modifying the rights"
-msgstr "Un error ocurrió durante la modificación de los derechos."
-
 #: ../vhffs-panel/user/prefs.pl:247
 msgid "An error occured while the forwarding"
 msgstr "Un error ocurrió durante la redirección"
 
-#: ../vhffs-panel/mailinglist/del_member.pl:101
-msgid "An error occured while unsubscribing the user"
-msgstr "Un error ocurrió durante la desinscripción del usuario."
-
 #: ../vhffs-panel/admin/user/edit_submit.pl:131
 msgid "An error occured while updating"
 msgstr "Un error ocurrió durante la actualización."
@@ -520,12 +548,9 @@
 #, perl-format
 msgid ""
 "An error occured while updating language for the following address: %s.\n"
-msgstr "Un error ocurrió durante la modifiación del idioma para la dirección: %s.\n"
+msgstr ""
+"Un error ocurrió durante la modifiación del idioma para la dirección: %s.\n"
 
-#: ../vhffs-panel/repository/prefs_save.pl:95
-msgid "An error occured while updating the Download repository"
-msgstr "Un error ocurrió durante la actualización del repositorio de download."
-
 #: ../vhffs-panel/svn/prefs_save.pl:106 ../vhffs-panel/svn/prefs_save.pl:118
 #: ../vhffs-panel/svn/prefs_save.pl:124
 msgid "An error occured while updating the Subversion repository"
@@ -544,7 +569,7 @@
 msgid "An error occured while updating the object"
 msgstr "Un error ocurrió durante la actualización del objeto."
 
-#: ../vhffs-panel/group/prefs.pl:95 ../vhffs-panel/group/delete.pl:86
+#: ../vhffs-panel/group/prefs.pl:95 ../vhffs-panel/group/delete.pl:82
 msgid "An error occured while updating the project"
 msgstr "Un error ocurrió durante la actualización del projecto."
 
@@ -564,11 +589,11 @@
 msgid "Are you SURE you want DELETE this Mail Area ?"
 msgstr "¿Está SEGURO(A) que quiere DESTRUIR esta zona mail?"
 
-#: ../vhffs-panel/mysql/prefs.pl:116
+#: ../vhffs-panel/mysql/prefs.pl:123
 msgid "Are you SURE you want DELETE this MySQL database ?"
 msgstr "¿Está SEGURO(A) que quiere DESTRUIR esta base de datos MySQL?"
 
-#: ../vhffs-panel/pgsql/prefs.pl:109
+#: ../vhffs-panel/pgsql/prefs.pl:107
 msgid "Are you SURE you want DELETE this PostgreSQL database ?"
 msgstr "¿Está SEGURO(A) que quiere DESTRUIR esta base de datos PostgreSQL?"
 
@@ -592,7 +617,7 @@
 msgid "Are you SURE you want DELETE this git repository?"
 msgstr "¿Está SEGURO(A) que quiere DESTRUIR este repositorio git?"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:212
+#: ../vhffs-panel/mailinglist/prefs.pl:189
 msgid "Are you SURE you want DELETE this mailing list ?"
 msgstr "¿Está SEGURO(A) que quiere DESTRUIR esta lista de correos?"
 
@@ -609,7 +634,7 @@
 msgstr "Avatar borrado"
 
 #: ../vhffs-api/src/Vhffs/Panel/Object.pm:196
-#: ../vhffs-panel/admin/object/edit.pl:194
+#: ../vhffs-panel/admin/object/edit.pl:195
 msgid "Avatar management"
 msgstr "Administrar avatar"
 
@@ -626,24 +651,27 @@
 msgid "Back to login page"
 msgstr "Volver a la página de login"
 
-#: ../vhffs-panel/mysql/prefs.pl:97
-msgid ""
-"Be careful ! If you click on modify, VHFFS will stop the database and set a "
-"new password for this database."
-msgstr "Tenga cuidado! Si hace clic en modificar, VHFFS detendrá el servidor de base de datos y definirá una nueva contraseña para esta base de datos."
+#: ../vhffs-panel/pgsql/prefs.pl:130 ../vhffs-panel/mysql/prefs.pl:145
+msgid "Bad password, should be at least 3 chars"
+msgstr ""
 
 #: ../vhffs-panel/dns/create.pl:71
 msgid ""
 "Be careful ! You must give the reason why you want to host this domain on "
 "our servers."
-msgstr "Tenga cuidado! Tiene que justificar la razón por la cual desea hospedar este dominio en nuestros servidores."
+msgstr ""
+"Tenga cuidado! Tiene que justificar la razón por la cual desea hospedar este "
+"dominio en nuestros servidores."
 
 #: ../vhffs-panel/web/create.pl:96
 msgid ""
 "Be careful, if you want create www.domain.tld, you should create a webspace "
 "with domain.tld as servername. VHFFS redirect all request from www.domain."
 "tld to domain.tld"
-msgstr "Tenga cuidado, si quiere crear www.dominio.tld, tiene que crear una zona web con el nombre de servidor dominio.tld. VHFFS redirige todos los pedidos de www.dominio.tld a dominio.tld"
+msgstr ""
+"Tenga cuidado, si quiere crear www.dominio.tld, tiene que crear una zona web "
+"con el nombre de servidor dominio.tld. VHFFS redirige todos los pedidos de "
+"www.dominio.tld a dominio.tld"
 
 #: ../vhffs-panel/admin/broadcast_view.pl:88
 msgid "Body"
@@ -666,7 +694,9 @@
 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 "Entre su nombre de usuario aquí<br/>y recibirá una nueva contraseña por correo!"
+msgstr ""
+"Entre su nombre de usuario aquí<br/>y recibirá una nueva contraseña por "
+"correo!"
 
 #: ../vhffs-panel/mail/delete.pl:74
 #: ../vhffs-panel/admin/mail/delete_forward.pl:83
@@ -689,7 +719,7 @@
 #: ../vhffs-panel/admin/mysql/edit.pl:79
 #: ../vhffs-panel/admin/mysql/edit_submit.pl:78
 #: ../vhffs-panel/admin/mysql/show.pl:78
-#: ../vhffs-panel/admin/object/edit.pl:79
+#: ../vhffs-panel/admin/object/edit.pl:80
 #: ../vhffs-panel/admin/object/edit_submit.pl:77
 #: ../vhffs-panel/admin/object/delete_avatar.pl:81
 #: ../vhffs-panel/admin/user/edit.pl:79
@@ -708,8 +738,12 @@
 msgid "CGI ERROR!"
 msgstr "Error CGI"
 
-#: ../vhffs-panel/acl/view.pl:84 ../vhffs-panel/svn/prefs.pl:81
-#: ../vhffs-panel/git/prefs.pl:82
+#: ../vhffs-panel/pgsql/prefs.pl:125 ../vhffs-panel/acl/view.pl:84
+#: ../vhffs-panel/mysql/prefs.pl:140 ../vhffs-panel/svn/prefs.pl:81
+#: ../vhffs-panel/mailinglist/prefs.pl:227
+#: ../vhffs-panel/mailinglist/prefs.pl:252
+#: ../vhffs-panel/mailinglist/prefs.pl:273
+#: ../vhffs-panel/mailinglist/prefs.pl:293 ../vhffs-panel/git/prefs.pl:82
 msgid "CGI Error"
 msgstr "Error CGI"
 
@@ -718,13 +752,12 @@
 #: ../vhffs-panel/admin/broadcast_delete.pl:83
 #: ../vhffs-panel/admin/broadcast_submit.pl:83
 #: ../vhffs-panel/admin/broadcast_view.pl:78 ../vhffs-panel/cvs/prefs.pl:71
-#: ../vhffs-panel/mysql/prefs_save.pl:78 ../vhffs-panel/mysql/prefs.pl:70
-#: ../vhffs-panel/mysql/delete.pl:75 ../vhffs-panel/svn/delete.pl:72
-#: ../vhffs-panel/history.pl:84 ../vhffs-panel/git/delete.pl:73
+#: ../vhffs-panel/mysql/prefs.pl:71 ../vhffs-panel/mysql/delete.pl:75
+#: ../vhffs-panel/svn/delete.pl:72 ../vhffs-panel/history.pl:85
+#: ../vhffs-panel/git/delete.pl:73
 msgid "CGI Error !"
 msgstr "Error CGI"
 
-#: ../vhffs-panel/repository/prefs_save.pl:73
 #: ../vhffs-panel/repository/delete.pl:73 ../vhffs-panel/cvs/delete.pl:73
 #: ../vhffs-panel/svn/prefs_save.pl:75 ../vhffs-panel/git/prefs_save.pl:76
 #, perl-format
@@ -732,12 +765,6 @@
 msgstr "Error CGI %s"
 
 #: ../vhffs-panel/dns/prefs.pl:78 ../vhffs-panel/dns/delete.pl:78
-#: ../vhffs-panel/mailinglist/save_options.pl:83
-#: ../vhffs-panel/mailinglist/del_member.pl:79
-#: ../vhffs-panel/mailinglist/save_sig.pl:77
-#: ../vhffs-panel/mailinglist/add_sub.pl:80
-#: ../vhffs-panel/mailinglist/change_right.pl:81
-#: ../vhffs-panel/mailinglist/change_right.pl:101
 #: ../vhffs-panel/mailinglist/delete.pl:78 ../vhffs-panel/user/prefs.pl:90
 msgid "CGI Error!"
 msgstr "Error CGI!"
@@ -854,7 +881,9 @@
 msgid ""
 "Cannot create or fetch session file, please check that /tmp is readable and "
 "writeable"
-msgstr "Imposible acceder al archivo de sesión, verifique que /tmp está accesible para lectura y escritura"
+msgstr ""
+"Imposible acceder al archivo de sesión, verifique que /tmp está accesible "
+"para lectura y escritura"
 
 #: ../vhffs-panel/subscribe.pl:172
 msgid "Cannot create user, the username you entered already exists"
@@ -873,7 +902,7 @@
 #: ../vhffs-panel/admin/group/edit_submit.pl:89
 #: ../vhffs-panel/admin/group/show.pl:84 ../vhffs-panel/admin/mysql/edit.pl:85
 #: ../vhffs-panel/admin/mysql/show.pl:84
-#: ../vhffs-panel/admin/object/edit.pl:84
+#: ../vhffs-panel/admin/object/edit.pl:85
 #: ../vhffs-panel/admin/object/edit_submit.pl:81
 #: ../vhffs-panel/admin/object/delete_avatar.pl:85
 #: ../vhffs-panel/admin/user/edit.pl:85
@@ -895,7 +924,7 @@
 msgid "Cannot find object"
 msgstr "No se puede conseguir el objeto"
 
-#: ../vhffs-panel/history.pl:91
+#: ../vhffs-panel/history.pl:92
 msgid "Cannot get information on this object"
 msgstr "No se pudo obtener informaciónes sobre esto objecto"
 
@@ -905,17 +934,10 @@
 msgstr "No pudo obtener informaciónes sobre el objecto #%d"
 
 #: ../vhffs-panel/repository/prefs.pl:75 ../vhffs-panel/dns/prefs.pl:85
-#: ../vhffs-panel/dns/delete.pl:83 ../vhffs-panel/pgsql/prefs.pl:70
-#: ../vhffs-panel/cvs/prefs.pl:75 ../vhffs-panel/mysql/prefs.pl:76
-#: ../vhffs-panel/svn/prefs.pl:92
-#: ../vhffs-panel/mailinglist/save_options.pl:87
-#: ../vhffs-panel/mailinglist/del_member.pl:83
-#: ../vhffs-panel/mailinglist/prefs.pl:86
-#: ../vhffs-panel/mailinglist/save_sig.pl:81
-#: ../vhffs-panel/mailinglist/add_sub.pl:84
-#: ../vhffs-panel/mailinglist/change_right.pl:85
-#: ../vhffs-panel/mailinglist/delete.pl:82 ../vhffs-panel/web/prefs.pl:73
-#: ../vhffs-panel/git/prefs.pl:93
+#: ../vhffs-panel/dns/delete.pl:83 ../vhffs-panel/pgsql/prefs.pl:68
+#: ../vhffs-panel/cvs/prefs.pl:75 ../vhffs-panel/mysql/prefs.pl:77
+#: ../vhffs-panel/svn/prefs.pl:92 ../vhffs-panel/mailinglist/delete.pl:82
+#: ../vhffs-panel/web/prefs.pl:73 ../vhffs-panel/git/prefs.pl:93
 msgid "Cannot get informations on this object"
 msgstr "No se pudo obtener informaciónes sobre esto objecto"
 
@@ -927,7 +949,6 @@
 msgid "Cannot retrieve informations about this CVS repository"
 msgstr "No se pudo recuperar informaciones sobre este repositorio CVS"
 
-#: ../vhffs-panel/repository/prefs_save.pl:77
 #: ../vhffs-panel/repository/delete.pl:77
 msgid "Cannot retrieve informations about this Download repository"
 msgstr "No se pudo recuperar informaciones sobre este repositorio de download"
@@ -944,11 +965,6 @@
 msgid "Cannot retrieve informations about this repository"
 msgstr "No se pudo recuperar informaciones sobre este repositorio"
 
-#: ../vhffs-panel/mailinglist/save_options.pl:126
-#: ../vhffs-panel/mailinglist/save_sig.pl:95
-msgid "Cannot save"
-msgstr "No se pudo guardar"
-
 #: ../vhffs-panel/alert_submit.pl:84
 msgid "Cannot send message, CGI error..."
 msgstr "No se pudo enviar el mensaje, error CGI..."
@@ -989,9 +1005,9 @@
 msgid "Change forward"
 msgstr "Cambiar la redirección"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:177
-msgid "Change rights\n"
-msgstr "Cambiar los derechos\n"
+#: ../vhffs-intl/template_strings.pl:21
+msgid "Change rights"
+msgstr ""
 
 #: ../vhffs-panel/user/prefs.pl:211
 msgid "Change spam protection status for your account\n"
@@ -1014,7 +1030,7 @@
 msgid "City is not correct !"
 msgstr "¡La ciudad no es correcta!"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:116
+#: ../vhffs-panel/mailinglist/prefs.pl:120
 msgid "Closed"
 msgstr "Cerrado"
 
@@ -1036,7 +1052,9 @@
 
 #: ../vhffs-panel/subscribe.pl:235
 msgid "Confirmation code, contact administrator team if you can't read it"
-msgstr "Código de confirmación, contacte el equipo de administración si no lo puede leer"
+msgstr ""
+"Código de confirmación, contacte el equipo de administración si no lo puede "
+"leer"
 
 #: ../vhffs-panel/mail/prefs.pl:245
 msgid "Could not change box password"
@@ -1116,7 +1134,7 @@
 #: ../vhffs-panel/admin/pgsql/edit.pl:120 ../vhffs-panel/admin/cvs/edit.pl:129
 #: ../vhffs-panel/admin/group/edit.pl:125
 #: ../vhffs-panel/admin/mysql/edit.pl:120
-#: ../vhffs-panel/admin/object/edit.pl:120
+#: ../vhffs-panel/admin/object/edit.pl:121
 #: ../vhffs-panel/admin/user/edit.pl:144
 msgid "Created"
 msgstr "Creado"
@@ -1127,7 +1145,7 @@
 #: ../vhffs-panel/admin/pgsql/edit.pl:118 ../vhffs-panel/admin/cvs/edit.pl:127
 #: ../vhffs-panel/admin/group/edit.pl:123
 #: ../vhffs-panel/admin/mysql/edit.pl:118
-#: ../vhffs-panel/admin/object/edit.pl:118
+#: ../vhffs-panel/admin/object/edit.pl:119
 #: ../vhffs-panel/admin/user/edit.pl:142
 msgid "Creating error"
 msgstr "Error en la creación"
@@ -1203,12 +1221,12 @@
 msgstr "La base de datos será DESTRUIDA"
 
 #: ../vhffs-panel/admin/broadcast_view.pl:85
-#: ../vhffs-panel/group/history.pl:79
+#: ../vhffs-panel/group/history.pl:81
 msgid "Date"
 msgstr "Fecha"
 
 #: ../vhffs-api/src/Vhffs/Panel/Object.pm:98
-#: ../vhffs-panel/admin/object/edit.pl:95
+#: ../vhffs-panel/admin/object/edit.pl:96
 msgid "Date of creation"
 msgstr "Fecha de creación"
 
@@ -1222,10 +1240,10 @@
 #: ../vhffs-panel/dns/prefs.pl:339 ../vhffs-panel/dns/prefs.pl:352
 #: ../vhffs-panel/dns/prefs.pl:364 ../vhffs-panel/dns/prefs.pl:380
 #: ../vhffs-panel/dns/prefs.pl:391 ../vhffs-panel/dns/prefs.pl:407
-#: ../vhffs-panel/pgsql/prefs.pl:112 ../vhffs-panel/cvs/prefs.pl:129
+#: ../vhffs-panel/pgsql/prefs.pl:110 ../vhffs-panel/cvs/prefs.pl:129
 #: ../vhffs-panel/group/index.pl:65 ../vhffs-panel/group/prefs.pl:215
-#: ../vhffs-panel/mysql/prefs.pl:119 ../vhffs-panel/svn/prefs.pl:126
-#: ../vhffs-panel/mailinglist/prefs.pl:215 ../vhffs-panel/web/prefs.pl:114
+#: ../vhffs-panel/mysql/prefs.pl:126 ../vhffs-panel/svn/prefs.pl:126
+#: ../vhffs-panel/mailinglist/prefs.pl:192 ../vhffs-panel/web/prefs.pl:114
 #: ../vhffs-panel/user/prefs.pl:301 ../vhffs-panel/git/prefs.pl:127
 msgid "Delete"
 msgstr "Borrar"
@@ -1235,19 +1253,19 @@
 msgstr "Destruir SU cuenta"
 
 #: ../vhffs-api/src/Vhffs/Panel/Object.pm:197
-#: ../vhffs-panel/admin/object/edit.pl:195
+#: ../vhffs-panel/admin/object/edit.pl:196
 msgid "Delete avatar for this object"
 msgstr "Borrar el avatar para este objeto"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:176
+#: ../vhffs-intl/template_strings.pl:22
 msgid "Delete from list"
 msgstr "Eliminar de la lista"
 
-#: ../vhffs-panel/pgsql/prefs.pl:107
+#: ../vhffs-panel/pgsql/prefs.pl:105
 msgid "Delete this PostgreSQL database"
 msgstr "Destruir esta base de datos PostgreSQL"
 
-#: ../vhffs-panel/mysql/prefs.pl:114
+#: ../vhffs-panel/mysql/prefs.pl:121
 msgid "Delete this database"
 msgstr "Destruir esta base de datos"
 
@@ -1259,7 +1277,7 @@
 msgid "Delete this forward"
 msgstr "Destruir esta redirección"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:210
+#: ../vhffs-panel/mailinglist/prefs.pl:187
 msgid "Delete this list"
 msgstr "Destruir esta lista"
 
@@ -1301,7 +1319,7 @@
 #: ../vhffs-panel/admin/group/show.pl:99
 #: ../vhffs-panel/admin/mysql/edit.pl:101
 #: ../vhffs-panel/admin/mysql/show.pl:98
-#: ../vhffs-panel/admin/object/edit.pl:97
+#: ../vhffs-panel/admin/object/edit.pl:98
 #: ../vhffs-panel/admin/moderation.pl:87 ../vhffs-panel/cvs/create.pl:107
 #: ../vhffs-panel/group/create.pl:90 ../vhffs-panel/mysql/create.pl:109
 #: ../vhffs-panel/object/resubmit.pl:127 ../vhffs-panel/svn/create.pl:101
@@ -1342,11 +1360,12 @@
 msgid "Domain names for %s"
 msgstr "Nombres de dominio para %s"
 
-#: ../vhffs-panel/svn/prefs.pl:138 ../vhffs-panel/git/prefs.pl:139
+#: ../vhffs-panel/svn/prefs.pl:135 ../vhffs-panel/git/prefs.pl:139
 #, perl-format
 msgid ""
 "Don't forget to subscribe %s to your mailing list if you are filtering posts"
-msgstr "No olvide suscribir %s a su lista de correo si está filtrando los mensajes"
+msgstr ""
+"No olvide suscribir %s a su lista de correo si está filtrando los mensajes"
 
 #: ../vhffs-intl/extra_strings.pl:35
 msgid "Download Repository"
@@ -1365,10 +1384,6 @@
 msgid "Download repositories' administration"
 msgstr "Administración repositorios de download"
 
-#: ../vhffs-panel/repository/prefs_save.pl:99
-msgid "Download repository updated"
-msgstr "Repositorio de download modificado"
-
 #: ../vhffs-panel/admin/web/list.pl:90
 msgid "Edit"
 msgstr "Modificar"
@@ -1393,7 +1408,7 @@
 msgid "Edit MySQL database"
 msgstr "Modificar base de datos MySQL"
 
-#: ../vhffs-panel/admin/object/edit.pl:90
+#: ../vhffs-panel/admin/object/edit.pl:91
 msgid "Edit Object"
 msgstr "Modificar objeto"
 
@@ -1427,7 +1442,9 @@
 
 #: ../vhffs-panel/mail/prefs.pl:118
 msgid "Enter a mail address to catch all email for this domain"
-msgstr "Ingrese una dirección de correo para recibir todos los correos de este dominio"
+msgstr ""
+"Ingrese una dirección de correo para recibir todos los correos de este "
+"dominio"
 
 #: ../vhffs-panel/repository/index.pl:52 ../vhffs-panel/mail/index.pl:52
 #: ../vhffs-panel/dns/index.pl:52 ../vhffs-panel/pgsql/index.pl:52
@@ -1445,11 +1462,14 @@
 msgid ""
 "Error ! You MUST provide a password in your account when you create your "
 "popable account"
-msgstr "¡Error! DEBE proveer una contraseña cuando está creando una cuenta de correo"
+msgstr ""
+"¡Error! DEBE proveer una contraseña cuando está creando una cuenta de correo"
 
 #: ../vhffs-panel/group/create.pl:73
 msgid "Error creating group (maybe a group with the same name already exists)"
-msgstr "Error durante la creación del grupo (posiblemente ya existe otro grupo con este mismo nombre)"
+msgstr ""
+"Error durante la creación del grupo (posiblemente ya existe otro grupo con "
+"este mismo nombre)"
 
 #: ../vhffs-panel/web/create.pl:85
 msgid "Error creating webarea."
@@ -1471,21 +1491,11 @@
 msgid "Error while switching state. DNS will NOT be deleted"
 msgstr "Error durante el cambio de estado. DNS NO serán borrados"
 
-#: ../vhffs-panel/mysql/prefs_save.pl:82
-msgid "Error, password can be only alphanumeric caracters"
-msgstr "Error, contraseña solo puede contener carácteres alphanuméricos"
-
-#: ../vhffs-panel/group/delete.pl:79
-msgid ""
-"Error, your group is not empty. Please remove all objects from this group "
-"and try again"
-msgstr "Error, su grupo no está vacío. Por favor remueva todos los objetos de este grupo y intente de nuevo"
-
-#: ../vhffs-panel/group/prefs.pl:64 ../vhffs-panel/group/history.pl:64
+#: ../vhffs-panel/group/prefs.pl:64 ../vhffs-panel/group/history.pl:66
 msgid "Error. This group doesn't exists"
 msgstr "¡Error! Este grupo no existe"
 
-#: ../vhffs-panel/group/history.pl:82
+#: ../vhffs-panel/group/history.pl:84
 msgid "Event"
 msgstr "Evento"
 
@@ -1501,7 +1511,7 @@
 msgid "Filetype not supported, only png is supported"
 msgstr "Tipo de archivo no soportado, solamente png es soportado"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:165
+#: ../vhffs-intl/template_strings.pl:15
 msgid "Fill with project's members emails"
 msgstr "Llene con los correos de los miembros del proyecto"
 
@@ -1515,19 +1525,21 @@
 msgid "Firstname is not correct !"
 msgstr "¡Su nombre no es correcto!"
 
-#: ../vhffs-panel/svn/prefs.pl:132 ../vhffs-panel/git/prefs.pl:133
+#: ../vhffs-panel/git/prefs.pl:133
 msgid "Fix permissions in this repository"
 msgstr "Fijar permisos en el repositorio"
 
-#: ../vhffs-panel/svn/prefs.pl:134 ../vhffs-panel/git/prefs.pl:135
+#: ../vhffs-panel/git/prefs.pl:135
 msgid "Fix them !"
 msgstr "Fijarlas!"
 
-#: ../vhffs-panel/svn/prefs.pl:133 ../vhffs-panel/git/prefs.pl:134
+#: ../vhffs-panel/git/prefs.pl:134
 msgid ""
 "Fixing permissions on a repository solve permission access on the "
 "repository. Can be helpful if you encounter problems"
-msgstr "Fijar permisos en el repositorio permite solucionar los problemas de accesos al repositorio. Puede ser de ayuda cuando encuentre un problema"
+msgstr ""
+"Fijar permisos en el repositorio permite solucionar los problemas de accesos "
+"al repositorio. Puede ser de ayuda cuando encuentre un problema"
 
 #: ../vhffs-panel/mail/prefs.pl:327
 #: ../vhffs-panel/admin/mail/delete_forward.pl:109
@@ -1637,8 +1649,8 @@
 msgid "Go to administration"
 msgstr "Ir a la administración"
 
-#: ../vhffs-panel/dns/prefs.pl:422 ../vhffs-panel/svn/prefs.pl:154
-#: ../vhffs-panel/mailinglist/prefs.pl:226 ../vhffs-panel/git/prefs.pl:155
+#: ../vhffs-panel/dns/prefs.pl:422 ../vhffs-panel/svn/prefs.pl:151
+#: ../vhffs-panel/mailinglist/prefs.pl:203 ../vhffs-panel/git/prefs.pl:155
 msgid "Go to object-part admin"
 msgstr "Ir a la administración de la parte objeto"
 
@@ -1650,7 +1662,7 @@
 msgid "Grant an user access to this repository"
 msgstr "Añadir un usuario en este repositorio"
 
-#: ../vhffs-panel/mailinglist/add_sub.pl:114
+#: ../vhffs-panel/mailinglist/prefs.pl:319
 #, perl-format
 msgid ""
 "Greetings,\n"
@@ -1661,7 +1673,15 @@
 "with subject help.\n"
 "\n"
 "Cheers."
-msgstr "Bienvenido,\n\nAcaba de ser añadido a la lista %s en la plataforma  %s.\n\nPuede obtener ayuda sobre el motor de lista enviando un correo a  %s-request@%s con el título help.\n\nAtentamente."
+msgstr ""
+"Bienvenido,\n"
+"\n"
+"Acaba de ser añadido a la lista %s en la plataforma  %s.\n"
+"\n"
+"Puede obtener ayuda sobre el motor de lista enviando un correo a  %s-request@"
+"%s con el título help.\n"
+"\n"
+"Atentamente."
 
 #: ../vhffs-intl/extra_strings.pl:33
 #: ../vhffs-panel/admin/repository/edit.pl:96
@@ -1751,7 +1771,9 @@
 msgid ""
 "Groupname must contain between 3 and 12 characters, only letters or numbers "
 "in lower case"
-msgstr "El nombre de grupo debe contener entre 3 y 12 carácteres, solamente cifras y letras en míonusculas"
+msgstr ""
+"El nombre de grupo debe contener entre 3 y 12 carácteres, solamente cifras y "
+"letras en míonusculas"
 
 #: ../vhffs-public/lastusers.pl:84 ../vhffs-public/user.pl:90
 #: ../vhffs-api/src/Vhffs/Panel/Menu.pm:110
@@ -1781,7 +1803,15 @@
 "Mail: %s\n"
 "\n"
 "VHFFS administrators\n"
-msgstr "Hello %s %s,\n\nYou changed your email, here are your new personal information :\n\nUser: %s\nMail: %s\n\nVHFFS administrators\n"
+msgstr ""
+"Hello %s %s,\n"
+"\n"
+"You changed your email, here are your new personal information :\n"
+"\n"
+"User: %s\n"
+"Mail: %s\n"
+"\n"
+"VHFFS administrators\n"
 
 #: ../vhffs-api/src/Vhffs/Object.pm:514
 #, perl-format
@@ -1805,7 +1835,26 @@
 "---------\n"
 "%s\n"
 "%s"
-msgstr "Hello %s %s,\n\nYour %s (%s) on %s has been deleted.\n\nThis is because it have been refused a long time ago and you didn't\nsubmit an update since.\n\nFor reminder, the reason of refusal was:\n%s\n\nDon't be upset, submit it again if you forgot to update it in time.\nIf you need further information, just reply to this email !\n\nCheers,\nThe moderator team\n\n---------\n%s\n%s"
+msgstr ""
+"Hello %s %s,\n"
+"\n"
+"Your %s (%s) on %s has been deleted.\n"
+"\n"
+"This is because it have been refused a long time ago and you didn't\n"
+"submit an update since.\n"
+"\n"
+"For reminder, the reason of refusal was:\n"
+"%s\n"
+"\n"
+"Don't be upset, submit it again if you forgot to update it in time.\n"
+"If you need further information, just reply to this email !\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
 
 #: ../vhffs-api/src/Vhffs/User.pm:322
 #, perl-format
@@ -1826,7 +1875,23 @@
 "---------\n"
 "%s\n"
 "%s\n"
-msgstr "Hello %s %s,\n\nYour account (%s) on %s has been deleted.\n\nThis is because it was left unused for a long time\n\nDon't be upset, create it again and reply to this email to tell us\nwhy you really need to keep your account.\nIf you need further information, just reply to this email !\n\nCheers,\nThe moderator team\n\n---------\n%s\n%s\n"
+msgstr ""
+"Hello %s %s,\n"
+"\n"
+"Your account (%s) on %s has been deleted.\n"
+"\n"
+"This is because it was left unused for a long time\n"
+"\n"
+"Don't be upset, create it again and reply to this email to tell us\n"
+"why you really need to keep your account.\n"
+"If you need further information, just reply to this email !\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s\n"
 
 #: ../vhffs-api/src/Vhffs/Object.pm:419
 #, perl-format
@@ -1842,7 +1907,18 @@
 "---------\n"
 "%s\n"
 "%s"
-msgstr "Hello %s %s,\n\nYour request for a %s (%s) on %s was accepted.\nPlease wait while we are creating your object.\n\nCheers,\nThe moderator team\n\n---------\n%s\n%s"
+msgstr ""
+"Hello %s %s,\n"
+"\n"
+"Your request for a %s (%s) on %s was accepted.\n"
+"Please wait while we are creating your object.\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
 
 #: ../vhffs-api/src/Vhffs/Object.pm:468
 #, perl-format
@@ -1865,7 +1941,25 @@
 "---------\n"
 "%s\n"
 "%s"
-msgstr "Hello %s %s,\n\nYour request for a %s (%s) on %s was refused.\n\nThe reason of refusal given by moderators is:\n%s\n\nYou can change the description and submit it again for moderation on the\npanel. Puede borrar este objeto de su panel si cometió \nun error . Don't be upset, if you don't understand why your request has\nbeen refused, just reply to this email !\n\nCheers,\nThe moderator team\n\n---------\n%s\n%s"
+msgstr ""
+"Hello %s %s,\n"
+"\n"
+"Your request for a %s (%s) on %s was refused.\n"
+"\n"
+"The reason of refusal given by moderators is:\n"
+"%s\n"
+"\n"
+"You can change the description and submit it again for moderation on the\n"
+"panel. Puede borrar este objeto de su panel si cometió \n"
+"un error . Don't be upset, if you don't understand why your request has\n"
+"been refused, just reply to this email !\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
 
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:519
 #, perl-format
@@ -1897,7 +1991,9 @@
 msgid ""
 "His email address is:\n"
 "  %s\n"
-msgstr "Su dirección de correo es:\n  %s\n"
+msgstr ""
+"Su dirección de correo es:\n"
+"  %s\n"
 
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:824
 #: ../vhffs-panel/admin/repository/edit.pl:101
@@ -1912,12 +2008,12 @@
 #: ../vhffs-panel/admin/object/list.pl:91
 #: ../vhffs-panel/admin/object/list.pl:98
 #: ../vhffs-panel/admin/user/edit.pl:110 ../vhffs-panel/admin/user/show.pl:110
-#: ../vhffs-panel/history.pl:105
+#: ../vhffs-panel/history.pl:106
 msgid "History"
 msgstr "Historial"
 
 #: ../vhffs-api/src/Vhffs/Panel/Object.pm:200
-#: ../vhffs-panel/admin/object/edit.pl:197
+#: ../vhffs-panel/admin/object/edit.pl:198
 msgid "History of this object"
 msgstr "Historial de este objeto"
 
@@ -1970,26 +2066,35 @@
 msgid ""
 "If you are new to VHFFS, you should start to read quickly the whole help "
 "available by clicking on the help button in the upper right of your screen"
-msgstr "If you are new to VHFFS, you should start to read quickly the whole help available by clicking on the help button in the upper right of your screen"
+msgstr ""
+"If you are new to VHFFS, you should start to read quickly the whole help "
+"available by clicking on the help button in the upper right of your screen"
 
 #: ../vhffs-api/src/Vhffs/Listengine.pm:85
 msgid ""
 "If you don't asked to be subscribed to this mailing list,\n"
 "just forget this email\n"
-msgstr "Si Ud. no solicitó una suscripción a esta lista,\nsimplement no tome en cuenta este correo\n"
+msgstr ""
+"Si Ud. no solicitó una suscripción a esta lista,\n"
+"simplement no tome en cuenta este correo\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine.pm:103
 msgid ""
 "If you haven't asked to be unsubscribed from this list,\n"
 "please don't answer to this mail\n"
-msgstr "Si Ud. no solicitó su desinscripción de esta lista,\nsimplement no tome en cuenta este correo\n"
+msgstr ""
+"Si Ud. no solicitó su desinscripción de esta lista,\n"
+"simplement no tome en cuenta este correo\n"
 
 #: ../vhffs-panel/group/prefs.pl:201
 msgid ""
 "If you want more disk space for your project, you must fill a form in the "
 "bug report section, in the menu. Don't forget to mention the name of the "
 "group."
-msgstr "Si requiere de más espacio para su proyecto, tiene que llenar un formulario en la sección reportar bug, en el menu. No olvide mencionar le nombre del grupo."
+msgstr ""
+"Si requiere de más espacio para su proyecto, tiene que llenar un formulario "
+"en la sección reportar bug, en el menu. No olvide mencionar le nombre del "
+"grupo."
 
 #: ../vhffs-api/src/Vhffs/Panel/DNS.pm:196
 #: ../vhffs-api/src/Vhffs/Panel/DNS.pm:208
@@ -2010,7 +2115,10 @@
 "Invalid database name, it must contain only numbers, lowercase letters and "
 "underscore (the latter isn't allowed in first or last position) and be "
 "between 3 and 32 characters."
-msgstr "Nombre inválido para la base de datos, solo puede contener cifras, letras en minúscula y underscore (el último no está autorizado en la primera y última posición). El nombre debe tener entre 3 y 32 carácteres."
+msgstr ""
+"Nombre inválido para la base de datos, solo puede contener cifras, letras en "
+"minúscula y underscore (el último no está autorizado en la primera y última "
+"posición). El nombre debe tener entre 3 y 32 carácteres."
 
 #: ../vhffs-api/src/Vhffs/Panel/DNS.pm:285
 msgid "Invalid destination"
@@ -2042,12 +2150,14 @@
 msgid "Invalid local part"
 msgstr "Parte local inválida"
 
-#: ../vhffs-panel/pgsql/create.pl:87 ../vhffs-panel/mysql/create.pl:87
-msgid ""
-"Invalid password. It must be at least 3 characters and contain only letters "
-"(lower and uppercase) and numbers"
-msgstr "Contraseña inválida Debe tener al menos 3 carácteres y contener solamente letras (mayusculas y minisculas) asi como cifras"
+#: ../vhffs-panel/pgsql/create.pl:87
+msgid "Invalid password. It must be at least 3 chars"
+msgstr ""
 
+#: ../vhffs-panel/mysql/create.pl:87
+msgid "Invalid password. It must contain at least 3 characters"
+msgstr ""
+
 #: ../vhffs-api/src/Vhffs/Panel/DNS.pm:311
 #: ../vhffs-api/src/Vhffs/Panel/DNS.pm:327
 msgid "Invalid port"
@@ -2084,7 +2194,9 @@
 msgid ""
 "Invalid reponame. It must contain between 3 and 64 characters, only "
 "lowercase letters and numbers"
-msgstr "Nombre de repositorio inválido. Debe tener entre 3 y 64 carácteres, letras en minusculas y cifras"
+msgstr ""
+"Nombre de repositorio inválido. Debe tener entre 3 y 64 carácteres, letras "
+"en minusculas y cifras"
 
 #: ../vhffs-panel/web/create.pl:78
 msgid "Invalid servername (doesn't conform to domain names rules)"
@@ -2098,7 +2210,9 @@
 msgid ""
 "Invalid username, it must contain between 3 and 12 alphanumeric characters, "
 "all in lowercase"
-msgstr "Nombre de usario inválido, debe contener de 3 a 12 carácteres alfanuméricos, todos en minúscula"
+msgstr ""
+"Nombre de usario inválido, debe contener de 3 a 12 carácteres alfanuméricos, "
+"todos en minúscula"
 
 #: ../vhffs-api/src/Vhffs/Panel/DNS.pm:313
 #: ../vhffs-api/src/Vhffs/Panel/DNS.pm:329
@@ -2207,7 +2321,7 @@
 msgid "List all mailing lists"
 msgstr "Listar todas las listas"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:155
+#: ../vhffs-panel/mailinglist/prefs.pl:158
 msgid "List all members"
 msgstr "Listar todos los miembros"
 
@@ -2266,6 +2380,10 @@
 msgid "List of all websites"
 msgstr "Lista de todas las areas web"
 
+#: ../vhffs-panel/mailinglist/prefs.pl:239
+msgid "List updated"
+msgstr ""
+
 #: ../vhffs-panel/mailinglist/delete.pl:94
 msgid "List will NOT be deleted"
 msgstr "La lista NO será destruida"
@@ -2384,6 +2502,11 @@
 msgid "Mailing List"
 msgstr "Lista de correo"
 
+#: ../vhffs-panel/mailinglist/prefs.pl:82
+#, perl-format
+msgid "Mailing list %s@%s not found"
+msgstr ""
+
 #: ../vhffs-panel/svn/prefs_save.pl:132 ../vhffs-panel/git/prefs_save.pl:133
 msgid "Mailing list address is invalid"
 msgstr "Dirección de la lista inválida"
@@ -2413,7 +2536,7 @@
 msgid "Manage mailings"
 msgstr "Administrar listas de correo"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:154
+#: ../vhffs-panel/mailinglist/prefs.pl:157
 msgid "Manage members"
 msgstr "Administrar miembros"
 
@@ -2421,11 +2544,11 @@
 msgid "Many users matched your query. Please choose between them"
 msgstr "Varios usuarios corresponden a su búsqueda. Escoja entre ellos"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:121
+#: ../vhffs-panel/mailinglist/prefs.pl:125
 msgid "Members only"
 msgstr "Solo miembros"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:122
+#: ../vhffs-panel/mailinglist/prefs.pl:126
 msgid "Members only and moderated"
 msgstr "Solo miembros y moderado"
 
@@ -2447,7 +2570,7 @@
 msgid "Message with id: %s"
 msgstr "Mensaje con el id: %s"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:119
+#: ../vhffs-panel/mailinglist/prefs.pl:123
 msgid "Moderated for everyone"
 msgstr "Moderado para todo el mundo"
 
@@ -2473,7 +2596,7 @@
 #: ../vhffs-panel/admin/pgsql/edit.pl:125 ../vhffs-panel/admin/cvs/edit.pl:134
 #: ../vhffs-panel/admin/group/edit.pl:130
 #: ../vhffs-panel/admin/mysql/edit.pl:125
-#: ../vhffs-panel/admin/object/edit.pl:125
+#: ../vhffs-panel/admin/object/edit.pl:126
 #: ../vhffs-panel/admin/user/edit.pl:149
 msgid "Modification applied"
 msgstr "Modificación realizada"
@@ -2485,7 +2608,7 @@
 #: ../vhffs-panel/admin/pgsql/edit.pl:124 ../vhffs-panel/admin/cvs/edit.pl:133
 #: ../vhffs-panel/admin/group/edit.pl:129
 #: ../vhffs-panel/admin/mysql/edit.pl:124
-#: ../vhffs-panel/admin/object/edit.pl:124
+#: ../vhffs-panel/admin/object/edit.pl:125
 #: ../vhffs-panel/admin/user/edit.pl:148
 msgid "Modification error"
 msgstr "Error durante la modificación"
@@ -2494,10 +2617,6 @@
 msgid "Modifications applied successfully"
 msgstr "Modificaciónes realizadas con éxito"
 
-#: ../vhffs-panel/pgsql/prefs_save.pl:99
-msgid "Modifications applied to your database"
-msgstr "Modificaciónes realizadas en la base de datos"
-
 #: ../vhffs-panel/web/prefs_save.pl:91
 msgid "Modifications applied to your webarea"
 msgstr "Modificaciónes realizadas en su zona web"
@@ -2517,7 +2636,7 @@
 #: ../vhffs-panel/dns/prefs.pl:329 ../vhffs-panel/dns/prefs.pl:341
 #: ../vhffs-panel/dns/prefs.pl:354 ../vhffs-panel/dns/prefs.pl:365
 #: ../vhffs-panel/dns/prefs.pl:392 ../vhffs-panel/dns/prefs.pl:408
-#: ../vhffs-panel/pgsql/prefs.pl:106
+#: ../vhffs-panel/pgsql/prefs.pl:104
 #: ../vhffs-panel/admin/repository/list.pl:101
 #: ../vhffs-panel/admin/mail/list.pl:103 ../vhffs-panel/admin/dns/list.pl:100
 #: ../vhffs-panel/admin/pgsql/list.pl:101 ../vhffs-panel/admin/cvs/list.pl:96
@@ -2527,7 +2646,7 @@
 #: ../vhffs-panel/admin/user/list.pl:90 ../vhffs-panel/admin/git/list.pl:87
 #: ../vhffs-panel/cvs/prefs.pl:123 ../vhffs-panel/group/prefs.pl:209
 #: ../vhffs-panel/group/prefs.pl:227 ../vhffs-panel/acl/view.pl:104
-#: ../vhffs-panel/mysql/prefs.pl:113 ../vhffs-panel/svn/prefs.pl:120
+#: ../vhffs-panel/mysql/prefs.pl:120 ../vhffs-panel/svn/prefs.pl:120
 #: ../vhffs-panel/web/prefs.pl:102 ../vhffs-panel/user/prefs.pl:285
 #: ../vhffs-panel/git/prefs.pl:121
 msgid "Modify"
@@ -2550,7 +2669,7 @@
 msgid "MySQL Admin"
 msgstr "Admin MySQL "
 
-#: ../vhffs-panel/mysql/prefs.pl:96
+#: ../vhffs-panel/mysql/prefs.pl:104
 msgid "MySQL Administration"
 msgstr "Administración MySQL"
 
@@ -2593,7 +2712,7 @@
 
 #: ../vhffs-panel/admin/repository/edit.pl:95
 #: ../vhffs-panel/admin/repository/show.pl:94
-#: ../vhffs-panel/admin/moderation.pl:84 ../vhffs-panel/group/history.pl:81
+#: ../vhffs-panel/admin/moderation.pl:84 ../vhffs-panel/group/history.pl:83
 msgid "Name"
 msgstr "Nombre"
 
@@ -2605,7 +2724,7 @@
 msgid "Name for record"
 msgstr "Nombre de este registro"
 
-#: ../vhffs-panel/pgsql/prefs.pl:92 ../vhffs-panel/mysql/prefs.pl:99
+#: ../vhffs-panel/pgsql/prefs.pl:91 ../vhffs-panel/mysql/prefs.pl:106
 msgid "Name of the database"
 msgstr "Nombre de la base de datos"
 
@@ -2659,7 +2778,8 @@
 
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:363
 msgid "No cookie found, please accept the cookie and then please login again !"
-msgstr "No hay cookie, por favor, acepte los cookies y luego conectese otra vez!"
+msgstr ""
+"No hay cookie, por favor, acepte los cookies y luego conectese otra vez!"
 
 #: ../vhffs-public/group.pl:164
 msgid "No cvs repository available for this group"
@@ -2669,12 +2789,12 @@
 msgid "No enough rights"
 msgstr "No tiene suficiente derechos"
 
-#: ../vhffs-panel/group/history.pl:86
+#: ../vhffs-panel/group/history.pl:88
 msgid "No event about this group"
 msgstr "No hay evento sobre este objeto"
 
 #: ../vhffs-api/src/Vhffs/Panel/Object.pm:206
-#: ../vhffs-panel/admin/object/edit.pl:203 ../vhffs-panel/history.pl:115
+#: ../vhffs-panel/admin/object/edit.pl:204 ../vhffs-panel/history.pl:116
 msgid "No event about this object"
 msgstr "No hay evento sobre este objeto"
 
@@ -2695,18 +2815,10 @@
 msgid "No list available for this group"
 msgstr "No hay lista para este grupo"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:206
-msgid "No member on this list"
-msgstr "No hay miembros en esta lista"
-
 #: ../vhffs-listengine/src/listengine.pl:774
 msgid "No message to moderate"
 msgstr "No hay mensaje por moderar"
 
-#: ../vhffs-panel/pgsql/prefs_save.pl:95
-msgid "No modification can be applied. Please check your fields."
-msgstr "No hay modificaciones que pueden ser realizadas. Por favor, verifique los campos."
-
 #: ../vhffs-public/group.pl:192
 msgid "No subversion repository available for this group"
 msgstr "No hay repositorios subversion para este grupo"
@@ -2737,9 +2849,9 @@
 msgstr "No, no estoy seguro, prefiero conservarlo."
 
 #: ../vhffs-panel/repository/prefs.pl:106 ../vhffs-panel/mail/prefs.pl:150
-#: ../vhffs-panel/pgsql/prefs.pl:111 ../vhffs-panel/cvs/prefs.pl:128
-#: ../vhffs-panel/group/prefs.pl:214 ../vhffs-panel/mysql/prefs.pl:118
-#: ../vhffs-panel/svn/prefs.pl:125 ../vhffs-panel/mailinglist/prefs.pl:214
+#: ../vhffs-panel/pgsql/prefs.pl:109 ../vhffs-panel/cvs/prefs.pl:128
+#: ../vhffs-panel/group/prefs.pl:214 ../vhffs-panel/mysql/prefs.pl:125
+#: ../vhffs-panel/svn/prefs.pl:125 ../vhffs-panel/mailinglist/prefs.pl:191
 #: ../vhffs-panel/git/prefs.pl:126
 msgid "No, I'm not sure, I prefer to keep this project."
 msgstr "No, no estoy seguro, prefiero conservar este proyecto."
@@ -2748,16 +2860,11 @@
 msgid "None"
 msgstr "Ninguno"
 
-#: ../vhffs-panel/mailinglist/del_member.pl:95
-#: ../vhffs-panel/mailinglist/change_right.pl:97
-msgid "Not valid mail"
-msgstr "Mail inválido"
-
 #: ../vhffs-panel/admin/user/edit_note.pl:97
 msgid "Note successfully modified"
 msgstr "Nota modificada con éxito"
 
-#: ../vhffs-panel/svn/prefs.pl:137 ../vhffs-panel/git/prefs.pl:138
+#: ../vhffs-panel/svn/prefs.pl:134 ../vhffs-panel/git/prefs.pl:138
 msgid "Notify changes on mailing-list :"
 msgstr "Notificar cambio en la lista de correo :"
 
@@ -2770,7 +2877,7 @@
 msgstr "Destrucción del objeto"
 
 #: ../vhffs-api/src/Vhffs/Panel/Object.pm:96
-#: ../vhffs-panel/admin/object/edit.pl:93
+#: ../vhffs-panel/admin/object/edit.pl:94
 msgid "Object id"
 msgstr "Objeto id"
 
@@ -2778,8 +2885,8 @@
 msgid "Object name"
 msgstr "Nombre del objeto"
 
-#: ../vhffs-panel/dns/prefs.pl:423 ../vhffs-panel/svn/prefs.pl:155
-#: ../vhffs-panel/mailinglist/prefs.pl:227 ../vhffs-panel/git/prefs.pl:156
+#: ../vhffs-panel/dns/prefs.pl:423 ../vhffs-panel/svn/prefs.pl:152
+#: ../vhffs-panel/mailinglist/prefs.pl:204 ../vhffs-panel/git/prefs.pl:156
 msgid "Object part"
 msgstr "Parte del objeto"
 
@@ -2809,32 +2916,27 @@
 msgid "Only this list administrators can use the following commands.\n"
 msgstr "Solo los administradores pueden utilizar los comandos siguientes.\n"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:118
+#: ../vhffs-panel/mailinglist/prefs.pl:122
 msgid "Open for everyone"
 msgstr "Abierto a todos"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:120
+#: ../vhffs-panel/mailinglist/prefs.pl:124
 msgid "Open for members, moderated for non-members"
 msgstr "Abierto a los miembros, moderado para los no-miembros"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:115
+#: ../vhffs-panel/mailinglist/prefs.pl:119
 msgid "Open, approval required"
 msgstr "Abierto, requiere aprobación"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:114
+#: ../vhffs-panel/mailinglist/prefs.pl:118
 msgid "Open, no approval required"
 msgstr "Abierto, no requiere aprobación"
 
-#: ../vhffs-panel/svn/prefs.pl:136 ../vhffs-panel/mailinglist/prefs.pl:112
-#: ../vhffs-panel/git/prefs.pl:137
+#: ../vhffs-intl/template_strings.pl:12 ../vhffs-panel/svn/prefs.pl:133
+#: ../vhffs-panel/mailinglist/prefs.pl:116 ../vhffs-panel/git/prefs.pl:137
 msgid "Options"
 msgstr "Opciones"
 
-#: ../vhffs-panel/mailinglist/save_options.pl:130
-#: ../vhffs-panel/mailinglist/save_sig.pl:97
-msgid "Options successfully modified"
-msgstr "Opciones modificada con éxito"
-
 #: ../vhffs-public/allwebsites.pl:88
 msgid "Owned by"
 msgstr "Pertenece a"
@@ -2872,6 +2974,10 @@
 msgid "Password"
 msgstr "Contraseña"
 
+#: ../vhffs-panel/pgsql/prefs.pl:139 ../vhffs-panel/mysql/prefs.pl:154
+msgid "Password change request taken in account, please wait for processing"
+msgstr ""
+
 #: ../vhffs-panel/user/prefs.pl:142
 msgid "Password changed"
 msgstr "Contraseña modificada"
@@ -2881,7 +2987,7 @@
 msgid "Password changed for box %s"
 msgstr "Contraseña modificada para el buzón %s"
 
-#: ../vhffs-panel/pgsql/prefs.pl:98 ../vhffs-panel/mysql/prefs.pl:105
+#: ../vhffs-panel/pgsql/prefs.pl:97 ../vhffs-panel/mysql/prefs.pl:112
 msgid "Password for this database"
 msgstr "Contraseña para esta base de datos"
 
@@ -2921,7 +3027,10 @@
 "area. So you have to write it in impersonal form. You should take care to "
 "write it with correct grammar and tenses. Take all the time you need to fill "
 "it with the best content you are able to do."
-msgstr "Tome en cuenta que esta descripción aparecerá en la zona pública. Escriba en forma impersonal. Debe tener cuidado con la gramática y la ortografía. Tome su tiempo para colocar el contenido el más adecuado."
+msgstr ""
+"Tome en cuenta que esta descripción aparecerá en la zona pública. Escriba en "
+"forma impersonal. Debe tener cuidado con la gramática y la ortografía. Tome "
+"su tiempo para colocar el contenido el más adecuado."
 
 #: ../vhffs-panel/subscribe.pl:157
 msgid "Please enter a correct city"
@@ -2966,14 +3075,16 @@
 msgid "Please wait %s, a new password will be sent to you in a few minutes..."
 msgstr "Espere %s, una nueva contraseña os será enviada en algunos minutos..."
 
-#: ../vhffs-panel/pgsql/prefs_save.pl:80 ../vhffs-panel/pgsql/prefs.pl:83
+#: ../vhffs-panel/pgsql/prefs.pl:77
 msgid "Please wait modification, creation or deletion"
 msgstr "Espere la modificación, la creación o la remoción del objeto"
 
 #: ../vhffs-panel/subscribe.pl:187
 msgid ""
 "Please wait while we are creating the account, it will take some minutes"
-msgstr "Espere mientras se procede a la creación de su cuenta. Esto puede tomar algunos minutos"
+msgstr ""
+"Espere mientras se procede a la creación de su cuenta. Esto puede tomar "
+"algunos minutos"
 
 #: ../vhffs-panel/admin/mail/edit.pl:116 ../vhffs-panel/admin/mail/show.pl:116
 msgid "Popboxes for"
@@ -2987,7 +3098,7 @@
 msgid "PostgreSQL Admin"
 msgstr "Admin PostgreSQL "
 
-#: ../vhffs-panel/pgsql/prefs.pl:90
+#: ../vhffs-panel/pgsql/prefs.pl:89
 msgid "PostgreSQL Administration"
 msgstr "Administración PostgreSQL"
 
@@ -3008,7 +3119,7 @@
 msgid "PostgreSQL password for this database "
 msgstr "Contraseña PostgreSQL para esta base de datos "
 
-#: ../vhffs-panel/mailinglist/prefs.pl:117
+#: ../vhffs-panel/mailinglist/prefs.pl:121
 msgid "Posting control:"
 msgstr "Control de los envios:"
 
@@ -3021,7 +3132,7 @@
 msgid "Prefix already exists"
 msgstr "Este prefijo ya existe"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:145
+#: ../vhffs-panel/mailinglist/prefs.pl:149
 msgid "Prefix on subject"
 msgstr "Prefijo colocado delante del título"
 
@@ -3041,7 +3152,7 @@
 msgid "Project Description"
 msgstr "Descripción del proyecto"
 
-#: ../vhffs-panel/group/history.pl:77
+#: ../vhffs-panel/group/history.pl:79
 msgid "Project History"
 msgstr "Historial del proyecto"
 
@@ -3091,7 +3202,7 @@
 msgid "Public"
 msgstr "Público"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:143
+#: ../vhffs-panel/mailinglist/prefs.pl:147
 msgid "Public archives"
 msgstr "Archivos públicos"
 
@@ -3161,7 +3272,7 @@
 msgid "Remove"
 msgstr "Quitar"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:144
+#: ../vhffs-panel/mailinglist/prefs.pl:148
 msgid "Reply to: on list"
 msgstr "Campo Reply-to: activo"
 
@@ -3177,9 +3288,10 @@
 msgid "Repository updated"
 msgstr "Repositorio modificado"
 
-#: ../vhffs-panel/mailinglist/change_right.pl:111
-msgid "Rights successfully changed"
-msgstr "Derechos modificados con éxito"
+#: ../vhffs-panel/mailinglist/prefs.pl:280
+#, perl-format
+msgid "Rights for subscriber %s updated"
+msgstr ""
 
 #: ../vhffs-panel/dns/prefs.pl:212
 msgid "SRV Record added"
@@ -3231,7 +3343,7 @@
 msgid "SVN stats"
 msgstr "Estadísticas SVN"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:148
+#: ../vhffs-panel/mailinglist/prefs.pl:152
 msgid "Save options"
 msgstr "Guardar opciones"
 
@@ -3375,7 +3487,7 @@
 #: ../vhffs-panel/admin/pgsql/edit.pl:102 ../vhffs-panel/admin/cvs/edit.pl:101
 #: ../vhffs-panel/admin/group/edit.pl:101
 #: ../vhffs-panel/admin/mysql/edit.pl:102
-#: ../vhffs-panel/admin/object/edit.pl:98
+#: ../vhffs-panel/admin/object/edit.pl:99
 #: ../vhffs-panel/admin/user/edit.pl:111
 #: ../vhffs-panel/admin/broadcast_view.pl:100
 #: ../vhffs-panel/admin/broadcast_list.pl:99 ../vhffs-panel/cvs/create.pl:106
@@ -3477,7 +3589,7 @@
 msgid "Show me this user according to this username"
 msgstr "Ver este usuario"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:150
+#: ../vhffs-intl/template_strings.pl:14
 msgid "Signature"
 msgstr "Firma"
 
@@ -3511,7 +3623,7 @@
 #: ../vhffs-panel/admin/group/show.pl:98
 #: ../vhffs-panel/admin/mysql/edit.pl:100
 #: ../vhffs-panel/admin/mysql/show.pl:97 ../vhffs-panel/admin/mysql/show.pl:99
-#: ../vhffs-panel/admin/object/edit.pl:96
+#: ../vhffs-panel/admin/object/edit.pl:97
 #: ../vhffs-panel/admin/user/edit.pl:137 ../vhffs-panel/admin/user/show.pl:109
 msgid "Status"
 msgstr "Estatus"
@@ -3546,14 +3658,19 @@
 msgid "Subscribe"
 msgstr "Suscribir"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:113
+#: ../vhffs-panel/mailinglist/prefs.pl:117
 msgid "Subscribe control:"
 msgstr "Control de las suscripciones:"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:187
+#: ../vhffs-intl/template_strings.pl:18
 msgid "Subscribed"
 msgstr "Inscrito"
 
+#: ../vhffs-panel/mailinglist/prefs.pl:259
+#, perl-format
+msgid "Subscriber %s deleted"
+msgstr ""
+
 #: ../vhffs-panel/subscribe.pl:216
 msgid "Subscription"
 msgstr "Suscripción"
@@ -3565,16 +3682,16 @@
 "  %s\n"
 "\n"
 "Have a nice day.\n"
-msgstr "La suscripción a esta lista está suspendida:\n  %s\n\nQue tenga un buen día.\n"
+msgstr ""
+"La suscripción a esta lista está suspendida:\n"
+"  %s\n"
+"\n"
+"Que tenga un buen día.\n"
 
 #: ../vhffs-panel/object/upavatar.pl:125
 msgid "Successfully created or updated avatar"
 msgstr "Avatar creado o modificado con éxito"
 
-#: ../vhffs-panel/mailinglist/del_member.pl:105
-msgid "Successfully deleted"
-msgstr "Borrado con éxito"
-
 #: ../vhffs-intl/extra_strings.pl:23
 #: ../vhffs-api/src/Vhffs/Panel/Object.pm:124
 #: ../vhffs-api/src/Vhffs/Panel/Object.pm:125
@@ -3587,8 +3704,8 @@
 #: ../vhffs-panel/admin/group/edit.pl:127
 #: ../vhffs-panel/admin/mysql/edit.pl:121
 #: ../vhffs-panel/admin/mysql/edit.pl:122
-#: ../vhffs-panel/admin/object/edit.pl:121
 #: ../vhffs-panel/admin/object/edit.pl:122
+#: ../vhffs-panel/admin/object/edit.pl:123
 #: ../vhffs-panel/admin/user/edit.pl:145
 msgid "Suspended"
 msgstr "Suspendido"
@@ -3658,7 +3775,9 @@
 msgid ""
 "The avatar is a pictures that describes you. You can upload an PNG image and "
 "use it as avatar. This image will then appear in the public section."
-msgstr "El avatar es una imagén que lo describe a Ud. Puede subir una imagén PNG y utilisarla como avatar. Esta imágen aparecerá en la zona publica."
+msgstr ""
+"El avatar es una imagén que lo describe a Ud. Puede subir una imagén PNG y "
+"utilisarla como avatar. Esta imágen aparecerá en la zona publica."
 
 #: ../vhffs-panel/group/prefs.pl:244
 msgid "The avatar is an image to describe the group"
@@ -3673,7 +3792,10 @@
 msgid ""
 "The database name is prefixed by your groupname followed by an underscore (%"
 "s_dbname). The database user is the database full name (%s_dbname)."
-msgstr "El nombre de la base de datos es compuesto por el nombre del grupo como prefijo, seguido de un underscore (%s_nombrebd). El usuario correspondiente es el nombre completo de la base (%s_nombrebd)."
+msgstr ""
+"El nombre de la base de datos es compuesto por el nombre del grupo como "
+"prefijo, seguido de un underscore (%s_nombrebd). El usuario correspondiente "
+"es el nombre completo de la base (%s_nombrebd)."
 
 #: ../vhffs-panel/group/prefs.pl:181
 msgid "The email you entered fails syntax check"
@@ -3681,13 +3803,17 @@
 
 #: ../vhffs-panel/group/prefs.pl:90 ../vhffs-panel/group/create.pl:71
 msgid "The first letter of groupname and full name must be the same"
-msgstr "La primera letra del nombre del grupo y la primera del nombre completo del grupo deben ser la misma"
+msgstr ""
+"La primera letra del nombre del grupo y la primera del nombre completo del "
+"grupo deben ser la misma"
 
 #: ../vhffs-api/src/Vhffs/Listengine.pm:381
 #, perl-format
 msgid ""
 "The following address %s is not allowed to execute commands on the list %s\n"
-msgstr "La siguiente dirección %s no tiene derecho de ejecutar comandos en esta lista %s\n"
+msgstr ""
+"La siguiente dirección %s no tiene derecho de ejecutar comandos en esta "
+"lista %s\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine.pm:207
 #, perl-format
@@ -3698,16 +3824,17 @@
 
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:535
 msgid ""
-"The following projects has reached or are going to reach the disk quota "
+"The following projects have reached or are going to reach the disk quota "
 "limit, please take a look !"
-msgstr "Los siguientes proyectos llegaron o están al punto de llegar al limite de su cuota de espacio disco, por favor, eche una mirada!"
+msgstr ""
 
 #: ../vhffs-api/src/Vhffs/Listengine.pm:267
 #, perl-format
 msgid ""
 "The listengine language preference was changed for the following address %"
 "s.\n"
-msgstr "El idioma del listengine ha sido modificado para la siguiente dirección %s.\n"
+msgstr ""
+"El idioma del listengine ha sido modificado para la siguiente dirección %s.\n"
 
 #: ../vhffs-panel/mailinglist/create.pl:88
 msgid "The mailing list object was successfully created !"
@@ -3747,13 +3874,17 @@
 msgid ""
 "There is a problem with the address you filled in your profile, unable to "
 "add forwarding"
-msgstr "Hay un problema con la dirección que puso en su perfil, no se puede añadir una redirección"
+msgstr ""
+"Hay un problema con la dirección que puso en su perfil, no se puede añadir "
+"una redirección"
 
 #: ../vhffs-panel/mailinglist/create.pl:102
 msgid ""
 "There is no default mail domain on this platform, you have to create a mail "
 "domain before creating a mailing list"
-msgstr "No hay dominio mail por defecto en esta plataforma. Tiene que crear un dominio mail primero antes de crear una lista de correo"
+msgstr ""
+"No hay dominio mail por defecto en esta plataforma. Tiene que crear un "
+"dominio mail primero antes de crear una lista de correo"
 
 #: ../vhffs-panel/admin/moderation.pl:78
 msgid "There is nothing to moderate"
@@ -3771,7 +3902,7 @@
 msgid "This CVS will be delete"
 msgstr "Este repositorio CVS será destruido"
 
-#: ../vhffs-panel/pgsql/prefs_save.pl:76 ../vhffs-panel/pgsql/delete.pl:72
+#: ../vhffs-panel/pgsql/delete.pl:72
 msgid "This DB doesn't exist in VHFFS database"
 msgstr "Esta base de datos no existe en la base de datos de VHFFS"
 
@@ -3784,15 +3915,17 @@
 msgstr "Este repositorio de download será destruido"
 
 #: ../vhffs-panel/repository/prefs.pl:103 ../vhffs-panel/mail/prefs.pl:147
-#: ../vhffs-panel/dns/prefs.pl:266 ../vhffs-panel/pgsql/prefs.pl:108
+#: ../vhffs-panel/dns/prefs.pl:266 ../vhffs-panel/pgsql/prefs.pl:106
 #: ../vhffs-panel/cvs/prefs.pl:125 ../vhffs-panel/group/prefs.pl:211
-#: ../vhffs-panel/mysql/prefs.pl:115 ../vhffs-panel/svn/prefs.pl:122
-#: ../vhffs-panel/mailinglist/prefs.pl:211 ../vhffs-panel/web/prefs.pl:110
+#: ../vhffs-panel/mysql/prefs.pl:122 ../vhffs-panel/svn/prefs.pl:122
+#: ../vhffs-panel/mailinglist/prefs.pl:188 ../vhffs-panel/web/prefs.pl:110
 #: ../vhffs-panel/git/prefs.pl:123
 msgid ""
 "This action is non-reversible. All services associated to this project will "
 "be DESTROYED."
-msgstr "Esta acción no es reversible. Todos los servicios asociados con este proyecto serán DESTRUIDOS."
+msgstr ""
+"Esta acción no es reversible. Todos los servicios asociados con este "
+"proyecto serán DESTRUIDOS."
 
 #: ../vhffs-panel/user/prefs.pl:297
 msgid "This action is non-reversible. WHEN YOU DELETE IT, YOU CANNOT CANCEL."
@@ -3802,7 +3935,9 @@
 msgid ""
 "This box already exists for this domain or parameters are not valid. Check "
 "your domain."
-msgstr "Esto búzon ya existe para este dominio o los parámetros son inválidos. Verificar dominio"
+msgstr ""
+"Esto búzon ya existe para este dominio o los parámetros son inválidos. "
+"Verificar dominio"
 
 #: ../vhffs-panel/pgsql/delete.pl:92
 msgid "This database cannot be deleted"
@@ -3812,10 +3947,6 @@
 msgid "This database doesn't exist in VHFFS database"
 msgstr "Esta base de datos no existe en la base de datos de VHFFS"
 
-#: ../vhffs-panel/mysql/prefs_save.pl:74
-msgid "This database doesn't exist on VHFFS"
-msgstr "Esta base de datos no existe en VHFFS"
-
 #: ../vhffs-panel/mysql/delete.pl:83
 msgid "This database will NOT be deleted"
 msgstr "Esta base de datos NO será destruida"
@@ -3832,7 +3963,7 @@
 msgid "This git repository will NOT be deleted"
 msgstr "Este repositorio git NO será destruido"
 
-#: ../vhffs-panel/group/delete.pl:88
+#: ../vhffs-panel/group/delete.pl:84
 msgid "This group will be deleted"
 msgstr "Este grupo será destruido"
 
@@ -3852,14 +3983,17 @@
 #, perl-format
 msgid ""
 "This mail must contains the following subject : \"confirm unsubscribe %s\"\n"
-msgstr "Este mensaje debe tener el siguiente título: \"confirm unsubscribe %s\"\n"
+msgstr ""
+"Este mensaje debe tener el siguiente título: \"confirm unsubscribe %s\"\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine.pm:83
 #, perl-format
 msgid ""
 "This mail must have the following subject : \"confirm subscribe %s\"\n"
 "On most clients it should work by just replying this email\n"
-msgstr "Este mensaje debe tener el siguiente título: \"confirm subscribe %s\"\nEn la mayoria de los clientes mail, puede simplemente utilizar Responder\n"
+msgstr ""
+"Este mensaje debe tener el siguiente título: \"confirm subscribe %s\"\n"
+"En la mayoria de los clientes mail, puede simplemente utilizar Responder\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine.pm:397
 #, perl-format
@@ -3867,7 +4001,10 @@
 "This mail was sent by %s with the following subject:\n"
 "  %s\n"
 "\n"
-msgstr "Este correo fue enviado por %s con el siguiente título:\n  %s\n\n"
+msgstr ""
+"Este correo fue enviado por %s con el siguiente título:\n"
+"  %s\n"
+"\n"
 
 #: ../vhffs-panel/object/resubmit.pl:67
 #: ../vhffs-panel/object/quickdelete.pl:67
@@ -3883,11 +4020,11 @@
 msgid "This object has been deleted"
 msgstr "Este objeto ha sido borrado"
 
-#: ../vhffs-panel/group/prefs.pl:67 ../vhffs-panel/group/history.pl:67
+#: ../vhffs-panel/group/prefs.pl:67 ../vhffs-panel/group/history.pl:69
 msgid "This object is not functional yet. Please wait creation or moderation."
-msgstr "Este objeto ya no está en actividad. Espere la creación o la moderación."
+msgstr ""
+"Este objeto ya no está en actividad. Espere la creación o la moderación."
 
-#: ../vhffs-panel/repository/prefs_save.pl:85
 #: ../vhffs-panel/repository/delete.pl:85 ../vhffs-panel/mail/prefs.pl:83
 #: ../vhffs-panel/mail/delete.pl:82 ../vhffs-panel/dns/prefs.pl:99
 #: ../vhffs-panel/admin/mail/delete_forward.pl:90
@@ -3895,26 +4032,23 @@
 #: ../vhffs-panel/admin/mail/delete_box.pl:89
 #: ../vhffs-panel/admin/mail/password_box.pl:90
 #: ../vhffs-panel/cvs/delete.pl:85 ../vhffs-panel/group/delete.pl:71
-#: ../vhffs-panel/mysql/prefs_save.pl:90 ../vhffs-panel/mysql/prefs.pl:89
-#: ../vhffs-panel/svn/prefs_save.pl:87 ../vhffs-panel/svn/delete.pl:84
-#: ../vhffs-panel/mailinglist/save_options.pl:91
-#: ../vhffs-panel/mailinglist/del_member.pl:87
-#: ../vhffs-panel/mailinglist/prefs.pl:94
-#: ../vhffs-panel/mailinglist/save_sig.pl:85
-#: ../vhffs-panel/mailinglist/add_sub.pl:88
-#: ../vhffs-panel/mailinglist/change_right.pl:89
+#: ../vhffs-panel/mysql/prefs.pl:90 ../vhffs-panel/svn/prefs_save.pl:87
+#: ../vhffs-panel/svn/delete.pl:84 ../vhffs-panel/mailinglist/prefs.pl:88
 #: ../vhffs-panel/mailinglist/delete.pl:86 ../vhffs-panel/web/prefs_save.pl:80
 #: ../vhffs-panel/web/prefs.pl:81 ../vhffs-panel/git/prefs_save.pl:88
 #: ../vhffs-panel/git/delete.pl:85
 msgid "This object is not functionnal yet. Please wait creation or moderation."
-msgstr "Este objeto ya no está en actividad. Espere la creación o la moderación."
+msgstr ""
+"Este objeto ya no está en actividad. Espere la creación o la moderación."
 
 #: ../vhffs-panel/repository/prefs.pl:88 ../vhffs-panel/cvs/prefs.pl:83
 #: ../vhffs-panel/svn/prefs.pl:105 ../vhffs-panel/git/prefs.pl:106
 msgid ""
 "This object is not functionnal yet. Please wait creation, moderation or "
 "modification."
-msgstr "Este objeto ya no está en actividad. Espere la modificación, la creación o la moderación."
+msgstr ""
+"Este objeto ya no está en actividad. Espere la modificación, la creación o "
+"la moderación."
 
 #: ../vhffs-panel/object/resubmit.pl:71
 #: ../vhffs-panel/object/quickdelete.pl:71
@@ -3942,13 +4076,18 @@
 "This platform is temporary closed. Administrators are performing some "
 "maintenances tasks or system has database errors. Please come back in a few "
 "minutes to log in."
-msgstr "Plataforma cerrada temporalmente. Los administradores están haciendo trabajos de mantenimiento o el sistema tiene error de base de datos. Intenta dentro de unos minutos."
+msgstr ""
+"Plataforma cerrada temporalmente. Los administradores están haciendo "
+"trabajos de mantenimiento o el sistema tiene error de base de datos. Intenta "
+"dentro de unos minutos."
 
 #: ../vhffs-api/src/Vhffs/Panel/Main.pm:343
 msgid ""
 "This platform is temporary closed. Administrators are performing some "
 "maintenances tasks. Please come back in a few minutes to log in."
-msgstr "Plataforma cerrada temporalmente. Los administradores están haciendo trabajos de mantenimiento. Intenta dentro de unos minutos."
+msgstr ""
+"Plataforma cerrada temporalmente. Los administradores están haciendo "
+"trabajos de mantenimiento. Intenta dentro de unos minutos."
 
 #: ../vhffs-panel/svn/delete.pl:101 ../vhffs-panel/git/delete.pl:102
 msgid "This repository will be deleted"
@@ -3987,7 +4126,9 @@
 msgid ""
 "To put this post on the list, send a message to:\n"
 "  %s-request@%s\n"
-msgstr "Para colocar este post en la lista, envie un mensaje a:\n  %s-request@%s\n"
+msgstr ""
+"Para colocar este post en la lista, envie un mensaje a:\n"
+"  %s-request@%s\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine.pm:420
 msgid "To refuse this subscriber, send a message to\n"
@@ -4101,7 +4242,7 @@
 msgid "Total subscribtion for lists"
 msgstr "Total sucripciones a listas"
 
-#: ../vhffs-panel/admin/moderation.pl:83 ../vhffs-panel/group/history.pl:80
+#: ../vhffs-panel/admin/moderation.pl:83 ../vhffs-panel/group/history.pl:82
 msgid "Type"
 msgstr "Tipo"
 
@@ -4110,7 +4251,7 @@
 msgstr "UID"
 
 #: ../vhffs-api/src/Vhffs/Panel/Object.pm:97
-#: ../vhffs-panel/admin/object/edit.pl:94
+#: ../vhffs-panel/admin/object/edit.pl:95
 msgid "UID of owner"
 msgstr "UID del propietario"
 
@@ -4158,16 +4299,23 @@
 msgid ""
 "Unable to add user, he might already be in the group (waiting for addition "
 "or deletion)"
-msgstr "Imposible añadir usuario, puede ser que ya este incluido en este grupo (pendiente por supresión o por añadir)"
+msgstr ""
+"Imposible añadir usuario, puede ser que ya este incluido en este grupo "
+"(pendiente por supresión o por añadir)"
 
+#: ../vhffs-panel/pgsql/prefs.pl:135 ../vhffs-panel/mysql/prefs.pl:150
+msgid "Unable to apply changes"
+msgstr ""
+
 #: ../vhffs-panel/admin/mail/password_box.pl:105
 #, perl-format
 msgid "Unable to change password for box %s (%d)"
 msgstr "Imposible cambiar contraseña para el buzón %s (%d)"
 
-#: ../vhffs-panel/mysql/prefs_save.pl:94
-msgid "Unable to change this database's password"
-msgstr "Imposible cambiar contraseña de esta base de datos"
+#: ../vhffs-panel/mailinglist/prefs.pl:278
+#, perl-format
+msgid "Unable to change rights for subscriber %s"
+msgstr ""
 
 #: ../vhffs-panel/dns/prefs.pl:126
 #, perl-format
@@ -4227,7 +4375,9 @@
 #: ../vhffs-api/src/Vhffs/Panel/DNS.pm:225
 msgid ""
 "Unable to find default redirection address, please contact administrators"
-msgstr "Imposible conseguir la redirección por defecto, por favor contacte los administradores"
+msgstr ""
+"Imposible conseguir la redirección por defecto, por favor contacte los "
+"administradores"
 
 #: ../vhffs-panel/cvs/index.pl:62
 msgid "Unable to get CVS repositories"
@@ -4327,11 +4477,17 @@
 msgid "Unable to remove user from group"
 msgstr "Unable to remove user from group"
 
+#: ../vhffs-panel/mailinglist/prefs.pl:237
+msgid "Unable to save object"
+msgstr ""
+
 #: ../vhffs-api/src/Vhffs/Listengine.pm:295
 msgid ""
 "Unknow command\n"
 "\n"
-msgstr "Unknow command\n\n"
+msgstr ""
+"Unknow command\n"
+"\n"
 
 #: ../vhffs-api/src/Vhffs/Functions.pm:439
 #: ../vhffs-api/src/Vhffs/Functions.pm:444
@@ -4377,7 +4533,7 @@
 msgid "Update note"
 msgstr "Update note"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:152
+#: ../vhffs-panel/mailinglist/prefs.pl:155
 msgid "Update signature"
 msgstr "Update signature"
 
@@ -4395,7 +4551,9 @@
 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 "Use VHFFS servers to manage this mail,<br/>you should use use the host pop.%s or imap.%s to fetch your mails"
+msgstr ""
+"Use VHFFS servers to manage this mail,<br/>you should use use the host pop.%"
+"s or imap.%s to fetch your mails"
 
 #: ../vhffs-panel/user/prefs.pl:403
 msgid "Use anti-spam protection"
@@ -4461,7 +4619,7 @@
 msgid "Username"
 msgstr "Username"
 
-#: ../vhffs-panel/pgsql/prefs.pl:95 ../vhffs-panel/mysql/prefs.pl:102
+#: ../vhffs-panel/pgsql/prefs.pl:94 ../vhffs-panel/mysql/prefs.pl:109
 msgid "Username for this database"
 msgstr "Username for this database"
 
@@ -4490,7 +4648,7 @@
 #: ../vhffs-panel/admin/pgsql/edit.pl:116 ../vhffs-panel/admin/cvs/edit.pl:125
 #: ../vhffs-panel/admin/group/edit.pl:121
 #: ../vhffs-panel/admin/mysql/edit.pl:116
-#: ../vhffs-panel/admin/object/edit.pl:116
+#: ../vhffs-panel/admin/object/edit.pl:117
 #: ../vhffs-panel/admin/user/edit.pl:140
 msgid "Validation refused"
 msgstr "Validation refused"
@@ -4519,7 +4677,7 @@
 msgid "WEB stats"
 msgstr "WEB stats"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:188
+#: ../vhffs-intl/template_strings.pl:16
 msgid "Waiting for confirmation"
 msgstr "Waiting for confirmation"
 
@@ -4530,12 +4688,12 @@
 #: ../vhffs-panel/admin/pgsql/edit.pl:117 ../vhffs-panel/admin/cvs/edit.pl:126
 #: ../vhffs-panel/admin/group/edit.pl:122
 #: ../vhffs-panel/admin/mysql/edit.pl:117
-#: ../vhffs-panel/admin/object/edit.pl:117
+#: ../vhffs-panel/admin/object/edit.pl:118
 #: ../vhffs-panel/admin/user/edit.pl:141
 msgid "Waiting for creation"
 msgstr "Waiting for creation"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:190
+#: ../vhffs-intl/template_strings.pl:19
 msgid "Waiting for deletion"
 msgstr "Waiting for deletion"
 
@@ -4546,21 +4704,20 @@
 #: ../vhffs-panel/admin/pgsql/edit.pl:123 ../vhffs-panel/admin/cvs/edit.pl:132
 #: ../vhffs-panel/admin/group/edit.pl:128
 #: ../vhffs-panel/admin/mysql/edit.pl:123
-#: ../vhffs-panel/admin/object/edit.pl:123
+#: ../vhffs-panel/admin/object/edit.pl:124
 #: ../vhffs-panel/admin/user/edit.pl:147
 msgid "Waiting for modification"
 msgstr "Waiting for modification"
 
-#: ../vhffs-intl/extra_strings.pl:17
+#: ../vhffs-intl/extra_strings.pl:17 ../vhffs-intl/template_strings.pl:17
 #: ../vhffs-api/src/Vhffs/Panel/Object.pm:118
 #: ../vhffs-panel/admin/repository/edit.pl:115
 #: ../vhffs-panel/admin/mail/edit.pl:156
 #: ../vhffs-panel/admin/pgsql/edit.pl:115 ../vhffs-panel/admin/cvs/edit.pl:124
 #: ../vhffs-panel/admin/group/edit.pl:120
 #: ../vhffs-panel/admin/mysql/edit.pl:115
-#: ../vhffs-panel/admin/object/edit.pl:115
+#: ../vhffs-panel/admin/object/edit.pl:116
 #: ../vhffs-panel/admin/user/edit.pl:139
-#: ../vhffs-panel/mailinglist/prefs.pl:189
 msgid "Waiting for validation"
 msgstr "Waiting for validation"
 
@@ -4572,6 +4729,12 @@
 msgid "Warn the admin team"
 msgstr "Warn the admin team"
 
+#: ../vhffs-intl/template_strings.pl:11 ../vhffs-intl/template_strings.pl:13
+msgid ""
+"Warning, password change isn't immediate, you've to check periodically to "
+"see if it's done"
+msgstr ""
+
 #: ../vhffs-api/src/Vhffs/Listengine.pm:474
 #, perl-format
 msgid ""
@@ -4581,7 +4744,13 @@
 "to the following mailing list:\n"
 "  %s\n"
 "\n"
-msgstr "We confirm that you REFUSED the subscription of:\n  %s\n\nto the following mailing list:\n  %s\n\n"
+msgstr ""
+"We confirm that you REFUSED the subscription of:\n"
+"  %s\n"
+"\n"
+"to the following mailing list:\n"
+"  %s\n"
+"\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine.pm:450
 #, perl-format
@@ -4592,7 +4761,13 @@
 "to the following mailing list:\n"
 "  %s\n"
 "\n"
-msgstr "We confirm that you accepted the subscription of:\n  %s\n\nto the following mailing list:\n  %s\n\n"
+msgstr ""
+"We confirm that you accepted the subscription of:\n"
+"  %s\n"
+"\n"
+"to the following mailing list:\n"
+"  %s\n"
+"\n"
 
 #: ../vhffs-panel/group/prefs.pl:225
 #, perl-format
@@ -4658,7 +4833,7 @@
 #: ../vhffs-panel/admin/pgsql/edit.pl:126 ../vhffs-panel/admin/cvs/edit.pl:135
 #: ../vhffs-panel/admin/group/edit.pl:131
 #: ../vhffs-panel/admin/mysql/edit.pl:126
-#: ../vhffs-panel/admin/object/edit.pl:126
+#: ../vhffs-panel/admin/object/edit.pl:127
 #: ../vhffs-panel/admin/user/edit.pl:150
 msgid "Will be deleted"
 msgstr "Will be deleted"
@@ -4676,10 +4851,10 @@
 msgstr "Yes"
 
 #: ../vhffs-panel/repository/prefs.pl:105 ../vhffs-panel/mail/prefs.pl:149
-#: ../vhffs-panel/dns/prefs.pl:268 ../vhffs-panel/pgsql/prefs.pl:110
+#: ../vhffs-panel/dns/prefs.pl:268 ../vhffs-panel/pgsql/prefs.pl:108
 #: ../vhffs-panel/cvs/prefs.pl:127 ../vhffs-panel/group/prefs.pl:213
-#: ../vhffs-panel/mysql/prefs.pl:117 ../vhffs-panel/svn/prefs.pl:124
-#: ../vhffs-panel/mailinglist/prefs.pl:213 ../vhffs-panel/web/prefs.pl:112
+#: ../vhffs-panel/mysql/prefs.pl:124 ../vhffs-panel/svn/prefs.pl:124
+#: ../vhffs-panel/mailinglist/prefs.pl:190 ../vhffs-panel/web/prefs.pl:112
 #: ../vhffs-panel/user/prefs.pl:299 ../vhffs-panel/git/prefs.pl:125
 msgid "Yes I'm sure of what I do"
 msgstr "Yes I'm sure of what I do"
@@ -4688,6 +4863,18 @@
 msgid "You are not a subscriber on this list.\n"
 msgstr "You are not a subscriber on this list.\n"
 
+#: ../vhffs-panel/mailinglist/prefs.pl:288
+msgid "You are not allowed to add members (ACL rights)"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:222
+msgid "You are not allowed to change options (ACL rights)"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:247
+msgid "You are not allowed to delete members (ACL rights)"
+msgstr ""
+
 #: ../vhffs-panel/object/resubmit.pl:76
 #: ../vhffs-panel/object/quickdelete.pl:76
 msgid "You are not allowed to do it, you don't own this object"
@@ -4727,7 +4914,7 @@
 #: ../vhffs-panel/admin/mysql/search.pl:71
 #: ../vhffs-panel/admin/mysql/edit_submit.pl:72
 #: ../vhffs-panel/admin/mysql/list.pl:72 ../vhffs-panel/admin/mysql/show.pl:72
-#: ../vhffs-panel/admin/object/edit.pl:73
+#: ../vhffs-panel/admin/object/edit.pl:74
 #: ../vhffs-panel/admin/object/search.pl:70
 #: ../vhffs-panel/admin/object/edit_submit.pl:73
 #: ../vhffs-panel/admin/object/list.pl:71
@@ -4759,7 +4946,11 @@
 "\n"
 "%s\n"
 "\n"
-msgstr "You asked to be subscribed to the following list:\n\n%s\n\n"
+msgstr ""
+"You asked to be subscribed to the following list:\n"
+"\n"
+"%s\n"
+"\n"
 
 #: ../vhffs-panel/mail/prefs.pl:155 ../vhffs-panel/dns/prefs.pl:260
 #: ../vhffs-panel/svn/prefs.pl:130 ../vhffs-panel/web/prefs.pl:105
@@ -4767,7 +4958,9 @@
 msgid ""
 "You can Manage rights on this service for each user in the VHFFS database. "
 "Please read help before manage it."
-msgstr "You can Manage rights on this service for each user in the VHFFS database. Please read help before manage it."
+msgstr ""
+"You can Manage rights on this service for each user in the VHFFS database. "
+"Please read help before manage it."
 
 #: ../vhffs-api/src/Vhffs/Listengine.pm:46
 msgid "You can also send a command list in the mail body.\n"
@@ -4799,7 +4992,9 @@
 msgid ""
 "You have been successfully removed from the following list:\n"
 "  %s\n"
-msgstr "You have been successfully removed from the following list:\n  %s\n"
+msgstr ""
+"You have been successfully removed from the following list:\n"
+"  %s\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine.pm:252
 #, perl-format
@@ -4812,7 +5007,9 @@
 msgid ""
 "You have been successfully subscribed to the following mailing list:\n"
 "  %s\n"
-msgstr "You have been successfully subscribed to the following mailing list:\n  %s\n"
+msgstr ""
+"You have been successfully subscribed to the following mailing list:\n"
+"  %s\n"
 
 #: ../vhffs-panel/repository/index.pl:53 ../vhffs-panel/mail/index.pl:53
 #: ../vhffs-panel/dns/index.pl:53 ../vhffs-panel/pgsql/index.pl:53
@@ -4899,6 +5096,10 @@
 msgid "You must specify a project name"
 msgstr "You must specify a project name"
 
+#: ../vhffs-panel/mailinglist/prefs.pl:298
+msgid "You need to enter at least one new member"
+msgstr ""
+
 #: ../vhffs-api/src/Vhffs/Listengine.pm:163
 msgid "You will receive an email with the decision of administrators.\n"
 msgstr "You will receive an email with the decision of administrators.\n"
@@ -4907,16 +5108,14 @@
 msgid "You're are not allowed to browse panel"
 msgstr "You're are not allowed to browse panel"
 
-#: ../vhffs-panel/repository/prefs_save.pl:81
 #: ../vhffs-panel/repository/prefs.pl:82
 #: ../vhffs-panel/repository/delete.pl:81
 #: ../vhffs-panel/repository/create.pl:63 ../vhffs-panel/mail/prefs.pl:87
 #: ../vhffs-panel/mail/delete.pl:86 ../vhffs-panel/mail/create.pl:59
 #: ../vhffs-panel/dns/prefs.pl:92 ../vhffs-panel/dns/prefs.pl:109
 #: ../vhffs-panel/dns/delete.pl:88 ../vhffs-panel/dns/delete.pl:92
-#: ../vhffs-panel/dns/create.pl:32 ../vhffs-panel/pgsql/prefs_save.pl:84
-#: ../vhffs-panel/pgsql/prefs.pl:77 ../vhffs-panel/pgsql/delete.pl:76
-#: ../vhffs-panel/pgsql/create.pl:62
+#: ../vhffs-panel/dns/create.pl:32 ../vhffs-panel/pgsql/prefs.pl:73
+#: ../vhffs-panel/pgsql/delete.pl:76 ../vhffs-panel/pgsql/create.pl:62
 #: ../vhffs-panel/admin/mail/change_forward.pl:96
 #: ../vhffs-panel/admin/mail/delete_box.pl:95
 #: ../vhffs-panel/admin/mail/password_box.pl:96
@@ -4928,17 +5127,11 @@
 #: ../vhffs-panel/group/prefs.pl:70 ../vhffs-panel/group/prefs.pl:78
 #: ../vhffs-panel/group/prefs.pl:108 ../vhffs-panel/group/prefs.pl:119
 #: ../vhffs-panel/group/prefs.pl:160 ../vhffs-panel/group/prefs.pl:177
-#: ../vhffs-panel/group/history.pl:70 ../vhffs-panel/group/delete.pl:67
-#: ../vhffs-panel/mysql/prefs_save.pl:86 ../vhffs-panel/mysql/prefs.pl:83
-#: ../vhffs-panel/mysql/delete.pl:79 ../vhffs-panel/mysql/create.pl:62
-#: ../vhffs-panel/svn/prefs_save.pl:83 ../vhffs-panel/svn/prefs.pl:99
-#: ../vhffs-panel/svn/delete.pl:80 ../vhffs-panel/svn/create.pl:62
-#: ../vhffs-panel/mailinglist/save_options.pl:95
-#: ../vhffs-panel/mailinglist/del_member.pl:91
-#: ../vhffs-panel/mailinglist/prefs.pl:100
-#: ../vhffs-panel/mailinglist/save_sig.pl:89
-#: ../vhffs-panel/mailinglist/add_sub.pl:92
-#: ../vhffs-panel/mailinglist/change_right.pl:93
+#: ../vhffs-panel/group/history.pl:72 ../vhffs-panel/group/delete.pl:67
+#: ../vhffs-panel/mysql/prefs.pl:84 ../vhffs-panel/mysql/delete.pl:79
+#: ../vhffs-panel/mysql/create.pl:62 ../vhffs-panel/svn/prefs_save.pl:83
+#: ../vhffs-panel/svn/prefs.pl:99 ../vhffs-panel/svn/delete.pl:80
+#: ../vhffs-panel/svn/create.pl:62 ../vhffs-panel/mailinglist/prefs.pl:94
 #: ../vhffs-panel/mailinglist/delete.pl:90
 #: ../vhffs-panel/mailinglist/create.pl:61 ../vhffs-panel/web/prefs_save.pl:84
 #: ../vhffs-panel/web/prefs.pl:87 ../vhffs-panel/web/delete.pl:82
@@ -4956,7 +5149,7 @@
 msgid "You're not allowed to manage this object's ACL"
 msgstr "You're not allowed to manage this object's ACL"
 
-#: ../vhffs-panel/acl/view.pl:75 ../vhffs-panel/history.pl:98
+#: ../vhffs-panel/acl/view.pl:75 ../vhffs-panel/history.pl:99
 msgid "You're not allowed to view this object's ACL"
 msgstr "You're not allowed to view this object's ACL"
 
@@ -4974,22 +5167,22 @@
 msgid ""
 "Your account (%s) on %s has been deleted because it was unused for a long "
 "time"
-msgstr "Your account (%s) on %s has been deleted because it was unused for a long time"
+msgstr ""
+"Your account (%s) on %s has been deleted because it was unused for a long "
+"time"
 
 #: ../vhffs-panel/subscribe.pl:238
 msgid ""
 "Your email address. It will be used to contact you when needed and as a "
 "destination address if you use our email forwarding service"
-msgstr "Your email address. It will be used to contact you when needed and as a destination address if you use our email forwarding service"
+msgstr ""
+"Your email address. It will be used to contact you when needed and as a "
+"destination address if you use our email forwarding service"
 
 #: ../vhffs-panel/alert.pl:70
 msgid "Your message"
 msgstr "Your message"
 
-#: ../vhffs-panel/pgsql/prefs_save.pl:88
-msgid "Your password is not correct. Please check it."
-msgstr "Your password is not correct. Please check it."
-
 #: ../vhffs-panel/group/index.pl:61
 msgid "Your projects"
 msgstr "Your projects"
@@ -5009,7 +5202,9 @@
 msgid ""
 "Your subscription was accepted to the following mailing list:\n"
 "  %s\n"
-msgstr "Your subscription was accepted to the following mailing list:\n  %s\n"
+msgstr ""
+"Your subscription was accepted to the following mailing list:\n"
+"  %s\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine.pm:462
 #, perl-format
@@ -5018,13 +5213,19 @@
 "  %s\n"
 "\n"
 "Have a nice day.\n"
-msgstr "Your subscription was refused to the following mailing list:\n  %s\n\nHave a nice day.\n"
+msgstr ""
+"Your subscription was refused to the following mailing list:\n"
+"  %s\n"
+"\n"
+"Have a nice day.\n"
 
 #: ../vhffs-panel/subscribe.pl:237
 msgid ""
 "Your username. It must contains only alphanumeric characters in lowercase, "
 "its length must be between 3 and 12 chars"
-msgstr "Your username. It must contains only alphanumeric characters in lowercase, its length must be between 3 and 12 chars"
+msgstr ""
+"Your username. It must contains only alphanumeric characters in lowercase, "
+"its length must be between 3 and 12 chars"
 
 #: ../vhffs-panel/subscribe.pl:145
 msgid "Your zipcode is not correct! Please enter a correct zipcode"
@@ -5039,7 +5240,7 @@
 msgid "Zipcode is not correct !"
 msgstr "Zipcode is not correct !"
 
-#: ../vhffs-panel/mailinglist/add_sub.pl:113
+#: ../vhffs-panel/mailinglist/prefs.pl:318
 #, perl-format
 msgid "[%s] You've been added to the list %s"
 msgstr "[%s] You've been added to the list %s"
@@ -5132,7 +5333,8 @@
 #: ../vhffs-api/src/Vhffs/Listengine.pm:59
 msgid ""
 "moderate accept XXXXX\t\t\t - accept the message with message-id XXXXX\n"
-msgstr "moderate accept XXXXX\t\t\t - accept the message with message-id XXXXX\n"
+msgstr ""
+"moderate accept XXXXX\t\t\t - accept the message with message-id XXXXX\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine.pm:61
 msgid "moderate list\t\t\t - give the message list for moderation\n"
@@ -5141,14 +5343,15 @@
 #: ../vhffs-api/src/Vhffs/Listengine.pm:60
 msgid ""
 "moderate refused XXXXX\t\t\t - refuse the message with message-id XXXXX\n"
-msgstr "moderate refused XXXXX\t\t\t - refuse the message with message-id XXXXX\n"
+msgstr ""
+"moderate refused XXXXX\t\t\t - refuse the message with message-id XXXXX\n"
 
 #: ../vhffs-panel/web/create.pl:89
 msgid "new site"
 msgstr "new site"
 
 #: ../vhffs-api/src/Vhffs/Panel/Object.pm:115
-#: ../vhffs-panel/admin/object/edit.pl:112
+#: ../vhffs-panel/admin/object/edit.pl:113
 msgid "no date"
 msgstr "no date"
 
@@ -5169,12 +5372,14 @@
 #: ../vhffs-api/src/Vhffs/Listengine.pm:56
 msgid ""
 "subscription accept XXXXX\t\t - accept the subscription with key XXXXX\n"
-msgstr "subscription accept XXXXX\t\t - accept the subscription with key XXXXX\n"
+msgstr ""
+"subscription accept XXXXX\t\t - accept the subscription with key XXXXX\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine.pm:57
 msgid ""
 "subscription refuse XXXXX\t\t - refuse the subscription with key XXXXX\n"
-msgstr "subscription refuse XXXXX\t\t - refuse the subscription with key XXXXX\n"
+msgstr ""
+"subscription refuse XXXXX\t\t - refuse the subscription with key XXXXX\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine.pm:52
 msgid "unsubscribe\t - unsubscribe from this list\n"
@@ -5192,12 +5397,15 @@
 msgid ""
 "user subscribe user@xxxxxxxxxx\t\t - register the user user@xxxxxxxxxx on "
 "the list\n"
-msgstr "user subscribe user@xxxxxxxxxx\t\t - register the user user@xxxxxxxxxx on the list\n"
+msgstr ""
+"user subscribe user@xxxxxxxxxx\t\t - register the user user@xxxxxxxxxx on "
+"the list\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine.pm:62
 msgid ""
 "user unsubscribe user@xxxxxxxxxx\t - delete user user@xxxxxxxxxx from list\n"
-msgstr "user unsubscribe user@xxxxxxxxxx\t - delete user user@xxxxxxxxxx from list\n"
+msgstr ""
+"user unsubscribe user@xxxxxxxxxx\t - delete user user@xxxxxxxxxx from list\n"
 
 #: ../vhffs-api/src/Vhffs/Listengine.pm:332
 #, perl-format
@@ -5211,1027 +5419,1151 @@
 #: ../vhffs-panel/group/create.pl:85
 msgid ""
 "with only lowercase alphanumerical letters, no space, from 3 to 12 characters"
-msgstr "with only lowercase alphanumerical letters, no space, from 3 to 12 characters"
+msgstr ""
+"with only lowercase alphanumerical letters, no space, from 3 to 12 characters"
 
 #: ../vhffs-api/src/Vhffs/Listengine.pm:399
 #, perl-format
 msgid ""
 "with the following subject :\n"
 "  \"moderate %s\" \n"
-msgstr "with the following subject :\n  \"moderate %s\" \n"
+msgstr ""
+"with the following subject :\n"
+"  \"moderate %s\" \n"
 
-msgid ""
-" was accepted\n"
-"Please wait while we are creating your object\n"
-msgstr " was accepted\nPlease wait while we are creating your object\n"
+#~ msgid "%s has been successfully added"
+#~ msgstr "%s has been successfully added"
 
-msgid "<new site>."
-msgstr "<new site>."
+#~ msgid "%s is already subscribed"
+#~ msgstr "%s is already subscribed"
 
-msgid "ACL level"
-msgstr "ACL level"
+#~ msgid "Administration for list "
+#~ msgstr "Administración para la lista "
 
-msgid "Account successfully deleted"
-msgstr "Account successfully deleted"
+#~ msgid "An error occured while modifying the rights"
+#~ msgstr "Un error ocurrió durante la modificación de los derechos."
 
-msgid "Add a member"
-msgstr "Add a member"
+#~ msgid "An error occured while unsubscribing the user"
+#~ msgstr "Un error ocurrió durante la desinscripción del usuario."
 
-msgid "Adress (ServerName directive)"
-msgstr "Adress (ServerName directive)"
+#~ msgid "An error occured while updating the Download repository"
+#~ msgstr ""
+#~ "Un error ocurrió durante la actualización del repositorio de download."
 
-msgid "Already exists for this domain or bad parameters. Check your domain"
-msgstr "Already exists for this domain or bad parameters. Check your domain"
+#~ msgid ""
+#~ "Be careful ! If you click on modify, VHFFS will stop the database and set "
+#~ "a new password for this database."
+#~ msgstr ""
+#~ "Tenga cuidado! Si hace clic en modificar, VHFFS detendrá el servidor de "
+#~ "base de datos y definirá una nueva contraseña para esta base de datos."
 
-msgid "An error occured while creating the message in the database"
-msgstr "An error occured while creating the message in the database"
+#~ msgid "Cannot save"
+#~ msgstr "No se pudo guardar"
 
-msgid "An error occured while updating the CVS repository"
-msgstr "An error occured while updating the CVS repository"
+#~ msgid "Change rights\n"
+#~ msgstr "Cambiar los derechos\n"
 
-msgid "CVS repository awaiting validation"
-msgstr "CVS repository awaiting validation"
+#~ msgid "Download repository updated"
+#~ msgstr "Repositorio de download modificado"
 
-msgid "Can't change password"
-msgstr "Can't change password"
+#~ msgid "Error, password can be only alphanumeric caracters"
+#~ msgstr "Error, contraseña solo puede contener carácteres alphanuméricos"
 
-msgid "Can't delete box %s"
-msgstr "Can't delete box %s"
+#~ msgid ""
+#~ "Error, your group is not empty. Please remove all objects from this group "
+#~ "and try again"
+#~ msgstr ""
+#~ "Error, su grupo no está vacío. Por favor remueva todos los objetos de "
+#~ "este grupo y intente de nuevo"
 
-msgid "Can't modify object ..."
-msgstr "Can't modify object ..."
+#~ msgid ""
+#~ "Invalid password. It must be at least 3 characters and contain only "
+#~ "letters (lower and uppercase) and numbers"
+#~ msgstr ""
+#~ "Contraseña inválida Debe tener al menos 3 carácteres y contener solamente "
+#~ "letras (mayusculas y minisculas) asi como cifras"
 
-msgid "Change this Website"
-msgstr "Change this Website"
+#~ msgid "Modifications applied to your database"
+#~ msgstr "Modificaciónes realizadas en la base de datos"
 
-msgid ""
-"Cheers,\n"
-"The Moderator and Admin team\n"
-msgstr "Cheers,\nThe Moderator and Admin team\n"
+#~ msgid "No member on this list"
+#~ msgstr "No hay miembros en esta lista"
 
-msgid "DNS awaiting validation"
-msgstr "DNS awaiting validation"
+#~ msgid "No modification can be applied. Please check your fields."
+#~ msgstr ""
+#~ "No hay modificaciones que pueden ser realizadas. Por favor, verifique los "
+#~ "campos."
 
-msgid "Download repository awaiting validation"
-msgstr "Download repository awaiting validation"
+#~ msgid "Not valid mail"
+#~ msgstr "Mail inválido"
 
-msgid "Edit Web Area"
-msgstr "Edit Web Area"
+#~ msgid "Options successfully modified"
+#~ msgstr "Opciones modificada con éxito"
 
-msgid "Email adress"
-msgstr "Email adress"
+#~ msgid "Rights successfully changed"
+#~ msgstr "Derechos modificados con éxito"
 
-msgid "Forward successfully added"
-msgstr "Forward successfully added"
+#~ msgid "Successfully deleted"
+#~ msgstr "Borrado con éxito"
 
-msgid "Forward successfully deleted"
-msgstr "Forward successfully deleted"
+#~ msgid ""
+#~ "The following projects has reached or are going to reach the disk quota "
+#~ "limit, please take a look !"
+#~ msgstr ""
+#~ "Los siguientes proyectos llegaron o están al punto de llegar al limite de "
+#~ "su cuota de espacio disco, por favor, eche una mirada!"
 
-msgid "Groups awaiting validation"
-msgstr "Groups awaiting validation"
+#~ msgid "This database doesn't exist on VHFFS"
+#~ msgstr "Esta base de datos no existe en VHFFS"
 
-msgid "In hope to keep you in our hosting service"
-msgstr "In hope to keep you in our hosting service"
+#~ msgid "Unable to change this database's password"
+#~ msgstr "Imposible cambiar contraseña de esta base de datos"
 
-msgid "List awaiting validation"
-msgstr "List awaiting validation"
+#~ msgid "Your password is not correct. Please check it."
+#~ msgstr "Your password is not correct. Please check it."
 
-msgid "Mail Area awaiting validation"
-msgstr "Mail Area awaiting validation"
+#~ msgid ""
+#~ " was accepted\n"
+#~ "Please wait while we are creating your object\n"
+#~ msgstr ""
+#~ " was accepted\n"
+#~ "Please wait while we are creating your object\n"
 
-msgid "Mail successfully sent"
-msgstr "Mail successfully sent"
+#~ msgid "<new site>."
+#~ msgstr "<new site>."
 
-msgid "Modify this CVS repository"
-msgstr "Modify this CVS repository"
+#~ msgid "ACL level"
+#~ msgstr "ACL level"
 
-msgid "Modify this Download repository"
-msgstr "Modify this Download repository"
+#~ msgid "Account successfully deleted"
+#~ msgstr "Account successfully deleted"
 
-msgid "Modify this MySQL area"
-msgstr "Modify this MySQL area"
+#~ msgid "Add a member"
+#~ msgstr "Add a member"
 
-msgid "Modify this PostgreSQL database"
-msgstr "Modify this PostgreSQL database"
+#~ msgid "Adress (ServerName directive)"
+#~ msgstr "Adress (ServerName directive)"
 
-msgid "Modify this Subversion repository"
-msgstr "Modify this Subversion repository"
+#~ msgid "Already exists for this domain or bad parameters. Check your domain"
+#~ msgstr "Already exists for this domain or bad parameters. Check your domain"
 
-msgid "Modify this domain"
-msgstr "Modify this domain"
+#~ msgid "An error occured while creating the message in the database"
+#~ msgstr "An error occured while creating the message in the database"
 
-msgid "Modify this group"
-msgstr "Modify this group"
+#~ msgid "An error occured while updating the CVS repository"
+#~ msgstr "An error occured while updating the CVS repository"
 
-msgid "Modify this list"
-msgstr "Modify this list"
+#~ msgid "CVS repository awaiting validation"
+#~ msgstr "CVS repository awaiting validation"
 
-msgid "Modify this mail domain"
-msgstr "Modify this mail domain"
+#~ msgid "Can't change password"
+#~ msgstr "Can't change password"
 
-msgid "Modify this user"
-msgstr "Modify this user"
+#~ msgid "Can't delete box %s"
+#~ msgstr "Can't delete box %s"
 
-msgid "MySQL database awaiting validation"
-msgstr "MySQL database awaiting validation"
+#~ msgid "Can't modify object ..."
+#~ msgstr "Can't modify object ..."
 
-msgid "No DNS to validate"
-msgstr "No DNS to validate"
+#~ msgid "Change this Website"
+#~ msgstr "Change this Website"
 
-msgid "No Group to validate"
-msgstr "No Group to validate"
+#~ msgid ""
+#~ "Cheers,\n"
+#~ "The Moderator and Admin team\n"
+#~ msgstr ""
+#~ "Cheers,\n"
+#~ "The Moderator and Admin team\n"
 
-msgid "No Mail Area to validate"
-msgstr "No Mail Area to validate"
+#~ msgid "DNS awaiting validation"
+#~ msgstr "DNS awaiting validation"
 
-msgid "No Web Area to validate"
-msgstr "No Web Area to validate"
+#~ msgid "Download repository awaiting validation"
+#~ msgstr "Download repository awaiting validation"
 
-msgid "No database to validate"
-msgstr "No database to validate"
+#~ msgid "Edit Web Area"
+#~ msgstr "Edit Web Area"
 
-msgid "No list to validate"
-msgstr "No list to validate"
+#~ msgid "Email adress"
+#~ msgstr "Email adress"
 
-msgid "No repository to validate"
-msgstr "No repository to validate"
+#~ msgid "Forward successfully added"
+#~ msgstr "Forward successfully added"
 
-msgid "Password successfully changed"
-msgstr "Password successfully changed"
+#~ msgid "Forward successfully deleted"
+#~ msgstr "Forward successfully deleted"
 
-msgid "Postgres database awaiting validation"
-msgstr "Postgres database awaiting validation"
+#~ msgid "Groups awaiting validation"
+#~ msgstr "Groups awaiting validation"
 
-msgid "Send it"
-msgstr "Send it"
+#~ msgid "In hope to keep you in our hosting service"
+#~ msgstr "In hope to keep you in our hosting service"
 
-msgid "Show Web Area"
-msgstr "Show Web Area"
+#~ msgid "List awaiting validation"
+#~ msgstr "List awaiting validation"
 
-msgid "Show this CVS repository"
-msgstr "Show this CVS repository"
+#~ msgid "Mail Area awaiting validation"
+#~ msgstr "Mail Area awaiting validation"
 
-msgid "Show this Download repository"
-msgstr "Show this Download repository"
+#~ msgid "Mail successfully sent"
+#~ msgstr "Mail successfully sent"
 
-msgid "Show this MySQL area"
-msgstr "Show this MySQL area"
+#~ msgid "Modify this CVS repository"
+#~ msgstr "Modify this CVS repository"
 
-msgid "Show this PostgreSQL database"
-msgstr "Show this PostgreSQL database"
+#~ msgid "Modify this Download repository"
+#~ msgstr "Modify this Download repository"
 
-msgid "Show this Website"
-msgstr "Show this Website"
+#~ msgid "Modify this MySQL area"
+#~ msgstr "Modify this MySQL area"
 
-msgid "Show this group"
-msgstr "Show this group"
+#~ msgid "Modify this PostgreSQL database"
+#~ msgstr "Modify this PostgreSQL database"
 
-msgid "Show this list"
-msgstr "Show this list"
+#~ msgid "Modify this Subversion repository"
+#~ msgstr "Modify this Subversion repository"
 
-msgid "Show this mail domain"
-msgstr "Show this mail domain"
+#~ msgid "Modify this domain"
+#~ msgstr "Modify this domain"
 
-msgid "Show this user"
-msgstr "Show this user"
+#~ msgid "Modify this group"
+#~ msgstr "Modify this group"
 
-msgid "Sorry, can't add ACL"
-msgstr "Sorry, can't add ACL"
+#~ msgid "Modify this list"
+#~ msgstr "Modify this list"
 
-msgid "Subversion repository awaiting validation"
-msgstr "Subversion repository awaiting validation"
+#~ msgid "Modify this mail domain"
+#~ msgstr "Modify this mail domain"
 
-msgid "Successfully added"
-msgstr "Successfully added"
+#~ msgid "Modify this user"
+#~ msgstr "Modify this user"
 
-msgid "The Moderator and Admin team"
-msgstr "The Moderator and Admin team"
+#~ msgid "MySQL database awaiting validation"
+#~ msgstr "MySQL database awaiting validation"
 
-msgid "This box has been successfully added to this domain"
-msgstr "This box has been successfully added to this domain"
+#~ msgid "No DNS to validate"
+#~ msgstr "No DNS to validate"
 
-msgid "This forward has been successfully added to this domain"
-msgstr "This forward has been successfully added to this domain"
+#~ msgid "No Group to validate"
+#~ msgstr "No Group to validate"
 
-msgid "This is not a correct mail address"
-msgstr "This is not a correct mail address"
+#~ msgid "No Mail Area to validate"
+#~ msgstr "No Mail Area to validate"
 
-msgid "This member already exists on this list !"
-msgstr "This member already exists on this list !"
+#~ msgid "No Web Area to validate"
+#~ msgstr "No Web Area to validate"
 
-msgid "Unable to change spam status for %s"
-msgstr "Unable to change spam status for %s"
+#~ msgid "No database to validate"
+#~ msgstr "No database to validate"
 
-msgid "Unable to change virus protection status for %s"
-msgstr "Unable to change virus protection status for %s"
+#~ msgid "No list to validate"
+#~ msgstr "No list to validate"
 
-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 "Use VHFFS servers to manage this mail,<br>you should use use the host pop.%s or imap.%s to fetch your mails"
+#~ msgid "No repository to validate"
+#~ msgstr "No repository to validate"
 
-msgid "User %s does not exists"
-msgstr "User %s does not exists"
+#~ msgid "Password successfully changed"
+#~ msgstr "Password successfully changed"
 
-msgid "VHFFS Login"
-msgstr "VHFFS Login"
+#~ msgid "Postgres database awaiting validation"
+#~ msgstr "Postgres database awaiting validation"
 
-msgid "VHFFS Logout"
-msgstr "VHFFS Logout"
+#~ msgid "Send it"
+#~ msgstr "Send it"
 
-msgid "VHFFS Password Lost OK"
-msgstr "VHFFS Password Lost OK"
+#~ msgid "Show Web Area"
+#~ msgstr "Show Web Area"
 
-msgid "VHFFS Password Lost failed"
-msgstr "VHFFS Password Lost failed"
+#~ msgid "Show this CVS repository"
+#~ msgstr "Show this CVS repository"
 
-msgid "Web Area awaiting validation"
-msgstr "Web Area awaiting validation"
+#~ msgid "Show this Download repository"
+#~ msgstr "Show this Download repository"
 
-msgid "Welcome"
-msgstr "Welcome"
+#~ msgid "Show this MySQL area"
+#~ msgstr "Show this MySQL area"
 
-msgid "Your CVS repository request"
-msgstr "Your CVS repository request"
+#~ msgid "Show this PostgreSQL database"
+#~ msgstr "Show this PostgreSQL database"
 
-msgid "Your CVS request : %s "
-msgstr "Your CVS request : %s "
+#~ msgid "Show this Website"
+#~ msgstr "Show this Website"
 
-msgid "Your DNS hosting request"
-msgstr "Your DNS hosting request"
+#~ msgid "Show this group"
+#~ msgstr "Show this group"
 
-msgid "Your DNS hosting request for the domain : %s "
-msgstr "Your DNS hosting request for the domain : %s "
+#~ msgid "Show this list"
+#~ msgstr "Show this list"
 
-msgid "Your Download repository request"
-msgstr "Your Download repository request"
+#~ msgid "Show this mail domain"
+#~ msgstr "Show this mail domain"
 
-msgid "Your Group request"
-msgstr "Your Group request"
+#~ msgid "Show this user"
+#~ msgstr "Show this user"
 
-msgid "Your Group request : %s "
-msgstr "Your Group request : %s "
+#~ msgid "Sorry, can't add ACL"
+#~ msgstr "Sorry, can't add ACL"
 
-msgid "Your Mail hosting request"
-msgstr "Your Mail hosting request"
+#~ msgid "Subversion repository awaiting validation"
+#~ msgstr "Subversion repository awaiting validation"
 
-msgid "Your Mail hosting request for the domain: %s "
-msgstr "Your Mail hosting request for the domain: %s "
+#~ msgid "Successfully added"
+#~ msgstr "Successfully added"
 
-msgid "Your Mailing-list request"
-msgstr "Your Mailing-list request"
+#~ msgid "The Moderator and Admin team"
+#~ msgstr "The Moderator and Admin team"
 
-msgid "Your MySQL database request"
-msgstr "Your MySQL database request"
+#~ msgid "This box has been successfully added to this domain"
+#~ msgstr "This box has been successfully added to this domain"
 
-msgid "Your MySQL database request : %s "
-msgstr "Your MySQL database request : %s "
+#~ msgid "This forward has been successfully added to this domain"
+#~ msgstr "This forward has been successfully added to this domain"
 
-msgid "Your PostgreSQL database request"
-msgstr "Your PostgreSQL database request"
+#~ msgid "This is not a correct mail address"
+#~ msgstr "This is not a correct mail address"
 
-msgid "Your PostgreSQL database request : %s "
-msgstr "Your PostgreSQL database request : %s "
+#~ msgid "This member already exists on this list !"
+#~ msgstr "This member already exists on this list !"
 
-msgid "Your Subversion repository request"
-msgstr "Your Subversion repository request"
+#~ msgid "Unable to change spam status for %s"
+#~ msgstr "Unable to change spam status for %s"
 
-msgid "Your Subversion repository request : %s"
-msgstr "Your Subversion repository request : %s"
+#~ msgid "Unable to change virus protection status for %s"
+#~ msgstr "Unable to change virus protection status for %s"
 
-msgid "Your hosting request"
-msgstr "Your hosting request"
+#~ 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 ""
+#~ "Use VHFFS servers to manage this mail,<br>you should use use the host pop."
+#~ "%s or imap.%s to fetch your mails"
 
-msgid ""
-"Your repository name is not correct. It must contains at least 3 caracters"
-msgstr "Your repository name is not correct. It must contains at least 3 caracters"
+#~ msgid "User %s does not exists"
+#~ msgstr "User %s does not exists"
 
-msgid ""
-"Your repository name is not correct. It must contains only caracter and "
-"numbers"
-msgstr "Your repository name is not correct. It must contains only caracter and numbers"
+#~ msgid "VHFFS Login"
+#~ msgstr "VHFFS Login"
 
-msgid "Your request for a "
-msgstr "Your request for a "
+#~ msgid "VHFFS Logout"
+#~ msgstr "VHFFS Logout"
 
-msgid "Your request on %s"
-msgstr "Your request on %s"
+#~ msgid "VHFFS Password Lost OK"
+#~ msgstr "VHFFS Password Lost OK"
 
-msgid "Your web hosting request for the servername : %s "
-msgstr "Your web hosting request for the servername : %s "
+#~ msgid "VHFFS Password Lost failed"
+#~ msgstr "VHFFS Password Lost failed"
 
-msgid "has been refused by the Moderators team"
-msgstr "has been refused by the Moderators team"
+#~ msgid "Web Area awaiting validation"
+#~ msgstr "Web Area awaiting validation"
 
-msgid "no information about date"
-msgstr "no information about date"
+#~ msgid "Welcome"
+#~ msgstr "Welcome"
 
-msgid "Add this user !"
-msgstr "Add this user !"
+#~ msgid "Your CVS repository request"
+#~ msgstr "Your CVS repository request"
 
-msgid "Add this user to this group"
-msgstr "Add this user to this group"
+#~ msgid "Your CVS request : %s "
+#~ msgstr "Your CVS request : %s "
 
-msgid "Alert state"
-msgstr "Alert state"
+#~ msgid "Your DNS hosting request"
+#~ msgstr "Your DNS hosting request"
 
-msgid "An error occured while adding an ACL for the group"
-msgstr "An error occured while adding an ACL for the group"
+#~ msgid "Your DNS hosting request for the domain : %s "
+#~ msgstr "Your DNS hosting request for the domain : %s "
 
-msgid "An error occured while adding yourself to the ACL"
-msgstr "An error occured while adding yourself to the ACL"
+#~ msgid "Your Download repository request"
+#~ msgstr "Your Download repository request"
 
-msgid "An error occured while creating the list"
-msgstr "An error occured while creating the list"
+#~ msgid "Your Group request"
+#~ msgstr "Your Group request"
 
-msgid "An error occured while creating the object"
-msgstr "An error occured while creating the object"
+#~ msgid "Your Group request : %s "
+#~ msgstr "Your Group request : %s "
 
-msgid "An error occured while creating the object %s %s"
-msgstr "An error occured while creating the object %s %s"
+#~ msgid "Your Mail hosting request"
+#~ msgstr "Your Mail hosting request"
 
-msgid "An error occured while setting up the ACL"
-msgstr "An error occured while setting up the ACL"
+#~ msgid "Your Mail hosting request for the domain: %s "
+#~ msgstr "Your Mail hosting request for the domain: %s "
 
-msgid "Archive are not open for this list"
-msgstr "Archive are not open for this list"
+#~ msgid "Your Mailing-list request"
+#~ msgstr "Your Mailing-list request"
 
-msgid "Archives"
-msgstr "Archives"
+#~ msgid "Your MySQL database request"
+#~ msgstr "Your MySQL database request"
 
-msgid "Archives for "
-msgstr "Archives for "
+#~ msgid "Your MySQL database request : %s "
+#~ msgstr "Your MySQL database request : %s "
 
-msgid "Archives for year"
-msgstr "Archives for year"
+#~ msgid "Your PostgreSQL database request"
+#~ msgstr "Your PostgreSQL database request"
 
-msgid "Bad listname"
-msgstr "Bad listname"
+#~ msgid "Your PostgreSQL database request : %s "
+#~ msgstr "Your PostgreSQL database request : %s "
 
-msgid "Bad message-id"
-msgstr "Bad message-id"
+#~ msgid "Your Subversion repository request"
+#~ msgstr "Your Subversion repository request"
 
-msgid "CGI Errror!"
-msgstr "CGI Errror!"
+#~ msgid "Your Subversion repository request : %s"
+#~ msgstr "Your Subversion repository request : %s"
 
-msgid "Cannot add this user in this group"
-msgstr "Cannot add this user in this group"
+#~ msgid "Your hosting request"
+#~ msgstr "Your hosting request"
 
-msgid "Cannot remove the owner from a group"
-msgstr "Cannot remove the owner from a group"
+#~ msgid ""
+#~ "Your repository name is not correct. It must contains at least 3 caracters"
+#~ msgstr ""
+#~ "Your repository name is not correct. It must contains at least 3 caracters"
 
-msgid "Change language"
-msgstr "Change language"
+#~ msgid ""
+#~ "Your repository name is not correct. It must contains only caracter and "
+#~ "numbers"
+#~ msgstr ""
+#~ "Your repository name is not correct. It must contains only caracter and "
+#~ "numbers"
 
-msgid "Change theme"
-msgstr "Change theme"
+#~ msgid "Your request for a "
+#~ msgstr "Your request for a "
 
-msgid "Crawl"
-msgstr "Crawl"
+#~ msgid "Your request on %s"
+#~ msgstr "Your request on %s"
 
-msgid "Create a Postgres database"
-msgstr "Create a Postgres database"
+#~ msgid "Your web hosting request for the servername : %s "
+#~ msgstr "Your web hosting request for the servername : %s "
 
-msgid "Database name must contain at least 3 caracters"
-msgstr "Database name must contain at least 3 caracters"
+#~ msgid "has been refused by the Moderators team"
+#~ msgstr "has been refused by the Moderators team"
 
-msgid "Database name must contain between 3 and 16 characters"
-msgstr "Database name must contain between 3 and 16 characters"
+#~ msgid "no information about date"
+#~ msgstr "no information about date"
 
-msgid "Database password must contains at least 3 characters"
-msgstr "Database password must contains at least 3 characters"
+#~ msgid "Add this user !"
+#~ msgstr "Add this user !"
 
-msgid "Doe not exist in the VHFFS database"
-msgstr "Doe not exist in the VHFFS database"
+#~ msgid "Add this user to this group"
+#~ msgstr "Add this user to this group"
 
-msgid "Don't use Crawl"
-msgstr "Don't use Crawl"
+#~ msgid "Alert state"
+#~ msgstr "Alert state"
 
-msgid "Error when upload avatar for this object"
-msgstr "Error when upload avatar for this object"
+#~ msgid "An error occured while adding an ACL for the group"
+#~ msgstr "An error occured while adding an ACL for the group"
 
-msgid "Error while creating list (unknow problem)"
-msgstr "Error while creating list (unknow problem)"
+#~ msgid "An error occured while adding yourself to the ACL"
+#~ msgstr "An error occured while adding yourself to the ACL"
 
-msgid "Invalid mail domain"
-msgstr "Invalid mail domain"
+#~ msgid "An error occured while creating the list"
+#~ msgstr "An error occured while creating the list"
 
-msgid "Mail area successfully created !"
-msgstr "Mail area successfully created !"
+#~ msgid "An error occured while creating the object"
+#~ msgstr "An error occured while creating the object"
 
-msgid "Mailing-list successfully created !"
-msgstr "Mailing-list successfully created !"
+#~ msgid "An error occured while creating the object %s %s"
+#~ msgstr "An error occured while creating the object %s %s"
 
-msgid "Message from list %s"
-msgstr "Message from list %s"
+#~ msgid "An error occured while setting up the ACL"
+#~ msgstr "An error occured while setting up the ACL"
 
-msgid "Password must contain at least 3 caracters"
-msgstr "Password must contain at least 3 caracters"
+#~ msgid "Archive are not open for this list"
+#~ msgstr "Archive are not open for this list"
 
-msgid "Password must contains only alphanum caracters"
-msgstr "Password must contains only alphanum caracters"
+#~ msgid "Archives"
+#~ msgstr "Archives"
 
-msgid "PostgreSQL database name"
-msgstr "Nombre de la base de datos PostgreSQL"
+#~ msgid "Archives for "
+#~ msgstr "Archives for "
 
-msgid "PostgreSQL password for this database"
-msgstr "Contraseña PostgreSQL para esta base de datos"
+#~ msgid "Archives for year"
+#~ msgstr "Archives for year"
 
-msgid "Project Successfully modified"
-msgstr "Project Successfully modified"
+#~ msgid "Bad listname"
+#~ msgstr "Bad listname"
 
-msgid "Remove this user from this group"
-msgstr "Remove this user from this group"
+#~ msgid "Bad message-id"
+#~ msgstr "Bad message-id"
 
-msgid "Send logo"
-msgstr "Send logo"
+#~ msgid "CGI Errror!"
+#~ msgstr "CGI Errror!"
 
-msgid "Servername error. Please enter a valid servername"
-msgstr "Servername error. Please enter a valid servername"
+#~ msgid "Cannot add this user in this group"
+#~ msgstr "Cannot add this user in this group"
 
-msgid "Subject: "
-msgstr "Título: "
+#~ msgid "Cannot remove the owner from a group"
+#~ msgstr "Cannot remove the owner from a group"
 
-msgid ""
-"Sucessfully added this user to this group. Please wait while robots add him"
-msgstr "Sucessfully added this user to this group. Please wait while robots add him"
+#~ msgid "Change language"
+#~ msgstr "Change language"
 
-msgid "The Download repository object was successfully created !"
-msgstr "The Download repository object was successfully created !"
+#~ msgid "Change theme"
+#~ msgstr "Change theme"
 
-msgid "The MySQL object was successfully created !"
-msgstr "The MySQL object was successfully created !"
+#~ msgid "Crawl"
+#~ msgstr "Crawl"
 
-msgid "The PostgreSQL object was successfully created !"
-msgstr "The PostgreSQL object was successfully created !"
+#~ msgid "Create a Postgres database"
+#~ msgstr "Create a Postgres database"
 
-msgid "The Subversion object was successfully created !"
-msgstr "The Subversion object was successfully created !"
+#~ msgid "Database name must contain at least 3 caracters"
+#~ msgstr "Database name must contain at least 3 caracters"
 
-msgid "The database name is not valid"
-msgstr "The database name is not valid"
+#~ msgid "Database name must contain between 3 and 16 characters"
+#~ msgstr "Database name must contain between 3 and 16 characters"
 
-msgid "The database name is too long. There is a 32 character limit"
-msgstr "The database name is too long. There is a 32 character limit"
+#~ msgid "Database password must contains at least 3 characters"
+#~ msgstr "Database password must contains at least 3 characters"
 
-msgid ""
-"The groupname should contain at least 3 caracters and must contain only "
-"letters or numbers in lower case"
-msgstr "The groupname should contain at least 3 caracters and must contain only letters or numbers in lower case"
+#~ msgid "Doe not exist in the VHFFS database"
+#~ msgstr "Doe not exist in the VHFFS database"
 
-msgid "The password is not valid"
-msgstr "The password is not valid"
+#~ msgid "Don't use Crawl"
+#~ msgstr "Don't use Crawl"
 
-msgid ""
-"The prefix of your databases is constant, so the names of your databases "
-"will be %s_DBNAME<br>. One user will be created, which will be called %"
-"s_DBNAME"
-msgstr "The prefix of your databases is constant, so the names of your databases will be %s_DBNAME<br>. One user will be created, which will be called %s_DBNAME"
+#~ msgid "Error when upload avatar for this object"
+#~ msgstr "Error when upload avatar for this object"
 
-msgid ""
-"The repository name is too short. It must contains at least 3 caracters, and "
-"must only contain letters and numbers"
-msgstr "The repository name is too short. It must contains at least 3 caracters, and must only contain letters and numbers"
+#~ msgid "Error while creating list (unknow problem)"
+#~ msgstr "Error while creating list (unknow problem)"
 
-msgid "This group is not activated yet"
-msgstr "This group is not activated yet"
+#~ msgid "Invalid mail domain"
+#~ msgstr "Invalid mail domain"
 
-msgid "This repository name already exists"
-msgstr "This repository name already exists"
+#~ msgid "Mail area successfully created !"
+#~ msgstr "Mail area successfully created !"
 
-msgid "This user does not exists "
-msgstr "This user does not exists "
+#~ msgid "Mailing-list successfully created !"
+#~ msgstr "Mailing-list successfully created !"
 
-msgid "This user is not in this group "
-msgstr "This user is not in this group "
+#~ msgid "Message from list %s"
+#~ msgstr "Message from list %s"
 
-msgid "Unable to record changes on this domain"
-msgstr "Unable to record changes on this domain"
+#~ msgid "Password must contain at least 3 caracters"
+#~ msgstr "Password must contain at least 3 caracters"
 
-msgid "Use Crawl"
-msgstr "Use Crawl"
+#~ msgid "Password must contains only alphanum caracters"
+#~ msgstr "Password must contains only alphanum caracters"
 
-msgid "Use crawl (useful for web-search engine)"
-msgstr "Use crawl (useful for web-search engine)"
+#~ msgid "PostgreSQL database name"
+#~ msgstr "Nombre de la base de datos PostgreSQL"
 
-msgid "Web area successfully created !"
-msgstr "Web area successfully created !"
+#~ msgid "PostgreSQL password for this database"
+#~ msgstr "Contraseña PostgreSQL para esta base de datos"
 
-msgid "You don't own this domain"
-msgstr "You don't own this domain"
+#~ msgid "Project Successfully modified"
+#~ msgstr "Project Successfully modified"
 
-msgid "You have been successfully subscribed to the list %s\n"
-msgstr "You have been successfully subscribed to the list %s\n"
+#~ msgid "Remove this user from this group"
+#~ msgstr "Remove this user from this group"
 
-msgid "You need to manage at least a domain to host a mailing-list"
-msgstr "You need to manage at least a domain to host a mailing-list"
+#~ msgid "Send logo"
+#~ msgstr "Send logo"
 
-msgid "Your request on VHFFS platform"
-msgstr "Your request on VHFFS platform"
+#~ msgid "Servername error. Please enter a valid servername"
+#~ msgstr "Servername error. Please enter a valid servername"
 
-msgid "Administrator Menu"
-msgstr "Administrator Menu"
+#~ msgid "Subject: "
+#~ msgstr "Título: "
 
-msgid "CVS Search"
-msgstr "CVS Search"
+#~ msgid ""
+#~ "Sucessfully added this user to this group. Please wait while robots add "
+#~ "him"
+#~ msgstr ""
+#~ "Sucessfully added this user to this group. Please wait while robots add "
+#~ "him"
 
-msgid "CVS repository"
-msgstr "CVS repository"
+#~ msgid "The Download repository object was successfully created !"
+#~ msgstr "The Download repository object was successfully created !"
 
-msgid "Create"
-msgstr "Create"
+#~ msgid "The MySQL object was successfully created !"
+#~ msgstr "The MySQL object was successfully created !"
 
-msgid "DB Search"
-msgstr "DB Search"
+#~ msgid "The PostgreSQL object was successfully created !"
+#~ msgstr "The PostgreSQL object was successfully created !"
 
-msgid "DNS"
-msgstr "DNS"
+#~ msgid "The Subversion object was successfully created !"
+#~ msgstr "The Subversion object was successfully created !"
 
-msgid "Database Access"
-msgstr "Database Access"
+#~ msgid "The database name is not valid"
+#~ msgstr "The database name is not valid"
 
-msgid "Documentation"
-msgstr "Documentation"
+#~ msgid "The database name is too long. There is a 32 character limit"
+#~ msgstr "The database name is too long. There is a 32 character limit"
 
-msgid "Download repository"
-msgstr "Download repository"
+#~ msgid ""
+#~ "The groupname should contain at least 3 caracters and must contain only "
+#~ "letters or numbers in lower case"
+#~ msgstr ""
+#~ "The groupname should contain at least 3 caracters and must contain only "
+#~ "letters or numbers in lower case"
 
-msgid "Download repository admin"
-msgstr "Download repository admin"
+#~ msgid "The password is not valid"
+#~ msgstr "The password is not valid"
 
-msgid "List all CVS"
-msgstr "List all CVS"
+#~ msgid ""
+#~ "The prefix of your databases is constant, so the names of your databases "
+#~ "will be %s_DBNAME<br>. One user will be created, which will be called %"
+#~ "s_DBNAME"
+#~ msgstr ""
+#~ "The prefix of your databases is constant, so the names of your databases "
+#~ "will be %s_DBNAME<br>. One user will be created, which will be called %"
+#~ "s_DBNAME"
 
-msgid "List all DBs"
-msgstr "List all DBs"
+#~ msgid ""
+#~ "The repository name is too short. It must contains at least 3 caracters, "
+#~ "and must only contain letters and numbers"
+#~ msgstr ""
+#~ "The repository name is too short. It must contains at least 3 caracters, "
+#~ "and must only contain letters and numbers"
 
-msgid "List all Postgres DB"
-msgstr "List all Postgres DB"
+#~ msgid "This group is not activated yet"
+#~ msgstr "This group is not activated yet"
 
-msgid "List all SVN repo"
-msgstr "List all SVN repo"
+#~ msgid "This repository name already exists"
+#~ msgstr "This repository name already exists"
 
-msgid "List all domains"
-msgstr "List all domains"
+#~ msgid "This user does not exists "
+#~ msgstr "This user does not exists "
 
-msgid "List all lists"
-msgstr "List all lists"
+#~ msgid "This user is not in this group "
+#~ msgstr "This user is not in this group "
 
-msgid "List websites"
-msgstr "List websites"
+#~ msgid "Unable to record changes on this domain"
+#~ msgstr "Unable to record changes on this domain"
 
-msgid "MYSQL Admin"
-msgstr "MYSQL Admin"
+#~ msgid "Use Crawl"
+#~ msgstr "Use Crawl"
 
-msgid "Mail Admin"
-msgstr "Mail Admin"
+#~ msgid "Use crawl (useful for web-search engine)"
+#~ msgstr "Use crawl (useful for web-search engine)"
 
-msgid "Mailing-lists Admin"
-msgstr "Mailing-lists Admin"
+#~ msgid "Web area successfully created !"
+#~ msgstr "Web area successfully created !"
 
-msgid "MySQL Databases"
-msgstr "MySQL Databases"
+#~ msgid "You don't own this domain"
+#~ msgstr "You don't own this domain"
 
-msgid "NS Admin"
-msgstr "NS Admin"
+#~ msgid "You have been successfully subscribed to the list %s\n"
+#~ msgstr "You have been successfully subscribed to the list %s\n"
 
-msgid "PostgreSQL Databases"
-msgstr "PostgreSQL Databases"
+#~ msgid "You need to manage at least a domain to host a mailing-list"
+#~ msgstr "You need to manage at least a domain to host a mailing-list"
 
-msgid "Postgres Admin"
-msgstr "Postgres Admin"
+#~ msgid "Your request on VHFFS platform"
+#~ msgstr "Your request on VHFFS platform"
 
-msgid "Project : "
-msgstr "Project : "
+#~ msgid "Administrator Menu"
+#~ msgstr "Administrator Menu"
 
-msgid "Project Configuration"
-msgstr "Project Configuration"
+#~ msgid "CVS Search"
+#~ msgstr "CVS Search"
 
-msgid "Search for a PostgreSQL database"
-msgstr "Search for a PostgreSQL database"
+#~ msgid "CVS repository"
+#~ msgstr "CVS repository"
 
-msgid "Search for a domain"
-msgstr "Search for a domain"
+#~ msgid "Create"
+#~ msgstr "Create"
 
-msgid "Subversion Admin"
-msgstr "Subversion Admin"
+#~ msgid "DB Search"
+#~ msgstr "DB Search"
 
-msgid "Subversion repository"
-msgstr "Subversion repository"
+#~ msgid "DNS"
+#~ msgstr "DNS"
 
-msgid "Web Areas"
-msgstr "Web Areas"
+#~ msgid "Database Access"
+#~ msgstr "Database Access"
 
-msgid "CVS repositories for this group"
-msgstr "CVS repositories for this group"
+#~ msgid "Documentation"
+#~ msgstr "Documentation"
 
-msgid "Domains for this group"
-msgstr "Domains for this group"
+#~ msgid "Download repository"
+#~ msgstr "Download repository"
 
-msgid "Go to admin"
-msgstr "Go to admin"
+#~ msgid "Download repository admin"
+#~ msgstr "Download repository admin"
 
-msgid "Mail domain for this group"
-msgstr "Mail domain for this group"
+#~ msgid "List all CVS"
+#~ msgstr "List all CVS"
 
-msgid "Mailing-lists for this group"
-msgstr "Mailing-lists for this group"
+#~ msgid "List all DBs"
+#~ msgstr "List all DBs"
 
-msgid "Mysql database for this group"
-msgstr "Mysql database for this group"
+#~ msgid "List all Postgres DB"
+#~ msgstr "List all Postgres DB"
 
-msgid "No DNS domain for this group"
-msgstr "No DNS domain for this group"
+#~ msgid "List all SVN repo"
+#~ msgstr "List all SVN repo"
 
-msgid "No Mail domain for this group"
-msgstr "No Mail domain for this group"
+#~ msgid "List all domains"
+#~ msgstr "List all domains"
 
-msgid "No Mailing-list for this group"
-msgstr "No Mailing-list for this group"
+#~ msgid "List all lists"
+#~ msgstr "List all lists"
 
-msgid "No PostgreSQL database for this group"
-msgstr "No PostgreSQL database for this group"
+#~ msgid "List websites"
+#~ msgstr "List websites"
 
-msgid "No download repository for this group"
-msgstr "No download repository for this group"
+#~ msgid "MYSQL Admin"
+#~ msgstr "MYSQL Admin"
 
-msgid "No mysql database for this group"
-msgstr "No mysql database for this group"
+#~ msgid "Mail Admin"
+#~ msgstr "Mail Admin"
 
-msgid "PostgreSQL database for this group"
-msgstr "PostgreSQL database for this group"
+#~ msgid "Mailing-lists Admin"
+#~ msgstr "Mailing-lists Admin"
 
-msgid "SVN repositories for this group"
-msgstr "SVN repositories for this group"
+#~ msgid "MySQL Databases"
+#~ msgstr "MySQL Databases"
 
-msgid "View history"
-msgstr "View history"
+#~ msgid "NS Admin"
+#~ msgstr "NS Admin"
 
-msgid "ACL successfully added"
-msgstr "ACL successfully added"
+#~ msgid "PostgreSQL Databases"
+#~ msgstr "PostgreSQL Databases"
 
-msgid "ACL successfully deleted"
-msgstr "ACL successfully deleted"
+#~ msgid "Postgres Admin"
+#~ msgstr "Postgres Admin"
 
-msgid "ACL successfully modified"
-msgstr "ACL successfully modified"
+#~ msgid "Project : "
+#~ msgstr "Project : "
 
-msgid "CGI Error "
-msgstr "Error CGI "
+#~ msgid "Project Configuration"
+#~ msgstr "Project Configuration"
 
-msgid "Cannot get informations on this object %s %s"
-msgstr "Cannot get informations on this object %s %s"
+#~ msgid "Search for a PostgreSQL database"
+#~ msgstr "Search for a PostgreSQL database"
 
-msgid "Modify this ACL"
-msgstr "Modify this ACL"
+#~ msgid "Search for a domain"
+#~ msgstr "Search for a domain"
 
-msgid "No webarea for this group"
-msgstr "No webarea for this group"
+#~ msgid "Subversion Admin"
+#~ msgstr "Subversion Admin"
 
-msgid "Object Error"
-msgstr "Object Error"
+#~ msgid "Subversion repository"
+#~ msgstr "Subversion repository"
 
-msgid "Sorry, can't delete this ACL"
-msgstr "Sorry, can't delete this ACL"
+#~ msgid "Web Areas"
+#~ msgstr "Web Areas"
 
-msgid "The group does not exist"
-msgstr "The group does not exist"
+#~ msgid "CVS repositories for this group"
+#~ msgstr "CVS repositories for this group"
 
-msgid "This type of object is not treated in the panel."
-msgstr "This type of object is not treated in the panel."
+#~ msgid "Domains for this group"
+#~ msgstr "Domains for this group"
 
-msgid "Webarea for this group"
-msgstr "Webarea for this group"
+#~ msgid "Go to admin"
+#~ msgstr "Go to admin"
 
-msgid "ACL Administration for : "
-msgstr "ACL Administration for : "
+#~ msgid "Mail domain for this group"
+#~ msgstr "Mail domain for this group"
 
-msgid "Admin DNS"
-msgstr "Admin DNS"
+#~ msgid "Mailing-lists for this group"
+#~ msgstr "Mailing-lists for this group"
 
-msgid "Admin account : "
-msgstr "Admin account : "
+#~ msgid "Mysql database for this group"
+#~ msgstr "Mysql database for this group"
 
-msgid "CNAME field successfully updated"
-msgstr "CNAME field successfully updated"
+#~ msgid "No DNS domain for this group"
+#~ msgstr "No DNS domain for this group"
 
-msgid "Cannot add this ressource to this domain"
-msgstr "Cannot add this ressource to this domain"
+#~ msgid "No Mail domain for this group"
+#~ msgstr "No Mail domain for this group"
 
-msgid "Cannot delete it."
-msgstr "Cannot delete it."
+#~ msgid "No Mailing-list for this group"
+#~ msgstr "No Mailing-list for this group"
 
-msgid "Cannot modify this ressource on this domain"
-msgstr "Cannot modify this ressource on this domain"
+#~ msgid "No PostgreSQL database for this group"
+#~ msgstr "No PostgreSQL database for this group"
 
-msgid "Cannot update CNAME on this domain"
-msgstr "Cannot update CNAME on this domain"
+#~ msgid "No download repository for this group"
+#~ msgstr "No download repository for this group"
 
-msgid "Cannot update MX on this domain"
-msgstr "Cannot update MX on this domain"
+#~ msgid "No mysql database for this group"
+#~ msgstr "No mysql database for this group"
 
-msgid "Create a DNS "
-msgstr "Crear un DNS "
+#~ msgid "PostgreSQL database for this group"
+#~ msgstr "PostgreSQL database for this group"
 
-msgid "Go to Login"
-msgstr "Go to Login"
+#~ msgid "SVN repositories for this group"
+#~ msgstr "SVN repositories for this group"
 
-msgid "Go to login page"
-msgstr "Go to login page"
+#~ msgid "View history"
+#~ msgstr "View history"
 
-msgid "Invalid IP"
-msgstr "Invalid IP"
+#~ msgid "ACL successfully added"
+#~ msgstr "ACL successfully added"
 
-msgid "List all all A reccords"
-msgstr "List all all A reccords"
+#~ msgid "ACL successfully deleted"
+#~ msgstr "ACL successfully deleted"
 
-msgid "Login OK, please wait..."
-msgstr "Login OK, please wait..."
+#~ msgid "ACL successfully modified"
+#~ msgstr "ACL successfully modified"
 
-msgid "MX successfully changed"
-msgstr "MX successfully changed"
+#~ msgid "CGI Error "
+#~ msgstr "Error CGI "
 
-msgid "Moderated"
-msgstr "Moderated"
+#~ msgid "Cannot get informations on this object %s %s"
+#~ msgstr "Cannot get informations on this object %s %s"
 
-msgid "Moderator account : "
-msgstr "Moderator account : "
+#~ msgid "Modify this ACL"
+#~ msgstr "Modify this ACL"
 
-msgid "Open archives"
-msgstr "Open archives"
+#~ msgid "No webarea for this group"
+#~ msgstr "No webarea for this group"
 
-msgid "Open post"
-msgstr "Open post"
+#~ msgid "Object Error"
+#~ msgstr "Object Error"
 
-msgid "Panel Access"
-msgstr "Panel Access"
+#~ msgid "Sorry, can't delete this ACL"
+#~ msgstr "Sorry, can't delete this ACL"
 
-msgid "Resource successfully added to this domain"
-msgstr "Resource successfully added to this domain"
+#~ msgid "The group does not exist"
+#~ msgstr "The group does not exist"
 
-msgid "Subscribed. Waiting for confirmation"
-msgstr "Subscribed. Waiting for confirmation"
+#~ msgid "This type of object is not treated in the panel."
+#~ msgstr "This type of object is not treated in the panel."
 
-msgid "Subscriber"
-msgstr "Subscriber"
+#~ msgid "Webarea for this group"
+#~ msgstr "Webarea for this group"
 
-msgid "This domain name doesn't exist in the VHFFS database"
-msgstr "This domain name doesn't exist in the VHFFS database"
+#~ msgid "ACL Administration for : "
+#~ msgstr "ACL Administration for : "
 
-msgid "This part of the domain is now removed."
-msgstr "This part of the domain is now removed."
+#~ msgid "Admin DNS"
+#~ msgstr "Admin DNS"
 
-msgid "Updated !"
-msgstr "Updated !"
+#~ msgid "Admin account : "
+#~ msgstr "Admin account : "
 
-msgid "User Successfully modified"
-msgstr "User Successfully modified"
+#~ msgid "CNAME field successfully updated"
+#~ msgstr "CNAME field successfully updated"
 
-msgid "User account : "
-msgstr "User account : "
+#~ msgid "Cannot add this ressource to this domain"
+#~ msgstr "Cannot add this ressource to this domain"
 
-msgid "VHFFS Login OK"
-msgstr "VHFFS Login OK"
+#~ msgid "Cannot delete it."
+#~ msgstr "Cannot delete it."
 
-msgid "VHFFS Login failed"
-msgstr "VHFFS Login failed"
+#~ msgid "Cannot modify this ressource on this domain"
+#~ msgstr "Cannot modify this ressource on this domain"
 
-msgid "Waiting for delete"
-msgstr "Waiting for delete"
+#~ msgid "Cannot update CNAME on this domain"
+#~ msgstr "Cannot update CNAME on this domain"
 
-msgid "You have been successfully removed from the list %s\n"
-msgstr "You have been successfully removed from the list %s\n"
+#~ msgid "Cannot update MX on this domain"
+#~ msgstr "Cannot update MX on this domain"
 
-msgid "Your request has been removed.\n"
-msgstr "Your request has been removed.\n"
+#~ msgid "Create a DNS "
+#~ msgstr "Crear un DNS "
 
-msgid "An error occured while applying changes"
-msgstr "An error occured while applying changes"
+#~ msgid "Go to Login"
+#~ msgstr "Go to Login"
 
-msgid "An error occured while fetching information about this mailing list"
-msgstr "An error occured while fetching information about this mailing list"
+#~ msgid "Go to login page"
+#~ msgstr "Go to login page"
 
-msgid "Cannot build object"
-msgstr "Cannot build object"
+#~ msgid "Invalid IP"
+#~ msgstr "Invalid IP"
 
-msgid "Cannot instanciate object %s"
-msgstr "Cannot instanciate object %s"
+#~ msgid "List all all A reccords"
+#~ msgstr "List all all A reccords"
 
-msgid "Error when applying changes"
-msgstr "Error when applying changes"
+#~ msgid "Login OK, please wait..."
+#~ msgstr "Login OK, please wait..."
 
-msgid "No such user on Vhffs"
-msgstr "No such user on Vhffs"
+#~ msgid "MX successfully changed"
+#~ msgstr "MX successfully changed"
 
-msgid "Unable to reccord changes on this domain"
-msgstr "Unable to reccord changes on this domain"
+#~ msgid "Moderated"
+#~ msgstr "Moderated"
 
-msgid "Your request on VHFFS was accepted\n"
-msgstr "Your request on VHFFS was accepted\n"
+#~ msgid "Moderator account : "
+#~ msgstr "Moderator account : "
 
-msgid "(waiting for creation)"
-msgstr "(waiting for creation)"
+#~ msgid "Open archives"
+#~ msgstr "Open archives"
 
-msgid "(waiting for moderation)"
-msgstr "(waiting for moderation)"
+#~ msgid "Open post"
+#~ msgstr "Open post"
 
-msgid "ACL management for: "
-msgstr "ACL management for: "
+#~ msgid "Panel Access"
+#~ msgstr "Panel Access"
 
-msgid "Activate email address %s@% "
-msgstr "Activate email address %s@% "
+#~ msgid "Resource successfully added to this domain"
+#~ msgstr "Resource successfully added to this domain"
 
-msgid "All Mail Domains lists"
-msgstr "All Mail Domains lists"
+#~ msgid "Subscribed. Waiting for confirmation"
+#~ msgstr "Subscribed. Waiting for confirmation"
 
-msgid "All Users lists"
-msgstr "All Users lists"
+#~ msgid "Subscriber"
+#~ msgstr "Subscriber"
 
-msgid "All Web Areas lists"
-msgstr "All Web Areas lists"
+#~ msgid "This domain name doesn't exist in the VHFFS database"
+#~ msgstr "This domain name doesn't exist in the VHFFS database"
 
-msgid "All domains lists"
-msgstr "All domains lists"
+#~ msgid "This part of the domain is now removed."
+#~ msgstr "This part of the domain is now removed."
 
-msgid ""
-"Cannot read the cookie from your browser. Please check your browser's "
-"settings to accept cookiesfrom this site and then log in again!"
-msgstr "Cannot read the cookie from your browser. Please check your browser's settings to accept cookiesfrom this site and then log in again!"
+#~ msgid "Updated !"
+#~ msgstr "Updated !"
 
-msgid ""
-"Cannot create User. A username should contain at least 3 characters, only "
-"written in lowercasealphanumeric format"
-msgstr "Cannot create User. A username should contain at least 3 characters, only written in lowercasealphanumeric format"
+#~ msgid "User Successfully modified"
+#~ msgstr "User Successfully modified"
 
-msgid "Cannot obtain informations about this object"
-msgstr "Cannot obtain informations about this object"
+#~ msgid "User account : "
+#~ msgstr "User account : "
 
-msgid "Cannot retrieve informations about this CVS"
-msgstr "Cannot retrieve informations about this CVS"
+#~ msgid "VHFFS Login OK"
+#~ msgstr "VHFFS Login OK"
 
-msgid "Change forward address of all addresses"
-msgstr "Change forward address of all addresses"
+#~ msgid "VHFFS Login failed"
+#~ msgstr "VHFFS Login failed"
 
-msgid "Create a user"
-msgstr "Create a user"
+#~ msgid "Waiting for delete"
+#~ msgstr "Waiting for delete"
 
-msgid "Database Search"
-msgstr "Database Search"
+#~ msgid "You have been successfully removed from the list %s\n"
+#~ msgstr "You have been successfully removed from the list %s\n"
 
-msgid "Database name must contains at least 3 caracters and no more than 16"
-msgstr "Database name must contains at least 3 caracters and no more than 16"
+#~ msgid "Your request has been removed.\n"
+#~ msgstr "Your request has been removed.\n"
 
-msgid "Delete this account"
-msgstr "Delete this account"
+#~ msgid "An error occured while applying changes"
+#~ msgstr "An error occured while applying changes"
 
-msgid "Do not delete this project, keep it."
-msgstr "Do not delete this project, keep it."
+#~ msgid "An error occured while fetching information about this mailing list"
+#~ msgstr "An error occured while fetching information about this mailing list"
 
-msgid "Email changed"
-msgstr "Email changed"
+#~ msgid "Cannot build object"
+#~ msgstr "Cannot build object"
 
-msgid "Error occured while adding ACL to you"
-msgstr "Error occured while adding ACL to you"
+#~ msgid "Cannot instanciate object %s"
+#~ msgstr "Cannot instanciate object %s"
 
-msgid "Error occured while creating"
-msgstr "Error occured while creating"
+#~ msgid "Error when applying changes"
+#~ msgstr "Error when applying changes"
 
-msgid "Error occured while fetching list object"
-msgstr "Error occured while fetching list object"
+#~ msgid "No such user on Vhffs"
+#~ msgstr "No such user on Vhffs"
 
-msgid "Error occured with your adresse in your profile"
-msgstr "Error occured with your adresse in your profile"
+#~ msgid "Unable to reccord changes on this domain"
+#~ msgstr "Unable to reccord changes on this domain"
 
-msgid "Forward all mails"
-msgstr "Forward all mails"
+#~ msgid "Your request on VHFFS was accepted\n"
+#~ msgstr "Your request on VHFFS was accepted\n"
 
-msgid "Group owner for this database "
-msgstr "Group owner for this database "
+#~ msgid "(waiting for creation)"
+#~ msgstr "(waiting for creation)"
 
-msgid "Group to validate"
-msgstr "Group to validate"
+#~ msgid "(waiting for moderation)"
+#~ msgstr "(waiting for moderation)"
 
-msgid "Hello World!\n"
-msgstr "Hello World!\n"
+#~ msgid "ACL management for: "
+#~ msgstr "ACL management for: "
 
-msgid "Is this repository publicly accessible?"
-msgstr "Is this repository publicly accessible?"
+#~ msgid "Activate email address %s@% "
+#~ msgstr "Activate email address %s@% "
 
-msgid "Just a try, and %s\n"
-msgstr "Just a try, and %s\n"
+#~ msgid "All Mail Domains lists"
+#~ msgstr "All Mail Domains lists"
 
-msgid "Keep this."
-msgstr "Keep this."
+#~ msgid "All Users lists"
+#~ msgstr "All Users lists"
 
-msgid "MySQL management"
-msgstr "MySQL management"
+#~ msgid "All Web Areas lists"
+#~ msgstr "All Web Areas lists"
 
-msgid "Modifications applied to the database"
-msgstr "Modifications applied to the database"
+#~ msgid "All domains lists"
+#~ msgstr "All domains lists"
 
-msgid "No Mail Area to moderate"
-msgstr "No Mail Area to moderate"
+#~ msgid ""
+#~ "Cannot read the cookie from your browser. Please check your browser's "
+#~ "settings to accept cookiesfrom this site and then log in again!"
+#~ msgstr ""
+#~ "Cannot read the cookie from your browser. Please check your browser's "
+#~ "settings to accept cookiesfrom this site and then log in again!"
 
-msgid "No valid state"
-msgstr "No valid state"
+#~ msgid ""
+#~ "Cannot create User. A username should contain at least 3 characters, only "
+#~ "written in lowercasealphanumeric format"
+#~ msgstr ""
+#~ "Cannot create User. A username should contain at least 3 characters, only "
+#~ "written in lowercasealphanumeric format"
 
-msgid "No Web Area to moderate"
-msgstr "No Web Area to moderate"
+#~ msgid "Cannot obtain informations about this object"
+#~ msgstr "Cannot obtain informations about this object"
 
-msgid "No database to moderate"
-msgstr "No database to moderate"
+#~ msgid "Cannot retrieve informations about this CVS"
+#~ msgstr "Cannot retrieve informations about this CVS"
 
-msgid "Not exists in database"
-msgstr "Not exists in database"
+#~ msgid "Change forward address of all addresses"
+#~ msgstr "Change forward address of all addresses"
 
-msgid "On the alert"
-msgstr "On the alert"
+#~ msgid "Create a user"
+#~ msgstr "Create a user"
 
-msgid "Password succesfully modified. Please wait while robots update it."
-msgstr "Password succesfully modified. Please wait while robots update it."
+#~ msgid "Database Search"
+#~ msgstr "Database Search"
 
-msgid "Please confirm your password"
-msgstr "Please confirm your password"
+#~ msgid "Database name must contains at least 3 caracters and no more than 16"
+#~ msgstr ""
+#~ "Database name must contains at least 3 caracters and no more than 16"
 
-msgid "Please enter a justification for this domain hosting."
-msgstr "Please enter a justification for this domain hosting."
+#~ msgid "Delete this account"
+#~ msgstr "Delete this account"
 
-msgid "Please enter a justification for this mailing list."
-msgstr "Please enter a justification for this mailing list."
+#~ msgid "Do not delete this project, keep it."
+#~ msgstr "Do not delete this project, keep it."
 
-msgid "Please enter a justification for this mail space."
-msgstr "Please enter a justification for this mail space."
+#~ msgid "Email changed"
+#~ msgstr "Email changed"
 
-msgid "Please enter a justification for this web hosting."
-msgstr "Please enter a justification for this web hosting."
+#~ msgid "Error occured while adding ACL to you"
+#~ msgstr "Error occured while adding ACL to you"
 
-msgid "Repository CVS"
-msgstr "Repository CVS"
+#~ msgid "Error occured while creating"
+#~ msgstr "Error occured while creating"
 
-msgid "Repository Subversion"
-msgstr "Repository Subversion"
+#~ msgid "Error occured while fetching list object"
+#~ msgstr "Error occured while fetching list object"
 
-msgid "SVN repo Search"
-msgstr "SVN repo Search"
+#~ msgid "Error occured with your adresse in your profile"
+#~ msgstr "Error occured with your adresse in your profile"
 
-msgid "Succesfully deleted. Please wait while robots delete it."
-msgstr "Succesfully deleted. Please wait while robots delete it."
+#~ msgid "Forward all mails"
+#~ msgstr "Forward all mails"
 
-msgid "Thanks,"
-msgstr "Thanks,"
+#~ msgid "Group owner for this database "
+#~ msgstr "Group owner for this database "
 
-msgid "The user does not exists"
-msgstr "The user does not exists"
+#~ msgid "Group to validate"
+#~ msgstr "Group to validate"
 
-msgid "This action is non-reversible. When you delete it, you cannot cancel."
-msgstr "Esta acción no es reversible. When you delete it, you cannot cancel."
+#~ msgid "Hello World!\n"
+#~ msgstr "Hello World!\n"
 
-msgid "This group already exists"
-msgstr "This group already exists"
+#~ msgid "Is this repository publicly accessible?"
+#~ msgstr "Is this repository publicly accessible?"
 
-msgid ""
-"To be able to log in and set a new password, enter your login below and a "
-"new temporary passwordwill be sent to your registered email."
-msgstr "To be able to log in and set a new password, enter your login below and a new temporary passwordwill be sent to your registered email."
+#~ msgid "Just a try, and %s\n"
+#~ msgstr "Just a try, and %s\n"
 
-msgid ""
-"User successfully added to this repository. Please wait while robots create "
-"it."
-msgstr "User successfully added to this repository. Please wait while robots create it."
+#~ msgid "Keep this."
+#~ msgstr "Keep this."
 
-msgid "Username already exists"
-msgstr "Username already exists"
+#~ msgid "MySQL management"
+#~ msgstr "MySQL management"
 
-msgid "Username is not correct"
-msgstr "Username is not correct"
+#~ msgid "Modifications applied to the database"
+#~ msgstr "Modifications applied to the database"
 
-msgid "Users Management"
-msgstr "Users Management"
+#~ msgid "No Mail Area to moderate"
+#~ msgstr "No Mail Area to moderate"
 
-msgid "Users list"
-msgstr "Users list"
+#~ msgid "No valid state"
+#~ msgstr "No valid state"
 
-msgid "Validate CVS Repository "
-msgstr "Validate CVS Repository "
+#~ msgid "No Web Area to moderate"
+#~ msgstr "No Web Area to moderate"
 
-msgid "VHFFS Group"
-msgstr "VHFFS Group"
+#~ msgid "No database to moderate"
+#~ msgstr "No database to moderate"
 
-msgid "VHFFS Panel"
-msgstr "VHFFS Panel"
+#~ msgid "Not exists in database"
+#~ msgstr "Not exists in database"
 
-msgid "VHFFS User"
-msgstr "VHFFS User"
+#~ msgid "On the alert"
+#~ msgstr "On the alert"
 
-msgid "Warning threshold"
-msgstr "Warning threshold"
+#~ msgid "Password succesfully modified. Please wait while robots update it."
+#~ msgstr "Password succesfully modified. Please wait while robots update it."
 
-msgid "Waiting for destruction"
-msgstr "Waiting for destruction"
+#~ msgid "Please confirm your password"
+#~ msgstr "Please confirm your password"
 
-msgid "Web Area management"
-msgstr "Web Area management"
+#~ msgid "Please enter a justification for this domain hosting."
+#~ msgstr "Please enter a justification for this domain hosting."
 
+#~ msgid "Please enter a justification for this mailing list."
+#~ msgstr "Please enter a justification for this mailing list."
+
+#~ msgid "Please enter a justification for this mail space."
+#~ msgstr "Please enter a justification for this mail space."
+
+#~ msgid "Please enter a justification for this web hosting."
+#~ msgstr "Please enter a justification for this web hosting."
+
+#~ msgid "Repository CVS"
+#~ msgstr "Repository CVS"
+
+#~ msgid "Repository Subversion"
+#~ msgstr "Repository Subversion"
+
+#~ msgid "SVN repo Search"
+#~ msgstr "SVN repo Search"
+
+#~ msgid "Succesfully deleted. Please wait while robots delete it."
+#~ msgstr "Succesfully deleted. Please wait while robots delete it."
+
+#~ msgid "Thanks,"
+#~ msgstr "Thanks,"
+
+#~ msgid "The user does not exists"
+#~ msgstr "The user does not exists"
+
+#~ msgid ""
+#~ "This action is non-reversible. When you delete it, you cannot cancel."
+#~ msgstr ""
+#~ "Esta acción no es reversible. When you delete it, you cannot cancel."
+
+#~ msgid "This group already exists"
+#~ msgstr "This group already exists"
+
+#~ msgid ""
+#~ "To be able to log in and set a new password, enter your login below and a "
+#~ "new temporary passwordwill be sent to your registered email."
+#~ msgstr ""
+#~ "To be able to log in and set a new password, enter your login below and a "
+#~ "new temporary passwordwill be sent to your registered email."
+
+#~ msgid ""
+#~ "User successfully added to this repository. Please wait while robots "
+#~ "create it."
+#~ msgstr ""
+#~ "User successfully added to this repository. Please wait while robots "
+#~ "create it."
+
+#~ msgid "Username already exists"
+#~ msgstr "Username already exists"
+
+#~ msgid "Username is not correct"
+#~ msgstr "Username is not correct"
+
+#~ msgid "Users Management"
+#~ msgstr "Users Management"
+
+#~ msgid "Users list"
+#~ msgstr "Users list"
+
+#~ msgid "Validate CVS Repository "
+#~ msgstr "Validate CVS Repository "
+
+#~ msgid "VHFFS Group"
+#~ msgstr "VHFFS Group"
+
+#~ msgid "VHFFS Panel"
+#~ msgstr "VHFFS Panel"
+
+#~ msgid "VHFFS User"
+#~ msgstr "VHFFS User"
+
+#~ msgid "Warning threshold"
+#~ msgstr "Warning threshold"
+
+#~ msgid "Waiting for destruction"
+#~ msgstr "Waiting for destruction"
+
+#~ msgid "Web Area management"
+#~ msgstr "Web Area management"
+
 #~ msgid "ACL sucessfuly added"
 #~ msgstr "ACL añadida con éxito"
 
@@ -6293,8 +6625,7 @@
 #~ msgstr "Octubre"
 
 #~ msgid "Password will not be modified if it is set to 'blanked' or empty"
-#~ msgstr ""
-#~ "La contraseña no será modificada si deja el cambo en blanco o vacío"
+#~ msgstr "La contraseña no será modificada si deja el cambo en blanco o vacío"
 
 #~ msgid "Platform temporary closed"
 #~ msgstr "Plataforma cerrada temporalmente"

Modified: trunk/vhffs-panel/admin/git/index.pl
===================================================================
--- trunk/vhffs-panel/admin/git/index.pl	2007-10-22 22:42:38 UTC (rev 1018)
+++ trunk/vhffs-panel/admin/git/index.pl	2007-10-22 23:23:34 UTC (rev 1019)
@@ -54,7 +54,7 @@
 
 my $template = new HTML::Template(filename => $templatedir.'/panel/admin/index.tmpl');
 
-$panel->set_title(gettext('GIT repositories\' administration'));
+$panel->set_title( gettext('GIT repositories\' administration') );
 
 $template->param( CATEGORIES => [ Vhffs::Panel::Admin::get_git_category ] );
 

Modified: trunk/vhffs-public/user.pl
===================================================================
--- trunk/vhffs-public/user.pl	2007-10-22 22:42:38 UTC (rev 1018)
+++ trunk/vhffs-public/user.pl	2007-10-22 23:23:34 UTC (rev 1019)
@@ -67,7 +67,7 @@
 
 if( ! defined $name )
 {
-	$template = new HTML::Template( filename => $templatedir.'/misc/simplemsg.tmpl' );
+	$template = new HTML::Template( filename => $templatedir.'/public/simplemsg.tmpl' );
 	my $message = gettext( "CGI ERROR!");
 	$template->param( MESSAGE => $message );
 }

Modified: trunk/vhffs-robots/src/git_public.pl
===================================================================
--- trunk/vhffs-robots/src/git_public.pl	2007-10-22 22:42:38 UTC (rev 1018)
+++ trunk/vhffs-robots/src/git_public.pl	2007-10-22 23:23:34 UTC (rev 1019)
@@ -49,8 +49,8 @@
 my $git;
 foreach $git ( @{$repos} )
 {
-	$user = $git->get_user;
-	$group = $git->get_group;
+	my $user = $git->get_user;
+	my $group = $git->get_group;
 	#First, update uid and gid informations on files
 	if( ( defined $user ) && ( defined $group ) ) {
 			Vhffs::Robots::vhffs_log( sprintf( "GIT change owner/group to %s/%s for repository %s" , $user->get_username , $group->get_groupname , $git->get_dir ) , $vhffs);

Modified: trunk/vhffs-robots/src/mailing.pl
===================================================================
--- trunk/vhffs-robots/src/mailing.pl	2007-10-22 22:42:38 UTC (rev 1018)
+++ trunk/vhffs-robots/src/mailing.pl	2007-10-22 23:23:34 UTC (rev 1019)
@@ -74,7 +74,8 @@
 	foreach my $user ( @{$users} )
 	{
 		next unless defined $user;
-		Vhffs::Functions::send_mail( $from , $user->get_mail , $vhffs->get_config->get_mailtag , $subject , $message );
+#		Vhffs::Functions::send_mail( $from , $user->get_mail , $vhffs->get_config->get_mailtag , '=?utf-8?'.$subject.'?=' , $message );
+		Vhffs::Functions::send_mail( $from , $user->get_mail , $vhffs->get_config->get_mailtag , '=?iso-8859-1?Q?V=E9rificatio?=' , $message );
 	}
 
 	my $query = "UPDATE vhffs_mailings SET state='".Vhffs::Constants::ACTIVATED."' WHERE id_mailing='".$idm."'";

Modified: trunk/vhffs-robots/src/svn_public.pl
===================================================================
--- trunk/vhffs-robots/src/svn_public.pl	2007-10-22 22:42:38 UTC (rev 1018)
+++ trunk/vhffs-robots/src/svn_public.pl	2007-10-22 23:23:34 UTC (rev 1019)
@@ -48,8 +48,8 @@
 my $svn;
 foreach $svn ( @{$repos} )
 {
-	$user = $svn->get_user;
-	$group = $svn->get_group;
+	my $user = $svn->get_user;
+	my $group = $svn->get_group;
 	#First, update uid and gid informations on files
 	if( ( defined $user ) && ( defined $group ) ) {
 			Vhffs::Robots::vhffs_log( sprintf( "SVN change owner/group to %s/%s for repository %s" , $user->get_username , $group->get_groupname , $svn->get_dir ) , $vhffs);

Modified: trunk/vhffs-robots/src/user_delete.pl
===================================================================
--- trunk/vhffs-robots/src/user_delete.pl	2007-10-22 22:42:38 UTC (rev 1018)
+++ trunk/vhffs-robots/src/user_delete.pl	2007-10-22 23:23:34 UTC (rev 1019)
@@ -50,9 +50,9 @@
 my $group;
 foreach $user ( @{$lol} )
 {
-	$ok = 1;
-    if( defined $user ) 
-    {
+	my $ok = 1;
+	if( defined $user ) 
+	{
 		$groups =  $user->get_groups;
 
 		if( defined $groups )
@@ -94,7 +94,7 @@
 		{
 			Vhffs::Robots::vhffs_log( sprintf("Cannot remove user %s, remains group(s)" , $user->get_username ) , $vhffs);
 		}
-    }
+	}
 }
 
 Vhffs::Robots::unlock( $vhffs , "usergroup" );


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