[vhffs-dev] [725] Service creation is operational again. |
[ Thread Index |
Date Index
| More vhffs.org/vhffs-dev Archives
]
Revision: 725
Author: beuss
Date: 2007-07-13 16:45:19 +0000 (Fri, 13 Jul 2007)
Log Message:
-----------
Service creation is operational again.
Panel moderation now send a nice email using ObjectFactory.
Removed all owner_uid/gid from database.
Fixed a missing return in Vhffs::Services::DNS.
Modified Paths:
--------------
trunk/vhffs-api/src/Vhffs/Makefile.am
trunk/vhffs-api/src/Vhffs/Services/Cvs.pm
trunk/vhffs-api/src/Vhffs/Services/DNS.pm
trunk/vhffs-api/src/Vhffs/Services/Httpd.pm
trunk/vhffs-api/src/Vhffs/Services/Mail.pm
trunk/vhffs-api/src/Vhffs/Services/Mailing.pm
trunk/vhffs-api/src/Vhffs/Services/Mysql.pm
trunk/vhffs-api/src/Vhffs/Services/Postgres.pm
trunk/vhffs-api/src/Vhffs/Services/Repository.pm
trunk/vhffs-api/src/Vhffs/Services/Svn.pm
trunk/vhffs-backend/src/pgsql/initdb.sql.in
trunk/vhffs-compat/4.0.sql.in
trunk/vhffs-intl/result/en_US/LC_MESSAGES/vhffs.mo
trunk/vhffs-intl/result/es_ES/LC_MESSAGES/vhffs.mo
trunk/vhffs-intl/result/fr_FR/LC_MESSAGES/vhffs.mo
trunk/vhffs-intl/src/en.po
trunk/vhffs-intl/src/es.po
trunk/vhffs-intl/src/fr.po
trunk/vhffs-intl/src/vhffs.pot
trunk/vhffs-panel/admin/moderation_submit.pl
Modified: trunk/vhffs-api/src/Vhffs/Makefile.am
===================================================================
--- trunk/vhffs-api/src/Vhffs/Makefile.am 2007-07-13 15:03:49 UTC (rev 724)
+++ trunk/vhffs-api/src/Vhffs/Makefile.am 2007-07-13 16:45:19 UTC (rev 725)
@@ -13,8 +13,10 @@
Intl.pm \
Main.pm \
Note.pm \
+ ObjectFactory.pm \
Object.pm \
Robots.pm \
+ Services.pm \
Stats.pm \
User.pm \
Listengine/Intl.pm \
Modified: trunk/vhffs-api/src/Vhffs/Services/Cvs.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Services/Cvs.pm 2007-07-13 15:03:49 UTC (rev 724)
+++ trunk/vhffs-api/src/Vhffs/Services/Cvs.pm 2007-07-13 16:45:19 UTC (rev 725)
@@ -107,7 +107,7 @@
my $sql = 'INSERT INTO vhffs_cvs(cvsroot, public, object_id) VALUES (?, TRUE, ?)';
my $sth = $dbh->prepare($sql);
- $sth->execute($cvsroot, $user->get_uid, $group->get_gid, $parent->get_oid);
+ $sth->execute($cvsroot, $parent->get_oid);
$dbh->commit;
$cvs = get_by_cvsroot($main, $cvsroot);
Modified: trunk/vhffs-api/src/Vhffs/Services/DNS.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Services/DNS.pm 2007-07-13 15:03:49 UTC (rev 724)
+++ trunk/vhffs-api/src/Vhffs/Services/DNS.pm 2007-07-13 16:45:19 UTC (rev 725)
@@ -126,7 +126,7 @@
my $sth = $dbh->prepare($sql);
- $sth->execute($domain, $user->get_uid, $group->get_gid, $parent->get_oid, $conf->{default_ns1}, $conf->{default_mbox}, $serial,
+ $sth->execute($domain, $parent->get_oid, $conf->{default_ns1}, $conf->{default_mbox}, $serial,
$conf->{default_refresh}, $conf->{default_retry}, $conf->{default_expire}, $conf->{default_minimum}, $conf->{default_minimum});
$dbh->commit;
@@ -291,6 +291,7 @@
my $txt = $sth->fetchall_hashref('id');
push @records, $txt;
+ return @records;
}
=head2 get_by_domainname
Modified: trunk/vhffs-api/src/Vhffs/Services/Httpd.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Services/Httpd.pm 2007-07-13 15:03:49 UTC (rev 724)
+++ trunk/vhffs-api/src/Vhffs/Services/Httpd.pm 2007-07-13 16:45:19 UTC (rev 725)
@@ -86,7 +86,7 @@
my $sql = 'INSERT INTO vhffs_httpd(servername, object_id) VALUES(?, ?)';
my $sth = $dbh->prepare($sql);
- $sth->execute($servername, $user->get_uid, $group->get_gid, $parent->get_oid);
+ $sth->execute($servername, $parent->get_oid);
$dbh->commit;
$web = get_by_servername($main, $servername);
Modified: trunk/vhffs-api/src/Vhffs/Services/Mail.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Services/Mail.pm 2007-07-13 15:03:49 UTC (rev 724)
+++ trunk/vhffs-api/src/Vhffs/Services/Mail.pm 2007-07-13 16:45:19 UTC (rev 725)
@@ -108,7 +108,7 @@
my $sql = 'INSERT INTO vhffs_mxdomain(domain, unix_user, boxes_path, max_popbox, catchall, object_id) VALUES(?, \'exim\', ?, 0, \'\', ?)';
my $domain_hash = Vhffs::Functions::hash_mxdomain($domain);
my $sth = $dbh->prepare($sql);
- $sth->execute($domain, $domain_hash, $user->get_uid(), $group->get_gid, $parent->get_oid);
+ $sth->execute($domain, $domain_hash, $parent->get_oid);
$dbh->commit;
$mail = get_by_mxdomain($main, $domain);
Modified: trunk/vhffs-api/src/Vhffs/Services/Mailing.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Services/Mailing.pm 2007-07-13 15:03:49 UTC (rev 724)
+++ trunk/vhffs-api/src/Vhffs/Services/Mailing.pm 2007-07-13 16:45:19 UTC (rev 725)
@@ -94,7 +94,7 @@
# open sub, post members only
$sql = 'INSERT INTO vhffs_ml(local_part, domain, prefix, object_id, admin, open_archive, reply_to, sub_ctrl, post_ctrl) VALUES(?, ?, ?, ?, ?, FALSE, TRUE, ?, ? )';
my $sth = $dbh->prepare($sql);
- $sth->execute($local, $domain, $local, $user->get_uid, $group->get_gid, $parent->get_oid, $admin, Vhffs::Constants::ML_SUBSCRIBE_NO_APPROVAL_REQUIRED, Vhffs::Constants::ML_POSTING_MEMBERS_ONLY);
+ $sth->execute($local, $domain, $local, $parent->get_oid, $admin, Vhffs::Constants::ML_SUBSCRIBE_NO_APPROVAL_REQUIRED, Vhffs::Constants::ML_POSTING_MEMBERS_ONLY);
$dbh->commit;
$ml = get_by_mladdress($main, $local, $domain);
};
Modified: trunk/vhffs-api/src/Vhffs/Services/Mysql.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Services/Mysql.pm 2007-07-13 15:03:49 UTC (rev 724)
+++ trunk/vhffs-api/src/Vhffs/Services/Mysql.pm 2007-07-13 16:45:19 UTC (rev 725)
@@ -128,7 +128,7 @@
my $sql = 'INSERT INTO vhffs_mysql(dbname, dbuser, dbpass, object_id) VALUES(?, ?, ?, ?)';
my $sth = $dbh->prepare($sql);
- $sth->execute($dbname, $dbuser, $dbpass, $user->get_uid, $group->get_gid, $parent->get_oid);
+ $sth->execute($dbname, $dbuser, $dbpass, $parent->get_oid);
$dbh->commit;
$mysql = get_by_dbname($main, $dbname);
Modified: trunk/vhffs-api/src/Vhffs/Services/Postgres.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Services/Postgres.pm 2007-07-13 15:03:49 UTC (rev 724)
+++ trunk/vhffs-api/src/Vhffs/Services/Postgres.pm 2007-07-13 16:45:19 UTC (rev 725)
@@ -142,7 +142,7 @@
my $sql = 'INSERT INTO vhffs_pgsql(dbname, dbuser, dbpass, object_id) VALUES(?, ?, ?, ?)';
my $sth = $dbh->prepare($sql);
- $sth->execute($dbname, $dbuser, $dbpass, $user->get_uid, $group->get_gid, $parent->get_oid);
+ $sth->execute($dbname, $dbuser, $dbpass, $parent->get_oid);
$dbh->commit;
$pg = get_by_dbname($main, $dbname);
Modified: trunk/vhffs-api/src/Vhffs/Services/Repository.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Services/Repository.pm 2007-07-13 15:03:49 UTC (rev 724)
+++ trunk/vhffs-api/src/Vhffs/Services/Repository.pm 2007-07-13 16:45:19 UTC (rev 725)
@@ -110,7 +110,7 @@
$quota = 100 unless defined($quota);
my $sth = $dbh->prepare($sql);
- $sth->execute($rname, $user->get_uid, $group->get_gid, $quota, $parent->get_oid);
+ $sth->execute($rname, $quota, $parent->get_oid);
$dbh->commit;
$repo = get_by_reponame($main, $rname);
Modified: trunk/vhffs-api/src/Vhffs/Services/Svn.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Services/Svn.pm 2007-07-13 15:03:49 UTC (rev 724)
+++ trunk/vhffs-api/src/Vhffs/Services/Svn.pm 2007-07-13 16:45:19 UTC (rev 725)
@@ -82,7 +82,7 @@
my $sql = 'INSERT INTO vhffs_svn(reponame, public, ml_name, object_id) VALUES(?, 1, \'\', ?)';
my $sth = $dbh->prepare($sql);
- $sth->execute($rname, $user->get_uid, $group->get_gid, $parent->get_oid) or return undef;
+ $sth->execute($rname, $parent->get_oid) or return undef;
$dbh->commit;
$svn = get_by_reponame($main, $rname);
Modified: trunk/vhffs-backend/src/pgsql/initdb.sql.in
===================================================================
--- trunk/vhffs-backend/src/pgsql/initdb.sql.in 2007-07-13 15:03:49 UTC (rev 724)
+++ trunk/vhffs-backend/src/pgsql/initdb.sql.in 2007-07-13 16:45:19 UTC (rev 725)
@@ -107,8 +107,6 @@
(
cvs_id serial,
cvsroot varchar NOT NULL,
- owner_uid int4 NOT NULL,
- owner_gid int4 NOT NULL,
public boolean NOT NULL,
object_id int4 NOT NULL,
CONSTRAINT vhffs_cvs_pkey PRIMARY KEY (cvs_id)
@@ -118,8 +116,6 @@
(
dns_id serial,
domain varchar(255) NOT NULL,
- owner_gid int4 NOT NULL,
- owner_uid int4 NOT NULL,
object_id int4 NOT NULL,
ns varchar(255) NOT NULL,
mbox varchar(255) NOT NULL,
@@ -156,8 +152,6 @@
(
httpd_id serial,
servername varchar(200) NOT NULL,
- owner_uid int4 NOT NULL,
- owner_gid int4 NOT NULL,
object_id int4 NOT NULL,
CONSTRAINT vhffs_httpd_pkey PRIMARY KEY (httpd_id)
) WITH OIDS;
@@ -166,8 +160,6 @@
(
repository_id serial,
name varchar NOT NULL,
- owner_uid int4 NOT NULL,
- owner_gid int4 NOT NULL,
quota int4 NOT NULL,
quota_used int4 NOT NULL DEFAULT 0,
object_id int4 NOT NULL,
@@ -193,8 +185,6 @@
boxes_path varchar NOT NULL,
max_popbox int4 NOT NULL,
catchall varchar NOT NULL,
- owner_uid int4 NOT NULL,
- owner_gid int4 NOT NULL,
object_id int4 NOT NULL,
CONSTRAINT vhffs_mxdomain_pkey PRIMARY KEY (mxdomain_id)
) WITH OIDS;
@@ -205,8 +195,6 @@
local_part varchar(256) NOT NULL,
domain varchar(256) NOT NULL,
prefix varchar(32),
- owner_uid int4 NOT NULL,
- owner_gid int4 NOT NULL,
object_id int4 NOT NULL,
admin varchar(250) NOT NULL,
sub_ctrl int4 NOT NULL,
@@ -233,8 +221,6 @@
mysql_id serial,
dbname varchar(200) NOT NULL,
dbuser varchar(200) NOT NULL,
- owner_uid int4 NOT NULL,
- owner_gid int4 NOT NULL,
dbpass VARCHAR(32) NOT NULL,
object_id int4 NOT NULL,
CONSTRAINT vhffs_mysql_pkey PRIMARY KEY (mysql_id)
@@ -255,8 +241,6 @@
dbname varchar(200) NOT NULL,
dbuser varchar(32) NOT NULL,
dbpass varchar(32) NOT NULL,
- owner_uid int4 NOT NULL,
- owner_gid int4 NOT NULL,
object_id int4 NOT NULL,
CONSTRAINT vhffs_pgsql_pkey PRIMARY KEY (pgsql_id)
) WITH OIDS;
@@ -265,12 +249,10 @@
(
svn_id SERIAL,
reponame varchar NOT NULL,
- owner_uid int4 NOT NULL,
- owner_gid int4 NOT NULL,
public int4 NOT NULL,
ml_name varchar,
object_id int4 NOT NULL,
- CONSTRAINT vhffs_svn_pkey PRIMARY KEY( reponame , owner_gid)
+ CONSTRAINT vhffs_svn_pkey PRIMARY KEY( svn_id )
) WITH OIDS;
CREATE TABLE vhffs_user_group
@@ -314,12 +296,8 @@
ALTER TABLE vhffs_boxes ADD CONSTRAINT fk_vhffs_boxes_vhffs_mxdomain FOREIGN KEY (domain) REFERENCES vhffs_mxdomain(domain) ON DELETE CASCADE;
-ALTER TABLE vhffs_cvs ADD CONSTRAINT fk_vhffs_cvs_vhffs_users FOREIGN KEY (owner_uid) REFERENCES vhffs_users(uid);
-ALTER TABLE vhffs_cvs ADD CONSTRAINT fk_vhffs_cvs_vhffs_groups FOREIGN KEY (owner_gid) REFERENCES vhffs_groups(gid);
ALTER TABLE vhffs_cvs ADD CONSTRAINT fk_vhffs_cvs_vhffs_object FOREIGN KEY (object_id) REFERENCES vhffs_object(object_id) ON DELETE CASCADE;
-ALTER TABLE vhffs_dns ADD CONSTRAINT fk_vhffs_dns_vhffs_users FOREIGN KEY (owner_uid) REFERENCES vhffs_users(uid);
-ALTER TABLE vhffs_dns ADD CONSTRAINT fk_vhffs_dns_vhffs_groups FOREIGN KEY (owner_gid) REFERENCES vhffs_groups(gid);
ALTER TABLE vhffs_dns ADD CONSTRAINT fk_vhffs_dns_vhffs_object FOREIGN KEY (object_id) REFERENCES vhffs_object(object_id) ON DELETE CASCADE;
ALTER TABLE vhffs_dns_rr ADD CONSTRAINT fk_vhffs_dns_rr_vhffs_dns FOREIGN KEY (zone) REFERENCES vhffs_dns(dns_id) ON DELETE CASCADE;
@@ -328,38 +306,25 @@
ALTER TABLE vhffs_forward ADD CONSTRAINT fk_vhffs_forward_vhffs_mxdomain FOREIGN KEY (domain) REFERENCES vhffs_mxdomain(domain) ON DELETE CASCADE;
ALTER TABLE vhffs_groups ADD CONSTRAINT fk_vhffs_group_vhffs_object FOREIGN KEY (object_id) REFERENCES vhffs_object(object_id) ON DELETE CASCADE;
-ALTER TABLE vhffs_groups ADD CONSTRAINT fk_vhffs_group_vhffs_users FOREIGN KEY (owner_uid) REFERENCES vhffs_users (uid);
ALTER TABLE vhffs_history ADD CONSTRAINT fk_vhffs_history_vhffs_object FOREIGN KEY (object_id) REFERENCES vhffs_object(object_id) ON DELETE CASCADE;
-ALTER TABLE vhffs_httpd ADD CONSTRAINT fk_vhffs_httpd_vhffs_users FOREIGN KEY (owner_uid) REFERENCES vhffs_users(uid);
-ALTER TABLE vhffs_httpd ADD CONSTRAINT fk_vhffs_httpd_vhffs_groups FOREIGN KEY (owner_gid) REFERENCES vhffs_groups(gid);
-
-ALTER TABLE vhffs_ml ADD CONSTRAINT fk_vhffs_ml_vhffs_users FOREIGN KEY (owner_uid) REFERENCES vhffs_users(uid);
-ALTER TABLE vhffs_ml ADD CONSTRAINT fk_vhffs_ml_vhffs_groups FOREIGN KEY (owner_gid) REFERENCES vhffs_groups(gid);
ALTER TABLE vhffs_ml ADD CONSTRAINT fk_vhffs_ml_vhffs_object FOREIGN KEY (object_id) REFERENCES vhffs_object(object_id) ON DELETE CASCADE;
ALTER TABLE vhffs_ml ADD CONSTRAINT fk_vhffs_ml_vhffs_mxdomain FOREIGN KEY (domain) REFERENCES vhffs_mxdomain(domain) ON DELETE CASCADE;
ALTER TABLE vhffs_ml_subscribers ADD CONSTRAINT fk_vhffs_ml_subscribers_vhffs_ml FOREIGN KEY (ml_id) REFERENCES vhffs_ml(ml_id) ON DELETE CASCADE;
-ALTER TABLE vhffs_mxdomain ADD CONSTRAINT fk_vhffs_mxdomain_vhffs_users FOREIGN KEY (owner_uid) REFERENCES vhffs_users(uid);
-ALTER TABLE vhffs_mxdomain ADD CONSTRAINT fk_vhffs_mxdomain_vhffs_groups FOREIGN KEY (owner_gid) REFERENCES vhffs_groups(gid);
ALTER TABLE vhffs_mxdomain ADD CONSTRAINT fk_vhffs_mxdomain_vhffs_object FOREIGN KEY (object_id) REFERENCES vhffs_object(object_id) ON DELETE CASCADE;
-ALTER TABLE vhffs_mysql ADD CONSTRAINT fk_vhffs_mysql_vhffs_users FOREIGN KEY (owner_uid) REFERENCES vhffs_users(uid);
-ALTER TABLE vhffs_mysql ADD CONSTRAINT fk_vhffs_mysql_vhffs_groups FOREIGN KEY (owner_gid) REFERENCES vhffs_groups(gid);
ALTER TABLE vhffs_mysql ADD CONSTRAINT fk_vhffs_mysql_vhffs_object FOREIGN KEY (object_id) REFERENCES vhffs_object(object_id) ON DELETE CASCADE;
-ALTER TABLE vhffs_pgsql ADD CONSTRAINT fk_vhffs_pgsql_vhffs_users FOREIGN KEY (owner_uid) REFERENCES vhffs_users(uid);
-ALTER TABLE vhffs_pgsql ADD CONSTRAINT fk_vhffs_pgsql_vhffs_groups FOREIGN KEY (owner_gid) REFERENCES vhffs_groups(gid);
+ALTER TABLE vhffs_object ADD CONSTRAINT fk_vhffs_object_vhffs_user FOREIGN KEY (owner_uid) REFERENCES vhffs_users(uid) ON DELETE CASCADE;
+ALTER TABLE vhffs_object ADD CONSTRAINT fk_vhffs_object_vhffs_group FOREIGN KEY (owner_gid) REFERENCES vhffs_groups(gid) ON DELETE CASCADE;
+
ALTER TABLE vhffs_pgsql ADD CONSTRAINT fk_vhffs_pgsql_vhffs_object FOREIGN KEY (object_id) REFERENCES vhffs_object(object_id) ON DELETE CASCADE;
-ALTER TABLE vhffs_repository ADD CONSTRAINT fk_vhffs_vhffs_repository_vhffs_users FOREIGN KEY (owner_uid) REFERENCES vhffs_users(uid);
-ALTER TABLE vhffs_repository ADD CONSTRAINT fk_vhffs_vhffs_repository_vhffs_groups FOREIGN KEY (owner_gid) REFERENCES vhffs_groups(gid);
ALTER TABLE vhffs_repository ADD CONSTRAINT fk_vhffs_vhffs_repository_vhffs_object FOREIGN KEY (object_id) REFERENCES vhffs_object(object_id) ON DELETE CASCADE;
-ALTER TABLE vhffs_svn ADD CONSTRAINT fk_vhffs_svn_vhffs_users FOREIGN KEY (owner_uid) REFERENCES vhffs_users(uid);
-ALTER TABLE vhffs_svn ADD CONSTRAINT fk_vhffs_svn_vhffs_groups FOREIGN KEY (owner_gid) REFERENCES vhffs_groups(gid);
ALTER TABLE vhffs_svn ADD CONSTRAINT fk_vhffs_svn_vhffs_object FOREIGN KEY (object_id) REFERENCES vhffs_object(object_id) ON DELETE CASCADE;
ALTER TABLE vhffs_users ADD CONSTRAINT fk_vhffs_users_vhffs_object FOREIGN KEY (object_id) REFERENCES vhffs_object (object_id) ON DELETE CASCADE;
Modified: trunk/vhffs-compat/4.0.sql.in
===================================================================
--- trunk/vhffs-compat/4.0.sql.in 2007-07-13 15:03:49 UTC (rev 724)
+++ trunk/vhffs-compat/4.0.sql.in 2007-07-13 16:45:19 UTC (rev 725)
@@ -21,6 +21,9 @@
DROP TABLE vhffs_largefile CASCADE;
DROP TABLE vhffs_confirmation CASCADE;
+-- rename vhffs_dns_global to vhffs_dns
+ALTER TABLE vhffs_dns_global RENAME TO vhffs_dns;
+
-- vhffs_users
ALTER TABLE vhffs_users ALTER gid DROP NOT NULL;
- TODO merge date_creation to vhffs_object (check if this field is set in vhffs_users AND not in vhffs_object)
@@ -51,10 +54,41 @@
UPDATE vhffs_object SET type=31, owner_gid = p.owner_gid FROM vhffs_pgsql p WHERE p.object_id = vhffs_object.object_id;
UPDATE vhffs_object SET type=40, owner_gid = c.owner_gid FROM vhffs_cvs c WHERE c.object_id = vhffs_object.object_id;
UPDATE vhffs_object SET type=41, owner_gid = s.owner_gid FROM vhffs_svn s WHERE s.object_id = vhffs_object.object_id;
-UPDATE vhffs_object SET type=50, owner_gid = d.owner_gid FROM vhffs_dns_global d WHERE d.object_id = vhffs_object.object_id;
+UPDATE vhffs_object SET type=50, owner_gid = d.owner_gid FROM vhffs_dns d WHERE d.object_id = vhffs_object.object_id;
UPDATE vhffs_object SET type=60, owner_gid = m.owner_gid FROM vhffs_mxdomain m WHERE m.object_id = vhffs_object.object_id;
UPDATE vhffs_object SET type=61, owner_gid = m.owner_gid FROM vhffs_ml m WHERE m.object_id = vhffs_object.object_id;
+ALTER TABLE vhffs_users DROP COLUMN owner_gid;
+ALTER TABLE vhffs_groups DROP COLUMN owner_gid;
+
+ALTER TABLE vhffs_httpd DROP COLUMN owner_gid;
+ALTER TABLE vhffs_httpd DROP COLUMN owner_uid;
+
+ALTER TABLE vhffs_repository DROP COLUMN owner_gid;
+ALTER TABLE vhffs_repository DROP COLUMN owner_uid;
+
+ALTER TABLE vhffs_mysql DROP COLUMN owner_gid;
+ALTER TABLE vhffs_mysql DROP COLUMN owner_uid;
+
+ALTER TABLE vhffs_pgsql DROP COLUMN owner_gid;
+ALTER TABLE vhffs_pgsql DROP COLUMN owner_uid;
+
+ALTER TABLE vhffs_cvs DROP COLUMN owner_gid;
+ALTER TABLE vhffs_cvs DROP COLUMN owner_uid;
+
+ALTER TABLE vhffs_svn DROP COLUMN owner_gid;
+ALTER TABLE vhffs_svn DROP COLUMN owner_uid;
+
+ALTER TABLE vhffs_dns DROP COLUMN owner_gid;
+ALTER TABLE vhffs_dns DROP COLUMN owner_uid;
+
+ALTER TABLE vhffs_mxdomain DROP COLUMN owner_gid;
+ALTER TABLE vhffs_mxdomain DROP COLUMN owner_uid;
+
+ALTER TABLE vhffs_ml DROP COLUMN owner_gid;
+ALTER TABLE vhffs_ml DROP COLUMN owner_uid;
+
+
-- cleanup unused objects
-- DELETE FROM vhffs_object WHERE type=0;
@@ -168,10 +202,6 @@
ALTER TABLE vhffs_ml DROP COLUMN open_post;
ALTER TABLE vhffs_ml DROP COLUMN moderated;
-
--- rename vhffs_dns_global to vhffs_dns
-ALTER TABLE vhffs_dns_global RENAME TO vhffs_dns;
-
-- merge vhffs_dns_soa to vhffs_dns(ex vhffs_dns_global)
ALTER TABLE vhffs_dns ADD COLUMN ns varchar(255);
@@ -252,8 +282,6 @@
ALTER TABLE vhffs_httpd DROP COLUMN trafic;
ALTER TABLE vhffs_httpd DROP COLUMN alert_state;
ALTER TABLE vhffs_httpd DROP COLUMN alert_limit;
-ALTER TABLE vhffs_httpd ALTER owner_uid SET NOT NULL;
-ALTER TABLE vhffs_httpd ALTER owner_gid SET NOT NULL;
ALTER TABLE vhffs_httpd ALTER servername DROP DEFAULT;
-- some alter on vhffs_cvs table
Modified: trunk/vhffs-intl/result/en_US/LC_MESSAGES/vhffs.mo
===================================================================
(Binary files differ)
Modified: trunk/vhffs-intl/result/es_ES/LC_MESSAGES/vhffs.mo
===================================================================
(Binary files differ)
Modified: trunk/vhffs-intl/result/fr_FR/LC_MESSAGES/vhffs.mo
===================================================================
(Binary files differ)
Modified: trunk/vhffs-intl/src/en.po
===================================================================
--- trunk/vhffs-intl/src/en.po 2007-07-13 15:03:49 UTC (rev 724)
+++ trunk/vhffs-intl/src/en.po 2007-07-13 16:45:19 UTC (rev 725)
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: VHFFS 4.1 English strings\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-30 10:56+0200\n"
+"POT-Creation-Date: 2007-07-13 15:30+0200\n"
"PO-Revision-Date: 2007-05-15 14:14+0200\n"
"Last-Translator: Sébastien Le Ray <beuss@xxxxxxxxxxxxx>\n"
"Language-Team: English <en@xxxxxxxxx>\n"
@@ -16,33 +16,34 @@
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:63
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:65
msgid "\t\t\t\t RIGHT can be subscriber or admin\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:143
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:159
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:162
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:145
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:161
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:164
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:435
msgid "\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:417
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:418
#, perl-format
msgid ""
" %s-request@%s\n"
"with the following subject :\n"
-" \"accept %s\" \n"
+" \"subscription accept %s %s\" \n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:420
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:421
#, perl-format
msgid ""
" %s-request@%s\n"
"with the following subject :\n"
-" \"refuse %s\" \n"
+" \"subscription refuse %s %s\" \n"
msgstr ""
-#: ../vhffs-panel/admin/moderation_submit.pl:105 ../vhffs-irc/modobot.pl:397
+#: ../vhffs-irc/modobot.pl:397
msgid ""
" was accepted\n"
"Please wait while we are creating your object\n"
@@ -53,18 +54,19 @@
msgid "%s public area"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:365
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:593
#, perl-format
msgid "%s's Panel"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:145
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:164
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:147
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:166
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:437
#, perl-format
msgid "%s-request@%s with subject \"help\"\n"
msgstr ""
-#: ../vhffs-panel/web/create.pl:69
+#: ../vhffs-panel/web/create.pl:84
msgid "<new site>."
msgstr ""
@@ -73,7 +75,7 @@
msgid "@ represents the origin (%s)"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:310
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:297
msgid ""
"A CNAME, A or AAAA record with the same name already exists for this domain"
msgstr ""
@@ -86,18 +88,20 @@
msgid "A Record updated"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:394
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:396
#, perl-format
-msgid "A mail to moderate is on the list %s.\n"
+msgid ""
+"A mail to moderate is on the following mailing list:\n"
+" %s\n"
+"\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:412
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:413
#, perl-format
msgid ""
"A new person wants to subscribe to the following mailing list:\n"
+" %s\n"
"\n"
-"%s\n"
-"\n"
msgstr ""
#: ../vhffs-panel/dns/prefs.pl:151
@@ -150,7 +154,7 @@
msgid "Access denied"
msgstr ""
-#: ../vhffs-panel/logout.pl:60 ../vhffs-api/src/Vhffs/Panel/Commons.pm:57
+#: ../vhffs-panel/logout.pl:60 ../vhffs-api/src/Vhffs/Panel/Commons.pm:65
msgid "Access to panel"
msgstr ""
@@ -162,22 +166,26 @@
msgid "Accounts"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:346
+#: ../vhffs-panel/user/prefs.pl:375
#, perl-format
msgid "Activate %s@%s email"
msgstr ""
#: ../vhffs-panel/admin/user/edit.pl:143
#: ../vhffs-panel/admin/pgsql/edit.pl:119
-#: ../vhffs-panel/admin/group/edit.pl:119
+#: ../vhffs-panel/admin/group/edit.pl:124
#: ../vhffs-panel/admin/repository/edit.pl:119
#: ../vhffs-panel/admin/object/edit.pl:119
-#: ../vhffs-panel/admin/web/edit.pl:132 ../vhffs-panel/admin/mysql/edit.pl:120
+#: ../vhffs-panel/admin/web/edit.pl:115 ../vhffs-panel/admin/mysql/edit.pl:120
#: ../vhffs-panel/admin/cvs/edit.pl:128 ../vhffs-panel/admin/mail/edit.pl:160
#: ../vhffs-intl/extra_strings.pl:22
msgid "Activated"
msgstr ""
+#: ../vhffs-panel/group/prefs.pl:148 ../vhffs-panel/group/prefs.pl:194
+msgid "Add"
+msgstr ""
+
#: ../vhffs-panel/mailinglist/prefs.pl:156 ../vhffs-panel/dns/prefs.pl:280
msgid "Add !"
msgstr ""
@@ -214,7 +222,7 @@
msgid "Add a popbox to this domain"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:105
+#: ../vhffs-panel/group/prefs.pl:193
msgid "Add a user in this group"
msgstr ""
@@ -230,15 +238,7 @@
msgid "Add an account"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:106
-msgid "Add this user !"
-msgstr ""
-
-#: ../vhffs-panel/group/join_group.pl:110
-msgid "Add this user to this group"
-msgstr ""
-
-#: ../vhffs-panel/subscribe.pl:205 ../vhffs-panel/user/prefs.pl:259
+#: ../vhffs-panel/subscribe.pl:223 ../vhffs-panel/user/prefs.pl:267
#: ../vhffs-panel/admin/user/edit.pl:104 ../vhffs-panel/admin/user/show.pl:104
msgid "Address"
msgstr ""
@@ -247,7 +247,7 @@
msgid "Address (Servername)"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:108
+#: ../vhffs-panel/user/prefs.pl:109
msgid "Address is not correct !"
msgstr ""
@@ -266,7 +266,7 @@
msgstr ""
#: ../vhffs-panel/svn/prefs.pl:130 ../vhffs-panel/dns/prefs.pl:260
-#: ../vhffs-panel/web/prefs.pl:122 ../vhffs-panel/mail/prefs.pl:138
+#: ../vhffs-panel/web/prefs.pl:103 ../vhffs-panel/mail/prefs.pl:138
msgid "Admin Rights on this object (ACL)"
msgstr ""
@@ -274,12 +274,12 @@
msgid "Admin Subversion Repository"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:420
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:401
msgid "Admin account"
msgstr ""
-#: ../vhffs-panel/admin/index.pl:53 ../vhffs-api/src/Vhffs/Panel/Main.pm:421
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:424
+#: ../vhffs-panel/admin/index.pl:53 ../vhffs-api/src/Vhffs/Panel/Main.pm:402
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:405
msgid "Administration"
msgstr ""
@@ -291,22 +291,14 @@
msgid "Admins only"
msgstr ""
-#: ../vhffs-panel/web/create.pl:74
+#: ../vhffs-panel/web/create.pl:91
msgid "Adress (ServerName directive)"
msgstr ""
-#: ../vhffs-panel/admin/web/edit.pl:97 ../vhffs-panel/admin/web/show.pl:96
-msgid "Alert Limit"
-msgstr ""
-
#: ../vhffs-panel/alert_submit.pl:73
msgid "Alert on Vhffs platform"
msgstr ""
-#: ../vhffs-panel/admin/web/edit.pl:98 ../vhffs-panel/admin/web/show.pl:97
-msgid "Alert state"
-msgstr ""
-
#: ../vhffs-panel/public/allwebsites.pl:73
#: ../vhffs-panel/public/allgroups.pl:69
msgid "All"
@@ -370,7 +362,7 @@
msgid "All objects List"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:126
+#: ../vhffs-panel/group/prefs.pl:211
msgid "All users in this group"
msgstr ""
@@ -385,47 +377,48 @@
msgid "Already exists for this domain or bad parameters. Check your domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:262
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:249
msgid "An MX record with the same name already exists for this domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:285
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:272
msgid "An NS record with the same name already exists for this domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:189
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:486
#, perl-format
msgid ""
-"An error occured during your subscription to the following list:\n"
+"An error occured during your approval of subscription of:\n"
+" %s\n"
+"into the following mailing list:\n"
+" %s\n"
"\n"
-"%s\n"
-"\n"
msgstr ""
-#: ../vhffs-panel/mailinglist/submit.pl:114
-msgid "An error occured while adding an ACL for the group"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:191
+#, perl-format
+msgid ""
+"An error occured during your subscription to the following list:\n"
+" %s\n"
+"\n"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:169
+#: ../vhffs-panel/user/prefs.pl:177
msgid "An error occured while adding the box"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:171
+#: ../vhffs-panel/user/prefs.pl:179
msgid "An error occured while adding the box (anti-spam adding)"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:173
+#: ../vhffs-panel/user/prefs.pl:181
msgid "An error occured while adding the box (anti-virus adding)"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:213
+#: ../vhffs-panel/user/prefs.pl:221
msgid "An error occured while adding the forwarding"
msgstr ""
-#: ../vhffs-panel/mailinglist/submit.pl:112
-msgid "An error occured while adding yourself to the ACL"
-msgstr ""
-
#: ../vhffs-panel/user/delete.pl:83
msgid "An error occured while applying changes. This user will NOT be deleted"
msgstr ""
@@ -435,11 +428,7 @@
"An error occured while applying changes. This web area will NOT be deleted"
msgstr ""
-#: ../vhffs-panel/mailinglist/submit.pl:110
-msgid "An error occured while creating the list"
-msgstr ""
-
-#: ../vhffs-panel/mail/submit.pl:86
+#: ../vhffs-panel/mail/create.pl:68
msgid "An error occured while creating the mail area"
msgstr ""
@@ -447,26 +436,26 @@
msgid "An error occured while creating the message in the database"
msgstr ""
-#: ../vhffs-panel/svn/svn_submit.pl:80 ../vhffs-panel/mysql/submit.pl:103
-msgid "An error occured while creating the object"
+#: ../vhffs-panel/repository/create.pl:75
+msgid ""
+"An error occured while creating the object. Check that this group doesn't "
+"already have a download repository"
msgstr ""
-#: ../vhffs-panel/pgsql/pgsql_submit.pl:99
-#, perl-format
-msgid "An error occured while creating the object %s %s"
-msgstr ""
-
#: ../vhffs-panel/dns/create.pl:50
msgid ""
"An error occured while creating the object. The domain is not correct or "
"aleady exists in Vhffs database"
msgstr ""
-#: ../vhffs-panel/repository/repository_submit.pl:93
-#: ../vhffs-panel/cvs/create.pl:81
+#: ../vhffs-panel/mailinglist/create.pl:81 ../vhffs-panel/cvs/create.pl:83
msgid "An error occured while creating the object.It probably already exists"
msgstr ""
+#: ../vhffs-panel/svn/create.pl:78
+msgid "An error occured while creating the svn repository"
+msgstr ""
+
#: ../vhffs-panel/cvs/delete.pl:99
msgid "An error occured while deleting the CVS repository"
msgstr ""
@@ -491,11 +480,7 @@
msgid "An error occured while modifying the rights"
msgstr ""
-#: ../vhffs-panel/svn/svn_submit.pl:78
-msgid "An error occured while setting up the ACL"
-msgstr ""
-
-#: ../vhffs-panel/user/prefs.pl:220
+#: ../vhffs-panel/user/prefs.pl:228
msgid "An error occured while the forwarding"
msgstr ""
@@ -507,7 +492,7 @@
msgid "An error occured while updating"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:280
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:282
#, perl-format
msgid ""
"An error occured while updating language for the following address: %s.\n"
@@ -533,38 +518,18 @@
msgid "An error occured while updating the object"
msgstr ""
-#: ../vhffs-panel/group/delete.pl:89 ../vhffs-panel/group/prefs_save.pl:91
+#: ../vhffs-panel/group/delete.pl:89 ../vhffs-panel/group/prefs.pl:93
msgid "An error occured while updating the project"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:140
+#: ../vhffs-panel/user/prefs.pl:148
msgid "An error occured while updating the user account"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:445
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:510
msgid "April"
msgstr ""
-#: ../vhffs-listengine/src/archives/archives.pl:147
-#: ../vhffs-listengine/src/archives/show_msg.pl:93
-msgid "Archive are not open for this list"
-msgstr ""
-
-#: ../vhffs-listengine/src/archives/archives.pl:160
-#: ../vhffs-listengine/src/archives/archives.pl:197
-#: ../vhffs-listengine/src/archives/archives.pl:219
-#: ../vhffs-listengine/src/archives/archives.pl:243
-msgid "Archives"
-msgstr ""
-
-#: ../vhffs-listengine/src/archives/archives.pl:231
-msgid "Archives for "
-msgstr ""
-
-#: ../vhffs-listengine/src/archives/archives.pl:255
-msgid "Archives for year"
-msgstr ""
-
#: ../vhffs-panel/svn/prefs.pl:124
msgid "Are you SURE you want DELETE this subversion repository ?"
msgstr ""
@@ -581,7 +546,7 @@
msgid "Are you SURE you want DELETE this PostgreSQL database ?"
msgstr ""
-#: ../vhffs-panel/web/prefs.pl:129
+#: ../vhffs-panel/web/prefs.pl:110
msgid "Are you SURE you want DELETE this Web Area ?"
msgstr ""
@@ -593,7 +558,7 @@
msgid "Are you SURE you want DELETE this domain ?"
msgstr ""
-#: ../vhffs-panel/repository/prefs.pl:104
+#: ../vhffs-panel/repository/prefs.pl:105
msgid "Are you SURE you want DELETE this download repository ?"
msgstr ""
@@ -601,15 +566,15 @@
msgid "Are you SURE you want DELETE this mailing list ?"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:99
+#: ../vhffs-panel/group/prefs.pl:187
msgid "Are you SURE you want DELETE this project ?"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:278
+#: ../vhffs-panel/user/prefs.pl:287
msgid "Are you SURE you want DELETE this user?"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:461
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:526
msgid "August"
msgstr ""
@@ -626,41 +591,14 @@
msgid "Awaiting sending"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:169 ../vhffs-panel/subscribe.pl:207
+#: ../vhffs-panel/subscribe.pl:187 ../vhffs-panel/subscribe.pl:225
msgid "Back to Login"
msgstr ""
-#: ../vhffs-listengine/src/archives/archives.pl:191
-#, perl-format
-msgid "Back to archives by month ( %s )"
-msgstr ""
-
-#: ../vhffs-listengine/src/archives/archives.pl:220
-#, perl-format
-msgid "Back to archives by year ( %s )"
-msgstr ""
-
-#: ../vhffs-listengine/src/archives/archives.pl:161
-msgid "Back to list by day"
-msgstr ""
-
#: ../vhffs-panel/lost.pl:56
msgid "Back to login page"
msgstr ""
-#: ../vhffs-listengine/src/archives/show_msg.pl:71
-msgid "Bad listname"
-msgstr ""
-
-#: ../vhffs-listengine/src/archives/archives.pl:131
-#, perl-format
-msgid "Bad listname %s"
-msgstr ""
-
-#: ../vhffs-listengine/src/archives/show_msg.pl:87
-msgid "Bad message-id"
-msgstr ""
-
#: ../vhffs-panel/mysql/prefs.pl:98
msgid ""
"Be careful ! If you click on modify, VHFFS will stop the database and set a "
@@ -673,10 +611,10 @@
"our servers."
msgstr ""
-#: ../vhffs-panel/web/create.pl:75
+#: ../vhffs-panel/web/create.pl:92
msgid ""
"Be careful, if you want create www.domain.tld, you should create a webspace "
-"with servername as domain.tld. VHFFS redirect all request from www.domain."
+"with domain.tld as servername. VHFFS redirect all request from www.domain."
"tld to domain.tld"
msgstr ""
@@ -736,24 +674,20 @@
msgid "CGI ERROR!"
msgstr ""
-#: ../vhffs-panel/mailinglist/submit.pl:96 ../vhffs-panel/svn/prefs.pl:82
-#: ../vhffs-panel/svn/create.pl:64 ../vhffs-panel/acl/view.pl:84
+#: ../vhffs-panel/svn/prefs.pl:82 ../vhffs-panel/acl/view.pl:84
#: ../vhffs-panel/acl/view.pl:99 ../vhffs-panel/acl/view.pl:114
-#: ../vhffs-panel/group/remove_user_from_group.pl:71
-#: ../vhffs-panel/group/join_group.pl:70 ../vhffs-panel/mail/submit.pl:74
msgid "CGI Error"
msgstr ""
-#: ../vhffs-panel/svn/delete.pl:73 ../vhffs-panel/svn/svn_submit.pl:71
-#: ../vhffs-panel/history.pl:84 ../vhffs-panel/pgsql/delete.pl:81
-#: ../vhffs-panel/group/prefs_save.pl:74 ../vhffs-panel/repository/prefs.pl:72
+#: ../vhffs-panel/svn/delete.pl:73 ../vhffs-panel/history.pl:84
+#: ../vhffs-panel/pgsql/delete.pl:81 ../vhffs-panel/repository/prefs.pl:72
#: ../vhffs-panel/admin/mailing/mailing_submit.pl:78
#: ../vhffs-panel/admin/broadcast_submit.pl:83
#: ../vhffs-panel/admin/broadcast_delete.pl:83
#: ../vhffs-panel/admin/group/edit_submit.pl:95
#: ../vhffs-panel/admin/broadcast_view.pl:78 ../vhffs-panel/mysql/delete.pl:76
-#: ../vhffs-panel/mysql/prefs.pl:71 ../vhffs-panel/mysql/submit.pl:75
-#: ../vhffs-panel/mysql/prefs_save.pl:79 ../vhffs-panel/cvs/prefs.pl:72
+#: ../vhffs-panel/mysql/prefs.pl:71 ../vhffs-panel/mysql/prefs_save.pl:79
+#: ../vhffs-panel/cvs/prefs.pl:72
msgid "CGI Error !"
msgstr ""
@@ -770,17 +704,20 @@
#: ../vhffs-panel/mailinglist/save_options.pl:81
#: ../vhffs-panel/mailinglist/change_right.pl:81
#: ../vhffs-panel/mailinglist/change_right.pl:101
-#: ../vhffs-panel/mailinglist/del_member.pl:79 ../vhffs-panel/user/prefs.pl:85
+#: ../vhffs-panel/mailinglist/del_member.pl:79 ../vhffs-panel/user/prefs.pl:86
#: ../vhffs-panel/dns/delete.pl:79 ../vhffs-panel/dns/prefs.pl:79
-#: ../vhffs-panel/pgsql/pgsql_submit.pl:73 ../vhffs-panel/web/web_submit.pl:72
msgid "CGI Error!"
msgstr ""
-#: ../vhffs-panel/group/project_submit.pl:70
-msgid "CGI Errror!"
+#: ../vhffs-panel/mailinglist/create.pl:72 ../vhffs-panel/svn/create.pl:69
+#: ../vhffs-panel/pgsql/create.pl:74 ../vhffs-panel/group/prefs.pl:87
+#: ../vhffs-panel/group/prefs.pl:106 ../vhffs-panel/group/prefs.pl:121
+#: ../vhffs-panel/group/prefs.pl:162 ../vhffs-panel/repository/create.pl:68
+#: ../vhffs-panel/web/create.pl:69 ../vhffs-panel/mysql/create.pl:74
+msgid "CGI error"
msgstr ""
-#: ../vhffs-panel/admin/moderation_submit.pl:90
+#: ../vhffs-panel/admin/moderation_submit.pl:91
msgid "CGI problem"
msgstr ""
@@ -867,7 +804,7 @@
msgid "Can't delete box %s"
msgstr ""
-#: ../vhffs-panel/admin/web/edit_submit.pl:100
+#: ../vhffs-panel/admin/web/edit_submit.pl:97
msgid "Can't modify object ..."
msgstr ""
@@ -877,11 +814,7 @@
msgid "Can't modify object..."
msgstr ""
-#: ../vhffs-panel/group/join_group.pl:82
-msgid "Cannot add this user in this group"
-msgstr ""
-
-#: ../vhffs-panel/subscribe.pl:162
+#: ../vhffs-panel/subscribe.pl:180
msgid "Cannot apply changes to the user"
msgstr ""
@@ -893,7 +826,7 @@
msgid "Cannot commit changes on this object, will NOT be deleted"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:152
+#: ../vhffs-panel/subscribe.pl:170
msgid "Cannot create user, the username you entered already exists"
msgstr ""
@@ -961,10 +894,6 @@
msgid "Cannot get statistics"
msgstr ""
-#: ../vhffs-panel/group/remove_user_from_group.pl:83
-msgid "Cannot remove the owner from a group"
-msgstr ""
-
#: ../vhffs-panel/cvs/delete.pl:78 ../vhffs-panel/cvs/prefs_save.pl:77
msgid "Cannot retrieve informations about this CVS repository"
msgstr ""
@@ -1007,10 +936,6 @@
msgid "Catchall mail"
msgstr ""
-#: ../vhffs-listengine/src/archives/show_msg.pl:108
-msgid "Cc: "
-msgstr ""
-
#: ../vhffs-panel/mail/prefs.pl:211
msgid "Change Forward"
msgstr ""
@@ -1027,22 +952,14 @@
msgid "Change forward"
msgstr ""
-#: ../vhffs-listengine/src/archives/archives.pl:119
-msgid "Change language"
-msgstr ""
-
#: ../vhffs-panel/mailinglist/prefs.pl:168
msgid "Change rights\n"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:188
+#: ../vhffs-panel/user/prefs.pl:196
msgid "Change spam protection status for your account\n"
msgstr ""
-#: ../vhffs-listengine/src/archives/archives.pl:118
-msgid "Change theme"
-msgstr ""
-
#: ../vhffs-panel/admin/web/list.pl:91
msgid "Change this Website"
msgstr ""
@@ -1051,7 +968,7 @@
msgid "Change user-id"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:199
+#: ../vhffs-panel/user/prefs.pl:207
msgid "Changed anti-virus status for your account\n"
msgstr ""
@@ -1066,18 +983,18 @@
msgid "Cheers,"
msgstr ""
-#: ../vhffs-panel/admin/moderation_submit.pl:106 ../vhffs-irc/modobot.pl:398
+#: ../vhffs-irc/modobot.pl:398
msgid ""
"Cheers,\n"
"The Moderator and Admin team\n"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:203 ../vhffs-panel/user/prefs.pl:258
+#: ../vhffs-panel/subscribe.pl:221 ../vhffs-panel/user/prefs.pl:266
#: ../vhffs-panel/admin/user/edit.pl:105 ../vhffs-panel/admin/user/show.pl:105
msgid "City"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:96
+#: ../vhffs-panel/user/prefs.pl:97
msgid "City is not correct !"
msgstr ""
@@ -1085,40 +1002,36 @@
msgid "Closed"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:213
+#: ../vhffs-panel/subscribe.pl:232
msgid "Code confirmation"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:85
+#: ../vhffs-panel/subscribe.pl:103
msgid "Codes do not match"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:262
+#: ../vhffs-panel/user/prefs.pl:270
msgid "Confirm Password"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:236
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:238
msgid "Confirmation code was wrong.\n"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:215
+#: ../vhffs-panel/subscribe.pl:234
msgid "Confirmation code, contact administrator team if you can't read it"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:204 ../vhffs-panel/user/prefs.pl:260
+#: ../vhffs-panel/subscribe.pl:222 ../vhffs-panel/user/prefs.pl:268
#: ../vhffs-panel/admin/user/edit.pl:107 ../vhffs-panel/admin/user/show.pl:107
msgid "Country"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:105
+#: ../vhffs-panel/user/prefs.pl:106
msgid "Country is not correct !"
msgstr ""
-#: ../vhffs-panel/admin/web/edit.pl:96 ../vhffs-panel/admin/web/show.pl:95
-msgid "Crawl"
-msgstr ""
-
-#: ../vhffs-panel/cvs/create.pl:89
+#: ../vhffs-panel/cvs/create.pl:95
msgid "Create a CVS Repository"
msgstr ""
@@ -1126,35 +1039,35 @@
msgid "Create a DNS"
msgstr ""
-#: ../vhffs-panel/repository/create.pl:64
+#: ../vhffs-panel/repository/create.pl:84
msgid "Create a Download Repository"
msgstr ""
-#: ../vhffs-panel/mysql/create.pl:64
+#: ../vhffs-panel/mysql/create.pl:95
msgid "Create a MySQL database"
msgstr ""
-#: ../vhffs-panel/pgsql/create.pl:64
-msgid "Create a Postgres database"
+#: ../vhffs-panel/pgsql/create.pl:95
+msgid "Create a PostgreSQL database"
msgstr ""
-#: ../vhffs-panel/group/create.pl:61
+#: ../vhffs-panel/group/create.pl:80
msgid "Create a Project"
msgstr ""
-#: ../vhffs-panel/svn/create.pl:70
+#: ../vhffs-panel/svn/create.pl:88
msgid "Create a Subversion Repository"
msgstr ""
-#: ../vhffs-panel/mail/create.pl:64
+#: ../vhffs-panel/mail/create.pl:80
msgid "Create a mail space"
msgstr ""
-#: ../vhffs-panel/mailinglist/create.pl:87
+#: ../vhffs-panel/mailinglist/create.pl:96
msgid "Create a new mailing list"
msgstr ""
-#: ../vhffs-panel/web/create.pl:73
+#: ../vhffs-panel/web/create.pl:90
msgid "Create a web space"
msgstr ""
@@ -1164,10 +1077,10 @@
#: ../vhffs-panel/admin/user/edit.pl:144
#: ../vhffs-panel/admin/pgsql/edit.pl:120
-#: ../vhffs-panel/admin/group/edit.pl:120
+#: ../vhffs-panel/admin/group/edit.pl:125
#: ../vhffs-panel/admin/repository/edit.pl:120
#: ../vhffs-panel/admin/object/edit.pl:120
-#: ../vhffs-panel/admin/web/edit.pl:133 ../vhffs-panel/admin/mysql/edit.pl:121
+#: ../vhffs-panel/admin/web/edit.pl:116 ../vhffs-panel/admin/mysql/edit.pl:121
#: ../vhffs-panel/admin/cvs/edit.pl:129 ../vhffs-panel/admin/mail/edit.pl:161
#: ../vhffs-intl/extra_strings.pl:21
msgid "Created"
@@ -1175,10 +1088,10 @@
#: ../vhffs-panel/admin/user/edit.pl:142
#: ../vhffs-panel/admin/pgsql/edit.pl:118
-#: ../vhffs-panel/admin/group/edit.pl:118
+#: ../vhffs-panel/admin/group/edit.pl:123
#: ../vhffs-panel/admin/repository/edit.pl:118
#: ../vhffs-panel/admin/object/edit.pl:118
-#: ../vhffs-panel/admin/web/edit.pl:131 ../vhffs-panel/admin/mysql/edit.pl:119
+#: ../vhffs-panel/admin/web/edit.pl:114 ../vhffs-panel/admin/mysql/edit.pl:119
#: ../vhffs-panel/admin/cvs/edit.pl:127 ../vhffs-panel/admin/mail/edit.pl:159
msgid "Creating error"
msgstr ""
@@ -1187,11 +1100,11 @@
msgid "Creation error"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:288 ../vhffs-panel/group/prefs.pl:111
+#: ../vhffs-panel/user/prefs.pl:297 ../vhffs-panel/group/prefs.pl:201
msgid "Current avatar"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:447
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:428
msgid "Current group:"
msgstr ""
@@ -1232,35 +1145,23 @@
msgid "Database Name"
msgstr ""
-#: ../vhffs-panel/ajax/help.pl:46 ../vhffs-api/src/Vhffs/Panel/DNS.pm:173
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:209
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:221
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:239
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:251
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:263
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:275
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:286
+#: ../vhffs-panel/ajax/help.pl:46 ../vhffs-api/src/Vhffs/Panel/DNS.pm:160
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:196
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:208
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:226
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:238
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:250
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:262
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:273
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:285
#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:298
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:311
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:327
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:342
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:354
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:366
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:314
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:329
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:341
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:353
msgid "Database error"
msgstr ""
-#: ../vhffs-panel/mysql/submit.pl:83
-msgid "Database name must contain at least 3 caracters"
-msgstr ""
-
-#: ../vhffs-panel/pgsql/pgsql_submit.pl:85
-msgid "Database name must contain between 3 and 16 characters"
-msgstr ""
-
-#: ../vhffs-panel/pgsql/pgsql_submit.pl:77
-msgid "Database password must contains at least 3 characters"
-msgstr ""
-
#: ../vhffs-panel/pgsql/delete.pl:85
msgid "Database will NOT be deleted !"
msgstr ""
@@ -1277,23 +1178,23 @@
msgid "Date of creation"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:477
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:542
msgid "December"
msgstr ""
#: ../vhffs-panel/mailinglist/prefs.pl:206 ../vhffs-panel/svn/prefs.pl:127
-#: ../vhffs-panel/user/prefs.pl:281 ../vhffs-panel/dns/prefs.pl:271
+#: ../vhffs-panel/user/prefs.pl:290 ../vhffs-panel/dns/prefs.pl:271
#: ../vhffs-panel/dns/prefs.pl:328 ../vhffs-panel/dns/prefs.pl:340
#: ../vhffs-panel/dns/prefs.pl:353 ../vhffs-panel/dns/prefs.pl:365
#: ../vhffs-panel/dns/prefs.pl:381 ../vhffs-panel/dns/prefs.pl:392
#: ../vhffs-panel/dns/prefs.pl:408 ../vhffs-panel/pgsql/prefs.pl:113
-#: ../vhffs-panel/group/prefs.pl:102 ../vhffs-panel/repository/prefs.pl:107
-#: ../vhffs-panel/web/prefs.pl:132 ../vhffs-panel/mysql/prefs.pl:120
+#: ../vhffs-panel/group/prefs.pl:190 ../vhffs-panel/repository/prefs.pl:108
+#: ../vhffs-panel/web/prefs.pl:113 ../vhffs-panel/mysql/prefs.pl:120
#: ../vhffs-panel/cvs/prefs.pl:102 ../vhffs-panel/mail/prefs.pl:135
msgid "Delete"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:276
+#: ../vhffs-panel/user/prefs.pl:285
msgid "Delete YOUR user"
msgstr ""
@@ -1337,7 +1238,7 @@
msgid "Delete this mailing"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:97 ../vhffs-panel/repository/prefs.pl:102
+#: ../vhffs-panel/group/prefs.pl:185 ../vhffs-panel/repository/prefs.pl:103
#: ../vhffs-panel/cvs/prefs.pl:97
msgid "Delete this project"
msgstr ""
@@ -1346,26 +1247,27 @@
msgid "Delete this repository"
msgstr ""
-#: ../vhffs-panel/web/prefs.pl:127
+#: ../vhffs-panel/web/prefs.pl:108
msgid "Delete this web area"
msgstr ""
-#: ../vhffs-panel/svn/create.pl:77 ../vhffs-panel/dns/create.pl:69
-#: ../vhffs-panel/pgsql/create.pl:74 ../vhffs-panel/group/create.pl:66
-#: ../vhffs-panel/repository/create.pl:72
+#: ../vhffs-panel/svn/create.pl:95 ../vhffs-panel/dns/create.pl:69
+#: ../vhffs-panel/pgsql/create.pl:104 ../vhffs-panel/group/create.pl:85
+#: ../vhffs-panel/repository/create.pl:92
#: ../vhffs-panel/admin/pgsql/edit.pl:101
-#: ../vhffs-panel/admin/pgsql/show.pl:99 ../vhffs-panel/admin/group/edit.pl:99
+#: ../vhffs-panel/admin/pgsql/show.pl:99
+#: ../vhffs-panel/admin/group/edit.pl:100
#: ../vhffs-panel/admin/group/show.pl:99
#: ../vhffs-panel/admin/repository/edit.pl:99
#: ../vhffs-panel/admin/repository/show.pl:98
-#: ../vhffs-panel/admin/object/edit.pl:97 ../vhffs-panel/admin/web/edit.pl:104
-#: ../vhffs-panel/admin/web/show.pl:101 ../vhffs-panel/admin/mysql/edit.pl:102
+#: ../vhffs-panel/admin/object/edit.pl:97 ../vhffs-panel/admin/web/edit.pl:99
+#: ../vhffs-panel/admin/web/show.pl:98 ../vhffs-panel/admin/mysql/edit.pl:102
#: ../vhffs-panel/admin/mysql/show.pl:98 ../vhffs-panel/admin/cvs/edit.pl:100
#: ../vhffs-panel/admin/cvs/show.pl:99 ../vhffs-panel/admin/mail/edit.pl:102
#: ../vhffs-panel/admin/mail/show.pl:102
#: ../vhffs-panel/public/lastgroups.pl:77 ../vhffs-panel/public/group.pl:91
-#: ../vhffs-panel/public/allgroups.pl:84 ../vhffs-panel/mysql/create.pl:72
-#: ../vhffs-panel/cvs/create.pl:97
+#: ../vhffs-panel/public/allgroups.pl:84 ../vhffs-panel/mysql/create.pl:104
+#: ../vhffs-panel/cvs/create.pl:103
msgid "Description"
msgstr ""
@@ -1373,6 +1275,10 @@
msgid "Description of your webarea"
msgstr ""
+#: ../vhffs-panel/group/prefs.pl:95
+msgid "Description updated"
+msgstr ""
+
#: ../vhffs-panel/dns/prefs.pl:295
msgid "Destination"
msgstr ""
@@ -1390,12 +1296,8 @@
msgid "Dl repos"
msgstr ""
-#: ../vhffs-panel/group/join_group.pl:119
-msgid "Doe not exist in the VHFFS database"
-msgstr ""
-
#: ../vhffs-panel/admin/mail/edit.pl:97 ../vhffs-panel/admin/mail/show.pl:97
-#: ../vhffs-panel/mail/create.pl:65
+#: ../vhffs-panel/mail/create.pl:81
msgid "Domain"
msgstr ""
@@ -1414,10 +1316,6 @@
msgid "Domain names for %s"
msgstr ""
-#: ../vhffs-panel/admin/web/edit.pl:103 ../vhffs-panel/admin/web/show.pl:117
-msgid "Don't use Crawl"
-msgstr ""
-
#: ../vhffs-intl/extra_strings.pl:35
msgid "Download Repository"
msgstr ""
@@ -1483,7 +1381,7 @@
msgid "Edit this object"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:135
+#: ../vhffs-panel/user/prefs.pl:143
msgid "Email address changed"
msgstr ""
@@ -1491,7 +1389,7 @@
msgid "Email adress"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:99
+#: ../vhffs-panel/user/prefs.pl:100
msgid "Email is not correct !"
msgstr ""
@@ -1519,41 +1417,32 @@
msgid "Error !"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:167
+#: ../vhffs-panel/user/prefs.pl:175
msgid ""
"Error ! You MUST provide a password in your account when you create your "
"popable account"
msgstr ""
-#: ../vhffs-panel/group/project_submit.pl:83
+#: ../vhffs-panel/group/create.pl:70
msgid "Error creating group (maybe a group with the same name already exists)"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:190
+#: ../vhffs-panel/web/create.pl:78
+msgid "Error creating webarea."
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:198
msgid "Error for spam protection\n"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:201
+#: ../vhffs-panel/user/prefs.pl:209
msgid "Error for virus protection\n"
msgstr ""
-#: ../vhffs-listengine/src/archives/archives.pl:136
-#: ../vhffs-listengine/src/archives/show_msg.pl:76
-msgid "Error in listname"
-msgstr ""
-
#: ../vhffs-panel/object/upavatar.pl:130
-msgid "Error when upload avatar for this object"
+msgid "Error when uploading avatar for this object"
msgstr ""
-#: ../vhffs-panel/mailinglist/submit.pl:116
-msgid "Error while creating list (unknow problem)"
-msgstr ""
-
-#: ../vhffs-panel/web/web_submit.pl:90
-msgid "Error while creating the webarea, it probably already exists !"
-msgstr ""
-
#: ../vhffs-panel/dns/delete.pl:102
msgid "Error while switching state. DNS will NOT be deleted"
msgstr ""
@@ -1568,11 +1457,11 @@
"and try again"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:70
+#: ../vhffs-panel/group/prefs.pl:68
msgid "Error. This group doesn't exists"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:334
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:335
msgid "Expired session ! Please login again"
msgstr ""
@@ -1580,25 +1469,21 @@
msgid "Failed to modify note"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:437
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:502
msgid "February"
msgstr ""
-#: ../vhffs-panel/object/upavatar.pl:118
-msgid "File to big. Max size if 5000 bytes for an avatar"
-msgstr ""
-
#: ../vhffs-panel/object/upavatar.pl:114
-msgid "Filetype not supported"
+msgid "Filetype not supported, only png is supported"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:200 ../vhffs-panel/user/prefs.pl:255
+#: ../vhffs-panel/subscribe.pl:218 ../vhffs-panel/user/prefs.pl:263
#: ../vhffs-panel/admin/user/edit.pl:96 ../vhffs-panel/admin/user/show.pl:97
#: ../vhffs-panel/public/user.pl:85 ../vhffs-panel/public/lastusers.pl:80
msgid "Firstname"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:90
+#: ../vhffs-panel/user/prefs.pl:91
msgid "Firstname is not correct !"
msgstr ""
@@ -1626,11 +1511,11 @@
msgid "Forward %s successfully added"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:215
+#: ../vhffs-panel/user/prefs.pl:223
msgid "Forward added"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:350
+#: ../vhffs-panel/user/prefs.pl:379
#, perl-format
msgid "Forward emails from %s@%s to %s"
msgstr ""
@@ -1651,7 +1536,7 @@
msgid "Forward successfully deleted"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:222
+#: ../vhffs-panel/user/prefs.pl:230
msgid "Forward updated"
msgstr ""
@@ -1659,12 +1544,8 @@
msgid "Forwards"
msgstr ""
-#: ../vhffs-listengine/src/archives/show_msg.pl:106
-msgid "From: "
-msgstr ""
-
#: ../vhffs-panel/admin/user/edit.pl:103 ../vhffs-panel/admin/user/show.pl:103
-#: ../vhffs-panel/admin/group/edit.pl:94 ../vhffs-panel/admin/group/show.pl:94
+#: ../vhffs-panel/admin/group/edit.pl:95 ../vhffs-panel/admin/group/show.pl:94
msgid "GID"
msgstr ""
@@ -1695,7 +1576,7 @@
msgid "Go on login page"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:767
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:775
msgid "Go to administration"
msgstr ""
@@ -1704,7 +1585,7 @@
msgid "Go to object-part admin"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:74
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:82
msgid "Go to public area"
msgstr ""
@@ -1731,7 +1612,7 @@
#: ../vhffs-panel/admin/repository/edit.pl:96
#: ../vhffs-panel/admin/repository/show.pl:95
#: ../vhffs-panel/admin/repository/list.pl:89
-#: ../vhffs-panel/admin/web/edit.pl:99 ../vhffs-panel/admin/web/show.pl:98
+#: ../vhffs-panel/admin/web/edit.pl:96 ../vhffs-panel/admin/web/show.pl:95
#: ../vhffs-panel/admin/web/list.pl:79 ../vhffs-panel/admin/mysql/edit.pl:99
#: ../vhffs-panel/admin/mysql/show.pl:95 ../vhffs-panel/admin/mysql/list.pl:89
#: ../vhffs-panel/admin/cvs/edit.pl:97 ../vhffs-panel/admin/cvs/show.pl:96
@@ -1741,7 +1622,7 @@
msgid "Group"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:520
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:501
#, perl-format
msgid "Group %s"
msgstr ""
@@ -1750,7 +1631,7 @@
msgid "Group Admin"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:517
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:498
msgid "Group error"
msgstr ""
@@ -1762,7 +1643,7 @@
msgid "Group or user not found"
msgstr ""
-#: ../vhffs-panel/cvs/create.pl:93
+#: ../vhffs-panel/cvs/create.pl:99
msgid "Group owning this CVS"
msgstr ""
@@ -1770,23 +1651,27 @@
msgid "Group owning this DNS"
msgstr ""
-#: ../vhffs-panel/svn/create.pl:72
+#: ../vhffs-panel/svn/create.pl:91
msgid "Group owning this Subversion repository"
msgstr ""
-#: ../vhffs-panel/pgsql/create.pl:67 ../vhffs-panel/mysql/create.pl:66
+#: ../vhffs-panel/pgsql/create.pl:97 ../vhffs-panel/mysql/create.pl:97
msgid "Group owning this database"
msgstr ""
-#: ../vhffs-panel/mailinglist/create.pl:89
+#: ../vhffs-panel/mail/create.pl:83
+msgid "Group owning this mail domain"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/create.pl:105
msgid "Group owning this mailing list"
msgstr ""
-#: ../vhffs-panel/repository/create.pl:66
+#: ../vhffs-panel/repository/create.pl:86
msgid "Group owning this repository"
msgstr ""
-#: ../vhffs-panel/web/create.pl:76 ../vhffs-panel/mail/create.pl:66
+#: ../vhffs-panel/web/create.pl:94
msgid "Group owning this web space"
msgstr ""
@@ -1794,13 +1679,19 @@
msgid "Group public area"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:176 ../vhffs-panel/admin/group/edit.pl:93
+#: ../vhffs-panel/acl/view.pl:176 ../vhffs-panel/admin/group/edit.pl:94
#: ../vhffs-panel/admin/group/show.pl:93 ../vhffs-panel/admin/group/list.pl:89
#: ../vhffs-panel/public/lastgroups.pl:73 ../vhffs-panel/public/group.pl:90
#: ../vhffs-panel/public/allgroups.pl:80
msgid "Groupname"
msgstr ""
+#: ../vhffs-panel/group/create.pl:66
+msgid ""
+"Groupname must contain between 3 and 12 characters, only letters or numbers "
+"in lower case"
+msgstr ""
+
#: ../vhffs-panel/acl/view.pl:133
msgid "Groupname:"
msgstr ""
@@ -1826,7 +1717,7 @@
msgid "Groups' administration"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:133
+#: ../vhffs-panel/user/prefs.pl:141
#, perl-format
msgid ""
"Hello %s %s,\n"
@@ -1843,8 +1734,25 @@
msgid "Hello and welcome on listengine help\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:382
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:430
+#: ../vhffs-panel/admin/moderation_submit.pl:101
+#, perl-format
+msgid ""
+"Hello,\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"
+"\n"
+"The Moderator and Admin Team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:411
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:610
msgid "Help"
msgstr ""
@@ -1856,7 +1764,7 @@
msgid "Here, you can report a bug to the admin team"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:413
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:414
#, perl-format
msgid ""
"His email address is:\n"
@@ -1867,17 +1775,17 @@
#: ../vhffs-panel/admin/user/show.pl:111
#: ../vhffs-panel/admin/pgsql/edit.pl:103
#: ../vhffs-panel/admin/pgsql/show.pl:100
-#: ../vhffs-panel/admin/group/edit.pl:101
+#: ../vhffs-panel/admin/group/edit.pl:102
#: ../vhffs-panel/admin/group/show.pl:100
#: ../vhffs-panel/admin/repository/edit.pl:101
#: ../vhffs-panel/admin/repository/show.pl:99
#: ../vhffs-panel/admin/object/list.pl:90
-#: ../vhffs-panel/admin/object/list.pl:97 ../vhffs-panel/admin/web/edit.pl:106
-#: ../vhffs-panel/admin/web/show.pl:102 ../vhffs-panel/admin/mysql/edit.pl:104
+#: ../vhffs-panel/admin/object/list.pl:97 ../vhffs-panel/admin/web/edit.pl:101
+#: ../vhffs-panel/admin/web/show.pl:99 ../vhffs-panel/admin/mysql/edit.pl:104
#: ../vhffs-panel/admin/mysql/show.pl:100 ../vhffs-panel/admin/cvs/edit.pl:102
#: ../vhffs-panel/admin/cvs/show.pl:100 ../vhffs-panel/admin/mail/edit.pl:104
#: ../vhffs-panel/admin/mail/show.pl:103
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:768
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:776
msgid "History"
msgstr ""
@@ -1885,7 +1793,7 @@
msgid "History of this object"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:208 ../vhffs-panel/admin/user/edit.pl:100
+#: ../vhffs-panel/subscribe.pl:226 ../vhffs-panel/admin/user/edit.pl:100
#: ../vhffs-panel/admin/user/show.pl:100
msgid "Home"
msgstr ""
@@ -1906,16 +1814,16 @@
msgid "Hosted"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:160
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:162
msgid "However this list require approval for new subscribers.\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:115
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:117
#, perl-format
msgid "However you are (%s) already subscribed to this list.\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:58
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:66
msgid "I've lost my password"
msgstr ""
@@ -1927,6 +1835,12 @@
msgid "IP/host of your NS"
msgstr ""
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:85
+msgid ""
+"If you don't asked to be subscribed to this mailing list,\n"
+"just forget this email\n"
+msgstr ""
+
#: ../vhffs-robots/src/refused_ml.pl:76 ../vhffs-robots/src/refused_mail.pl:78
#: ../vhffs-robots/src/refused_postgres.pl:79
#: ../vhffs-robots/src/refused_cvs.pl:75 ../vhffs-robots/src/refused_web.pl:74
@@ -1939,19 +1853,13 @@
msgid "If you encounters problem, please mail: %s\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:83
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:103
msgid ""
-"If you haven't asked to be subscribed to this list,\n"
-"please don't answer to this mail\n"
-msgstr ""
-
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:101
-msgid ""
"If you haven't asked to be unsubscribed from this list,\n"
"please don't answer to this mail\n"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:89
+#: ../vhffs-panel/group/prefs.pl:178
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 "
@@ -1969,93 +1877,116 @@
msgid "In hope to keep you in our hosting service"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:208
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:220
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:250
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:195
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:207
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:237
msgid "Invalid IP address"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:238
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:225
msgid "Invalid IP v6 address"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:308
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:295
msgid "Invalid alias"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:297
+#: ../vhffs-panel/pgsql/create.pl:78 ../vhffs-panel/mysql/create.pl:78
+msgid ""
+"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 ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:284
msgid "Invalid destination"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:322
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:338
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:309
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:325
msgid "Invalid destination domain name"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:309
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:296
msgid "Invalid destination host"
msgstr ""
-#: ../vhffs-panel/dns/create.pl:41
+#: ../vhffs-panel/dns/create.pl:41 ../vhffs-panel/mail/create.pl:64
msgid "Invalid domain name"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:274
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:261
msgid "Invalid host"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:260
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:284
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:247
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:271
msgid "Invalid hostname"
msgstr ""
-#: ../vhffs-panel/mail/submit.pl:78
-msgid "Invalid mail domain"
+#: ../vhffs-panel/mailinglist/create.pl:76
+msgid "Invalid local part"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:323
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:339
+#: ../vhffs-panel/pgsql/create.pl:80 ../vhffs-panel/mysql/create.pl:80
+msgid ""
+"Invalid password. It must be at least 3 characters and contain only letters "
+"(lower and uppercase) and numbers"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:310
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:326
msgid "Invalid port"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:205
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:235
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:352
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:192
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:222
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:339
msgid "Invalid prefix"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:261
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:324
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:340
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:248
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:311
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:327
msgid "Invalid priority"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:320
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:307
msgid "Invalid protocol syntax"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:170
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:218
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:248
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:272
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:295
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:336
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:363
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:157
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:205
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:235
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:259
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:282
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:323
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:350
msgid "Invalid record"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:321
+#: ../vhffs-panel/svn/create.pl:71
+msgid ""
+"Invalid reponame. It must contain between 3 and 64 characters, only "
+"lowercase letters and numbers"
+msgstr ""
+
+#: ../vhffs-panel/web/create.pl:71
+msgid "Invalid servername (doesn't conform to domain names rules)"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:308
msgid "Invalid service syntax"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:93
+#: ../vhffs-panel/subscribe.pl:111
msgid ""
"Invalid username, it must contain between 3 and 12 alphanumeric characters, "
"all in lowercase"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:325
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:341
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:312
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:328
msgid "Invalid weight"
msgstr ""
@@ -2067,19 +1998,19 @@
msgid "Is this a public repository ?"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:433
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:498
msgid "January"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:457
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:522
msgid "July"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:453
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:518
msgid "June"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:263
+#: ../vhffs-panel/user/prefs.pl:271
msgid "Language"
msgstr ""
@@ -2107,13 +2038,13 @@
msgid "Last users on %s"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:201 ../vhffs-panel/user/prefs.pl:256
+#: ../vhffs-panel/subscribe.pl:219 ../vhffs-panel/user/prefs.pl:264
#: ../vhffs-panel/admin/user/edit.pl:97 ../vhffs-panel/admin/user/show.pl:98
#: ../vhffs-panel/public/user.pl:87 ../vhffs-panel/public/lastusers.pl:82
msgid "Lastname"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:93
+#: ../vhffs-panel/user/prefs.pl:94
msgid "Lastname is not correct !"
msgstr ""
@@ -2265,7 +2196,11 @@
msgid "Login failed !"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:432
+#: ../vhffs-panel/group/prefs.pl:199
+msgid "Logo"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:413
msgid "Logout"
msgstr ""
@@ -2304,12 +2239,12 @@
msgid "Mail Domain"
msgstr ""
-#: ../vhffs-panel/mail/submit.pl:82
-msgid "Mail area successfully created !"
+#: ../vhffs-panel/user/prefs.pl:235
+msgid "Mail deleted"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:227
-msgid "Mail deleted"
+#: ../vhffs-panel/mail/create.pl:70
+msgid "Mail domain successfully created !"
msgstr ""
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:238
@@ -2325,7 +2260,7 @@
msgid "Mail domains' administration"
msgstr ""
-#: ../vhffs-panel/mailinglist/create.pl:88
+#: ../vhffs-panel/mailinglist/create.pl:104
msgid "Mail for the list"
msgstr ""
@@ -2341,16 +2276,16 @@
msgid "Mail to all hosted people"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:361
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:363
#, perl-format
msgid "Mail with id %s"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:132
+#: ../vhffs-panel/user/prefs.pl:140
msgid "Mailbox modified"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:175
+#: ../vhffs-panel/user/prefs.pl:183
msgid "Mailbox successfully added"
msgstr ""
@@ -2383,10 +2318,6 @@
msgid "Mailing successfully deleted"
msgstr ""
-#: ../vhffs-panel/mailinglist/submit.pl:108
-msgid "Mailing-list successfully created !"
-msgstr ""
-
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:98
msgid "Manage mailings"
msgstr ""
@@ -2395,15 +2326,15 @@
msgid "Manage members"
msgstr ""
-#: ../vhffs-panel/group/join_group.pl:101
+#: ../vhffs-panel/group/prefs.pl:150
msgid "Many users matched your query. Please choose between them"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:441
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:506
msgid "March"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:449
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:514
msgid "May"
msgstr ""
@@ -2419,11 +2350,6 @@
msgid "Message"
msgstr ""
-#: ../vhffs-listengine/src/archives/show_msg.pl:120
-#, perl-format
-msgid "Message from list %s"
-msgstr ""
-
#: ../vhffs-panel/alert_submit.pl:74
msgid "Message sent by the following account"
msgstr ""
@@ -2432,8 +2358,8 @@
msgid "Message sent successfully"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:329
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:345
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:331
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:347
#, perl-format
msgid "Message with id: %s"
msgstr ""
@@ -2453,16 +2379,16 @@
msgid "Moderator"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:423
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:404
msgid "Moderator account"
msgstr ""
#: ../vhffs-panel/admin/user/edit.pl:149
#: ../vhffs-panel/admin/pgsql/edit.pl:125
-#: ../vhffs-panel/admin/group/edit.pl:125
+#: ../vhffs-panel/admin/group/edit.pl:130
#: ../vhffs-panel/admin/repository/edit.pl:125
#: ../vhffs-panel/admin/object/edit.pl:125
-#: ../vhffs-panel/admin/web/edit.pl:138 ../vhffs-panel/admin/mysql/edit.pl:126
+#: ../vhffs-panel/admin/web/edit.pl:121 ../vhffs-panel/admin/mysql/edit.pl:126
#: ../vhffs-panel/admin/cvs/edit.pl:134 ../vhffs-panel/admin/mail/edit.pl:166
#: ../vhffs-intl/extra_strings.pl:27
msgid "Modification applied"
@@ -2470,10 +2396,10 @@
#: ../vhffs-panel/admin/user/edit.pl:148
#: ../vhffs-panel/admin/pgsql/edit.pl:124
-#: ../vhffs-panel/admin/group/edit.pl:124
+#: ../vhffs-panel/admin/group/edit.pl:129
#: ../vhffs-panel/admin/repository/edit.pl:124
#: ../vhffs-panel/admin/object/edit.pl:124
-#: ../vhffs-panel/admin/web/edit.pl:137 ../vhffs-panel/admin/mysql/edit.pl:125
+#: ../vhffs-panel/admin/web/edit.pl:120 ../vhffs-panel/admin/mysql/edit.pl:125
#: ../vhffs-panel/admin/cvs/edit.pl:133 ../vhffs-panel/admin/mail/edit.pl:165
#: ../vhffs-intl/extra_strings.pl:26
msgid "Modification error"
@@ -2487,7 +2413,7 @@
msgid "Modifications applied to your database"
msgstr ""
-#: ../vhffs-panel/web/prefs_save.pl:95
+#: ../vhffs-panel/web/prefs_save.pl:92
msgid "Modifications applied to your webarea"
msgstr ""
@@ -2500,16 +2426,16 @@
msgstr ""
#: ../vhffs-panel/admin/user/edit_submit.pl:135
-#: ../vhffs-panel/admin/web/edit_submit.pl:104
+#: ../vhffs-panel/admin/web/edit_submit.pl:101
msgid "Modifications successfully applied"
msgstr ""
-#: ../vhffs-panel/svn/prefs.pl:121 ../vhffs-panel/user/prefs.pl:265
+#: ../vhffs-panel/svn/prefs.pl:121 ../vhffs-panel/user/prefs.pl:274
#: ../vhffs-panel/dns/prefs.pl:330 ../vhffs-panel/dns/prefs.pl:342
#: ../vhffs-panel/dns/prefs.pl:355 ../vhffs-panel/dns/prefs.pl:366
#: ../vhffs-panel/dns/prefs.pl:393 ../vhffs-panel/dns/prefs.pl:409
#: ../vhffs-panel/acl/view.pl:166 ../vhffs-panel/pgsql/prefs.pl:107
-#: ../vhffs-panel/group/prefs.pl:96 ../vhffs-panel/web/prefs.pl:119
+#: ../vhffs-panel/group/prefs.pl:184 ../vhffs-panel/web/prefs.pl:101
#: ../vhffs-panel/mysql/prefs.pl:114 ../vhffs-panel/cvs/prefs.pl:96
msgid "Modify"
msgstr ""
@@ -2550,7 +2476,7 @@
msgid "Modify this mail domain"
msgstr ""
-#: ../vhffs-panel/admin/user/list.pl:91
+#: ../vhffs-panel/admin/user/list.pl:92
msgid "Modify this user"
msgstr ""
@@ -2558,7 +2484,7 @@
msgid "Must we redirect the DNS on our servers ?"
msgstr ""
-#: ../vhffs-panel/user/projects.pl:49 ../vhffs-api/src/Vhffs/Panel/Main.pm:428
+#: ../vhffs-panel/user/projects.pl:49 ../vhffs-api/src/Vhffs/Panel/Main.pm:409
msgid "My Projects"
msgstr ""
@@ -2588,7 +2514,7 @@
msgid "MySQL database awaiting validation"
msgstr ""
-#: ../vhffs-panel/mysql/create.pl:68
+#: ../vhffs-panel/mysql/create.pl:99
msgid "MySQL database name "
msgstr ""
@@ -2596,7 +2522,7 @@
msgid "MySQL databases' administration"
msgstr ""
-#: ../vhffs-panel/mysql/create.pl:69
+#: ../vhffs-panel/mysql/create.pl:101
msgid "MySQL password for this database "
msgstr ""
@@ -2637,18 +2563,18 @@
msgid "Name of your MX"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:769
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:777
msgid "New"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:266
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:268
#, perl-format
msgid "New language is: %s\n"
msgstr ""
#: ../vhffs-panel/svn/prefs.pl:120 ../vhffs-panel/dns/prefs.pl:277
#: ../vhffs-panel/admin/cvs/edit.pl:104 ../vhffs-panel/admin/cvs/show.pl:108
-#: ../vhffs-panel/web/prefs.pl:116 ../vhffs-panel/cvs/prefs.pl:95
+#: ../vhffs-panel/cvs/prefs.pl:95
msgid "No"
msgstr ""
@@ -2696,7 +2622,7 @@
msgid "No Web Area to validate"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:327
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:328
msgid "No cookie found, please accept the cookie and then please login again !"
msgstr ""
@@ -2738,7 +2664,7 @@
msgid "No member on this list"
msgstr ""
-#: ../vhffs-listengine/src/listengine.pl:592
+#: ../vhffs-listengine/src/listengine.pl:736
msgid "No message to moderate"
msgstr ""
@@ -2764,7 +2690,7 @@
msgid "No such user"
msgstr ""
-#: ../vhffs-panel/public/group.pl:103
+#: ../vhffs-panel/group/prefs.pl:209 ../vhffs-panel/public/group.pl:103
msgid "No user for this group"
msgstr ""
@@ -2776,19 +2702,19 @@
msgid "No website available for this group"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:280 ../vhffs-panel/dns/prefs.pl:270
-#: ../vhffs-panel/web/prefs.pl:131
+#: ../vhffs-panel/user/prefs.pl:289 ../vhffs-panel/dns/prefs.pl:270
+#: ../vhffs-panel/web/prefs.pl:112
msgid "No, I'm not sure, I prefer to keep it."
msgstr ""
#: ../vhffs-panel/mailinglist/prefs.pl:205 ../vhffs-panel/svn/prefs.pl:126
-#: ../vhffs-panel/pgsql/prefs.pl:112 ../vhffs-panel/group/prefs.pl:101
-#: ../vhffs-panel/repository/prefs.pl:106 ../vhffs-panel/mysql/prefs.pl:119
+#: ../vhffs-panel/pgsql/prefs.pl:112 ../vhffs-panel/group/prefs.pl:189
+#: ../vhffs-panel/repository/prefs.pl:107 ../vhffs-panel/mysql/prefs.pl:119
#: ../vhffs-panel/cvs/prefs.pl:101 ../vhffs-panel/mail/prefs.pl:134
msgid "No, I'm not sure, I prefer to keep this project."
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:770
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:778
msgid "None"
msgstr ""
@@ -2806,7 +2732,7 @@
msgid "Notify changes on mailing-list :"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:473
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:538
msgid "November"
msgstr ""
@@ -2831,12 +2757,12 @@
msgid "Object-ID error"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:469
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:534
msgid "October"
msgstr ""
#: ../vhffs-panel/svn/prefs.pl:132 ../vhffs-panel/dns/prefs.pl:262
-#: ../vhffs-panel/web/prefs.pl:124 ../vhffs-panel/mail/prefs.pl:140
+#: ../vhffs-panel/web/prefs.pl:105 ../vhffs-panel/mail/prefs.pl:140
msgid "Ok, go to ACL admin"
msgstr ""
@@ -2877,13 +2803,13 @@
msgid "Owned by"
msgstr ""
-#: ../vhffs-panel/group/create.pl:63 ../vhffs-panel/admin/pgsql/edit.pl:99
-#: ../vhffs-panel/admin/pgsql/show.pl:97 ../vhffs-panel/admin/group/edit.pl:95
+#: ../vhffs-panel/group/create.pl:82 ../vhffs-panel/admin/pgsql/edit.pl:99
+#: ../vhffs-panel/admin/pgsql/show.pl:97 ../vhffs-panel/admin/group/edit.pl:96
#: ../vhffs-panel/admin/group/show.pl:95
#: ../vhffs-panel/admin/repository/edit.pl:97
#: ../vhffs-panel/admin/repository/show.pl:96
-#: ../vhffs-panel/admin/object/list.pl:88 ../vhffs-panel/admin/web/edit.pl:100
-#: ../vhffs-panel/admin/web/show.pl:99 ../vhffs-panel/admin/mysql/edit.pl:100
+#: ../vhffs-panel/admin/object/list.pl:88 ../vhffs-panel/admin/web/edit.pl:97
+#: ../vhffs-panel/admin/web/show.pl:96 ../vhffs-panel/admin/mysql/edit.pl:100
#: ../vhffs-panel/admin/mysql/show.pl:96 ../vhffs-panel/admin/cvs/edit.pl:98
#: ../vhffs-panel/admin/cvs/show.pl:97 ../vhffs-panel/admin/mail/edit.pl:100
#: ../vhffs-panel/admin/mail/show.pl:100
@@ -2898,13 +2824,13 @@
msgid "Owner of this group"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:261 ../vhffs-panel/admin/user/edit.pl:99
+#: ../vhffs-panel/user/prefs.pl:269 ../vhffs-panel/admin/user/edit.pl:99
#: ../vhffs-panel/admin/pgsql/edit.pl:97 ../vhffs-panel/admin/mysql/edit.pl:97
-#: ../vhffs-panel/mail/prefs.pl:111 ../vhffs-api/src/Vhffs/Panel/Commons.pm:56
+#: ../vhffs-panel/mail/prefs.pl:111 ../vhffs-api/src/Vhffs/Panel/Commons.pm:64
msgid "Password"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:125
+#: ../vhffs-panel/user/prefs.pl:133
msgid "Password changed"
msgstr ""
@@ -2917,14 +2843,6 @@
msgid "Password for this database"
msgstr ""
-#: ../vhffs-panel/mysql/submit.pl:87
-msgid "Password must contain at least 3 caracters"
-msgstr ""
-
-#: ../vhffs-panel/pgsql/pgsql_submit.pl:81
-msgid "Password must contains only alphanum caracters"
-msgstr ""
-
#: ../vhffs-panel/lost_ack.pl:90
msgid "Password recovery failed!"
msgstr ""
@@ -2967,41 +2885,41 @@
msgid "Platform temporary closed<br/>database error"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:137
+#: ../vhffs-panel/subscribe.pl:155
msgid "Please enter a correct city"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:141
+#: ../vhffs-panel/subscribe.pl:159
msgid "Please enter a correct country"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:129
+#: ../vhffs-panel/subscribe.pl:147
msgid "Please enter a correct firstname"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:133
+#: ../vhffs-panel/subscribe.pl:151
msgid "Please enter a correct lastname"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:53
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:61
msgid "Please enter your username and password"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:197
+#: ../vhffs-panel/subscribe.pl:215
msgid ""
"Please fill in all fields, a mail containing your password will be sent to "
"you"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:294
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:296
msgid "Please read help of listengine\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:191
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:193
msgid "Please try again !\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:237
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:239
msgid "Please try again.\n"
msgstr ""
@@ -3014,7 +2932,7 @@
msgid "Please wait modification, creation or deletion"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:167
+#: ../vhffs-panel/subscribe.pl:185
msgid ""
"Please wait while we are creating the account, it will take some minutes"
msgstr ""
@@ -3040,16 +2958,16 @@
msgid "PostgreSQL DBs for %s"
msgstr ""
-#: ../vhffs-panel/pgsql/create.pl:65
-msgid "PostgreSQL database name"
+#: ../vhffs-panel/pgsql/create.pl:99
+msgid "PostgreSQL database name "
msgstr ""
#: ../vhffs-panel/admin/pgsql/index.pl:55
msgid "PostgreSQL databases' administration"
msgstr ""
-#: ../vhffs-panel/pgsql/create.pl:66
-msgid "PostgreSQL password for this database"
+#: ../vhffs-panel/pgsql/create.pl:101
+msgid "PostgreSQL password for this database "
msgstr ""
#: ../vhffs-panel/admin/moderation.pl:435
@@ -3060,12 +2978,12 @@
msgid "Posting control:"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:532
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:513
msgid "Preferences"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:206
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:236
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:193
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:223
msgid "Prefix already exists"
msgstr ""
@@ -3085,31 +3003,27 @@
msgid "Priority: "
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:93
+#: ../vhffs-panel/group/prefs.pl:182
msgid "Project Description"
msgstr ""
-#: ../vhffs-panel/group/create.pl:62
+#: ../vhffs-panel/group/create.pl:81
msgid "Project Name"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:91
+#: ../vhffs-panel/group/prefs.pl:180
msgid "Project Owner"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:88
+#: ../vhffs-panel/group/prefs.pl:176
msgid "Project Preferences"
msgstr ""
-#: ../vhffs-panel/group/project_submit.pl:85
+#: ../vhffs-panel/group/create.pl:72
msgid "Project Successfully created !"
msgstr ""
-#: ../vhffs-panel/group/prefs_save.pl:93
-msgid "Project Successfully modified"
-msgstr ""
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:448
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:429
msgid "Project home"
msgstr ""
@@ -3139,20 +3053,20 @@
msgid "Public area not available"
msgstr ""
-#: ../vhffs-panel/admin/group/edit.pl:96 ../vhffs-panel/admin/group/show.pl:96
+#: ../vhffs-panel/admin/group/edit.pl:97 ../vhffs-panel/admin/group/show.pl:96
#: ../vhffs-panel/admin/repository/edit.pl:102
#: ../vhffs-panel/admin/repository/show.pl:100
msgid "Quota"
msgstr ""
#: ../vhffs-panel/repository/prefs.pl:100
-#: ../vhffs-panel/admin/group/edit.pl:110
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:524
+#: ../vhffs-panel/admin/group/edit.pl:109
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:505
#, perl-format
msgid "Quota (used/total) : %s/%s"
msgstr ""
-#: ../vhffs-panel/admin/group/edit.pl:97 ../vhffs-panel/admin/group/show.pl:97
+#: ../vhffs-panel/admin/group/edit.pl:98 ../vhffs-panel/admin/group/show.pl:97
#: ../vhffs-panel/admin/repository/edit.pl:103
#: ../vhffs-panel/admin/repository/show.pl:101
msgid "Quota used"
@@ -3178,21 +3092,21 @@
msgid "Reason given : "
msgstr ""
-#: ../vhffs-panel/subscribe.pl:214
+#: ../vhffs-panel/subscribe.pl:233
msgid "Recopy the code"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:172
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:219
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:249
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:273
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:296
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:337
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:364
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:159
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:206
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:236
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:260
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:283
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:324
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:351
msgid "Record does not exists"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:171
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:158
msgid "Record type doesn't exists"
msgstr ""
@@ -3209,16 +3123,16 @@
msgid "Refuse"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:121
-msgid "Remove this user from this group"
+#: ../vhffs-panel/group/prefs.pl:208
+msgid "Remove"
msgstr ""
#: ../vhffs-panel/mailinglist/prefs.pl:142
msgid "Reply to: on list"
msgstr ""
-#: ../vhffs-panel/svn/create.pl:71 ../vhffs-panel/repository/create.pl:65
-#: ../vhffs-panel/admin/repository/list.pl:88 ../vhffs-panel/cvs/create.pl:91
+#: ../vhffs-panel/svn/create.pl:89 ../vhffs-panel/repository/create.pl:85
+#: ../vhffs-panel/admin/repository/list.pl:88 ../vhffs-panel/cvs/create.pl:97
msgid "Repository Name"
msgstr ""
@@ -3404,20 +3318,20 @@
msgid "Search:"
msgstr ""
-#: ../vhffs-panel/mailinglist/create.pl:101 ../vhffs-panel/svn/create.pl:76
-#: ../vhffs-panel/dns/create.pl:68 ../vhffs-panel/pgsql/create.pl:73
-#: ../vhffs-panel/group/create.pl:65 ../vhffs-panel/repository/create.pl:71
+#: ../vhffs-panel/mailinglist/create.pl:109 ../vhffs-panel/svn/create.pl:94
+#: ../vhffs-panel/dns/create.pl:68 ../vhffs-panel/pgsql/create.pl:103
+#: ../vhffs-panel/group/create.pl:84 ../vhffs-panel/repository/create.pl:91
#: ../vhffs-panel/alert.pl:71 ../vhffs-panel/admin/user/edit.pl:111
#: ../vhffs-panel/admin/pgsql/edit.pl:102
-#: ../vhffs-panel/admin/group/edit.pl:100
+#: ../vhffs-panel/admin/group/edit.pl:101
#: ../vhffs-panel/admin/broadcast_list.pl:99
#: ../vhffs-panel/admin/repository/edit.pl:100
#: ../vhffs-panel/admin/object/edit.pl:98
#: ../vhffs-panel/admin/broadcast_view.pl:100
-#: ../vhffs-panel/admin/web/edit.pl:105 ../vhffs-panel/admin/mysql/edit.pl:103
+#: ../vhffs-panel/admin/web/edit.pl:100 ../vhffs-panel/admin/mysql/edit.pl:103
#: ../vhffs-panel/admin/cvs/edit.pl:101 ../vhffs-panel/admin/mail/edit.pl:103
-#: ../vhffs-panel/web/create.pl:80 ../vhffs-panel/mysql/create.pl:71
-#: ../vhffs-panel/cvs/create.pl:96 ../vhffs-panel/mail/create.pl:70
+#: ../vhffs-panel/web/create.pl:97 ../vhffs-panel/mysql/create.pl:103
+#: ../vhffs-panel/cvs/create.pl:102 ../vhffs-panel/mail/create.pl:86
msgid "Send"
msgstr ""
@@ -3425,7 +3339,7 @@
msgid "Send an email to all hosted people"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:295
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:297
msgid "Send an email with the subject \"help\" to the following address: \n"
msgstr ""
@@ -3433,15 +3347,11 @@
msgid "Send it"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:108 ../vhffs-panel/group/prefs.pl:109
-msgid "Send logo"
-msgstr ""
-
-#: ../vhffs-panel/user/prefs.pl:287 ../vhffs-panel/user/prefs.pl:289
+#: ../vhffs-panel/user/prefs.pl:296 ../vhffs-panel/user/prefs.pl:298
msgid "Send my avatar"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:465
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:530
msgid "September"
msgstr ""
@@ -3451,15 +3361,12 @@
msgid "Servername"
msgstr ""
-#: ../vhffs-panel/web/web_submit.pl:77
-msgid "Servername error. Please enter a valid servername"
-msgstr ""
-
#: ../vhffs-panel/dns/prefs.pl:309
msgid "Service"
msgstr ""
-#: ../vhffs-panel/admin/user/edit.pl:98 ../vhffs-panel/admin/user/show.pl:99
+#: ../vhffs-panel/user/prefs.pl:273 ../vhffs-panel/admin/user/edit.pl:98
+#: ../vhffs-panel/admin/user/show.pl:99
msgid "Shell"
msgstr ""
@@ -3554,7 +3461,7 @@
msgid "Show this mail domain"
msgstr ""
-#: ../vhffs-panel/admin/user/list.pl:94
+#: ../vhffs-panel/admin/user/list.pl:95
msgid "Show this user"
msgstr ""
@@ -3592,19 +3499,19 @@
#: ../vhffs-panel/admin/user/edit.pl:137 ../vhffs-panel/admin/user/show.pl:110
#: ../vhffs-panel/admin/pgsql/edit.pl:100
-#: ../vhffs-panel/admin/pgsql/show.pl:98 ../vhffs-panel/admin/group/edit.pl:98
+#: ../vhffs-panel/admin/pgsql/show.pl:98 ../vhffs-panel/admin/group/edit.pl:99
#: ../vhffs-panel/admin/group/show.pl:98
#: ../vhffs-panel/admin/repository/edit.pl:98
#: ../vhffs-panel/admin/repository/show.pl:97
-#: ../vhffs-panel/admin/object/edit.pl:96 ../vhffs-panel/admin/web/edit.pl:101
-#: ../vhffs-panel/admin/web/show.pl:100 ../vhffs-panel/admin/mysql/edit.pl:101
+#: ../vhffs-panel/admin/object/edit.pl:96 ../vhffs-panel/admin/web/edit.pl:98
+#: ../vhffs-panel/admin/web/show.pl:97 ../vhffs-panel/admin/mysql/edit.pl:101
#: ../vhffs-panel/admin/mysql/show.pl:97 ../vhffs-panel/admin/mysql/show.pl:99
#: ../vhffs-panel/admin/cvs/edit.pl:99 ../vhffs-panel/admin/cvs/show.pl:98
#: ../vhffs-panel/admin/mail/edit.pl:101 ../vhffs-panel/admin/mail/show.pl:101
msgid "Status"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:383
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:611
msgid "Stay over an icon to see its description."
msgstr ""
@@ -3621,21 +3528,17 @@
msgid "Subject"
msgstr ""
-#: ../vhffs-listengine/src/archives/show_msg.pl:109
-msgid "Subject: "
-msgstr ""
-
#: ../vhffs-panel/dns/prefs.pl:288 ../vhffs-panel/dns/prefs.pl:294
#: ../vhffs-panel/dns/prefs.pl:315
msgid "Submit"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:431
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:412
msgid "Submit a bug"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:206 ../vhffs-panel/subscribe.pl:220
-#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:59
+#: ../vhffs-panel/subscribe.pl:224 ../vhffs-panel/subscribe.pl:239
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:67
msgid "Subscribe"
msgstr ""
@@ -3647,17 +3550,16 @@
msgid "Subscribed"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:196
+#: ../vhffs-panel/subscribe.pl:214
msgid "Subscription"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:130
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:132
#, perl-format
msgid ""
"Subscription to the following list is forbidden:\n"
+" %s\n"
"\n"
-"%s\n"
-"\n"
"Have a nice day.\n"
msgstr ""
@@ -3665,33 +3567,28 @@
msgid "Subversion repository awaiting validation"
msgstr ""
-#: ../vhffs-panel/object/upavatar.pl:126
-msgid "Successfull create or replace avatar"
-msgstr ""
-
#: ../vhffs-panel/mailinglist/add_sub.pl:105
msgid "Successfully added"
msgstr ""
+#: ../vhffs-panel/object/upavatar.pl:126
+msgid "Successfully created or updated avatar"
+msgstr ""
+
#: ../vhffs-panel/mailinglist/del_member.pl:105
msgid "Successfully deleted"
msgstr ""
-#: ../vhffs-panel/group/join_group.pl:86
-msgid ""
-"Sucessfully added this user to this group. Please wait while robots add him"
-msgstr ""
-
#: ../vhffs-panel/admin/user/edit.pl:145
#: ../vhffs-panel/admin/pgsql/edit.pl:121
#: ../vhffs-panel/admin/pgsql/edit.pl:122
-#: ../vhffs-panel/admin/group/edit.pl:121
-#: ../vhffs-panel/admin/group/edit.pl:122
+#: ../vhffs-panel/admin/group/edit.pl:126
+#: ../vhffs-panel/admin/group/edit.pl:127
#: ../vhffs-panel/admin/repository/edit.pl:121
#: ../vhffs-panel/admin/repository/edit.pl:122
#: ../vhffs-panel/admin/object/edit.pl:121
#: ../vhffs-panel/admin/object/edit.pl:122
-#: ../vhffs-panel/admin/web/edit.pl:134 ../vhffs-panel/admin/web/edit.pl:135
+#: ../vhffs-panel/admin/web/edit.pl:117 ../vhffs-panel/admin/web/edit.pl:118
#: ../vhffs-panel/admin/mysql/edit.pl:122
#: ../vhffs-panel/admin/mysql/edit.pl:123 ../vhffs-panel/admin/cvs/edit.pl:130
#: ../vhffs-panel/admin/cvs/edit.pl:131 ../vhffs-panel/admin/mail/edit.pl:162
@@ -3715,15 +3612,15 @@
msgid "TXT Record updated"
msgstr ""
-#: ../vhffs-panel/mail/create.pl:71
-msgid "Tell us what the use of this mail space will be"
+#: ../vhffs-panel/mail/create.pl:87
+msgid "Tell us for what purpose you want to create this mail domain"
msgstr ""
-#: ../vhffs-panel/mailinglist/create.pl:102
+#: ../vhffs-panel/mailinglist/create.pl:110
msgid "Tell us what the use of this mailing list will be"
msgstr ""
-#: ../vhffs-panel/web/create.pl:81
+#: ../vhffs-panel/web/create.pl:98
msgid "Tell us what the use of this web space will be"
msgstr ""
@@ -3731,12 +3628,12 @@
msgid "Text"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:353
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:365
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:340
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:352
msgid "Text can't be empty"
msgstr ""
-#: ../vhffs-panel/cvs/create.pl:78
+#: ../vhffs-panel/cvs/create.pl:80
msgid "The CVS object was successfully created !"
msgstr ""
@@ -3744,10 +3641,6 @@
msgid "The DNS object was successfully created !"
msgstr ""
-#: ../vhffs-panel/repository/repository_submit.pl:89
-msgid "The Download repository object was successfully created !"
-msgstr ""
-
#: ../vhffs-robots/src/refused_ml.pl:78 ../vhffs-robots/src/refused_mail.pl:80
#: ../vhffs-robots/src/refused_postgres.pl:81
#: ../vhffs-robots/src/refused_cvs.pl:77 ../vhffs-robots/src/refused_web.pl:76
@@ -3759,111 +3652,102 @@
msgid "The Moderator and Admin team"
msgstr ""
-#: ../vhffs-panel/mysql/submit.pl:99
-msgid "The MySQL object was successfully created !"
+#: ../vhffs-panel/mysql/create.pl:82
+msgid "The MySQL DB was successfully created !"
msgstr ""
-#: ../vhffs-panel/pgsql/pgsql_submit.pl:95
-msgid "The PostgreSQL object was successfully created !"
+#: ../vhffs-panel/pgsql/create.pl:82
+msgid "The PostgreSQL DB was successfully created !"
msgstr ""
-#: ../vhffs-panel/svn/svn_submit.pl:83
-msgid "The Subversion object was successfully created !"
+#: ../vhffs-panel/svn/create.pl:75
+msgid "The SVN object was successfully created !"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:290
+#: ../vhffs-panel/user/prefs.pl:299
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 ""
-#: ../vhffs-panel/group/prefs.pl:110
+#: ../vhffs-panel/group/prefs.pl:200
msgid "The avatar is an image to describe the group"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:190
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:192
msgid "The confirmation code was wrong\n"
msgstr ""
-#: ../vhffs-panel/mysql/submit.pl:91
-msgid "The database name is not valid"
+#: ../vhffs-panel/pgsql/create.pl:96 ../vhffs-panel/mysql/create.pl:96
+#, perl-format
+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 ""
-#: ../vhffs-panel/mysql/submit.pl:79
-msgid "The database name is too long. There is a 32 character limit"
-msgstr ""
-
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:379
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:381
#, perl-format
msgid ""
"The following address %s is not allowed to execute commands on the list %s\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:205
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:207
#, perl-format
-msgid "The following address %s is not on the list %s\n"
-msgstr ""
-
-#: ../vhffs-panel/group/project_submit.pl:78
-msgid "The groupname can have no more than 12 caracters."
-msgstr ""
-
-#: ../vhffs-panel/group/project_submit.pl:74
msgid ""
-"The groupname should contain at least 3 caracters and must contain only "
-"letters or numbers in lower case"
+"The following address %s is not on the following mailing list:\n"
+" %s\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:265
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:267
#, perl-format
msgid ""
"The listengine language preference was changed for the following address %"
"s.\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:314
+#: ../vhffs-panel/mailinglist/create.pl:83
+msgid "The mailing list object was successfully created !"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:316
msgid "The message does not exists or was moderated before you.\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:311
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:313
#, perl-format
msgid "The message with the following id %s"
msgstr ""
-#: ../vhffs-panel/mysql/submit.pl:95
-msgid "The password is not valid"
+#: ../vhffs-panel/repository/create.pl:72
+msgid "The repository was successfully created !"
msgstr ""
-#: ../vhffs-panel/pgsql/create.pl:70 ../vhffs-panel/mysql/create.pl:65
-#, perl-format
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:119
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"
+"The state of you subscription was not changed, you are still subscribed\n"
msgstr ""
-#: ../vhffs-panel/svn/svn_submit.pl:73
-msgid ""
-"The repository name is too short. It must contains at least 3 caracters, and "
-"must only contain letters and numbers"
+#: ../vhffs-panel/web/create.pl:75
+msgid "The webarea was successfully created !"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:117
-msgid ""
-"The state of you subscription was not changed, you are still subscribed\n"
-msgstr ""
-
-#: ../vhffs-panel/user/prefs.pl:264
+#: ../vhffs-panel/user/prefs.pl:272
msgid "Theme"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:211
+#: ../vhffs-panel/user/prefs.pl:219
msgid ""
"There is a problem with the address you filled in your profile, unable to "
"add forwarding"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:348
+#: ../vhffs-panel/mailinglist/create.pl:99
+msgid ""
+"There is no default mail domain on this platform, you have to create a mail "
+"domain before creating a mailing list"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:377
msgid "There is two possible usages :"
msgstr ""
@@ -3889,15 +3773,15 @@
#: ../vhffs-panel/mailinglist/prefs.pl:202 ../vhffs-panel/svn/prefs.pl:123
#: ../vhffs-panel/dns/prefs.pl:267 ../vhffs-panel/pgsql/prefs.pl:109
-#: ../vhffs-panel/group/prefs.pl:98 ../vhffs-panel/repository/prefs.pl:103
-#: ../vhffs-panel/web/prefs.pl:128 ../vhffs-panel/mysql/prefs.pl:116
+#: ../vhffs-panel/group/prefs.pl:186 ../vhffs-panel/repository/prefs.pl:104
+#: ../vhffs-panel/web/prefs.pl:109 ../vhffs-panel/mysql/prefs.pl:116
#: ../vhffs-panel/cvs/prefs.pl:98 ../vhffs-panel/mail/prefs.pl:131
msgid ""
"This action is non-reversible. All services associated to this project will "
"be DESTROYED."
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:277
+#: ../vhffs-panel/user/prefs.pl:286
msgid "This action is non-reversible. WHEN YOU DELETE IT, YOU CANNOT CANCEL."
msgstr ""
@@ -3935,15 +3819,15 @@
msgid "This domain will be DELETED from Vhffs platform"
msgstr ""
-#: ../vhffs-panel/group/prefs_save.pl:82
-msgid "This group is not activated yet"
+#: ../vhffs-panel/mail/add_forward.pl:99
+msgid "This forward has been successfully added to this domain"
msgstr ""
#: ../vhffs-panel/group/delete.pl:91
msgid "This group will be deleted"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:326
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:313
msgid "This host is already registered for this service"
msgstr ""
@@ -3959,20 +3843,25 @@
msgid "This mail domain will NOT be DELETED"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:99
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:101
#, perl-format
msgid ""
"This mail must contains the following subject : \"confirm unsubscribe %s\"\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:81
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:83
#, perl-format
-msgid "This mail must have the following subject : \"confirm subscribe %s\"\n"
+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 ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:395
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:397
#, perl-format
-msgid "This mail was sent by %s with the following subject: \n"
+msgid ""
+"This mail was sent by %s with the following subject:\n"
+" %s\n"
+"\n"
msgstr ""
#: ../vhffs-panel/mailinglist/add_sub.pl:101
@@ -3983,7 +3872,7 @@
msgid "This object does not have an avatar"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:75
+#: ../vhffs-panel/group/prefs.pl:71
msgid "This object is not functional yet. Please wait creation or moderation."
msgstr ""
@@ -4001,7 +3890,7 @@
#: ../vhffs-panel/admin/mail/password_box.pl:90
#: ../vhffs-panel/admin/mail/delete_forward.pl:90
#: ../vhffs-panel/admin/mail/change_forward.pl:90
-#: ../vhffs-panel/web/prefs.pl:80 ../vhffs-panel/web/prefs_save.pl:82
+#: ../vhffs-panel/web/prefs.pl:80 ../vhffs-panel/web/prefs_save.pl:81
#: ../vhffs-panel/mysql/prefs.pl:90 ../vhffs-panel/mysql/prefs_save.pl:91
#: ../vhffs-panel/cvs/delete.pl:86 ../vhffs-panel/cvs/prefs_save.pl:85
#: ../vhffs-panel/mail/delete.pl:82 ../vhffs-panel/mail/delete_box.pl:86
@@ -4051,10 +3940,6 @@
"maintenances tasks. Please come back in a few minutes to log in."
msgstr ""
-#: ../vhffs-panel/svn/svn_submit.pl:76
-msgid "This repository name already exists"
-msgstr ""
-
#: ../vhffs-panel/svn/delete.pl:102
msgid "This repository will be deleted"
msgstr ""
@@ -4063,18 +3948,10 @@
msgid "This subversion repository will NOT be deleted"
msgstr ""
-#: ../vhffs-panel/group/remove_user_from_group.pl:79
-msgid "This user does not exists "
-msgstr ""
-
#: ../vhffs-panel/user/delete.pl:76
msgid "This user is always in a group"
msgstr ""
-#: ../vhffs-panel/group/remove_user_from_group.pl:88
-msgid "This user is not in this group "
-msgstr ""
-
#: ../vhffs-panel/user/delete.pl:87
msgid "This user will BE DELETED"
msgstr ""
@@ -4083,30 +3960,29 @@
msgid "This user will NOT be DELETED"
msgstr ""
-#: ../vhffs-panel/group/remove_user_from_group.pl:92
+#: ../vhffs-panel/group/prefs.pl:110
msgid "This user will be removed from this group as soon as possible"
msgstr ""
-#: ../vhffs-panel/web/delete.pl:79 ../vhffs-panel/web/prefs_save.pl:78
+#: ../vhffs-panel/web/delete.pl:79 ../vhffs-panel/web/prefs_save.pl:77
msgid "This web area doesn't exist in VHFFS database"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:416
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:417
msgid "To accept this subscriber, send a message to\n"
msgstr ""
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:398
-msgid "To put this post on the list, send a message \n"
+#, perl-format
+msgid ""
+"To put this post on the list, send a message to:\n"
+" %s-request@%s\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:419
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:420
msgid "To refuse this subscriber, send a message to\n"
msgstr ""
-#: ../vhffs-listengine/src/archives/show_msg.pl:107
-msgid "To: "
-msgstr ""
-
#: ../vhffs-panel/ajax/help.pl:54 ../vhffs-panel/ajax/help.pl:59
msgid "Topic not found"
msgstr ""
@@ -4250,6 +4126,12 @@
msgid "Unable to add TXT record: %s"
msgstr ""
+#: ../vhffs-panel/group/prefs.pl:135 ../vhffs-panel/group/prefs.pl:169
+msgid ""
+"Unable to add user, he might already be in the group (waiting for addition "
+"or deletion)"
+msgstr ""
+
#: ../vhffs-panel/admin/mail/password_box.pl:105
#, perl-format
msgid "Unable to change password for box %s (%d)"
@@ -4318,8 +4200,8 @@
msgid "Unable to delete this domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:207
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:237
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:194
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:224
msgid ""
"Unable to find default redirection address, please contact administrators"
msgstr ""
@@ -4414,42 +4296,39 @@
msgid "Unable to modify the object"
msgstr ""
-#: ../vhffs-panel/mail/add_forward.pl:99
-msgid "Unable to record changes on this domain"
+#: ../vhffs-panel/group/prefs.pl:112
+msgid "Unable to remove user from group"
msgstr ""
-#: ../vhffs-listengine/src/archives/archives.pl:141
-#: ../vhffs-listengine/src/archives/show_msg.pl:81
-msgid "Undefined list"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:295
+msgid ""
+"Unknow command\n"
+"\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:293
-msgid "Unknow command\n"
-msgstr ""
-
-#: ../vhffs-api/src/Vhffs/Functions.pm:400
-#: ../vhffs-api/src/Vhffs/Functions.pm:405
+#: ../vhffs-api/src/Vhffs/Functions.pm:402
+#: ../vhffs-api/src/Vhffs/Functions.pm:407
msgid "Unknown"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:174
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:210
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:222
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:240
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:252
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:264
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:276
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:287
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:161
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:197
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:209
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:227
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:239
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:251
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:263
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:274
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:286
#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:299
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:312
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:328
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:343
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:355
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:367
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:315
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:330
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:342
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:354
msgid "Unknown error"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:480
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:545
msgid "Unknown month"
msgstr ""
@@ -4458,11 +4337,19 @@
msgid "Unknown status"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:235
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:237
#, perl-format
msgid "Unsubscribe for the list %s was not complete.\n"
msgstr ""
+#: ../vhffs-panel/group/prefs.pl:198
+msgid "Update"
+msgstr ""
+
+#: ../vhffs-panel/group/prefs.pl:202
+msgid "Update avatar"
+msgstr ""
+
#: ../vhffs-panel/admin/user/edit.pl:260
msgid "Update note"
msgstr ""
@@ -4471,34 +4358,30 @@
msgid "Update signature"
msgstr ""
+#: ../vhffs-panel/object/upavatar.pl:118
+msgid "Uploaded file is too big. The maximum size is 20 Kbytes."
+msgstr ""
+
#: ../vhffs-panel/dns/prefs.pl:255
#, perl-format
msgid "Use @ for origin (%s)"
msgstr ""
-#: ../vhffs-panel/admin/web/edit.pl:102 ../vhffs-panel/admin/web/show.pl:115
-msgid "Use Crawl"
-msgstr ""
-
-#: ../vhffs-panel/user/prefs.pl:349
+#: ../vhffs-panel/user/prefs.pl:378
#, perl-format
msgid ""
"Use VHFFS servers to manage this mail,<br>you should use use the host pop.%s "
"or imap.%s to fetch your mails"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:355
+#: ../vhffs-panel/user/prefs.pl:384
msgid "Use anti-spam protection"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:363
+#: ../vhffs-panel/user/prefs.pl:392
msgid "Use anti-virus protection"
msgstr ""
-#: ../vhffs-panel/web/prefs.pl:98
-msgid "Use crawl (useful for web-search engine)"
-msgstr ""
-
#: ../vhffs-panel/admin/pgsql/edit.pl:96 ../vhffs-panel/admin/pgsql/show.pl:95
#: ../vhffs-panel/admin/mysql/edit.pl:96 ../vhffs-panel/admin/mysql/show.pl:94
#: ../vhffs-intl/extra_strings.pl:32
@@ -4514,19 +4397,19 @@
msgid "User Admin"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:248 ../vhffs-api/src/Vhffs/Panel/Main.pm:429
+#: ../vhffs-panel/user/prefs.pl:256 ../vhffs-api/src/Vhffs/Panel/Main.pm:410
msgid "User Preferences"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:166
+#: ../vhffs-panel/subscribe.pl:184
msgid "User Successfully created"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:426
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:407
msgid "User account"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:337
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:338
msgid "User does not exist"
msgstr ""
@@ -4534,7 +4417,7 @@
msgid "User is not active yet"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:86
+#: ../vhffs-panel/acl/view.pl:86 ../vhffs-panel/group/prefs.pl:142
msgid "User not found"
msgstr ""
@@ -4542,11 +4425,15 @@
msgid "User public area"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:198 ../vhffs-panel/user/prefs.pl:253
-#: ../vhffs-panel/acl/view.pl:171 ../vhffs-panel/group/prefs.pl:104
+#: ../vhffs-panel/group/prefs.pl:132 ../vhffs-panel/group/prefs.pl:166
+msgid "User will be added as soon as possible"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:216 ../vhffs-panel/user/prefs.pl:261
+#: ../vhffs-panel/acl/view.pl:171 ../vhffs-panel/group/prefs.pl:192
#: ../vhffs-panel/admin/user/list.pl:79 ../vhffs-panel/admin/su.pl:78
#: ../vhffs-panel/public/user.pl:83 ../vhffs-panel/public/lastusers.pl:78
-#: ../vhffs-panel/lost.pl:54 ../vhffs-api/src/Vhffs/Panel/Commons.pm:54
+#: ../vhffs-panel/lost.pl:54 ../vhffs-api/src/Vhffs/Panel/Commons.pm:62
msgid "Username"
msgstr ""
@@ -4559,8 +4446,8 @@
msgid "Username:"
msgstr ""
-#: ../vhffs-panel/public/lastgroups.pl:75 ../vhffs-panel/public/group.pl:94
-#: ../vhffs-panel/public/allgroups.pl:82
+#: ../vhffs-panel/group/prefs.pl:210 ../vhffs-panel/public/lastgroups.pl:75
+#: ../vhffs-panel/public/group.pl:94 ../vhffs-panel/public/allgroups.pl:82
#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:109
msgid "Users"
msgstr ""
@@ -4573,7 +4460,7 @@
msgid "Users' administration"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:50
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:58
msgid "VHFFS Login"
msgstr ""
@@ -4591,10 +4478,10 @@
#: ../vhffs-panel/admin/user/edit.pl:140
#: ../vhffs-panel/admin/pgsql/edit.pl:116
-#: ../vhffs-panel/admin/group/edit.pl:116
+#: ../vhffs-panel/admin/group/edit.pl:121
#: ../vhffs-panel/admin/repository/edit.pl:116
#: ../vhffs-panel/admin/object/edit.pl:116
-#: ../vhffs-panel/admin/web/edit.pl:129 ../vhffs-panel/admin/mysql/edit.pl:117
+#: ../vhffs-panel/admin/web/edit.pl:112 ../vhffs-panel/admin/mysql/edit.pl:117
#: ../vhffs-panel/admin/cvs/edit.pl:125 ../vhffs-panel/admin/mail/edit.pl:157
#: ../vhffs-intl/extra_strings.pl:18
msgid "Validation refused"
@@ -4604,11 +4491,6 @@
msgid "Vhffs Statistics"
msgstr ""
-#: ../vhffs-listengine/src/archives/archives.pl:68
-#: ../vhffs-listengine/src/archives/archives.pl:175
-msgid "View"
-msgstr ""
-
#: ../vhffs-panel/public/group.pl:211
msgid "View archives"
msgstr ""
@@ -4640,10 +4522,10 @@
#: ../vhffs-panel/admin/user/edit.pl:141
#: ../vhffs-panel/admin/pgsql/edit.pl:117
-#: ../vhffs-panel/admin/group/edit.pl:117
+#: ../vhffs-panel/admin/group/edit.pl:122
#: ../vhffs-panel/admin/repository/edit.pl:117
#: ../vhffs-panel/admin/object/edit.pl:117
-#: ../vhffs-panel/admin/web/edit.pl:130 ../vhffs-panel/admin/mysql/edit.pl:118
+#: ../vhffs-panel/admin/web/edit.pl:113 ../vhffs-panel/admin/mysql/edit.pl:118
#: ../vhffs-panel/admin/cvs/edit.pl:126 ../vhffs-panel/admin/mail/edit.pl:158
#: ../vhffs-intl/extra_strings.pl:19
msgid "Waiting for creation"
@@ -4655,10 +4537,10 @@
#: ../vhffs-panel/admin/user/edit.pl:147
#: ../vhffs-panel/admin/pgsql/edit.pl:123
-#: ../vhffs-panel/admin/group/edit.pl:123
+#: ../vhffs-panel/admin/group/edit.pl:128
#: ../vhffs-panel/admin/repository/edit.pl:123
#: ../vhffs-panel/admin/object/edit.pl:123
-#: ../vhffs-panel/admin/web/edit.pl:136 ../vhffs-panel/admin/mysql/edit.pl:124
+#: ../vhffs-panel/admin/web/edit.pl:119 ../vhffs-panel/admin/mysql/edit.pl:124
#: ../vhffs-panel/admin/cvs/edit.pl:132 ../vhffs-panel/admin/mail/edit.pl:164
#: ../vhffs-intl/extra_strings.pl:25
msgid "Waiting for modification"
@@ -4667,21 +4549,47 @@
#: ../vhffs-panel/mailinglist/prefs.pl:180
#: ../vhffs-panel/admin/user/edit.pl:139
#: ../vhffs-panel/admin/pgsql/edit.pl:115
-#: ../vhffs-panel/admin/group/edit.pl:115
+#: ../vhffs-panel/admin/group/edit.pl:120
#: ../vhffs-panel/admin/repository/edit.pl:115
#: ../vhffs-panel/admin/object/edit.pl:115
-#: ../vhffs-panel/admin/web/edit.pl:128 ../vhffs-panel/admin/mysql/edit.pl:116
+#: ../vhffs-panel/admin/web/edit.pl:111 ../vhffs-panel/admin/mysql/edit.pl:116
#: ../vhffs-panel/admin/cvs/edit.pl:124 ../vhffs-panel/admin/mail/edit.pl:156
#: ../vhffs-intl/extra_strings.pl:17
msgid "Waiting for validation"
msgstr ""
+#: ../vhffs-panel/user/prefs.pl:119
+msgid "Wanted shell is not in the shell list"
+msgstr ""
+
#: ../vhffs-panel/alert.pl:67
msgid "Warn the admin team"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:347
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:474
#, perl-format
+msgid ""
+"We confirm that you REFUSED the subscription of:\n"
+" %s\n"
+"\n"
+"to the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:450
+#, perl-format
+msgid ""
+"We confirm that you accepted the subscription of:\n"
+" %s\n"
+"\n"
+"to the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:376
+#, perl-format
msgid "We offer you the possibility to have one email box on the domain %s"
msgstr ""
@@ -4702,10 +4610,6 @@
msgid "Web Area awaiting validation"
msgstr ""
-#: ../vhffs-panel/web/web_submit.pl:86
-msgid "Web area successfully created !"
-msgstr ""
-
#: ../vhffs-intl/extra_strings.pl:34
msgid "Webarea"
msgstr ""
@@ -4731,11 +4635,11 @@
msgid "Weight"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:493
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:474
msgid "Welcome"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:51
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:59
#, perl-format
msgid "Welcome on %s"
msgstr ""
@@ -4746,36 +4650,36 @@
#: ../vhffs-panel/admin/user/edit.pl:150
#: ../vhffs-panel/admin/pgsql/edit.pl:126
-#: ../vhffs-panel/admin/group/edit.pl:126
+#: ../vhffs-panel/admin/group/edit.pl:131
#: ../vhffs-panel/admin/repository/edit.pl:126
#: ../vhffs-panel/admin/object/edit.pl:126
-#: ../vhffs-panel/admin/web/edit.pl:139 ../vhffs-panel/admin/mysql/edit.pl:127
+#: ../vhffs-panel/admin/web/edit.pl:122 ../vhffs-panel/admin/mysql/edit.pl:127
#: ../vhffs-panel/admin/cvs/edit.pl:135 ../vhffs-panel/admin/mail/edit.pl:167
#: ../vhffs-intl/extra_strings.pl:28
msgid "Will be deleted"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:70
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:78
#, perl-format
msgid "Woah, %s users and %s groups already trust %s"
msgstr ""
#: ../vhffs-panel/svn/prefs.pl:119 ../vhffs-panel/dns/prefs.pl:276
#: ../vhffs-panel/admin/cvs/edit.pl:105 ../vhffs-panel/admin/cvs/show.pl:104
-#: ../vhffs-panel/web/prefs.pl:115 ../vhffs-panel/cvs/prefs.pl:94
+#: ../vhffs-panel/cvs/prefs.pl:94
msgid "Yes"
msgstr ""
#: ../vhffs-panel/mailinglist/prefs.pl:204 ../vhffs-panel/svn/prefs.pl:125
-#: ../vhffs-panel/user/prefs.pl:279 ../vhffs-panel/dns/prefs.pl:269
-#: ../vhffs-panel/pgsql/prefs.pl:111 ../vhffs-panel/group/prefs.pl:100
-#: ../vhffs-panel/repository/prefs.pl:105 ../vhffs-panel/web/prefs.pl:130
+#: ../vhffs-panel/user/prefs.pl:288 ../vhffs-panel/dns/prefs.pl:269
+#: ../vhffs-panel/pgsql/prefs.pl:111 ../vhffs-panel/group/prefs.pl:188
+#: ../vhffs-panel/repository/prefs.pl:106 ../vhffs-panel/web/prefs.pl:111
#: ../vhffs-panel/mysql/prefs.pl:118 ../vhffs-panel/cvs/prefs.pl:100
#: ../vhffs-panel/mail/prefs.pl:133
msgid "Yes I'm sure of what I do"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:222
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:224
msgid "You are not a subscriber on this list.\n"
msgstr ""
@@ -4829,7 +4733,7 @@
msgid "You are not granted to access this page"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:114
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:116
#, perl-format
msgid ""
"You asked to be subscribed to the following list:\n"
@@ -4839,7 +4743,7 @@
msgstr ""
#: ../vhffs-panel/svn/prefs.pl:131 ../vhffs-panel/dns/prefs.pl:261
-#: ../vhffs-panel/web/prefs.pl:123 ../vhffs-panel/mail/prefs.pl:139
+#: ../vhffs-panel/web/prefs.pl:104 ../vhffs-panel/mail/prefs.pl:139
msgid ""
"You can Manage rights on this service for each user in the VHFFS database. "
"Please read help before manage it."
@@ -4849,40 +4753,45 @@
msgid "You can also send a command list in the mail body.\n"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:80
+#: ../vhffs-panel/group/prefs.pl:108
+msgid "You cannot remove the owner of the group"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:85
msgid "You cannot subscribe to VHFFS"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:221
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:223
#, perl-format
msgid "You cannot unsubscribe from the list %s\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:206
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:208
msgid "You demand was refused\n"
msgstr ""
-#: ../vhffs-panel/mailinglist/submit.pl:100
-msgid "You don't own this domain"
+#: ../vhffs-panel/mailinglist/create.pl:79
+msgid "You do not own this domain !"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:177
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:179
#, perl-format
msgid ""
"You have been successfully removed from the following list:\n"
-"\n"
-"%s\n"
+" %s\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:250
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:252
#, perl-format
msgid "You have been successfully removed from the list %s.\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:142
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:158
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:144
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:160
#, perl-format
-msgid "You have been successfully subscribed to the list %s\n"
+msgid ""
+"You have been successfully subscribed to the following mailing list:\n"
+" %s\n"
msgstr ""
#: ../vhffs-panel/mailinglist/index.pl:53 ../vhffs-panel/svn/index.pl:53
@@ -4901,65 +4810,71 @@
msgid "You lost your password? You're a bad guy!"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:144
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:163
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:146
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:165
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:436
msgid "You may get some help on listengine by sending an email to\n"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:161
+#: ../vhffs-panel/user/prefs.pl:169
msgid "You must choose a method for your mail"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:80
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:98
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:82
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:100
msgid "You must confirm your request by sending a confirmation email\n"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:121
+#: ../vhffs-panel/subscribe.pl:139
msgid "You must declare a valid mail address"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:101
+#: ../vhffs-panel/subscribe.pl:119
msgid "You must declare your city"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:97
+#: ../vhffs-panel/subscribe.pl:115
msgid "You must declare your country"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:109
+#: ../vhffs-panel/subscribe.pl:127
msgid "You must declare your firstname"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:113
+#: ../vhffs-panel/subscribe.pl:131
msgid "You must declare your lastname"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:117
+#: ../vhffs-panel/subscribe.pl:135
msgid "You must declare your mail address"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:89
+#: ../vhffs-panel/subscribe.pl:107
msgid "You must declare your username"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:105
+#: ../vhffs-panel/subscribe.pl:123
msgid "You must declare your zipcode"
msgstr ""
-#: ../vhffs-panel/dns/create.pl:43 ../vhffs-panel/cvs/create.pl:73
+#: ../vhffs-panel/mailinglist/create.pl:74 ../vhffs-panel/svn/create.pl:73
+#: ../vhffs-panel/dns/create.pl:43 ../vhffs-panel/pgsql/create.pl:76
+#: ../vhffs-panel/group/prefs.pl:89 ../vhffs-panel/group/create.pl:68
+#: ../vhffs-panel/repository/create.pl:70 ../vhffs-panel/web/create.pl:73
+#: ../vhffs-panel/mysql/create.pl:76 ../vhffs-panel/cvs/create.pl:75
+#: ../vhffs-panel/mail/create.pl:66
msgid "You must enter a description"
msgstr ""
-#: ../vhffs-panel/mailinglist/create.pl:81
-msgid "You need to manage at least a domain to host a mailing-list"
+#: ../vhffs-panel/group/prefs.pl:124
+msgid "You must enter an username"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:161
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:163
msgid "You will receive an email with the decision of administrators.\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:339
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:340
msgid "You're are not allowed to browse panel"
msgstr ""
@@ -4975,13 +4890,12 @@
#: ../vhffs-panel/dns/prefs.pl:93 ../vhffs-panel/dns/prefs.pl:110
#: ../vhffs-panel/pgsql/delete.pl:77 ../vhffs-panel/pgsql/prefs.pl:78
#: ../vhffs-panel/pgsql/prefs_save.pl:85 ../vhffs-panel/group/delete.pl:70
-#: ../vhffs-panel/group/remove_user_from_group.pl:75
-#: ../vhffs-panel/group/prefs.pl:80 ../vhffs-panel/group/join_group.pl:74
-#: ../vhffs-panel/group/prefs_save.pl:78
-#: ../vhffs-panel/repository/delete.pl:82
+#: ../vhffs-panel/group/prefs.pl:74 ../vhffs-panel/group/prefs.pl:83
+#: ../vhffs-panel/group/prefs.pl:102 ../vhffs-panel/group/prefs.pl:117
+#: ../vhffs-panel/group/prefs.pl:158 ../vhffs-panel/repository/delete.pl:82
#: ../vhffs-panel/repository/prefs.pl:83
#: ../vhffs-panel/repository/prefs_save.pl:82
-#: ../vhffs-panel/admin/moderation_submit.pl:78
+#: ../vhffs-panel/admin/moderation_submit.pl:79
#: ../vhffs-panel/admin/moderation.pl:76
#: ../vhffs-panel/admin/broadcast_submit.pl:78
#: ../vhffs-panel/admin/broadcast_delete.pl:78
@@ -4989,7 +4903,7 @@
#: ../vhffs-panel/admin/mail/password_box.pl:96
#: ../vhffs-panel/admin/mail/change_forward.pl:96
#: ../vhffs-panel/web/delete.pl:83 ../vhffs-panel/web/prefs.pl:86
-#: ../vhffs-panel/web/prefs_save.pl:86 ../vhffs-panel/mysql/delete.pl:80
+#: ../vhffs-panel/web/prefs_save.pl:85 ../vhffs-panel/mysql/delete.pl:80
#: ../vhffs-panel/mysql/prefs.pl:84 ../vhffs-panel/mysql/prefs_save.pl:87
#: ../vhffs-panel/cvs/delete.pl:82 ../vhffs-panel/cvs/prefs.pl:80
#: ../vhffs-panel/cvs/prefs_save.pl:81 ../vhffs-panel/mail/delete.pl:86
@@ -5101,7 +5015,7 @@
msgid "Your Subversion repository request : %s"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:218
+#: ../vhffs-panel/subscribe.pl:237
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"
@@ -5123,18 +5037,18 @@
msgid "Your projects"
msgstr ""
-#: ../vhffs-panel/cvs/create.pl:71
+#: ../vhffs-panel/cvs/create.pl:73
msgid ""
"Your repository name is not correct. It must contains at least 3 caracters"
msgstr ""
-#: ../vhffs-panel/cvs/create.pl:69
+#: ../vhffs-panel/cvs/create.pl:71
msgid ""
"Your repository name is not correct. It must contains only caracter and "
"numbers"
msgstr ""
-#: ../vhffs-panel/admin/moderation_submit.pl:101 ../vhffs-irc/modobot.pl:393
+#: ../vhffs-irc/modobot.pl:393
msgid "Your request for a "
msgstr ""
@@ -5143,12 +5057,29 @@
msgid "Your request on %s"
msgstr ""
-#: ../vhffs-panel/admin/moderation_submit.pl:111
-msgid "Your request on VHFFS platform"
+#: ../vhffs-panel/admin/moderation_submit.pl:102
+#, perl-format
+msgid "Your request on %s platform"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:217
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:434
+#, perl-format
msgid ""
+"Your subscription was accepted to the following mailing list:\n"
+" %s\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:462
+#, perl-format
+msgid ""
+"Your subscription was refused to the following mailing list:\n"
+" %s\n"
+"\n"
+"Have a nice day.\n"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:236
+msgid ""
"Your username. It must contains only alphanumeric characters in lowercase, "
"its length must be between 3 and 12 chars"
msgstr ""
@@ -5158,16 +5089,16 @@
msgid "Your web hosting request for the servername : %s "
msgstr ""
-#: ../vhffs-panel/subscribe.pl:125
+#: ../vhffs-panel/subscribe.pl:143
msgid "Your zipcode is not correct! Please enter a correct zipcode"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:202 ../vhffs-panel/user/prefs.pl:257
+#: ../vhffs-panel/subscribe.pl:220 ../vhffs-panel/user/prefs.pl:265
#: ../vhffs-panel/admin/user/edit.pl:106 ../vhffs-panel/admin/user/show.pl:106
msgid "Zipcode"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:102
+#: ../vhffs-panel/user/prefs.pl:103
msgid "Zipcode is not correct !"
msgstr ""
@@ -5176,11 +5107,11 @@
msgid "[%s] You've been added to the list %s"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:347
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:349
msgid "cannot be removed from the list\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:313
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:315
msgid "cannot be removed.\n"
msgstr ""
@@ -5233,7 +5164,7 @@
msgstr ""
"<h2>My projects</h2><p>Manage your existing projects and create new ones.</p>"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:362
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:364
#, perl-format
msgid "in the moderation queue of the list %s"
msgstr ""
@@ -5242,35 +5173,35 @@
msgid "lang [fr|us|es]\t - set listengine language\n"
msgstr ""
-#: ../vhffs-listengine/src/listengine.pl:781
+#: ../vhffs-listengine/src/listengine.pl:926
#, perl-format
msgid "listengine - list of messages to moderate for %s"
msgstr ""
-#: ../vhffs-listengine/src/listengine.pl:664
-#: ../vhffs-listengine/src/listengine.pl:686
-#: ../vhffs-listengine/src/listengine.pl:697
+#: ../vhffs-listengine/src/listengine.pl:809
+#: ../vhffs-listengine/src/listengine.pl:831
+#: ../vhffs-listengine/src/listengine.pl:842
msgid "listengine help"
msgstr ""
-#: ../vhffs-listengine/src/listengine.pl:729
-#: ../vhffs-listengine/src/listengine.pl:740
-#: ../vhffs-listengine/src/listengine.pl:756
-#: ../vhffs-listengine/src/listengine.pl:768
-#: ../vhffs-listengine/src/listengine.pl:795
-#: ../vhffs-listengine/src/listengine.pl:806
+#: ../vhffs-listengine/src/listengine.pl:874
+#: ../vhffs-listengine/src/listengine.pl:885
+#: ../vhffs-listengine/src/listengine.pl:901
+#: ../vhffs-listengine/src/listengine.pl:913
+#: ../vhffs-listengine/src/listengine.pl:940
+#: ../vhffs-listengine/src/listengine.pl:951
msgid "listengine moderation"
msgstr ""
-#: ../vhffs-listengine/src/listengine.pl:714
+#: ../vhffs-listengine/src/listengine.pl:859
msgid "listengine result command"
msgstr ""
-#: ../vhffs-listengine/src/listengine.pl:833
+#: ../vhffs-listengine/src/listengine.pl:992
msgid "listengine: unknown command"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:199 ../vhffs-panel/user/prefs.pl:254
+#: ../vhffs-panel/subscribe.pl:217 ../vhffs-panel/user/prefs.pl:262
msgid "mail"
msgstr ""
@@ -5278,24 +5209,24 @@
msgid "ml adress here..."
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:56
-msgid "moderate XXXXX\t\t\t - moderate the message with message-id XXXXX\n"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:58
+msgid "moderate XXXXX\t\t\t - accept the message with message-id XXXXX\n"
msgstr ""
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:59
+msgid ""
+"moderate accept XXXXX\t\t\t - accept the message with message-id XXXXX\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:61
msgid "moderate list\t\t\t - give the message list for moderation\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:58
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:60
msgid ""
"moderate refused XXXXX\t\t\t - refuse the message with message-id XXXXX\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:57
-msgid ""
-"moderate validate XXXXX\t\t\t - moderate the message with message-id XXXXX\n"
-msgstr ""
-
#: ../vhffs-panel/admin/object/edit.pl:112
msgid "no date"
msgstr ""
@@ -5304,8 +5235,8 @@
msgid "no information about date"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:312
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:346
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:314
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:348
#, perl-format
msgid "present in the moderation queue for the list %s"
msgstr ""
@@ -5314,44 +5245,51 @@
msgid "subscribe\t - subscribe the shipper to the list\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:399
-#, perl-format
-msgid "to %s-request@%s with the following subject : \"moderate %s\" \n"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:56
+msgid ""
+"subscription accept XXXXX\t\t - accept the subscription with key XXXXX\n"
msgstr ""
-#: ../vhffs-listengine/src/archives/show_msg.pl:99
-#, perl-format
-msgid "unknown message-id t: %s"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:57
+msgid ""
+"subscription refuse XXXXX\t\t - refuse the subscription with key XXXXX\n"
msgstr ""
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:52
msgid "unsubscribe\t - unsubscribe from this list\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:64
-msgid "user info user@xxxxxxxxxx\t\t - show this user's informations\n"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:66
+msgid "user info user@xxxxxxxxxx\t\t - show user information\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:62
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:64
msgid "user right RIGHT user@xxxxxxxxxx\t - change right for this user\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:61
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:63
msgid ""
"user subscribe user@xxxxxxxxxx\t\t - register the user user@xxxxxxxxxx on "
"the list\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:60
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:62
msgid ""
"user unsubscribe user@xxxxxxxxxx\t - delete user user@xxxxxxxxxx from list\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:330
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:332
#, perl-format
msgid "was removed from the moderation queue from the list %s"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:363
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:365
msgid "was sent on the list.\n"
msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:399
+#, perl-format
+msgid ""
+"with the following subject :\n"
+" \"moderate %s\" \n"
+msgstr ""
Modified: trunk/vhffs-intl/src/es.po
===================================================================
--- trunk/vhffs-intl/src/es.po 2007-07-13 15:03:49 UTC (rev 724)
+++ trunk/vhffs-intl/src/es.po 2007-07-13 16:45:19 UTC (rev 725)
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: VHFFS 4.1 spanish\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-30 10:56+0200\n"
+"POT-Creation-Date: 2007-07-13 15:30+0200\n"
"PO-Revision-Date: ??????\n"
"Last-Translator: black coffee <coffeester@xxxxxxxxx>\n"
"Language-Team: black coffee <coffeester@xxxxxxxxx>\n"
@@ -15,33 +15,34 @@
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:63
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:65
msgid "\t\t\t\t RIGHT can be subscriber or admin\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:143
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:159
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:162
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:145
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:161
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:164
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:435
msgid "\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:417
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:418
#, perl-format
msgid ""
" %s-request@%s\n"
"with the following subject :\n"
-" \"accept %s\" \n"
+" \"subscription accept %s %s\" \n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:420
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:421
#, perl-format
msgid ""
" %s-request@%s\n"
"with the following subject :\n"
-" \"refuse %s\" \n"
+" \"subscription refuse %s %s\" \n"
msgstr ""
-#: ../vhffs-panel/admin/moderation_submit.pl:105 ../vhffs-irc/modobot.pl:397
+#: ../vhffs-irc/modobot.pl:397
#, fuzzy
msgid ""
" was accepted\n"
@@ -53,18 +54,19 @@
msgid "%s public area"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:365
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:593
#, perl-format
msgid "%s's Panel"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:145
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:164
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:147
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:166
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:437
#, perl-format
msgid "%s-request@%s with subject \"help\"\n"
msgstr ""
-#: ../vhffs-panel/web/create.pl:69
+#: ../vhffs-panel/web/create.pl:84
#, fuzzy
msgid "<new site>."
msgstr "mi_nuevo_sitio"
@@ -74,7 +76,7 @@
msgid "@ represents the origin (%s)"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:310
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:297
msgid ""
"A CNAME, A or AAAA record with the same name already exists for this domain"
msgstr ""
@@ -87,18 +89,20 @@
msgid "A Record updated"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:394
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:396
#, perl-format
-msgid "A mail to moderate is on the list %s.\n"
+msgid ""
+"A mail to moderate is on the following mailing list:\n"
+" %s\n"
+"\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:412
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:413
#, perl-format
msgid ""
"A new person wants to subscribe to the following mailing list:\n"
+" %s\n"
"\n"
-"%s\n"
-"\n"
msgstr ""
#: ../vhffs-panel/dns/prefs.pl:151
@@ -151,7 +155,7 @@
msgid "Access denied"
msgstr ""
-#: ../vhffs-panel/logout.pl:60 ../vhffs-api/src/Vhffs/Panel/Commons.pm:57
+#: ../vhffs-panel/logout.pl:60 ../vhffs-api/src/Vhffs/Panel/Commons.pm:65
msgid "Access to panel"
msgstr ""
@@ -163,22 +167,26 @@
msgid "Accounts"
msgstr "Cuentas"
-#: ../vhffs-panel/user/prefs.pl:346
+#: ../vhffs-panel/user/prefs.pl:375
#, perl-format
msgid "Activate %s@%s email"
msgstr ""
#: ../vhffs-panel/admin/user/edit.pl:143
#: ../vhffs-panel/admin/pgsql/edit.pl:119
-#: ../vhffs-panel/admin/group/edit.pl:119
+#: ../vhffs-panel/admin/group/edit.pl:124
#: ../vhffs-panel/admin/repository/edit.pl:119
#: ../vhffs-panel/admin/object/edit.pl:119
-#: ../vhffs-panel/admin/web/edit.pl:132 ../vhffs-panel/admin/mysql/edit.pl:120
+#: ../vhffs-panel/admin/web/edit.pl:115 ../vhffs-panel/admin/mysql/edit.pl:120
#: ../vhffs-panel/admin/cvs/edit.pl:128 ../vhffs-panel/admin/mail/edit.pl:160
#: ../vhffs-intl/extra_strings.pl:22
msgid "Activated"
msgstr "Activado"
+#: ../vhffs-panel/group/prefs.pl:148 ../vhffs-panel/group/prefs.pl:194
+msgid "Add"
+msgstr ""
+
#: ../vhffs-panel/mailinglist/prefs.pl:156 ../vhffs-panel/dns/prefs.pl:280
#, fuzzy
msgid "Add !"
@@ -219,7 +227,7 @@
msgid "Add a popbox to this domain"
msgstr "Aadir un buzn pop a esto dominio"
-#: ../vhffs-panel/group/prefs.pl:105
+#: ../vhffs-panel/group/prefs.pl:193
#, fuzzy
msgid "Add a user in this group"
msgstr "Aadir un usuario en esto grupo"
@@ -237,16 +245,7 @@
msgid "Add an account"
msgstr "Aadir un cuenta"
-#: ../vhffs-panel/group/prefs.pl:106
-#, fuzzy
-msgid "Add this user !"
-msgstr "Aadir esto usuario "
-
-#: ../vhffs-panel/group/join_group.pl:110
-msgid "Add this user to this group"
-msgstr "Aadir esto usuario en el grupo"
-
-#: ../vhffs-panel/subscribe.pl:205 ../vhffs-panel/user/prefs.pl:259
+#: ../vhffs-panel/subscribe.pl:223 ../vhffs-panel/user/prefs.pl:267
#: ../vhffs-panel/admin/user/edit.pl:104 ../vhffs-panel/admin/user/show.pl:104
msgid "Address"
msgstr "Direccin"
@@ -256,7 +255,7 @@
msgid "Address (Servername)"
msgstr "Direccin (Nombre del servidor)"
-#: ../vhffs-panel/user/prefs.pl:108
+#: ../vhffs-panel/user/prefs.pl:109
msgid "Address is not correct !"
msgstr ""
@@ -276,7 +275,7 @@
msgstr "Admin Repositorio CVS"
#: ../vhffs-panel/svn/prefs.pl:130 ../vhffs-panel/dns/prefs.pl:260
-#: ../vhffs-panel/web/prefs.pl:122 ../vhffs-panel/mail/prefs.pl:138
+#: ../vhffs-panel/web/prefs.pl:103 ../vhffs-panel/mail/prefs.pl:138
#, fuzzy
msgid "Admin Rights on this object (ACL)"
msgstr "Derechos Admin sobre esto objecto (ACL)"
@@ -285,12 +284,12 @@
msgid "Admin Subversion Repository"
msgstr "Admin repositorio Subversion"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:420
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:401
msgid "Admin account"
msgstr ""
-#: ../vhffs-panel/admin/index.pl:53 ../vhffs-api/src/Vhffs/Panel/Main.pm:421
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:424
+#: ../vhffs-panel/admin/index.pl:53 ../vhffs-api/src/Vhffs/Panel/Main.pm:402
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:405
msgid "Administration"
msgstr ""
@@ -302,24 +301,15 @@
msgid "Admins only"
msgstr ""
-#: ../vhffs-panel/web/create.pl:74
+#: ../vhffs-panel/web/create.pl:91
#, fuzzy
msgid "Adress (ServerName directive)"
msgstr "Direccin (Server Name directive)"
-#: ../vhffs-panel/admin/web/edit.pl:97 ../vhffs-panel/admin/web/show.pl:96
-msgid "Alert Limit"
-msgstr ""
-
#: ../vhffs-panel/alert_submit.pl:73
msgid "Alert on Vhffs platform"
msgstr "Alarma sobre la plataforma Vhffs"
-#: ../vhffs-panel/admin/web/edit.pl:98 ../vhffs-panel/admin/web/show.pl:97
-#, fuzzy
-msgid "Alert state"
-msgstr "Estadsticas usuarios"
-
#: ../vhffs-panel/public/allwebsites.pl:73
#: ../vhffs-panel/public/allgroups.pl:69
msgid "All"
@@ -384,7 +374,7 @@
msgid "All objects List"
msgstr "Todas las listas de objectos"
-#: ../vhffs-panel/group/prefs.pl:126
+#: ../vhffs-panel/group/prefs.pl:211
msgid "All users in this group"
msgstr "Todos los usuarios en esto grupo"
@@ -399,53 +389,52 @@
msgid "Already exists for this domain or bad parameters. Check your domain"
msgstr "Ya existe en esto dominio %s"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:262
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:249
msgid "An MX record with the same name already exists for this domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:285
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:272
msgid "An NS record with the same name already exists for this domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:189
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:486
#, perl-format
msgid ""
+"An error occured during your approval of subscription of:\n"
+" %s\n"
+"into the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:191
+#, perl-format
+msgid ""
"An error occured during your subscription to the following list:\n"
+" %s\n"
"\n"
-"%s\n"
-"\n"
msgstr ""
-#: ../vhffs-panel/mailinglist/submit.pl:114
+#: ../vhffs-panel/user/prefs.pl:177
#, fuzzy
-msgid "An error occured while adding an ACL for the group"
-msgstr "Un error lleg durante el aadido ACL en esto grupo"
-
-#: ../vhffs-panel/user/prefs.pl:169
-#, fuzzy
msgid "An error occured while adding the box"
msgstr "Un error lleg durante el aadido del buzn"
-#: ../vhffs-panel/user/prefs.pl:171
+#: ../vhffs-panel/user/prefs.pl:179
#, fuzzy
msgid "An error occured while adding the box (anti-spam adding)"
msgstr "Un error lleg durante el aadido del buzn"
-#: ../vhffs-panel/user/prefs.pl:173
+#: ../vhffs-panel/user/prefs.pl:181
#, fuzzy
msgid "An error occured while adding the box (anti-virus adding)"
msgstr "Un error lleg durante el aadido del buzn"
-#: ../vhffs-panel/user/prefs.pl:213
+#: ../vhffs-panel/user/prefs.pl:221
#, fuzzy
msgid "An error occured while adding the forwarding"
msgstr "Un error lleg durante el aadido del reenviar"
-#: ../vhffs-panel/mailinglist/submit.pl:112
-#, fuzzy
-msgid "An error occured while adding yourself to the ACL"
-msgstr "Un error lleg durante el aadido ACL en esto grupo"
-
#: ../vhffs-panel/user/delete.pl:83
#, fuzzy
msgid "An error occured while applying changes. This user will NOT be deleted"
@@ -461,13 +450,8 @@
"Un error lleg durante la aplicacin de los cambios. Esta Zona Web NO ser "
"destruida"
-#: ../vhffs-panel/mailinglist/submit.pl:110
+#: ../vhffs-panel/mail/create.pl:68
#, fuzzy
-msgid "An error occured while creating the list"
-msgstr "Un error lleg durante la creacin de la lista"
-
-#: ../vhffs-panel/mail/submit.pl:86
-#, fuzzy
msgid "An error occured while creating the mail area"
msgstr "Un error lleg durante la creacin de la zona mail"
@@ -476,16 +460,12 @@
msgid "An error occured while creating the message in the database"
msgstr "Un error lleg durante la creacin del mensaje en la base de datos"
-#: ../vhffs-panel/svn/svn_submit.pl:80 ../vhffs-panel/mysql/submit.pl:103
-#, fuzzy
-msgid "An error occured while creating the object"
-msgstr "Un error lleg durante la creacin del objecto %s %s"
+#: ../vhffs-panel/repository/create.pl:75
+msgid ""
+"An error occured while creating the object. Check that this group doesn't "
+"already have a download repository"
+msgstr ""
-#: ../vhffs-panel/pgsql/pgsql_submit.pl:99
-#, fuzzy, perl-format
-msgid "An error occured while creating the object %s %s"
-msgstr "Un error lleg durante la creacin del objecto %s %s"
-
#: ../vhffs-panel/dns/create.pl:50
#, fuzzy
msgid ""
@@ -495,12 +475,15 @@
"Un error lleg durante la creacin del objecto. El dominio no es correcto o ya "
"existe en la basede datos Vhffs."
-#: ../vhffs-panel/repository/repository_submit.pl:93
-#: ../vhffs-panel/cvs/create.pl:81
+#: ../vhffs-panel/mailinglist/create.pl:81 ../vhffs-panel/cvs/create.pl:83
#, fuzzy
msgid "An error occured while creating the object.It probably already exists"
msgstr "Un error lleg durante la creacin del objecto %s %s"
+#: ../vhffs-panel/svn/create.pl:78
+msgid "An error occured while creating the svn repository"
+msgstr ""
+
#: ../vhffs-panel/cvs/delete.pl:99
#, fuzzy
msgid "An error occured while deleting the CVS repository"
@@ -531,13 +514,8 @@
msgid "An error occured while modifying the rights"
msgstr "Un error lleg durante el commit de los cambios"
-#: ../vhffs-panel/svn/svn_submit.pl:78
+#: ../vhffs-panel/user/prefs.pl:228
#, fuzzy
-msgid "An error occured while setting up the ACL"
-msgstr "Un error lleg durante el aadido ACL"
-
-#: ../vhffs-panel/user/prefs.pl:220
-#, fuzzy
msgid "An error occured while the forwarding"
msgstr "Un error lleg durante el aadido del reenviar"
@@ -551,7 +529,7 @@
msgid "An error occured while updating"
msgstr "Un error lleg durante la actualisacin usuario"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:280
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:282
#, perl-format
msgid ""
"An error occured while updating language for the following address: %s.\n"
@@ -582,44 +560,20 @@
msgid "An error occured while updating the object"
msgstr "Un error lleg durante la actualisacin del objecto"
-#: ../vhffs-panel/group/delete.pl:89 ../vhffs-panel/group/prefs_save.pl:91
+#: ../vhffs-panel/group/delete.pl:89 ../vhffs-panel/group/prefs.pl:93
#, fuzzy
msgid "An error occured while updating the project"
msgstr "Un error lleg durante la actualisacin proyecto"
-#: ../vhffs-panel/user/prefs.pl:140
+#: ../vhffs-panel/user/prefs.pl:148
#, fuzzy
msgid "An error occured while updating the user account"
msgstr "Un error lleg durante la actualisacin usuario"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:445
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:510
msgid "April"
msgstr ""
-#: ../vhffs-listengine/src/archives/archives.pl:147
-#: ../vhffs-listengine/src/archives/show_msg.pl:93
-#, fuzzy
-msgid "Archive are not open for this list"
-msgstr "Esto miembro ya existe sobre esta lista"
-
-#: ../vhffs-listengine/src/archives/archives.pl:160
-#: ../vhffs-listengine/src/archives/archives.pl:197
-#: ../vhffs-listengine/src/archives/archives.pl:219
-#: ../vhffs-listengine/src/archives/archives.pl:243
-#, fuzzy
-msgid "Archives"
-msgstr "Abrir los archivos"
-
-#: ../vhffs-listengine/src/archives/archives.pl:231
-#, fuzzy
-msgid "Archives for "
-msgstr "Buscar un resultado por"
-
-#: ../vhffs-listengine/src/archives/archives.pl:255
-#, fuzzy
-msgid "Archives for year"
-msgstr "Bsqueda sobre un usuario"
-
#: ../vhffs-panel/svn/prefs.pl:124
#, fuzzy
msgid "Are you SURE you want DELETE this subversion repository ?"
@@ -640,7 +594,7 @@
msgid "Are you SURE you want DELETE this PostgreSQL database ?"
msgstr "Es SEGURO(A) que quiere DESTRUIR esta base de datos PostgreSQL?"
-#: ../vhffs-panel/web/prefs.pl:129
+#: ../vhffs-panel/web/prefs.pl:110
#, fuzzy
msgid "Are you SURE you want DELETE this Web Area ?"
msgstr "Es SEGURO(A) que quiere DESTRUIR esta zona web?"
@@ -655,7 +609,7 @@
msgid "Are you SURE you want DELETE this domain ?"
msgstr "Es SEGURO(A) que quiere DESTRUIR esta zona mail?"
-#: ../vhffs-panel/repository/prefs.pl:104
+#: ../vhffs-panel/repository/prefs.pl:105
#, fuzzy
msgid "Are you SURE you want DELETE this download repository ?"
msgstr "Es SEGURO(A) que quiere DESTRUIR este Repositorio CVS?"
@@ -664,17 +618,17 @@
msgid "Are you SURE you want DELETE this mailing list ?"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:99
+#: ../vhffs-panel/group/prefs.pl:187
#, fuzzy
msgid "Are you SURE you want DELETE this project ?"
msgstr "Es SEGURO(A) que quiere DESTRUIR este proyecto?"
-#: ../vhffs-panel/user/prefs.pl:278
+#: ../vhffs-panel/user/prefs.pl:287
#, fuzzy
msgid "Are you SURE you want DELETE this user?"
msgstr "Es SEGURO(A) que quiere DESTRUIR esto usuario?"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:461
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:526
msgid "August"
msgstr ""
@@ -693,44 +647,15 @@
msgid "Awaiting sending"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:169 ../vhffs-panel/subscribe.pl:207
+#: ../vhffs-panel/subscribe.pl:187 ../vhffs-panel/subscribe.pl:225
msgid "Back to Login"
msgstr "Volver al Login"
-#: ../vhffs-listengine/src/archives/archives.pl:191
-#, perl-format
-msgid "Back to archives by month ( %s )"
-msgstr ""
-
-#: ../vhffs-listengine/src/archives/archives.pl:220
-#, perl-format
-msgid "Back to archives by year ( %s )"
-msgstr ""
-
-#: ../vhffs-listengine/src/archives/archives.pl:161
-msgid "Back to list by day"
-msgstr ""
-
#: ../vhffs-panel/lost.pl:56
#, fuzzy
msgid "Back to login page"
msgstr "Volver al Login"
-#: ../vhffs-listengine/src/archives/show_msg.pl:71
-#, fuzzy
-msgid "Bad listname"
-msgstr "Nombre de pila"
-
-#: ../vhffs-listengine/src/archives/archives.pl:131
-#, perl-format
-msgid "Bad listname %s"
-msgstr ""
-
-#: ../vhffs-listengine/src/archives/show_msg.pl:87
-#, fuzzy
-msgid "Bad message-id"
-msgstr "Su mensaje"
-
#: ../vhffs-panel/mysql/prefs.pl:98
msgid ""
"Be careful ! If you click on modify, VHFFS will stop the database and set a "
@@ -743,10 +668,10 @@
"our servers."
msgstr ""
-#: ../vhffs-panel/web/create.pl:75
+#: ../vhffs-panel/web/create.pl:92
msgid ""
"Be careful, if you want create www.domain.tld, you should create a webspace "
-"with servername as domain.tld. VHFFS redirect all request from www.domain."
+"with domain.tld as servername. VHFFS redirect all request from www.domain."
"tld to domain.tld"
msgstr ""
@@ -808,24 +733,20 @@
msgid "CGI ERROR!"
msgstr "Error CGI!"
-#: ../vhffs-panel/mailinglist/submit.pl:96 ../vhffs-panel/svn/prefs.pl:82
-#: ../vhffs-panel/svn/create.pl:64 ../vhffs-panel/acl/view.pl:84
+#: ../vhffs-panel/svn/prefs.pl:82 ../vhffs-panel/acl/view.pl:84
#: ../vhffs-panel/acl/view.pl:99 ../vhffs-panel/acl/view.pl:114
-#: ../vhffs-panel/group/remove_user_from_group.pl:71
-#: ../vhffs-panel/group/join_group.pl:70 ../vhffs-panel/mail/submit.pl:74
msgid "CGI Error"
msgstr "Error CGI"
-#: ../vhffs-panel/svn/delete.pl:73 ../vhffs-panel/svn/svn_submit.pl:71
-#: ../vhffs-panel/history.pl:84 ../vhffs-panel/pgsql/delete.pl:81
-#: ../vhffs-panel/group/prefs_save.pl:74 ../vhffs-panel/repository/prefs.pl:72
+#: ../vhffs-panel/svn/delete.pl:73 ../vhffs-panel/history.pl:84
+#: ../vhffs-panel/pgsql/delete.pl:81 ../vhffs-panel/repository/prefs.pl:72
#: ../vhffs-panel/admin/mailing/mailing_submit.pl:78
#: ../vhffs-panel/admin/broadcast_submit.pl:83
#: ../vhffs-panel/admin/broadcast_delete.pl:83
#: ../vhffs-panel/admin/group/edit_submit.pl:95
#: ../vhffs-panel/admin/broadcast_view.pl:78 ../vhffs-panel/mysql/delete.pl:76
-#: ../vhffs-panel/mysql/prefs.pl:71 ../vhffs-panel/mysql/submit.pl:75
-#: ../vhffs-panel/mysql/prefs_save.pl:79 ../vhffs-panel/cvs/prefs.pl:72
+#: ../vhffs-panel/mysql/prefs.pl:71 ../vhffs-panel/mysql/prefs_save.pl:79
+#: ../vhffs-panel/cvs/prefs.pl:72
#, fuzzy
msgid "CGI Error !"
msgstr "Error CGI!"
@@ -843,18 +764,20 @@
#: ../vhffs-panel/mailinglist/save_options.pl:81
#: ../vhffs-panel/mailinglist/change_right.pl:81
#: ../vhffs-panel/mailinglist/change_right.pl:101
-#: ../vhffs-panel/mailinglist/del_member.pl:79 ../vhffs-panel/user/prefs.pl:85
+#: ../vhffs-panel/mailinglist/del_member.pl:79 ../vhffs-panel/user/prefs.pl:86
#: ../vhffs-panel/dns/delete.pl:79 ../vhffs-panel/dns/prefs.pl:79
-#: ../vhffs-panel/pgsql/pgsql_submit.pl:73 ../vhffs-panel/web/web_submit.pl:72
msgid "CGI Error!"
msgstr "Error CGI!"
-#: ../vhffs-panel/group/project_submit.pl:70
-#, fuzzy
-msgid "CGI Errror!"
-msgstr "Error CGI!"
+#: ../vhffs-panel/mailinglist/create.pl:72 ../vhffs-panel/svn/create.pl:69
+#: ../vhffs-panel/pgsql/create.pl:74 ../vhffs-panel/group/prefs.pl:87
+#: ../vhffs-panel/group/prefs.pl:106 ../vhffs-panel/group/prefs.pl:121
+#: ../vhffs-panel/group/prefs.pl:162 ../vhffs-panel/repository/create.pl:68
+#: ../vhffs-panel/web/create.pl:69 ../vhffs-panel/mysql/create.pl:74
+msgid "CGI error"
+msgstr ""
-#: ../vhffs-panel/admin/moderation_submit.pl:90
+#: ../vhffs-panel/admin/moderation_submit.pl:91
#, fuzzy
msgid "CGI problem"
msgstr "Error CGI"
@@ -947,7 +870,7 @@
msgid "Can't delete box %s"
msgstr "Es imposible destruir el buzn %s , %s"
-#: ../vhffs-panel/admin/web/edit_submit.pl:100
+#: ../vhffs-panel/admin/web/edit_submit.pl:97
#, fuzzy
msgid "Can't modify object ..."
msgstr "Es imposible modificar el objecto"
@@ -959,13 +882,8 @@
msgid "Can't modify object..."
msgstr "Es imposible modificar el objecto"
-#: ../vhffs-panel/group/join_group.pl:82
+#: ../vhffs-panel/subscribe.pl:180
#, fuzzy
-msgid "Cannot add this user in this group"
-msgstr "Es imposible aadir esto usuario al grupo"
-
-#: ../vhffs-panel/subscribe.pl:162
-#, fuzzy
msgid "Cannot apply changes to the user"
msgstr "Es imposible aplicar los cambios por el usuario"
@@ -978,7 +896,7 @@
msgstr ""
"Es imposible de commitar los cambios sobre esto objecto, NO ser destruido"
-#: ../vhffs-panel/subscribe.pl:152
+#: ../vhffs-panel/subscribe.pl:170
#, fuzzy
msgid "Cannot create user, the username you entered already exists"
msgstr "No se ha podido crear el usuario, este identificador ya existe."
@@ -1050,11 +968,6 @@
msgid "Cannot get statistics"
msgstr "Es imposible obtener estadsticas"
-#: ../vhffs-panel/group/remove_user_from_group.pl:83
-#, fuzzy
-msgid "Cannot remove the owner from a group"
-msgstr "Destruir esto usuario desde esto grupo"
-
#: ../vhffs-panel/cvs/delete.pl:78 ../vhffs-panel/cvs/prefs_save.pl:77
#, fuzzy
msgid "Cannot retrieve informations about this CVS repository"
@@ -1104,10 +1017,6 @@
msgid "Catchall mail"
msgstr "Catchall"
-#: ../vhffs-listengine/src/archives/show_msg.pl:108
-msgid "Cc: "
-msgstr ""
-
#: ../vhffs-panel/mail/prefs.pl:211
msgid "Change Forward"
msgstr "Cambiar el reenviar"
@@ -1127,25 +1036,15 @@
msgid "Change forward"
msgstr "Cambiar el reenviar"
-#: ../vhffs-listengine/src/archives/archives.pl:119
-#, fuzzy
-msgid "Change language"
-msgstr "Lenguaje"
-
#: ../vhffs-panel/mailinglist/prefs.pl:168
#, fuzzy
msgid "Change rights\n"
msgstr "cambiar los derechos"
-#: ../vhffs-panel/user/prefs.pl:188
+#: ../vhffs-panel/user/prefs.pl:196
msgid "Change spam protection status for your account\n"
msgstr ""
-#: ../vhffs-listengine/src/archives/archives.pl:118
-#, fuzzy
-msgid "Change theme"
-msgstr "Administrar los miembros"
-
#: ../vhffs-panel/admin/web/list.pl:91
#, fuzzy
msgid "Change this Website"
@@ -1156,7 +1055,7 @@
msgid "Change user-id"
msgstr "Cambiar el cdigo de acceso"
-#: ../vhffs-panel/user/prefs.pl:199
+#: ../vhffs-panel/user/prefs.pl:207
msgid "Changed anti-virus status for your account\n"
msgstr ""
@@ -1171,19 +1070,19 @@
msgid "Cheers,"
msgstr ""
-#: ../vhffs-panel/admin/moderation_submit.pl:106 ../vhffs-irc/modobot.pl:398
+#: ../vhffs-irc/modobot.pl:398
#, fuzzy
msgid ""
"Cheers,\n"
"The Moderator and Admin team\n"
msgstr "El moderador y la equipa admin"
-#: ../vhffs-panel/subscribe.pl:203 ../vhffs-panel/user/prefs.pl:258
+#: ../vhffs-panel/subscribe.pl:221 ../vhffs-panel/user/prefs.pl:266
#: ../vhffs-panel/admin/user/edit.pl:105 ../vhffs-panel/admin/user/show.pl:105
msgid "City"
msgstr "Ciudad"
-#: ../vhffs-panel/user/prefs.pl:96
+#: ../vhffs-panel/user/prefs.pl:97
msgid "City is not correct !"
msgstr ""
@@ -1191,43 +1090,39 @@
msgid "Closed"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:213
+#: ../vhffs-panel/subscribe.pl:232
#, fuzzy
msgid "Code confirmation"
msgstr "Configuracin del proyecto"
-#: ../vhffs-panel/subscribe.pl:85
+#: ../vhffs-panel/subscribe.pl:103
#, fuzzy
msgid "Codes do not match"
msgstr "Los cdigos de acceso no corresponden"
-#: ../vhffs-panel/user/prefs.pl:262
+#: ../vhffs-panel/user/prefs.pl:270
#, fuzzy
msgid "Confirm Password"
msgstr "Cdigo de acceso"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:236
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:238
msgid "Confirmation code was wrong.\n"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:215
+#: ../vhffs-panel/subscribe.pl:234
msgid "Confirmation code, contact administrator team if you can't read it"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:204 ../vhffs-panel/user/prefs.pl:260
+#: ../vhffs-panel/subscribe.pl:222 ../vhffs-panel/user/prefs.pl:268
#: ../vhffs-panel/admin/user/edit.pl:107 ../vhffs-panel/admin/user/show.pl:107
msgid "Country"
msgstr "Pas"
-#: ../vhffs-panel/user/prefs.pl:105
+#: ../vhffs-panel/user/prefs.pl:106
msgid "Country is not correct !"
msgstr ""
-#: ../vhffs-panel/admin/web/edit.pl:96 ../vhffs-panel/admin/web/show.pl:95
-msgid "Crawl"
-msgstr "Crawl"
-
-#: ../vhffs-panel/cvs/create.pl:89
+#: ../vhffs-panel/cvs/create.pl:95
msgid "Create a CVS Repository"
msgstr "Crear un Repositorio CVS"
@@ -1235,37 +1130,37 @@
msgid "Create a DNS"
msgstr ""
-#: ../vhffs-panel/repository/create.pl:64
+#: ../vhffs-panel/repository/create.pl:84
#, fuzzy
msgid "Create a Download Repository"
msgstr "Crear un Repositorio CVS"
-#: ../vhffs-panel/mysql/create.pl:64
+#: ../vhffs-panel/mysql/create.pl:95
msgid "Create a MySQL database"
msgstr "Crear una base de datos MySQL"
-#: ../vhffs-panel/pgsql/create.pl:64
-msgid "Create a Postgres database"
-msgstr "Crear una base de datos Postgres"
+#: ../vhffs-panel/pgsql/create.pl:95
+msgid "Create a PostgreSQL database"
+msgstr ""
-#: ../vhffs-panel/group/create.pl:61
+#: ../vhffs-panel/group/create.pl:80
#, fuzzy
msgid "Create a Project"
msgstr "Crear un proyecto"
-#: ../vhffs-panel/svn/create.pl:70
+#: ../vhffs-panel/svn/create.pl:88
msgid "Create a Subversion Repository"
msgstr "Crear un repositorio Subversion"
-#: ../vhffs-panel/mail/create.pl:64
+#: ../vhffs-panel/mail/create.pl:80
msgid "Create a mail space"
msgstr "Crear un espacio mail"
-#: ../vhffs-panel/mailinglist/create.pl:87
+#: ../vhffs-panel/mailinglist/create.pl:96
msgid "Create a new mailing list"
msgstr "Crear una nueva mailing-list"
-#: ../vhffs-panel/web/create.pl:73
+#: ../vhffs-panel/web/create.pl:90
msgid "Create a web space"
msgstr "Crear un espacio web"
@@ -1275,10 +1170,10 @@
#: ../vhffs-panel/admin/user/edit.pl:144
#: ../vhffs-panel/admin/pgsql/edit.pl:120
-#: ../vhffs-panel/admin/group/edit.pl:120
+#: ../vhffs-panel/admin/group/edit.pl:125
#: ../vhffs-panel/admin/repository/edit.pl:120
#: ../vhffs-panel/admin/object/edit.pl:120
-#: ../vhffs-panel/admin/web/edit.pl:133 ../vhffs-panel/admin/mysql/edit.pl:121
+#: ../vhffs-panel/admin/web/edit.pl:116 ../vhffs-panel/admin/mysql/edit.pl:121
#: ../vhffs-panel/admin/cvs/edit.pl:129 ../vhffs-panel/admin/mail/edit.pl:161
#: ../vhffs-intl/extra_strings.pl:21
msgid "Created"
@@ -1286,10 +1181,10 @@
#: ../vhffs-panel/admin/user/edit.pl:142
#: ../vhffs-panel/admin/pgsql/edit.pl:118
-#: ../vhffs-panel/admin/group/edit.pl:118
+#: ../vhffs-panel/admin/group/edit.pl:123
#: ../vhffs-panel/admin/repository/edit.pl:118
#: ../vhffs-panel/admin/object/edit.pl:118
-#: ../vhffs-panel/admin/web/edit.pl:131 ../vhffs-panel/admin/mysql/edit.pl:119
+#: ../vhffs-panel/admin/web/edit.pl:114 ../vhffs-panel/admin/mysql/edit.pl:119
#: ../vhffs-panel/admin/cvs/edit.pl:127 ../vhffs-panel/admin/mail/edit.pl:159
#, fuzzy
msgid "Creating error"
@@ -1299,11 +1194,11 @@
msgid "Creation error"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:288 ../vhffs-panel/group/prefs.pl:111
+#: ../vhffs-panel/user/prefs.pl:297 ../vhffs-panel/group/prefs.pl:201
msgid "Current avatar"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:447
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:428
msgid "Current group:"
msgstr ""
@@ -1348,40 +1243,23 @@
msgid "Database Name"
msgstr "Nombre de la base de datos"
-#: ../vhffs-panel/ajax/help.pl:46 ../vhffs-api/src/Vhffs/Panel/DNS.pm:173
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:209
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:221
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:239
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:251
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:263
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:275
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:286
+#: ../vhffs-panel/ajax/help.pl:46 ../vhffs-api/src/Vhffs/Panel/DNS.pm:160
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:196
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:208
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:226
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:238
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:250
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:262
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:273
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:285
#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:298
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:311
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:327
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:342
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:354
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:366
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:314
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:329
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:341
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:353
msgid "Database error"
msgstr ""
-#: ../vhffs-panel/mysql/submit.pl:83
-#, fuzzy
-msgid "Database name must contain at least 3 caracters"
-msgstr "El nombre de la base de datos debe contener por lo menos 3 caracteres."
-
-#: ../vhffs-panel/pgsql/pgsql_submit.pl:85
-#, fuzzy
-msgid "Database name must contain between 3 and 16 characters"
-msgstr "El nombre de la base de datos debe contener por lo menos 3 caracteres."
-
-#: ../vhffs-panel/pgsql/pgsql_submit.pl:77
-#, fuzzy
-msgid "Database password must contains at least 3 characters"
-msgstr ""
-"El cdigo de acceso de la base de datos debe contener por lo menos 3 "
-"caracteres"
-
#: ../vhffs-panel/pgsql/delete.pl:85
#, fuzzy
msgid "Database will NOT be deleted !"
@@ -1402,23 +1280,23 @@
msgid "Date of creation"
msgstr "Creacin en espera"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:477
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:542
msgid "December"
msgstr ""
#: ../vhffs-panel/mailinglist/prefs.pl:206 ../vhffs-panel/svn/prefs.pl:127
-#: ../vhffs-panel/user/prefs.pl:281 ../vhffs-panel/dns/prefs.pl:271
+#: ../vhffs-panel/user/prefs.pl:290 ../vhffs-panel/dns/prefs.pl:271
#: ../vhffs-panel/dns/prefs.pl:328 ../vhffs-panel/dns/prefs.pl:340
#: ../vhffs-panel/dns/prefs.pl:353 ../vhffs-panel/dns/prefs.pl:365
#: ../vhffs-panel/dns/prefs.pl:381 ../vhffs-panel/dns/prefs.pl:392
#: ../vhffs-panel/dns/prefs.pl:408 ../vhffs-panel/pgsql/prefs.pl:113
-#: ../vhffs-panel/group/prefs.pl:102 ../vhffs-panel/repository/prefs.pl:107
-#: ../vhffs-panel/web/prefs.pl:132 ../vhffs-panel/mysql/prefs.pl:120
+#: ../vhffs-panel/group/prefs.pl:190 ../vhffs-panel/repository/prefs.pl:108
+#: ../vhffs-panel/web/prefs.pl:113 ../vhffs-panel/mysql/prefs.pl:120
#: ../vhffs-panel/cvs/prefs.pl:102 ../vhffs-panel/mail/prefs.pl:135
msgid "Delete"
msgstr "Destruir"
-#: ../vhffs-panel/user/prefs.pl:276
+#: ../vhffs-panel/user/prefs.pl:285
#, fuzzy
msgid "Delete YOUR user"
msgstr "Destruir SU cuenta"
@@ -1465,7 +1343,7 @@
msgid "Delete this mailing"
msgstr "Destruir esto dominio mail"
-#: ../vhffs-panel/group/prefs.pl:97 ../vhffs-panel/repository/prefs.pl:102
+#: ../vhffs-panel/group/prefs.pl:185 ../vhffs-panel/repository/prefs.pl:103
#: ../vhffs-panel/cvs/prefs.pl:97
msgid "Delete this project"
msgstr "Destruir este proyecto"
@@ -1474,26 +1352,27 @@
msgid "Delete this repository"
msgstr "Destruir esto repositorio"
-#: ../vhffs-panel/web/prefs.pl:127
+#: ../vhffs-panel/web/prefs.pl:108
msgid "Delete this web area"
msgstr "Destruir esta zona web"
-#: ../vhffs-panel/svn/create.pl:77 ../vhffs-panel/dns/create.pl:69
-#: ../vhffs-panel/pgsql/create.pl:74 ../vhffs-panel/group/create.pl:66
-#: ../vhffs-panel/repository/create.pl:72
+#: ../vhffs-panel/svn/create.pl:95 ../vhffs-panel/dns/create.pl:69
+#: ../vhffs-panel/pgsql/create.pl:104 ../vhffs-panel/group/create.pl:85
+#: ../vhffs-panel/repository/create.pl:92
#: ../vhffs-panel/admin/pgsql/edit.pl:101
-#: ../vhffs-panel/admin/pgsql/show.pl:99 ../vhffs-panel/admin/group/edit.pl:99
+#: ../vhffs-panel/admin/pgsql/show.pl:99
+#: ../vhffs-panel/admin/group/edit.pl:100
#: ../vhffs-panel/admin/group/show.pl:99
#: ../vhffs-panel/admin/repository/edit.pl:99
#: ../vhffs-panel/admin/repository/show.pl:98
-#: ../vhffs-panel/admin/object/edit.pl:97 ../vhffs-panel/admin/web/edit.pl:104
-#: ../vhffs-panel/admin/web/show.pl:101 ../vhffs-panel/admin/mysql/edit.pl:102
+#: ../vhffs-panel/admin/object/edit.pl:97 ../vhffs-panel/admin/web/edit.pl:99
+#: ../vhffs-panel/admin/web/show.pl:98 ../vhffs-panel/admin/mysql/edit.pl:102
#: ../vhffs-panel/admin/mysql/show.pl:98 ../vhffs-panel/admin/cvs/edit.pl:100
#: ../vhffs-panel/admin/cvs/show.pl:99 ../vhffs-panel/admin/mail/edit.pl:102
#: ../vhffs-panel/admin/mail/show.pl:102
#: ../vhffs-panel/public/lastgroups.pl:77 ../vhffs-panel/public/group.pl:91
-#: ../vhffs-panel/public/allgroups.pl:84 ../vhffs-panel/mysql/create.pl:72
-#: ../vhffs-panel/cvs/create.pl:97
+#: ../vhffs-panel/public/allgroups.pl:84 ../vhffs-panel/mysql/create.pl:104
+#: ../vhffs-panel/cvs/create.pl:103
msgid "Description"
msgstr "Descripcin"
@@ -1501,6 +1380,10 @@
msgid "Description of your webarea"
msgstr ""
+#: ../vhffs-panel/group/prefs.pl:95
+msgid "Description updated"
+msgstr ""
+
#: ../vhffs-panel/dns/prefs.pl:295
#, fuzzy
msgid "Destination"
@@ -1519,13 +1402,8 @@
msgid "Dl repos"
msgstr ""
-#: ../vhffs-panel/group/join_group.pl:119
-#, fuzzy
-msgid "Doe not exist in the VHFFS database"
-msgstr "Esto usuario no existe en la base de datos VHFFS"
-
#: ../vhffs-panel/admin/mail/edit.pl:97 ../vhffs-panel/admin/mail/show.pl:97
-#: ../vhffs-panel/mail/create.pl:65
+#: ../vhffs-panel/mail/create.pl:81
msgid "Domain"
msgstr "Dominio"
@@ -1544,10 +1422,6 @@
msgid "Domain names for %s"
msgstr ""
-#: ../vhffs-panel/admin/web/edit.pl:103 ../vhffs-panel/admin/web/show.pl:117
-msgid "Don't use Crawl"
-msgstr "No utilizar crawl"
-
#: ../vhffs-intl/extra_strings.pl:35
msgid "Download Repository"
msgstr ""
@@ -1617,7 +1491,7 @@
msgid "Edit this object"
msgstr "Editar esto objecto"
-#: ../vhffs-panel/user/prefs.pl:135
+#: ../vhffs-panel/user/prefs.pl:143
msgid "Email address changed"
msgstr ""
@@ -1626,7 +1500,7 @@
msgid "Email adress"
msgstr "Direccin Mail"
-#: ../vhffs-panel/user/prefs.pl:99
+#: ../vhffs-panel/user/prefs.pl:100
msgid "Email is not correct !"
msgstr ""
@@ -1656,42 +1530,31 @@
msgid "Error !"
msgstr "Error CGI!"
-#: ../vhffs-panel/user/prefs.pl:167
+#: ../vhffs-panel/user/prefs.pl:175
msgid ""
"Error ! You MUST provide a password in your account when you create your "
"popable account"
msgstr ""
-#: ../vhffs-panel/group/project_submit.pl:83
+#: ../vhffs-panel/group/create.pl:70
#, fuzzy
msgid "Error creating group (maybe a group with the same name already exists)"
msgstr "No se ha podido crear el usuario, este identificador ya existe."
-#: ../vhffs-panel/user/prefs.pl:190
+#: ../vhffs-panel/web/create.pl:78
+msgid "Error creating webarea."
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:198
msgid "Error for spam protection\n"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:201
+#: ../vhffs-panel/user/prefs.pl:209
msgid "Error for virus protection\n"
msgstr ""
-#: ../vhffs-listengine/src/archives/archives.pl:136
-#: ../vhffs-listengine/src/archives/show_msg.pl:76
-msgid "Error in listname"
-msgstr ""
-
#: ../vhffs-panel/object/upavatar.pl:130
-#, fuzzy
-msgid "Error when upload avatar for this object"
-msgstr "Un error lleg durante la actualisacin del objecto"
-
-#: ../vhffs-panel/mailinglist/submit.pl:116
-#, fuzzy
-msgid "Error while creating list (unknow problem)"
-msgstr "Un error lleg durante la creacin de la lista (problema desconocido)"
-
-#: ../vhffs-panel/web/web_submit.pl:90
-msgid "Error while creating the webarea, it probably already exists !"
+msgid "Error when uploading avatar for this object"
msgstr ""
#: ../vhffs-panel/dns/delete.pl:102
@@ -1709,12 +1572,12 @@
"and try again"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:70
+#: ../vhffs-panel/group/prefs.pl:68
#, fuzzy
msgid "Error. This group doesn't exists"
msgstr "El grupo no existe"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:334
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:335
#, fuzzy
msgid "Expired session ! Please login again"
msgstr "Sesin vencida, por favor, logue de nuevo "
@@ -1723,25 +1586,21 @@
msgid "Failed to modify note"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:437
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:502
msgid "February"
msgstr ""
-#: ../vhffs-panel/object/upavatar.pl:118
-msgid "File to big. Max size if 5000 bytes for an avatar"
-msgstr ""
-
#: ../vhffs-panel/object/upavatar.pl:114
-msgid "Filetype not supported"
+msgid "Filetype not supported, only png is supported"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:200 ../vhffs-panel/user/prefs.pl:255
+#: ../vhffs-panel/subscribe.pl:218 ../vhffs-panel/user/prefs.pl:263
#: ../vhffs-panel/admin/user/edit.pl:96 ../vhffs-panel/admin/user/show.pl:97
#: ../vhffs-panel/public/user.pl:85 ../vhffs-panel/public/lastusers.pl:80
msgid "Firstname"
msgstr "Nombre de pila"
-#: ../vhffs-panel/user/prefs.pl:90
+#: ../vhffs-panel/user/prefs.pl:91
msgid "Firstname is not correct !"
msgstr ""
@@ -1769,11 +1628,11 @@
msgid "Forward %s successfully added"
msgstr "Reenviar bien cambiado"
-#: ../vhffs-panel/user/prefs.pl:215
+#: ../vhffs-panel/user/prefs.pl:223
msgid "Forward added"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:350
+#: ../vhffs-panel/user/prefs.pl:379
#, fuzzy, perl-format
msgid "Forward emails from %s@%s to %s"
msgstr "Redirigir los emails desde %s@%s a %s"
@@ -1796,7 +1655,7 @@
msgid "Forward successfully deleted"
msgstr "Reenviar bien cambiado"
-#: ../vhffs-panel/user/prefs.pl:222
+#: ../vhffs-panel/user/prefs.pl:230
msgid "Forward updated"
msgstr ""
@@ -1804,12 +1663,8 @@
msgid "Forwards"
msgstr "Reenviares"
-#: ../vhffs-listengine/src/archives/show_msg.pl:106
-msgid "From: "
-msgstr ""
-
#: ../vhffs-panel/admin/user/edit.pl:103 ../vhffs-panel/admin/user/show.pl:103
-#: ../vhffs-panel/admin/group/edit.pl:94 ../vhffs-panel/admin/group/show.pl:94
+#: ../vhffs-panel/admin/group/edit.pl:95 ../vhffs-panel/admin/group/show.pl:94
msgid "GID"
msgstr "GID"
@@ -1841,7 +1696,7 @@
msgid "Go on login page"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:767
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:775
msgid "Go to administration"
msgstr ""
@@ -1850,7 +1705,7 @@
msgid "Go to object-part admin"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:74
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:82
msgid "Go to public area"
msgstr ""
@@ -1878,7 +1733,7 @@
#: ../vhffs-panel/admin/repository/edit.pl:96
#: ../vhffs-panel/admin/repository/show.pl:95
#: ../vhffs-panel/admin/repository/list.pl:89
-#: ../vhffs-panel/admin/web/edit.pl:99 ../vhffs-panel/admin/web/show.pl:98
+#: ../vhffs-panel/admin/web/edit.pl:96 ../vhffs-panel/admin/web/show.pl:95
#: ../vhffs-panel/admin/web/list.pl:79 ../vhffs-panel/admin/mysql/edit.pl:99
#: ../vhffs-panel/admin/mysql/show.pl:95 ../vhffs-panel/admin/mysql/list.pl:89
#: ../vhffs-panel/admin/cvs/edit.pl:97 ../vhffs-panel/admin/cvs/show.pl:96
@@ -1888,7 +1743,7 @@
msgid "Group"
msgstr "Grupo"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:520
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:501
#, fuzzy, perl-format
msgid "Group %s"
msgstr "Grupos"
@@ -1897,7 +1752,7 @@
msgid "Group Admin"
msgstr "Grupo Admin"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:517
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:498
#, fuzzy
msgid "Group error"
msgstr "Nombre del grupo"
@@ -1910,7 +1765,7 @@
msgid "Group or user not found"
msgstr ""
-#: ../vhffs-panel/cvs/create.pl:93
+#: ../vhffs-panel/cvs/create.pl:99
#, fuzzy
msgid "Group owning this CVS"
msgstr "Grupo responsable de esto CVS"
@@ -1920,27 +1775,31 @@
msgid "Group owning this DNS"
msgstr "Grupo responsable de este DNS"
-#: ../vhffs-panel/svn/create.pl:72
+#: ../vhffs-panel/svn/create.pl:91
#, fuzzy
msgid "Group owning this Subversion repository"
msgstr "Grupo poseedor de esto repositorio Subversion"
-#: ../vhffs-panel/pgsql/create.pl:67 ../vhffs-panel/mysql/create.pl:66
+#: ../vhffs-panel/pgsql/create.pl:97 ../vhffs-panel/mysql/create.pl:97
#, fuzzy
msgid "Group owning this database"
msgstr "Grupo responsable de esta base de datos"
-#: ../vhffs-panel/mailinglist/create.pl:89
+#: ../vhffs-panel/mail/create.pl:83
+msgid "Group owning this mail domain"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/create.pl:105
#, fuzzy
msgid "Group owning this mailing list"
msgstr "Grupo poseedor de esta mailing-list"
-#: ../vhffs-panel/repository/create.pl:66
+#: ../vhffs-panel/repository/create.pl:86
#, fuzzy
msgid "Group owning this repository"
msgstr "Grupo poseedor de esto repositorio Subversion"
-#: ../vhffs-panel/web/create.pl:76 ../vhffs-panel/mail/create.pl:66
+#: ../vhffs-panel/web/create.pl:94
#, fuzzy
msgid "Group owning this web space"
msgstr "Grupo responsable de este espacio web"
@@ -1949,7 +1808,7 @@
msgid "Group public area"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:176 ../vhffs-panel/admin/group/edit.pl:93
+#: ../vhffs-panel/acl/view.pl:176 ../vhffs-panel/admin/group/edit.pl:94
#: ../vhffs-panel/admin/group/show.pl:93 ../vhffs-panel/admin/group/list.pl:89
#: ../vhffs-panel/public/lastgroups.pl:73 ../vhffs-panel/public/group.pl:90
#: ../vhffs-panel/public/allgroups.pl:80
@@ -1957,6 +1816,12 @@
msgid "Groupname"
msgstr "Nombre del grupo"
+#: ../vhffs-panel/group/create.pl:66
+msgid ""
+"Groupname must contain between 3 and 12 characters, only letters or numbers "
+"in lower case"
+msgstr ""
+
#: ../vhffs-panel/acl/view.pl:133
msgid "Groupname:"
msgstr ""
@@ -1985,7 +1850,7 @@
msgid "Groups' administration"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:133
+#: ../vhffs-panel/user/prefs.pl:141
#, fuzzy, perl-format
msgid ""
"Hello %s %s,\n"
@@ -2010,8 +1875,25 @@
msgid "Hello and welcome on listengine help\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:382
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:430
+#: ../vhffs-panel/admin/moderation_submit.pl:101
+#, perl-format
+msgid ""
+"Hello,\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"
+"\n"
+"The Moderator and Admin Team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:411
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:610
msgid "Help"
msgstr "Ayuda"
@@ -2025,7 +1907,7 @@
msgstr ""
"Aqu, se puede enviar un cambio a la equipa admin y traer un bug o problema. "
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:413
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:414
#, perl-format
msgid ""
"His email address is:\n"
@@ -2036,17 +1918,17 @@
#: ../vhffs-panel/admin/user/show.pl:111
#: ../vhffs-panel/admin/pgsql/edit.pl:103
#: ../vhffs-panel/admin/pgsql/show.pl:100
-#: ../vhffs-panel/admin/group/edit.pl:101
+#: ../vhffs-panel/admin/group/edit.pl:102
#: ../vhffs-panel/admin/group/show.pl:100
#: ../vhffs-panel/admin/repository/edit.pl:101
#: ../vhffs-panel/admin/repository/show.pl:99
#: ../vhffs-panel/admin/object/list.pl:90
-#: ../vhffs-panel/admin/object/list.pl:97 ../vhffs-panel/admin/web/edit.pl:106
-#: ../vhffs-panel/admin/web/show.pl:102 ../vhffs-panel/admin/mysql/edit.pl:104
+#: ../vhffs-panel/admin/object/list.pl:97 ../vhffs-panel/admin/web/edit.pl:101
+#: ../vhffs-panel/admin/web/show.pl:99 ../vhffs-panel/admin/mysql/edit.pl:104
#: ../vhffs-panel/admin/mysql/show.pl:100 ../vhffs-panel/admin/cvs/edit.pl:102
#: ../vhffs-panel/admin/cvs/show.pl:100 ../vhffs-panel/admin/mail/edit.pl:104
#: ../vhffs-panel/admin/mail/show.pl:103
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:768
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:776
msgid "History"
msgstr "Historia"
@@ -2054,7 +1936,7 @@
msgid "History of this object"
msgstr "Historia del objecto"
-#: ../vhffs-panel/subscribe.pl:208 ../vhffs-panel/admin/user/edit.pl:100
+#: ../vhffs-panel/subscribe.pl:226 ../vhffs-panel/admin/user/edit.pl:100
#: ../vhffs-panel/admin/user/show.pl:100
msgid "Home"
msgstr "Home"
@@ -2075,16 +1957,16 @@
msgid "Hosted"
msgstr "Albergado"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:160
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:162
msgid "However this list require approval for new subscribers.\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:115
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:117
#, perl-format
msgid "However you are (%s) already subscribed to this list.\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:58
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:66
#, fuzzy
msgid "I've lost my password"
msgstr "Perdi mi cdigo de acceso"
@@ -2097,6 +1979,12 @@
msgid "IP/host of your NS"
msgstr ""
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:85
+msgid ""
+"If you don't asked to be subscribed to this mailing list,\n"
+"just forget this email\n"
+msgstr ""
+
#: ../vhffs-robots/src/refused_ml.pl:76 ../vhffs-robots/src/refused_mail.pl:78
#: ../vhffs-robots/src/refused_postgres.pl:79
#: ../vhffs-robots/src/refused_cvs.pl:75 ../vhffs-robots/src/refused_web.pl:74
@@ -2109,19 +1997,13 @@
msgid "If you encounters problem, please mail: %s\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:83
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:103
msgid ""
-"If you haven't asked to be subscribed to this list,\n"
-"please don't answer to this mail\n"
-msgstr ""
-
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:101
-msgid ""
"If you haven't asked to be unsubscribed from this list,\n"
"please don't answer to this mail\n"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:89
+#: ../vhffs-panel/group/prefs.pl:178
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 "
@@ -2140,96 +2022,118 @@
msgid "In hope to keep you in our hosting service"
msgstr "Esperamos guardar se en nuestro servicio de hospedido."
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:208
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:220
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:250
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:195
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:207
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:237
msgid "Invalid IP address"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:238
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:225
msgid "Invalid IP v6 address"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:308
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:295
msgid "Invalid alias"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:297
+#: ../vhffs-panel/pgsql/create.pl:78 ../vhffs-panel/mysql/create.pl:78
+msgid ""
+"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 ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:284
msgid "Invalid destination"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:322
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:338
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:309
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:325
msgid "Invalid destination domain name"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:309
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:296
msgid "Invalid destination host"
msgstr ""
-#: ../vhffs-panel/dns/create.pl:41
+#: ../vhffs-panel/dns/create.pl:41 ../vhffs-panel/mail/create.pl:64
#, fuzzy
msgid "Invalid domain name"
msgstr "Mail invlido"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:274
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:261
msgid "Invalid host"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:260
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:284
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:247
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:271
msgid "Invalid hostname"
msgstr ""
-#: ../vhffs-panel/mail/submit.pl:78
-#, fuzzy
-msgid "Invalid mail domain"
-msgstr "Mail invlido"
+#: ../vhffs-panel/mailinglist/create.pl:76
+msgid "Invalid local part"
+msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:323
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:339
+#: ../vhffs-panel/pgsql/create.pl:80 ../vhffs-panel/mysql/create.pl:80
+msgid ""
+"Invalid password. It must be at least 3 characters and contain only letters "
+"(lower and uppercase) and numbers"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:310
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:326
msgid "Invalid port"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:205
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:235
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:352
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:192
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:222
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:339
msgid "Invalid prefix"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:261
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:324
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:340
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:248
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:311
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:327
msgid "Invalid priority"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:320
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:307
msgid "Invalid protocol syntax"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:170
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:218
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:248
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:272
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:295
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:336
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:363
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:157
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:205
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:235
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:259
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:282
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:323
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:350
msgid "Invalid record"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:321
+#: ../vhffs-panel/svn/create.pl:71
+msgid ""
+"Invalid reponame. It must contain between 3 and 64 characters, only "
+"lowercase letters and numbers"
+msgstr ""
+
+#: ../vhffs-panel/web/create.pl:71
+msgid "Invalid servername (doesn't conform to domain names rules)"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:308
msgid "Invalid service syntax"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:93
+#: ../vhffs-panel/subscribe.pl:111
#, fuzzy
msgid ""
"Invalid username, it must contain between 3 and 12 alphanumeric characters, "
"all in lowercase"
msgstr "El identificador debe contener por lo menos 3 caracteres"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:325
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:341
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:312
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:328
msgid "Invalid weight"
msgstr ""
@@ -2243,19 +2147,19 @@
msgid "Is this a public repository ?"
msgstr "Modificar esto repositorio Subversion"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:433
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:498
msgid "January"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:457
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:522
msgid "July"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:453
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:518
msgid "June"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:263
+#: ../vhffs-panel/user/prefs.pl:271
msgid "Language"
msgstr "Lenguaje"
@@ -2285,14 +2189,14 @@
msgid "Last users on %s"
msgstr "Listar todos los usuarios"
-#: ../vhffs-panel/subscribe.pl:201 ../vhffs-panel/user/prefs.pl:256
+#: ../vhffs-panel/subscribe.pl:219 ../vhffs-panel/user/prefs.pl:264
#: ../vhffs-panel/admin/user/edit.pl:97 ../vhffs-panel/admin/user/show.pl:98
#: ../vhffs-panel/public/user.pl:87 ../vhffs-panel/public/lastusers.pl:82
#, fuzzy
msgid "Lastname"
msgstr "Apellido"
-#: ../vhffs-panel/user/prefs.pl:93
+#: ../vhffs-panel/user/prefs.pl:94
msgid "Lastname is not correct !"
msgstr ""
@@ -2458,7 +2362,11 @@
msgid "Login failed !"
msgstr "Fracaso del Login!"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:432
+#: ../vhffs-panel/group/prefs.pl:199
+msgid "Logo"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:413
msgid "Logout"
msgstr "Desconexin"
@@ -2499,15 +2407,14 @@
msgid "Mail Domain"
msgstr ""
-#: ../vhffs-panel/mail/submit.pl:82
-#, fuzzy
-msgid "Mail area successfully created !"
-msgstr "Zona mail bien creada"
-
-#: ../vhffs-panel/user/prefs.pl:227
+#: ../vhffs-panel/user/prefs.pl:235
msgid "Mail deleted"
msgstr ""
+#: ../vhffs-panel/mail/create.pl:70
+msgid "Mail domain successfully created !"
+msgstr ""
+
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:238
msgid "Mail domains Admin"
msgstr ""
@@ -2521,7 +2428,7 @@
msgid "Mail domains' administration"
msgstr ""
-#: ../vhffs-panel/mailinglist/create.pl:88
+#: ../vhffs-panel/mailinglist/create.pl:104
msgid "Mail for the list"
msgstr "Mail por la lista"
@@ -2538,16 +2445,16 @@
msgid "Mail to all hosted people"
msgstr "Mailing por personas albergadas"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:361
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:363
#, fuzzy, perl-format
msgid "Mail with id %s"
msgstr "Mail por la lista"
-#: ../vhffs-panel/user/prefs.pl:132
+#: ../vhffs-panel/user/prefs.pl:140
msgid "Mailbox modified"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:175
+#: ../vhffs-panel/user/prefs.pl:183
#, fuzzy
msgid "Mailbox successfully added"
msgstr "ACL bien aadida"
@@ -2583,11 +2490,6 @@
msgid "Mailing successfully deleted"
msgstr "ACL bien destruida"
-#: ../vhffs-panel/mailinglist/submit.pl:108
-#, fuzzy
-msgid "Mailing-list successfully created !"
-msgstr "Mailing-list bien creada!"
-
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:98
#, fuzzy
msgid "Manage mailings"
@@ -2597,16 +2499,16 @@
msgid "Manage members"
msgstr "Administrar los miembros"
-#: ../vhffs-panel/group/join_group.pl:101
+#: ../vhffs-panel/group/prefs.pl:150
#, fuzzy
msgid "Many users matched your query. Please choose between them"
msgstr "Muchos usuarios tienen su seudnimo. Elige un otro."
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:441
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:506
msgid "March"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:449
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:514
msgid "May"
msgstr ""
@@ -2622,11 +2524,6 @@
msgid "Message"
msgstr "Mensaje"
-#: ../vhffs-listengine/src/archives/show_msg.pl:120
-#, fuzzy, perl-format
-msgid "Message from list %s"
-msgstr "Destruir de la lista"
-
#: ../vhffs-panel/alert_submit.pl:74
#, fuzzy
msgid "Message sent by the following account"
@@ -2636,8 +2533,8 @@
msgid "Message sent successfully"
msgstr "Mensaje bien enviado"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:329
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:345
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:331
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:347
#, perl-format
msgid "Message with id: %s"
msgstr ""
@@ -2657,16 +2554,16 @@
msgid "Moderator"
msgstr "Moderador"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:423
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:404
msgid "Moderator account"
msgstr ""
#: ../vhffs-panel/admin/user/edit.pl:149
#: ../vhffs-panel/admin/pgsql/edit.pl:125
-#: ../vhffs-panel/admin/group/edit.pl:125
+#: ../vhffs-panel/admin/group/edit.pl:130
#: ../vhffs-panel/admin/repository/edit.pl:125
#: ../vhffs-panel/admin/object/edit.pl:125
-#: ../vhffs-panel/admin/web/edit.pl:138 ../vhffs-panel/admin/mysql/edit.pl:126
+#: ../vhffs-panel/admin/web/edit.pl:121 ../vhffs-panel/admin/mysql/edit.pl:126
#: ../vhffs-panel/admin/cvs/edit.pl:134 ../vhffs-panel/admin/mail/edit.pl:166
#: ../vhffs-intl/extra_strings.pl:27
msgid "Modification applied"
@@ -2674,10 +2571,10 @@
#: ../vhffs-panel/admin/user/edit.pl:148
#: ../vhffs-panel/admin/pgsql/edit.pl:124
-#: ../vhffs-panel/admin/group/edit.pl:124
+#: ../vhffs-panel/admin/group/edit.pl:129
#: ../vhffs-panel/admin/repository/edit.pl:124
#: ../vhffs-panel/admin/object/edit.pl:124
-#: ../vhffs-panel/admin/web/edit.pl:137 ../vhffs-panel/admin/mysql/edit.pl:125
+#: ../vhffs-panel/admin/web/edit.pl:120 ../vhffs-panel/admin/mysql/edit.pl:125
#: ../vhffs-panel/admin/cvs/edit.pl:133 ../vhffs-panel/admin/mail/edit.pl:165
#: ../vhffs-intl/extra_strings.pl:26
msgid "Modification error"
@@ -2691,7 +2588,7 @@
msgid "Modifications applied to your database"
msgstr "Modificacines hechas en su base de datos"
-#: ../vhffs-panel/web/prefs_save.pl:95
+#: ../vhffs-panel/web/prefs_save.pl:92
#, fuzzy
msgid "Modifications applied to your webarea"
msgstr "Modificacines hechas en su base de datos"
@@ -2706,16 +2603,16 @@
msgstr "Modificacines bien hechas"
#: ../vhffs-panel/admin/user/edit_submit.pl:135
-#: ../vhffs-panel/admin/web/edit_submit.pl:104
+#: ../vhffs-panel/admin/web/edit_submit.pl:101
msgid "Modifications successfully applied"
msgstr "Modificacines bien hechas"
-#: ../vhffs-panel/svn/prefs.pl:121 ../vhffs-panel/user/prefs.pl:265
+#: ../vhffs-panel/svn/prefs.pl:121 ../vhffs-panel/user/prefs.pl:274
#: ../vhffs-panel/dns/prefs.pl:330 ../vhffs-panel/dns/prefs.pl:342
#: ../vhffs-panel/dns/prefs.pl:355 ../vhffs-panel/dns/prefs.pl:366
#: ../vhffs-panel/dns/prefs.pl:393 ../vhffs-panel/dns/prefs.pl:409
#: ../vhffs-panel/acl/view.pl:166 ../vhffs-panel/pgsql/prefs.pl:107
-#: ../vhffs-panel/group/prefs.pl:96 ../vhffs-panel/web/prefs.pl:119
+#: ../vhffs-panel/group/prefs.pl:184 ../vhffs-panel/web/prefs.pl:101
#: ../vhffs-panel/mysql/prefs.pl:114 ../vhffs-panel/cvs/prefs.pl:96
msgid "Modify"
msgstr "Modificar"
@@ -2758,7 +2655,7 @@
msgid "Modify this mail domain"
msgstr "Modificar esto dominio mail"
-#: ../vhffs-panel/admin/user/list.pl:91
+#: ../vhffs-panel/admin/user/list.pl:92
msgid "Modify this user"
msgstr "Modificar esto usuario"
@@ -2766,7 +2663,7 @@
msgid "Must we redirect the DNS on our servers ?"
msgstr ""
-#: ../vhffs-panel/user/projects.pl:49 ../vhffs-api/src/Vhffs/Panel/Main.pm:428
+#: ../vhffs-panel/user/projects.pl:49 ../vhffs-api/src/Vhffs/Panel/Main.pm:409
#, fuzzy
msgid "My Projects"
msgstr "Mi proyectos"
@@ -2799,7 +2696,7 @@
msgid "MySQL database awaiting validation"
msgstr "Base de datos MySQL por validar"
-#: ../vhffs-panel/mysql/create.pl:68
+#: ../vhffs-panel/mysql/create.pl:99
msgid "MySQL database name "
msgstr "Nombre de la base de datos MySQL"
@@ -2807,7 +2704,7 @@
msgid "MySQL databases' administration"
msgstr ""
-#: ../vhffs-panel/mysql/create.pl:69
+#: ../vhffs-panel/mysql/create.pl:101
msgid "MySQL password for this database "
msgstr "Cdigo de acceso MySQL por esta base de datos"
@@ -2849,18 +2746,18 @@
msgid "Name of your MX"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:769
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:777
msgid "New"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:266
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:268
#, perl-format
msgid "New language is: %s\n"
msgstr ""
#: ../vhffs-panel/svn/prefs.pl:120 ../vhffs-panel/dns/prefs.pl:277
#: ../vhffs-panel/admin/cvs/edit.pl:104 ../vhffs-panel/admin/cvs/show.pl:108
-#: ../vhffs-panel/web/prefs.pl:116 ../vhffs-panel/cvs/prefs.pl:95
+#: ../vhffs-panel/cvs/prefs.pl:95
msgid "No"
msgstr "No"
@@ -2914,7 +2811,7 @@
msgid "No Web Area to validate"
msgstr "Zona Web por validar"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:327
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:328
msgid "No cookie found, please accept the cookie and then please login again !"
msgstr ""
@@ -2961,7 +2858,7 @@
msgid "No member on this list"
msgstr "No miembros sobre la lista"
-#: ../vhffs-listengine/src/listengine.pl:592
+#: ../vhffs-listengine/src/listengine.pl:736
#, fuzzy
msgid "No message to moderate"
msgstr "No lista por moderar"
@@ -2992,7 +2889,7 @@
msgid "No such user"
msgstr "El usuario no existe"
-#: ../vhffs-panel/public/group.pl:103
+#: ../vhffs-panel/group/prefs.pl:209 ../vhffs-panel/public/group.pl:103
#, fuzzy
msgid "No user for this group"
msgstr "Aadir un usuario en esto grupo"
@@ -3006,19 +2903,19 @@
msgid "No website available for this group"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:280 ../vhffs-panel/dns/prefs.pl:270
-#: ../vhffs-panel/web/prefs.pl:131
+#: ../vhffs-panel/user/prefs.pl:289 ../vhffs-panel/dns/prefs.pl:270
+#: ../vhffs-panel/web/prefs.pl:112
msgid "No, I'm not sure, I prefer to keep it."
msgstr ""
#: ../vhffs-panel/mailinglist/prefs.pl:205 ../vhffs-panel/svn/prefs.pl:126
-#: ../vhffs-panel/pgsql/prefs.pl:112 ../vhffs-panel/group/prefs.pl:101
-#: ../vhffs-panel/repository/prefs.pl:106 ../vhffs-panel/mysql/prefs.pl:119
+#: ../vhffs-panel/pgsql/prefs.pl:112 ../vhffs-panel/group/prefs.pl:189
+#: ../vhffs-panel/repository/prefs.pl:107 ../vhffs-panel/mysql/prefs.pl:119
#: ../vhffs-panel/cvs/prefs.pl:101 ../vhffs-panel/mail/prefs.pl:134
msgid "No, I'm not sure, I prefer to keep this project."
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:770
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:778
msgid "None"
msgstr ""
@@ -3038,7 +2935,7 @@
msgid "Notify changes on mailing-list :"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:473
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:538
msgid "November"
msgstr ""
@@ -3067,12 +2964,12 @@
msgid "Object-ID error"
msgstr "Error Objecto"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:469
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:534
msgid "October"
msgstr ""
#: ../vhffs-panel/svn/prefs.pl:132 ../vhffs-panel/dns/prefs.pl:262
-#: ../vhffs-panel/web/prefs.pl:124 ../vhffs-panel/mail/prefs.pl:140
+#: ../vhffs-panel/web/prefs.pl:105 ../vhffs-panel/mail/prefs.pl:140
msgid "Ok, go to ACL admin"
msgstr "Ok, id sobre el admin ACL"
@@ -3116,13 +3013,13 @@
msgid "Owned by"
msgstr "Poseedor"
-#: ../vhffs-panel/group/create.pl:63 ../vhffs-panel/admin/pgsql/edit.pl:99
-#: ../vhffs-panel/admin/pgsql/show.pl:97 ../vhffs-panel/admin/group/edit.pl:95
+#: ../vhffs-panel/group/create.pl:82 ../vhffs-panel/admin/pgsql/edit.pl:99
+#: ../vhffs-panel/admin/pgsql/show.pl:97 ../vhffs-panel/admin/group/edit.pl:96
#: ../vhffs-panel/admin/group/show.pl:95
#: ../vhffs-panel/admin/repository/edit.pl:97
#: ../vhffs-panel/admin/repository/show.pl:96
-#: ../vhffs-panel/admin/object/list.pl:88 ../vhffs-panel/admin/web/edit.pl:100
-#: ../vhffs-panel/admin/web/show.pl:99 ../vhffs-panel/admin/mysql/edit.pl:100
+#: ../vhffs-panel/admin/object/list.pl:88 ../vhffs-panel/admin/web/edit.pl:97
+#: ../vhffs-panel/admin/web/show.pl:96 ../vhffs-panel/admin/mysql/edit.pl:100
#: ../vhffs-panel/admin/mysql/show.pl:96 ../vhffs-panel/admin/cvs/edit.pl:98
#: ../vhffs-panel/admin/cvs/show.pl:97 ../vhffs-panel/admin/mail/edit.pl:100
#: ../vhffs-panel/admin/mail/show.pl:100
@@ -3139,13 +3036,13 @@
msgid "Owner of this group"
msgstr "Aadir un usuario en esto grupo"
-#: ../vhffs-panel/user/prefs.pl:261 ../vhffs-panel/admin/user/edit.pl:99
+#: ../vhffs-panel/user/prefs.pl:269 ../vhffs-panel/admin/user/edit.pl:99
#: ../vhffs-panel/admin/pgsql/edit.pl:97 ../vhffs-panel/admin/mysql/edit.pl:97
-#: ../vhffs-panel/mail/prefs.pl:111 ../vhffs-api/src/Vhffs/Panel/Commons.pm:56
+#: ../vhffs-panel/mail/prefs.pl:111 ../vhffs-api/src/Vhffs/Panel/Commons.pm:64
msgid "Password"
msgstr "Cdigo de acceso"
-#: ../vhffs-panel/user/prefs.pl:125
+#: ../vhffs-panel/user/prefs.pl:133
msgid "Password changed"
msgstr ""
@@ -3158,16 +3055,6 @@
msgid "Password for this database"
msgstr "Cdigo de acceso por esta base de datos"
-#: ../vhffs-panel/mysql/submit.pl:87
-#, fuzzy
-msgid "Password must contain at least 3 caracters"
-msgstr "El cdigo de acceso debe contener por lo menos 3 caracteres."
-
-#: ../vhffs-panel/pgsql/pgsql_submit.pl:81
-#, fuzzy
-msgid "Password must contains only alphanum caracters"
-msgstr "El cdigo de acceso debe contener por lo menos 3 caracteres."
-
#: ../vhffs-panel/lost_ack.pl:90
msgid "Password recovery failed!"
msgstr "Fracaso de la recuperacin del cdigo de acceso!"
@@ -3211,43 +3098,43 @@
msgid "Platform temporary closed<br/>database error"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:137
+#: ../vhffs-panel/subscribe.pl:155
msgid "Please enter a correct city"
msgstr "Escribe una ciudad vlida, por favor"
-#: ../vhffs-panel/subscribe.pl:141
+#: ../vhffs-panel/subscribe.pl:159
msgid "Please enter a correct country"
msgstr "Escribe un pas vlido por favor"
-#: ../vhffs-panel/subscribe.pl:129
+#: ../vhffs-panel/subscribe.pl:147
msgid "Please enter a correct firstname"
msgstr "Escribe un nombre de pila vlido por favor"
-#: ../vhffs-panel/subscribe.pl:133
+#: ../vhffs-panel/subscribe.pl:151
#, fuzzy
msgid "Please enter a correct lastname"
msgstr "Escribe un nombre de pila vlido por favor"
-#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:53
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:61
msgid "Please enter your username and password"
msgstr "Escribe su identificador y su cdigo de acceso"
-#: ../vhffs-panel/subscribe.pl:197
+#: ../vhffs-panel/subscribe.pl:215
#, fuzzy
msgid ""
"Please fill in all fields, a mail containing your password will be sent to "
"you"
msgstr "Llena los campos. Recibir un email con su cdigo de acceso"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:294
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:296
msgid "Please read help of listengine\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:191
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:193
msgid "Please try again !\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:237
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:239
msgid "Please try again.\n"
msgstr ""
@@ -3261,7 +3148,7 @@
msgid "Please wait modification, creation or deletion"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:167
+#: ../vhffs-panel/subscribe.pl:185
#, fuzzy
msgid ""
"Please wait while we are creating the account, it will take some minutes"
@@ -3288,17 +3175,17 @@
msgid "PostgreSQL DBs for %s"
msgstr ""
-#: ../vhffs-panel/pgsql/create.pl:65
-msgid "PostgreSQL database name"
-msgstr "Nombre de la base de datos PostgreSQL"
+#: ../vhffs-panel/pgsql/create.pl:99
+msgid "PostgreSQL database name "
+msgstr ""
#: ../vhffs-panel/admin/pgsql/index.pl:55
msgid "PostgreSQL databases' administration"
msgstr ""
-#: ../vhffs-panel/pgsql/create.pl:66
-msgid "PostgreSQL password for this database"
-msgstr "Cdigo de acceso PostgreSQL por esta base de datos"
+#: ../vhffs-panel/pgsql/create.pl:101
+msgid "PostgreSQL password for this database "
+msgstr ""
#: ../vhffs-panel/admin/moderation.pl:435
#, fuzzy
@@ -3309,12 +3196,12 @@
msgid "Posting control:"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:532
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:513
msgid "Preferences"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:206
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:236
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:193
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:223
msgid "Prefix already exists"
msgstr ""
@@ -3335,33 +3222,28 @@
msgid "Priority: "
msgstr "Proyecto:"
-#: ../vhffs-panel/group/prefs.pl:93
+#: ../vhffs-panel/group/prefs.pl:182
msgid "Project Description"
msgstr "Descripcin del Proyecto"
-#: ../vhffs-panel/group/create.pl:62
+#: ../vhffs-panel/group/create.pl:81
msgid "Project Name"
msgstr "Nombre del Proyecto"
-#: ../vhffs-panel/group/prefs.pl:91
+#: ../vhffs-panel/group/prefs.pl:180
msgid "Project Owner"
msgstr "Poseedor del proyecto"
-#: ../vhffs-panel/group/prefs.pl:88
+#: ../vhffs-panel/group/prefs.pl:176
msgid "Project Preferences"
msgstr "Prferencias Proyecto"
-#: ../vhffs-panel/group/project_submit.pl:85
+#: ../vhffs-panel/group/create.pl:72
#, fuzzy
msgid "Project Successfully created !"
msgstr "Proyecto bien creado!"
-#: ../vhffs-panel/group/prefs_save.pl:93
-#, fuzzy
-msgid "Project Successfully modified"
-msgstr "Proyecto bien creado!"
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:448
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:429
msgid "Project home"
msgstr ""
@@ -3391,20 +3273,20 @@
msgid "Public area not available"
msgstr ""
-#: ../vhffs-panel/admin/group/edit.pl:96 ../vhffs-panel/admin/group/show.pl:96
+#: ../vhffs-panel/admin/group/edit.pl:97 ../vhffs-panel/admin/group/show.pl:96
#: ../vhffs-panel/admin/repository/edit.pl:102
#: ../vhffs-panel/admin/repository/show.pl:100
msgid "Quota"
msgstr "Cuota"
#: ../vhffs-panel/repository/prefs.pl:100
-#: ../vhffs-panel/admin/group/edit.pl:110
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:524
+#: ../vhffs-panel/admin/group/edit.pl:109
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:505
#, perl-format
msgid "Quota (used/total) : %s/%s"
msgstr ""
-#: ../vhffs-panel/admin/group/edit.pl:97 ../vhffs-panel/admin/group/show.pl:97
+#: ../vhffs-panel/admin/group/edit.pl:98 ../vhffs-panel/admin/group/show.pl:97
#: ../vhffs-panel/admin/repository/edit.pl:103
#: ../vhffs-panel/admin/repository/show.pl:101
msgid "Quota used"
@@ -3431,21 +3313,21 @@
msgid "Reason given : "
msgstr ""
-#: ../vhffs-panel/subscribe.pl:214
+#: ../vhffs-panel/subscribe.pl:233
msgid "Recopy the code"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:172
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:219
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:249
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:273
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:296
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:337
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:364
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:159
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:206
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:236
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:260
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:283
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:324
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:351
msgid "Record does not exists"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:171
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:158
msgid "Record type doesn't exists"
msgstr ""
@@ -3463,16 +3345,16 @@
msgid "Refuse"
msgstr "Negado"
-#: ../vhffs-panel/group/prefs.pl:121
-msgid "Remove this user from this group"
-msgstr "Destruir esto usuario desde esto grupo"
+#: ../vhffs-panel/group/prefs.pl:208
+msgid "Remove"
+msgstr ""
#: ../vhffs-panel/mailinglist/prefs.pl:142
msgid "Reply to: on list"
msgstr "Responder a: sobre la lista"
-#: ../vhffs-panel/svn/create.pl:71 ../vhffs-panel/repository/create.pl:65
-#: ../vhffs-panel/admin/repository/list.pl:88 ../vhffs-panel/cvs/create.pl:91
+#: ../vhffs-panel/svn/create.pl:89 ../vhffs-panel/repository/create.pl:85
+#: ../vhffs-panel/admin/repository/list.pl:88 ../vhffs-panel/cvs/create.pl:97
msgid "Repository Name"
msgstr "Nombre del Repositorio "
@@ -3676,20 +3558,20 @@
msgid "Search:"
msgstr "Bsqueda CVS"
-#: ../vhffs-panel/mailinglist/create.pl:101 ../vhffs-panel/svn/create.pl:76
-#: ../vhffs-panel/dns/create.pl:68 ../vhffs-panel/pgsql/create.pl:73
-#: ../vhffs-panel/group/create.pl:65 ../vhffs-panel/repository/create.pl:71
+#: ../vhffs-panel/mailinglist/create.pl:109 ../vhffs-panel/svn/create.pl:94
+#: ../vhffs-panel/dns/create.pl:68 ../vhffs-panel/pgsql/create.pl:103
+#: ../vhffs-panel/group/create.pl:84 ../vhffs-panel/repository/create.pl:91
#: ../vhffs-panel/alert.pl:71 ../vhffs-panel/admin/user/edit.pl:111
#: ../vhffs-panel/admin/pgsql/edit.pl:102
-#: ../vhffs-panel/admin/group/edit.pl:100
+#: ../vhffs-panel/admin/group/edit.pl:101
#: ../vhffs-panel/admin/broadcast_list.pl:99
#: ../vhffs-panel/admin/repository/edit.pl:100
#: ../vhffs-panel/admin/object/edit.pl:98
#: ../vhffs-panel/admin/broadcast_view.pl:100
-#: ../vhffs-panel/admin/web/edit.pl:105 ../vhffs-panel/admin/mysql/edit.pl:103
+#: ../vhffs-panel/admin/web/edit.pl:100 ../vhffs-panel/admin/mysql/edit.pl:103
#: ../vhffs-panel/admin/cvs/edit.pl:101 ../vhffs-panel/admin/mail/edit.pl:103
-#: ../vhffs-panel/web/create.pl:80 ../vhffs-panel/mysql/create.pl:71
-#: ../vhffs-panel/cvs/create.pl:96 ../vhffs-panel/mail/create.pl:70
+#: ../vhffs-panel/web/create.pl:97 ../vhffs-panel/mysql/create.pl:103
+#: ../vhffs-panel/cvs/create.pl:102 ../vhffs-panel/mail/create.pl:86
msgid "Send"
msgstr "Enviado"
@@ -3698,7 +3580,7 @@
msgid "Send an email to all hosted people"
msgstr "Enviar mailing por personas albergadas"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:295
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:297
msgid "Send an email with the subject \"help\" to the following address: \n"
msgstr ""
@@ -3706,16 +3588,11 @@
msgid "Send it"
msgstr "Envia lo"
-#: ../vhffs-panel/group/prefs.pl:108 ../vhffs-panel/group/prefs.pl:109
-#, fuzzy
-msgid "Send logo"
-msgstr "Envia lo"
-
-#: ../vhffs-panel/user/prefs.pl:287 ../vhffs-panel/user/prefs.pl:289
+#: ../vhffs-panel/user/prefs.pl:296 ../vhffs-panel/user/prefs.pl:298
msgid "Send my avatar"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:465
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:530
msgid "September"
msgstr ""
@@ -3726,17 +3603,12 @@
msgid "Servername"
msgstr "Nombre del servidor"
-#: ../vhffs-panel/web/web_submit.pl:77
-#, fuzzy
-msgid "Servername error. Please enter a valid servername"
-msgstr ""
-"Error de nombre de servidor. Escribe un nombre de servidor vlido por favor"
-
#: ../vhffs-panel/dns/prefs.pl:309
msgid "Service"
msgstr ""
-#: ../vhffs-panel/admin/user/edit.pl:98 ../vhffs-panel/admin/user/show.pl:99
+#: ../vhffs-panel/user/prefs.pl:273 ../vhffs-panel/admin/user/edit.pl:98
+#: ../vhffs-panel/admin/user/show.pl:99
msgid "Shell"
msgstr "Shell"
@@ -3846,7 +3718,7 @@
msgid "Show this mail domain"
msgstr "Modificar esto dominio mail"
-#: ../vhffs-panel/admin/user/list.pl:94
+#: ../vhffs-panel/admin/user/list.pl:95
#, fuzzy
msgid "Show this user"
msgstr "Aadir esto usuario "
@@ -3887,19 +3759,19 @@
#: ../vhffs-panel/admin/user/edit.pl:137 ../vhffs-panel/admin/user/show.pl:110
#: ../vhffs-panel/admin/pgsql/edit.pl:100
-#: ../vhffs-panel/admin/pgsql/show.pl:98 ../vhffs-panel/admin/group/edit.pl:98
+#: ../vhffs-panel/admin/pgsql/show.pl:98 ../vhffs-panel/admin/group/edit.pl:99
#: ../vhffs-panel/admin/group/show.pl:98
#: ../vhffs-panel/admin/repository/edit.pl:98
#: ../vhffs-panel/admin/repository/show.pl:97
-#: ../vhffs-panel/admin/object/edit.pl:96 ../vhffs-panel/admin/web/edit.pl:101
-#: ../vhffs-panel/admin/web/show.pl:100 ../vhffs-panel/admin/mysql/edit.pl:101
+#: ../vhffs-panel/admin/object/edit.pl:96 ../vhffs-panel/admin/web/edit.pl:98
+#: ../vhffs-panel/admin/web/show.pl:97 ../vhffs-panel/admin/mysql/edit.pl:101
#: ../vhffs-panel/admin/mysql/show.pl:97 ../vhffs-panel/admin/mysql/show.pl:99
#: ../vhffs-panel/admin/cvs/edit.pl:99 ../vhffs-panel/admin/cvs/show.pl:98
#: ../vhffs-panel/admin/mail/edit.pl:101 ../vhffs-panel/admin/mail/show.pl:101
msgid "Status"
msgstr "Estatus"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:383
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:611
msgid "Stay over an icon to see its description."
msgstr ""
@@ -3917,23 +3789,18 @@
msgid "Subject"
msgstr "Tema"
-#: ../vhffs-listengine/src/archives/show_msg.pl:109
-#, fuzzy
-msgid "Subject: "
-msgstr "Tema"
-
#: ../vhffs-panel/dns/prefs.pl:288 ../vhffs-panel/dns/prefs.pl:294
#: ../vhffs-panel/dns/prefs.pl:315
#, fuzzy
msgid "Submit"
msgstr "Someter un bug"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:431
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:412
msgid "Submit a bug"
msgstr "Someter un bug"
-#: ../vhffs-panel/subscribe.pl:206 ../vhffs-panel/subscribe.pl:220
-#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:59
+#: ../vhffs-panel/subscribe.pl:224 ../vhffs-panel/subscribe.pl:239
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:67
msgid "Subscribe"
msgstr "Suscribir"
@@ -3945,17 +3812,16 @@
msgid "Subscribed"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:196
+#: ../vhffs-panel/subscribe.pl:214
msgid "Subscription"
msgstr "Suscripcin"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:130
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:132
#, perl-format
msgid ""
"Subscription to the following list is forbidden:\n"
+" %s\n"
"\n"
-"%s\n"
-"\n"
"Have a nice day.\n"
msgstr ""
@@ -3964,37 +3830,29 @@
msgid "Subversion repository awaiting validation"
msgstr "Repositorio Subversion por validar"
-#: ../vhffs-panel/object/upavatar.pl:126
-msgid "Successfull create or replace avatar"
-msgstr ""
-
#: ../vhffs-panel/mailinglist/add_sub.pl:105
msgid "Successfully added"
msgstr "Bien aadido"
+#: ../vhffs-panel/object/upavatar.pl:126
+msgid "Successfully created or updated avatar"
+msgstr ""
+
#: ../vhffs-panel/mailinglist/del_member.pl:105
#, fuzzy
msgid "Successfully deleted"
msgstr "ACL bien destruida"
-#: ../vhffs-panel/group/join_group.pl:86
-#, fuzzy
-msgid ""
-"Sucessfully added this user to this group. Please wait while robots add him"
-msgstr ""
-"Usuario bien aadido a esto grupo. Espera un momento por favor durante la "
-"actualisacin de esto."
-
#: ../vhffs-panel/admin/user/edit.pl:145
#: ../vhffs-panel/admin/pgsql/edit.pl:121
#: ../vhffs-panel/admin/pgsql/edit.pl:122
-#: ../vhffs-panel/admin/group/edit.pl:121
-#: ../vhffs-panel/admin/group/edit.pl:122
+#: ../vhffs-panel/admin/group/edit.pl:126
+#: ../vhffs-panel/admin/group/edit.pl:127
#: ../vhffs-panel/admin/repository/edit.pl:121
#: ../vhffs-panel/admin/repository/edit.pl:122
#: ../vhffs-panel/admin/object/edit.pl:121
#: ../vhffs-panel/admin/object/edit.pl:122
-#: ../vhffs-panel/admin/web/edit.pl:134 ../vhffs-panel/admin/web/edit.pl:135
+#: ../vhffs-panel/admin/web/edit.pl:117 ../vhffs-panel/admin/web/edit.pl:118
#: ../vhffs-panel/admin/mysql/edit.pl:122
#: ../vhffs-panel/admin/mysql/edit.pl:123 ../vhffs-panel/admin/cvs/edit.pl:130
#: ../vhffs-panel/admin/cvs/edit.pl:131 ../vhffs-panel/admin/mail/edit.pl:162
@@ -4019,15 +3877,15 @@
msgid "TXT Record updated"
msgstr ""
-#: ../vhffs-panel/mail/create.pl:71
-msgid "Tell us what the use of this mail space will be"
+#: ../vhffs-panel/mail/create.pl:87
+msgid "Tell us for what purpose you want to create this mail domain"
msgstr ""
-#: ../vhffs-panel/mailinglist/create.pl:102
+#: ../vhffs-panel/mailinglist/create.pl:110
msgid "Tell us what the use of this mailing list will be"
msgstr ""
-#: ../vhffs-panel/web/create.pl:81
+#: ../vhffs-panel/web/create.pl:98
msgid "Tell us what the use of this web space will be"
msgstr ""
@@ -4035,12 +3893,12 @@
msgid "Text"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:353
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:365
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:340
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:352
msgid "Text can't be empty"
msgstr ""
-#: ../vhffs-panel/cvs/create.pl:78
+#: ../vhffs-panel/cvs/create.pl:80
#, fuzzy
msgid "The CVS object was successfully created !"
msgstr "El objecto CVS esta bien creado."
@@ -4050,11 +3908,6 @@
msgid "The DNS object was successfully created !"
msgstr "El objecto DNS esta bien creado."
-#: ../vhffs-panel/repository/repository_submit.pl:89
-#, fuzzy
-msgid "The Download repository object was successfully created !"
-msgstr "El objecto PostgreSQL es bien creado."
-
#: ../vhffs-robots/src/refused_ml.pl:78 ../vhffs-robots/src/refused_mail.pl:80
#: ../vhffs-robots/src/refused_postgres.pl:81
#: ../vhffs-robots/src/refused_cvs.pl:77 ../vhffs-robots/src/refused_web.pl:76
@@ -4066,125 +3919,102 @@
msgid "The Moderator and Admin team"
msgstr "El moderador y la equipa admin"
-#: ../vhffs-panel/mysql/submit.pl:99
-#, fuzzy
-msgid "The MySQL object was successfully created !"
-msgstr "El objecto MySQL esta bien creado!"
+#: ../vhffs-panel/mysql/create.pl:82
+msgid "The MySQL DB was successfully created !"
+msgstr ""
-#: ../vhffs-panel/pgsql/pgsql_submit.pl:95
-#, fuzzy
-msgid "The PostgreSQL object was successfully created !"
-msgstr "El objecto PostgreSQL es bien creado."
+#: ../vhffs-panel/pgsql/create.pl:82
+msgid "The PostgreSQL DB was successfully created !"
+msgstr ""
-#: ../vhffs-panel/svn/svn_submit.pl:83
-#, fuzzy
-msgid "The Subversion object was successfully created !"
-msgstr "El objecto Subversion es bien creado."
+#: ../vhffs-panel/svn/create.pl:75
+msgid "The SVN object was successfully created !"
+msgstr ""
-#: ../vhffs-panel/user/prefs.pl:290
+#: ../vhffs-panel/user/prefs.pl:299
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 ""
-#: ../vhffs-panel/group/prefs.pl:110
+#: ../vhffs-panel/group/prefs.pl:200
msgid "The avatar is an image to describe the group"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:190
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:192
msgid "The confirmation code was wrong\n"
msgstr ""
-#: ../vhffs-panel/mysql/submit.pl:91
-msgid "The database name is not valid"
-msgstr "El nombre de la base de datos es invlido"
+#: ../vhffs-panel/pgsql/create.pl:96 ../vhffs-panel/mysql/create.pl:96
+#, perl-format
+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 ""
-#: ../vhffs-panel/mysql/submit.pl:79
-#, fuzzy
-msgid "The database name is too long. There is a 32 character limit"
-msgstr "El nombre de la base de datos debe contener por lo menos 3 caracteres."
-
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:379
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:381
#, perl-format
msgid ""
"The following address %s is not allowed to execute commands on the list %s\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:205
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:207
#, perl-format
-msgid "The following address %s is not on the list %s\n"
-msgstr ""
-
-#: ../vhffs-panel/group/project_submit.pl:78
-msgid "The groupname can have no more than 12 caracters."
-msgstr ""
-
-#: ../vhffs-panel/group/project_submit.pl:74
-#, fuzzy
msgid ""
-"The groupname should contain at least 3 caracters and must contain only "
-"letters or numbers in lower case"
+"The following address %s is not on the following mailing list:\n"
+" %s\n"
msgstr ""
-"El nombre del grupo debe contener por lo menos 3 caracteres, solo en letras "
-"o cifras"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:265
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:267
#, perl-format
msgid ""
"The listengine language preference was changed for the following address %"
"s.\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:314
+#: ../vhffs-panel/mailinglist/create.pl:83
+msgid "The mailing list object was successfully created !"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:316
msgid "The message does not exists or was moderated before you.\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:311
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:313
#, fuzzy, perl-format
msgid "The message with the following id %s"
msgstr "Mensaje enviado hacia las direccines siguientes."
-#: ../vhffs-panel/mysql/submit.pl:95
-#, fuzzy
-msgid "The password is not valid"
-msgstr "El nombre de la base de datos es invlido"
-
-#: ../vhffs-panel/pgsql/create.pl:70 ../vhffs-panel/mysql/create.pl:65
-#, fuzzy, perl-format
-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"
+#: ../vhffs-panel/repository/create.pl:72
+msgid "The repository was successfully created !"
msgstr ""
-"El prefijo de su bases de datos es fijo, entonces, el nombre de su bases de "
-"datos ser%s_DBNAME<br>. Un usuario ser creado, con un nombre fijo, y ser "
-"llamado %s_DBNAME"
-#: ../vhffs-panel/svn/svn_submit.pl:73
-#, fuzzy
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:119
msgid ""
-"The repository name is too short. It must contains at least 3 caracters, and "
-"must only contain letters and numbers"
+"The state of you subscription was not changed, you are still subscribed\n"
msgstr ""
-"El nombre del grupo debe contener por lo menos 3 caracteres, solo en letras "
-"o cifras"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:117
-msgid ""
-"The state of you subscription was not changed, you are still subscribed\n"
+#: ../vhffs-panel/web/create.pl:75
+msgid "The webarea was successfully created !"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:264
+#: ../vhffs-panel/user/prefs.pl:272
msgid "Theme"
msgstr "Tema"
-#: ../vhffs-panel/user/prefs.pl:211
+#: ../vhffs-panel/user/prefs.pl:219
msgid ""
"There is a problem with the address you filled in your profile, unable to "
"add forwarding"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:348
+#: ../vhffs-panel/mailinglist/create.pl:99
+msgid ""
+"There is no default mail domain on this platform, you have to create a mail "
+"domain before creating a mailing list"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:377
#, fuzzy
msgid "There is two possible usages :"
msgstr "Hay dos usos posibles:"
@@ -4216,8 +4046,8 @@
#: ../vhffs-panel/mailinglist/prefs.pl:202 ../vhffs-panel/svn/prefs.pl:123
#: ../vhffs-panel/dns/prefs.pl:267 ../vhffs-panel/pgsql/prefs.pl:109
-#: ../vhffs-panel/group/prefs.pl:98 ../vhffs-panel/repository/prefs.pl:103
-#: ../vhffs-panel/web/prefs.pl:128 ../vhffs-panel/mysql/prefs.pl:116
+#: ../vhffs-panel/group/prefs.pl:186 ../vhffs-panel/repository/prefs.pl:104
+#: ../vhffs-panel/web/prefs.pl:109 ../vhffs-panel/mysql/prefs.pl:116
#: ../vhffs-panel/cvs/prefs.pl:98 ../vhffs-panel/mail/prefs.pl:131
#, fuzzy
msgid ""
@@ -4227,7 +4057,7 @@
"Esta accin no tiene vuelta. Todos los servicios asociados con este proyecto "
"sern destruidos."
-#: ../vhffs-panel/user/prefs.pl:277
+#: ../vhffs-panel/user/prefs.pl:286
msgid "This action is non-reversible. WHEN YOU DELETE IT, YOU CANNOT CANCEL."
msgstr ""
@@ -4268,15 +4098,15 @@
msgid "This domain will be DELETED from Vhffs platform"
msgstr "Esto dominio ser destruido de la plataforma Vhffs"
-#: ../vhffs-panel/group/prefs_save.pl:82
-msgid "This group is not activated yet"
-msgstr "Esto grupo no es activado ya"
+#: ../vhffs-panel/mail/add_forward.pl:99
+msgid "This forward has been successfully added to this domain"
+msgstr "Esto reenviar es bien aadido a esto dominio"
#: ../vhffs-panel/group/delete.pl:91
msgid "This group will be deleted"
msgstr "Esto grupo ser destruido"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:326
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:313
msgid "This host is already registered for this service"
msgstr ""
@@ -4294,20 +4124,25 @@
msgid "This mail domain will NOT be DELETED"
msgstr "Esto dominio mail no ser destruido"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:99
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:101
#, perl-format
msgid ""
"This mail must contains the following subject : \"confirm unsubscribe %s\"\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:81
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:83
#, perl-format
-msgid "This mail must have the following subject : \"confirm subscribe %s\"\n"
+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 ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:395
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:397
#, perl-format
-msgid "This mail was sent by %s with the following subject: \n"
+msgid ""
+"This mail was sent by %s with the following subject:\n"
+" %s\n"
+"\n"
msgstr ""
#: ../vhffs-panel/mailinglist/add_sub.pl:101
@@ -4320,7 +4155,7 @@
msgid "This object does not have an avatar"
msgstr "Esto usuario no existe"
-#: ../vhffs-panel/group/prefs.pl:75
+#: ../vhffs-panel/group/prefs.pl:71
#, fuzzy
msgid "This object is not functional yet. Please wait creation or moderation."
msgstr ""
@@ -4340,7 +4175,7 @@
#: ../vhffs-panel/admin/mail/password_box.pl:90
#: ../vhffs-panel/admin/mail/delete_forward.pl:90
#: ../vhffs-panel/admin/mail/change_forward.pl:90
-#: ../vhffs-panel/web/prefs.pl:80 ../vhffs-panel/web/prefs_save.pl:82
+#: ../vhffs-panel/web/prefs.pl:80 ../vhffs-panel/web/prefs_save.pl:81
#: ../vhffs-panel/mysql/prefs.pl:90 ../vhffs-panel/mysql/prefs_save.pl:91
#: ../vhffs-panel/cvs/delete.pl:86 ../vhffs-panel/cvs/prefs_save.pl:85
#: ../vhffs-panel/mail/delete.pl:82 ../vhffs-panel/mail/delete_box.pl:86
@@ -4393,10 +4228,6 @@
"maintenances tasks. Please come back in a few minutes to log in."
msgstr ""
-#: ../vhffs-panel/svn/svn_submit.pl:76
-msgid "This repository name already exists"
-msgstr "Esto nombre de repositorio ya existe"
-
#: ../vhffs-panel/svn/delete.pl:102
#, fuzzy
msgid "This repository will be deleted"
@@ -4407,20 +4238,11 @@
msgid "This subversion repository will NOT be deleted"
msgstr "Esto objecto no ser destruido"
-#: ../vhffs-panel/group/remove_user_from_group.pl:79
-#, fuzzy
-msgid "This user does not exists "
-msgstr "Esto usuario no existe"
-
#: ../vhffs-panel/user/delete.pl:76
#, fuzzy
msgid "This user is always in a group"
msgstr "Esto usuario no es en esto grupo"
-#: ../vhffs-panel/group/remove_user_from_group.pl:88
-msgid "This user is not in this group "
-msgstr "Esto usuario no es en esto grupo"
-
#: ../vhffs-panel/user/delete.pl:87
msgid "This user will BE DELETED"
msgstr "Esto usuario ser destruido"
@@ -4429,31 +4251,30 @@
msgid "This user will NOT be DELETED"
msgstr "Esto usuario NO ser destruido"
-#: ../vhffs-panel/group/remove_user_from_group.pl:92
+#: ../vhffs-panel/group/prefs.pl:110
#, fuzzy
msgid "This user will be removed from this group as soon as possible"
msgstr "Esto usuario ser destruido de esto grupo tan pronto como posible"
-#: ../vhffs-panel/web/delete.pl:79 ../vhffs-panel/web/prefs_save.pl:78
+#: ../vhffs-panel/web/delete.pl:79 ../vhffs-panel/web/prefs_save.pl:77
msgid "This web area doesn't exist in VHFFS database"
msgstr "Esta zona web no existe en la base de datos VHFFS"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:416
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:417
msgid "To accept this subscriber, send a message to\n"
msgstr ""
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:398
-msgid "To put this post on the list, send a message \n"
+#, perl-format
+msgid ""
+"To put this post on the list, send a message to:\n"
+" %s-request@%s\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:419
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:420
msgid "To refuse this subscriber, send a message to\n"
msgstr ""
-#: ../vhffs-listengine/src/archives/show_msg.pl:107
-msgid "To: "
-msgstr ""
-
#: ../vhffs-panel/ajax/help.pl:54 ../vhffs-panel/ajax/help.pl:59
msgid "Topic not found"
msgstr ""
@@ -4604,6 +4425,12 @@
msgid "Unable to add TXT record: %s"
msgstr ""
+#: ../vhffs-panel/group/prefs.pl:135 ../vhffs-panel/group/prefs.pl:169
+msgid ""
+"Unable to add user, he might already be in the group (waiting for addition "
+"or deletion)"
+msgstr ""
+
#: ../vhffs-panel/admin/mail/password_box.pl:105
#, fuzzy, perl-format
msgid "Unable to change password for box %s (%d)"
@@ -4673,8 +4500,8 @@
msgid "Unable to delete this domain"
msgstr "Es imposible destruir esto dominio"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:207
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:237
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:194
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:224
msgid ""
"Unable to find default redirection address, please contact administrators"
msgstr ""
@@ -4770,42 +4597,39 @@
msgid "Unable to modify the object"
msgstr "Es imposible modificar el objecto..."
-#: ../vhffs-panel/mail/add_forward.pl:99
-msgid "Unable to record changes on this domain"
-msgstr "Es imposible grabar cambios sobre esto dominio"
-
-#: ../vhffs-listengine/src/archives/archives.pl:141
-#: ../vhffs-listengine/src/archives/show_msg.pl:81
-msgid "Undefined list"
+#: ../vhffs-panel/group/prefs.pl:112
+msgid "Unable to remove user from group"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:293
-msgid "Unknow command\n"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:295
+msgid ""
+"Unknow command\n"
+"\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Functions.pm:400
-#: ../vhffs-api/src/Vhffs/Functions.pm:405
+#: ../vhffs-api/src/Vhffs/Functions.pm:402
+#: ../vhffs-api/src/Vhffs/Functions.pm:407
msgid "Unknown"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:174
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:210
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:222
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:240
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:252
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:264
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:276
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:287
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:161
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:197
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:209
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:227
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:239
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:251
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:263
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:274
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:286
#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:299
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:312
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:328
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:343
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:355
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:367
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:315
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:330
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:342
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:354
msgid "Unknown error"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:480
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:545
msgid "Unknown month"
msgstr ""
@@ -4814,11 +4638,19 @@
msgid "Unknown status"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:235
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:237
#, perl-format
msgid "Unsubscribe for the list %s was not complete.\n"
msgstr ""
+#: ../vhffs-panel/group/prefs.pl:198
+msgid "Update"
+msgstr ""
+
+#: ../vhffs-panel/group/prefs.pl:202
+msgid "Update avatar"
+msgstr ""
+
#: ../vhffs-panel/admin/user/edit.pl:260
#, fuzzy
msgid "Update note"
@@ -4829,16 +4661,16 @@
msgid "Update signature"
msgstr "Puesto al da!"
+#: ../vhffs-panel/object/upavatar.pl:118
+msgid "Uploaded file is too big. The maximum size is 20 Kbytes."
+msgstr ""
+
#: ../vhffs-panel/dns/prefs.pl:255
#, perl-format
msgid "Use @ for origin (%s)"
msgstr ""
-#: ../vhffs-panel/admin/web/edit.pl:102 ../vhffs-panel/admin/web/show.pl:115
-msgid "Use Crawl"
-msgstr "Utilize Crawl"
-
-#: ../vhffs-panel/user/prefs.pl:349
+#: ../vhffs-panel/user/prefs.pl:378
#, perl-format
msgid ""
"Use VHFFS servers to manage this mail,<br>you should use use the host pop.%s "
@@ -4847,18 +4679,14 @@
"Utiliza los servidores VHFFS por administrar esto mail. <br> Debe utilizar "
"el pop.%s o elimap.%s albergado para obtener su mails"
-#: ../vhffs-panel/user/prefs.pl:355
+#: ../vhffs-panel/user/prefs.pl:384
msgid "Use anti-spam protection"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:363
+#: ../vhffs-panel/user/prefs.pl:392
msgid "Use anti-virus protection"
msgstr ""
-#: ../vhffs-panel/web/prefs.pl:98
-msgid "Use crawl (useful for web-search engine)"
-msgstr "Utilize Crawl (til por los motores de Bsqueda)"
-
#: ../vhffs-panel/admin/pgsql/edit.pl:96 ../vhffs-panel/admin/pgsql/show.pl:95
#: ../vhffs-panel/admin/mysql/edit.pl:96 ../vhffs-panel/admin/mysql/show.pl:94
#: ../vhffs-intl/extra_strings.pl:32
@@ -4874,19 +4702,19 @@
msgid "User Admin"
msgstr "Usuario Admin"
-#: ../vhffs-panel/user/prefs.pl:248 ../vhffs-api/src/Vhffs/Panel/Main.pm:429
+#: ../vhffs-panel/user/prefs.pl:256 ../vhffs-api/src/Vhffs/Panel/Main.pm:410
msgid "User Preferences"
msgstr "Preferencias del usuario"
-#: ../vhffs-panel/subscribe.pl:166
+#: ../vhffs-panel/subscribe.pl:184
msgid "User Successfully created"
msgstr "Usuario bien creado"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:426
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:407
msgid "User account"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:337
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:338
msgid "User does not exist"
msgstr "El usuario no existe"
@@ -4894,7 +4722,7 @@
msgid "User is not active yet"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:86
+#: ../vhffs-panel/acl/view.pl:86 ../vhffs-panel/group/prefs.pl:142
msgid "User not found"
msgstr ""
@@ -4902,11 +4730,15 @@
msgid "User public area"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:198 ../vhffs-panel/user/prefs.pl:253
-#: ../vhffs-panel/acl/view.pl:171 ../vhffs-panel/group/prefs.pl:104
+#: ../vhffs-panel/group/prefs.pl:132 ../vhffs-panel/group/prefs.pl:166
+msgid "User will be added as soon as possible"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:216 ../vhffs-panel/user/prefs.pl:261
+#: ../vhffs-panel/acl/view.pl:171 ../vhffs-panel/group/prefs.pl:192
#: ../vhffs-panel/admin/user/list.pl:79 ../vhffs-panel/admin/su.pl:78
#: ../vhffs-panel/public/user.pl:83 ../vhffs-panel/public/lastusers.pl:78
-#: ../vhffs-panel/lost.pl:54 ../vhffs-api/src/Vhffs/Panel/Commons.pm:54
+#: ../vhffs-panel/lost.pl:54 ../vhffs-api/src/Vhffs/Panel/Commons.pm:62
msgid "Username"
msgstr "Identificador"
@@ -4919,8 +4751,8 @@
msgid "Username:"
msgstr "Identificador:"
-#: ../vhffs-panel/public/lastgroups.pl:75 ../vhffs-panel/public/group.pl:94
-#: ../vhffs-panel/public/allgroups.pl:82
+#: ../vhffs-panel/group/prefs.pl:210 ../vhffs-panel/public/lastgroups.pl:75
+#: ../vhffs-panel/public/group.pl:94 ../vhffs-panel/public/allgroups.pl:82
#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:109
msgid "Users"
msgstr "Usuarios"
@@ -4933,7 +4765,7 @@
msgid "Users' administration"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:50
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:58
msgid "VHFFS Login"
msgstr "Login VHFFS"
@@ -4951,10 +4783,10 @@
#: ../vhffs-panel/admin/user/edit.pl:140
#: ../vhffs-panel/admin/pgsql/edit.pl:116
-#: ../vhffs-panel/admin/group/edit.pl:116
+#: ../vhffs-panel/admin/group/edit.pl:121
#: ../vhffs-panel/admin/repository/edit.pl:116
#: ../vhffs-panel/admin/object/edit.pl:116
-#: ../vhffs-panel/admin/web/edit.pl:129 ../vhffs-panel/admin/mysql/edit.pl:117
+#: ../vhffs-panel/admin/web/edit.pl:112 ../vhffs-panel/admin/mysql/edit.pl:117
#: ../vhffs-panel/admin/cvs/edit.pl:125 ../vhffs-panel/admin/mail/edit.pl:157
#: ../vhffs-intl/extra_strings.pl:18
msgid "Validation refused"
@@ -4964,11 +4796,6 @@
msgid "Vhffs Statistics"
msgstr "Estadsticas VHHFS"
-#: ../vhffs-listengine/src/archives/archives.pl:68
-#: ../vhffs-listengine/src/archives/archives.pl:175
-msgid "View"
-msgstr ""
-
#: ../vhffs-panel/public/group.pl:211
#, fuzzy
msgid "View archives"
@@ -5002,10 +4829,10 @@
#: ../vhffs-panel/admin/user/edit.pl:141
#: ../vhffs-panel/admin/pgsql/edit.pl:117
-#: ../vhffs-panel/admin/group/edit.pl:117
+#: ../vhffs-panel/admin/group/edit.pl:122
#: ../vhffs-panel/admin/repository/edit.pl:117
#: ../vhffs-panel/admin/object/edit.pl:117
-#: ../vhffs-panel/admin/web/edit.pl:130 ../vhffs-panel/admin/mysql/edit.pl:118
+#: ../vhffs-panel/admin/web/edit.pl:113 ../vhffs-panel/admin/mysql/edit.pl:118
#: ../vhffs-panel/admin/cvs/edit.pl:126 ../vhffs-panel/admin/mail/edit.pl:158
#: ../vhffs-intl/extra_strings.pl:19
msgid "Waiting for creation"
@@ -5017,10 +4844,10 @@
#: ../vhffs-panel/admin/user/edit.pl:147
#: ../vhffs-panel/admin/pgsql/edit.pl:123
-#: ../vhffs-panel/admin/group/edit.pl:123
+#: ../vhffs-panel/admin/group/edit.pl:128
#: ../vhffs-panel/admin/repository/edit.pl:123
#: ../vhffs-panel/admin/object/edit.pl:123
-#: ../vhffs-panel/admin/web/edit.pl:136 ../vhffs-panel/admin/mysql/edit.pl:124
+#: ../vhffs-panel/admin/web/edit.pl:119 ../vhffs-panel/admin/mysql/edit.pl:124
#: ../vhffs-panel/admin/cvs/edit.pl:132 ../vhffs-panel/admin/mail/edit.pl:164
#: ../vhffs-intl/extra_strings.pl:25
msgid "Waiting for modification"
@@ -5029,21 +4856,47 @@
#: ../vhffs-panel/mailinglist/prefs.pl:180
#: ../vhffs-panel/admin/user/edit.pl:139
#: ../vhffs-panel/admin/pgsql/edit.pl:115
-#: ../vhffs-panel/admin/group/edit.pl:115
+#: ../vhffs-panel/admin/group/edit.pl:120
#: ../vhffs-panel/admin/repository/edit.pl:115
#: ../vhffs-panel/admin/object/edit.pl:115
-#: ../vhffs-panel/admin/web/edit.pl:128 ../vhffs-panel/admin/mysql/edit.pl:116
+#: ../vhffs-panel/admin/web/edit.pl:111 ../vhffs-panel/admin/mysql/edit.pl:116
#: ../vhffs-panel/admin/cvs/edit.pl:124 ../vhffs-panel/admin/mail/edit.pl:156
#: ../vhffs-intl/extra_strings.pl:17
msgid "Waiting for validation"
msgstr "Validacin en espera"
+#: ../vhffs-panel/user/prefs.pl:119
+msgid "Wanted shell is not in the shell list"
+msgstr ""
+
#: ../vhffs-panel/alert.pl:67
msgid "Warn the admin team"
msgstr "Advertir la equipa admin"
-#: ../vhffs-panel/user/prefs.pl:347
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:474
#, perl-format
+msgid ""
+"We confirm that you REFUSED the subscription of:\n"
+" %s\n"
+"\n"
+"to the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:450
+#, perl-format
+msgid ""
+"We confirm that you accepted the subscription of:\n"
+" %s\n"
+"\n"
+"to the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:376
+#, perl-format
msgid "We offer you the possibility to have one email box on the domain %s"
msgstr "Se ofrece la possibilidad de tener un cuenta sobre el dominio %s"
@@ -5066,11 +4919,6 @@
msgid "Web Area awaiting validation"
msgstr "Zona Web por validar"
-#: ../vhffs-panel/web/web_submit.pl:86
-#, fuzzy
-msgid "Web area successfully created !"
-msgstr "Zona Web bien creada."
-
#: ../vhffs-intl/extra_strings.pl:34
msgid "Webarea"
msgstr ""
@@ -5098,11 +4946,11 @@
msgid "Weight"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:493
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:474
msgid "Welcome"
msgstr "Bienvenido"
-#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:51
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:59
#, fuzzy, perl-format
msgid "Welcome on %s"
msgstr "Bienvenido a"
@@ -5113,36 +4961,36 @@
#: ../vhffs-panel/admin/user/edit.pl:150
#: ../vhffs-panel/admin/pgsql/edit.pl:126
-#: ../vhffs-panel/admin/group/edit.pl:126
+#: ../vhffs-panel/admin/group/edit.pl:131
#: ../vhffs-panel/admin/repository/edit.pl:126
#: ../vhffs-panel/admin/object/edit.pl:126
-#: ../vhffs-panel/admin/web/edit.pl:139 ../vhffs-panel/admin/mysql/edit.pl:127
+#: ../vhffs-panel/admin/web/edit.pl:122 ../vhffs-panel/admin/mysql/edit.pl:127
#: ../vhffs-panel/admin/cvs/edit.pl:135 ../vhffs-panel/admin/mail/edit.pl:167
#: ../vhffs-intl/extra_strings.pl:28
msgid "Will be deleted"
msgstr "Ser destruido"
-#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:70
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:78
#, perl-format
msgid "Woah, %s users and %s groups already trust %s"
msgstr ""
#: ../vhffs-panel/svn/prefs.pl:119 ../vhffs-panel/dns/prefs.pl:276
#: ../vhffs-panel/admin/cvs/edit.pl:105 ../vhffs-panel/admin/cvs/show.pl:104
-#: ../vhffs-panel/web/prefs.pl:115 ../vhffs-panel/cvs/prefs.pl:94
+#: ../vhffs-panel/cvs/prefs.pl:94
msgid "Yes"
msgstr "Si"
#: ../vhffs-panel/mailinglist/prefs.pl:204 ../vhffs-panel/svn/prefs.pl:125
-#: ../vhffs-panel/user/prefs.pl:279 ../vhffs-panel/dns/prefs.pl:269
-#: ../vhffs-panel/pgsql/prefs.pl:111 ../vhffs-panel/group/prefs.pl:100
-#: ../vhffs-panel/repository/prefs.pl:105 ../vhffs-panel/web/prefs.pl:130
+#: ../vhffs-panel/user/prefs.pl:288 ../vhffs-panel/dns/prefs.pl:269
+#: ../vhffs-panel/pgsql/prefs.pl:111 ../vhffs-panel/group/prefs.pl:188
+#: ../vhffs-panel/repository/prefs.pl:106 ../vhffs-panel/web/prefs.pl:111
#: ../vhffs-panel/mysql/prefs.pl:118 ../vhffs-panel/cvs/prefs.pl:100
#: ../vhffs-panel/mail/prefs.pl:133
msgid "Yes I'm sure of what I do"
msgstr "Si, soy seguro(a)"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:222
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:224
#, fuzzy
msgid "You are not a subscriber on this list.\n"
msgstr "No miembros sobre la lista"
@@ -5198,7 +5046,7 @@
msgid "You are not granted to access this page"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:114
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:116
#, perl-format
msgid ""
"You asked to be subscribed to the following list:\n"
@@ -5208,7 +5056,7 @@
msgstr ""
#: ../vhffs-panel/svn/prefs.pl:131 ../vhffs-panel/dns/prefs.pl:261
-#: ../vhffs-panel/web/prefs.pl:123 ../vhffs-panel/mail/prefs.pl:139
+#: ../vhffs-panel/web/prefs.pl:104 ../vhffs-panel/mail/prefs.pl:139
#, fuzzy
msgid ""
"You can Manage rights on this service for each user in the VHFFS database. "
@@ -5221,42 +5069,46 @@
msgid "You can also send a command list in the mail body.\n"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:80
+#: ../vhffs-panel/group/prefs.pl:108
+msgid "You cannot remove the owner of the group"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:85
msgid "You cannot subscribe to VHFFS"
msgstr "No puede suscribir a VHFFS"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:221
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:223
#, fuzzy, perl-format
msgid "You cannot unsubscribe from the list %s\n"
msgstr "No puede suscribir a VHFFS"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:206
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:208
msgid "You demand was refused\n"
msgstr ""
-#: ../vhffs-panel/mailinglist/submit.pl:100
-#, fuzzy
-msgid "You don't own this domain"
-msgstr "Es imposible poner MX al da sobre esto dominio"
+#: ../vhffs-panel/mailinglist/create.pl:79
+msgid "You do not own this domain !"
+msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:177
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:179
#, perl-format
msgid ""
"You have been successfully removed from the following list:\n"
-"\n"
-"%s\n"
+" %s\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:250
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:252
#, fuzzy, perl-format
msgid "You have been successfully removed from the list %s.\n"
msgstr "Esto bzon es bien aadido a esto dominio"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:142
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:158
-#, fuzzy, perl-format
-msgid "You have been successfully subscribed to the list %s\n"
-msgstr "Esto bzon es bien aadido a esto dominio"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:144
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:160
+#, perl-format
+msgid ""
+"You have been successfully subscribed to the following mailing list:\n"
+" %s\n"
+msgstr ""
#: ../vhffs-panel/mailinglist/index.pl:53 ../vhffs-panel/svn/index.pl:53
#: ../vhffs-panel/dns/index.pl:53 ../vhffs-panel/pgsql/index.pl:53
@@ -5276,67 +5128,72 @@
msgid "You lost your password? You're a bad guy!"
msgstr "Ha perdido su contrasea VHFFS? Que pena...!"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:144
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:163
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:146
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:165
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:436
msgid "You may get some help on listengine by sending an email to\n"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:161
+#: ../vhffs-panel/user/prefs.pl:169
msgid "You must choose a method for your mail"
msgstr "Debe eligir un mtodo por su mail"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:80
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:98
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:82
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:100
msgid "You must confirm your request by sending a confirmation email\n"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:121
+#: ../vhffs-panel/subscribe.pl:139
#, fuzzy
msgid "You must declare a valid mail address"
msgstr "Debe declarar un mail vlido"
-#: ../vhffs-panel/subscribe.pl:101
+#: ../vhffs-panel/subscribe.pl:119
msgid "You must declare your city"
msgstr "Debe declarar su ciudad"
-#: ../vhffs-panel/subscribe.pl:97
+#: ../vhffs-panel/subscribe.pl:115
msgid "You must declare your country"
msgstr "Debe declarar su pas"
-#: ../vhffs-panel/subscribe.pl:109
+#: ../vhffs-panel/subscribe.pl:127
msgid "You must declare your firstname"
msgstr "Debe declarar su nombre de pila"
-#: ../vhffs-panel/subscribe.pl:113
+#: ../vhffs-panel/subscribe.pl:131
msgid "You must declare your lastname"
msgstr "Debe declarar su apellido"
-#: ../vhffs-panel/subscribe.pl:117
+#: ../vhffs-panel/subscribe.pl:135
msgid "You must declare your mail address"
msgstr "Debe declarar su mail"
-#: ../vhffs-panel/subscribe.pl:89
+#: ../vhffs-panel/subscribe.pl:107
msgid "You must declare your username"
msgstr "Debe declarar su identificador"
-#: ../vhffs-panel/subscribe.pl:105
+#: ../vhffs-panel/subscribe.pl:123
msgid "You must declare your zipcode"
msgstr "Debe declarar su cdigo postal"
-#: ../vhffs-panel/dns/create.pl:43 ../vhffs-panel/cvs/create.pl:73
+#: ../vhffs-panel/mailinglist/create.pl:74 ../vhffs-panel/svn/create.pl:73
+#: ../vhffs-panel/dns/create.pl:43 ../vhffs-panel/pgsql/create.pl:76
+#: ../vhffs-panel/group/prefs.pl:89 ../vhffs-panel/group/create.pl:68
+#: ../vhffs-panel/repository/create.pl:70 ../vhffs-panel/web/create.pl:73
+#: ../vhffs-panel/mysql/create.pl:76 ../vhffs-panel/cvs/create.pl:75
+#: ../vhffs-panel/mail/create.pl:66
msgid "You must enter a description"
msgstr ""
-#: ../vhffs-panel/mailinglist/create.pl:81
-msgid "You need to manage at least a domain to host a mailing-list"
+#: ../vhffs-panel/group/prefs.pl:124
+msgid "You must enter an username"
msgstr ""
-"Debe administrar por lo menos un dominio, por albergar una mailing-list"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:161
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:163
msgid "You will receive an email with the decision of administrators.\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:339
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:340
msgid "You're are not allowed to browse panel"
msgstr "No es autorizado a recorrer el panel"
@@ -5352,13 +5209,12 @@
#: ../vhffs-panel/dns/prefs.pl:93 ../vhffs-panel/dns/prefs.pl:110
#: ../vhffs-panel/pgsql/delete.pl:77 ../vhffs-panel/pgsql/prefs.pl:78
#: ../vhffs-panel/pgsql/prefs_save.pl:85 ../vhffs-panel/group/delete.pl:70
-#: ../vhffs-panel/group/remove_user_from_group.pl:75
-#: ../vhffs-panel/group/prefs.pl:80 ../vhffs-panel/group/join_group.pl:74
-#: ../vhffs-panel/group/prefs_save.pl:78
-#: ../vhffs-panel/repository/delete.pl:82
+#: ../vhffs-panel/group/prefs.pl:74 ../vhffs-panel/group/prefs.pl:83
+#: ../vhffs-panel/group/prefs.pl:102 ../vhffs-panel/group/prefs.pl:117
+#: ../vhffs-panel/group/prefs.pl:158 ../vhffs-panel/repository/delete.pl:82
#: ../vhffs-panel/repository/prefs.pl:83
#: ../vhffs-panel/repository/prefs_save.pl:82
-#: ../vhffs-panel/admin/moderation_submit.pl:78
+#: ../vhffs-panel/admin/moderation_submit.pl:79
#: ../vhffs-panel/admin/moderation.pl:76
#: ../vhffs-panel/admin/broadcast_submit.pl:78
#: ../vhffs-panel/admin/broadcast_delete.pl:78
@@ -5366,7 +5222,7 @@
#: ../vhffs-panel/admin/mail/password_box.pl:96
#: ../vhffs-panel/admin/mail/change_forward.pl:96
#: ../vhffs-panel/web/delete.pl:83 ../vhffs-panel/web/prefs.pl:86
-#: ../vhffs-panel/web/prefs_save.pl:86 ../vhffs-panel/mysql/delete.pl:80
+#: ../vhffs-panel/web/prefs_save.pl:85 ../vhffs-panel/mysql/delete.pl:80
#: ../vhffs-panel/mysql/prefs.pl:84 ../vhffs-panel/mysql/prefs_save.pl:87
#: ../vhffs-panel/cvs/delete.pl:82 ../vhffs-panel/cvs/prefs.pl:80
#: ../vhffs-panel/cvs/prefs_save.pl:81 ../vhffs-panel/mail/delete.pl:86
@@ -5488,7 +5344,7 @@
msgid "Your Subversion repository request : %s"
msgstr "Todas las listas de repositorios Subversion"
-#: ../vhffs-panel/subscribe.pl:218
+#: ../vhffs-panel/subscribe.pl:237
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"
@@ -5513,7 +5369,7 @@
msgid "Your projects"
msgstr ""
-#: ../vhffs-panel/cvs/create.pl:71
+#: ../vhffs-panel/cvs/create.pl:73
#, fuzzy
msgid ""
"Your repository name is not correct. It must contains at least 3 caracters"
@@ -5521,7 +5377,7 @@
"El nombre del repositorio est demasiado corto. Debe contener por lo menos 3 "
"caracteres"
-#: ../vhffs-panel/cvs/create.pl:69
+#: ../vhffs-panel/cvs/create.pl:71
#, fuzzy
msgid ""
"Your repository name is not correct. It must contains only caracter and "
@@ -5530,7 +5386,7 @@
"El nombre del repositorio est demasiado corto. Debe contener por lo menos 3 "
"caracteres"
-#: ../vhffs-panel/admin/moderation_submit.pl:101 ../vhffs-irc/modobot.pl:393
+#: ../vhffs-irc/modobot.pl:393
#, fuzzy
msgid "Your request for a "
msgstr "Su demanda por la zona web"
@@ -5540,13 +5396,29 @@
msgid "Your request on %s"
msgstr "Su demanda por la zona web"
-#: ../vhffs-panel/admin/moderation_submit.pl:111
-#, fuzzy
-msgid "Your request on VHFFS platform"
-msgstr "Alarma sobre la plataforma Vhffs"
+#: ../vhffs-panel/admin/moderation_submit.pl:102
+#, perl-format
+msgid "Your request on %s platform"
+msgstr ""
-#: ../vhffs-panel/subscribe.pl:217
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:434
+#, perl-format
msgid ""
+"Your subscription was accepted to the following mailing list:\n"
+" %s\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:462
+#, perl-format
+msgid ""
+"Your subscription was refused to the following mailing list:\n"
+" %s\n"
+"\n"
+"Have a nice day.\n"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:236
+msgid ""
"Your username. It must contains only alphanumeric characters in lowercase, "
"its length must be between 3 and 12 chars"
msgstr ""
@@ -5556,18 +5428,18 @@
msgid "Your web hosting request for the servername : %s "
msgstr "Su demanda por la zona web:"
-#: ../vhffs-panel/subscribe.pl:125
+#: ../vhffs-panel/subscribe.pl:143
#, fuzzy
msgid "Your zipcode is not correct! Please enter a correct zipcode"
msgstr ""
"Su cdigo postal no es correcto! Escribe por favor un cdigo postal vlido"
-#: ../vhffs-panel/subscribe.pl:202 ../vhffs-panel/user/prefs.pl:257
+#: ../vhffs-panel/subscribe.pl:220 ../vhffs-panel/user/prefs.pl:265
#: ../vhffs-panel/admin/user/edit.pl:106 ../vhffs-panel/admin/user/show.pl:106
msgid "Zipcode"
msgstr "Cdigo postal"
-#: ../vhffs-panel/user/prefs.pl:102
+#: ../vhffs-panel/user/prefs.pl:103
#, fuzzy
msgid "Zipcode is not correct !"
msgstr "Su cdigo postal no es correcto!"
@@ -5577,11 +5449,11 @@
msgid "[%s] You've been added to the list %s"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:347
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:349
msgid "cannot be removed from the list\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:313
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:315
msgid "cannot be removed.\n"
msgstr ""
@@ -5628,7 +5500,7 @@
msgid "help_user_projects"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:362
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:364
#, perl-format
msgid "in the moderation queue of the list %s"
msgstr ""
@@ -5637,36 +5509,36 @@
msgid "lang [fr|us|es]\t - set listengine language\n"
msgstr ""
-#: ../vhffs-listengine/src/listengine.pl:781
+#: ../vhffs-listengine/src/listengine.pl:926
#, perl-format
msgid "listengine - list of messages to moderate for %s"
msgstr ""
-#: ../vhffs-listengine/src/listengine.pl:664
-#: ../vhffs-listengine/src/listengine.pl:686
-#: ../vhffs-listengine/src/listengine.pl:697
+#: ../vhffs-listengine/src/listengine.pl:809
+#: ../vhffs-listengine/src/listengine.pl:831
+#: ../vhffs-listengine/src/listengine.pl:842
msgid "listengine help"
msgstr ""
-#: ../vhffs-listengine/src/listengine.pl:729
-#: ../vhffs-listengine/src/listengine.pl:740
-#: ../vhffs-listengine/src/listengine.pl:756
-#: ../vhffs-listengine/src/listengine.pl:768
-#: ../vhffs-listengine/src/listengine.pl:795
-#: ../vhffs-listengine/src/listengine.pl:806
+#: ../vhffs-listengine/src/listengine.pl:874
+#: ../vhffs-listengine/src/listengine.pl:885
+#: ../vhffs-listengine/src/listengine.pl:901
+#: ../vhffs-listengine/src/listengine.pl:913
+#: ../vhffs-listengine/src/listengine.pl:940
+#: ../vhffs-listengine/src/listengine.pl:951
#, fuzzy
msgid "listengine moderation"
msgstr "Moderacin en curso"
-#: ../vhffs-listengine/src/listengine.pl:714
+#: ../vhffs-listengine/src/listengine.pl:859
msgid "listengine result command"
msgstr ""
-#: ../vhffs-listengine/src/listengine.pl:833
+#: ../vhffs-listengine/src/listengine.pl:992
msgid "listengine: unknown command"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:199 ../vhffs-panel/user/prefs.pl:254
+#: ../vhffs-panel/subscribe.pl:217 ../vhffs-panel/user/prefs.pl:262
msgid "mail"
msgstr "mail"
@@ -5674,24 +5546,24 @@
msgid "ml adress here..."
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:56
-msgid "moderate XXXXX\t\t\t - moderate the message with message-id XXXXX\n"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:58
+msgid "moderate XXXXX\t\t\t - accept the message with message-id XXXXX\n"
msgstr ""
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:59
+msgid ""
+"moderate accept XXXXX\t\t\t - accept the message with message-id XXXXX\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:61
msgid "moderate list\t\t\t - give the message list for moderation\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:58
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:60
msgid ""
"moderate refused XXXXX\t\t\t - refuse the message with message-id XXXXX\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:57
-msgid ""
-"moderate validate XXXXX\t\t\t - moderate the message with message-id XXXXX\n"
-msgstr ""
-
#: ../vhffs-panel/admin/object/edit.pl:112
msgid "no date"
msgstr "no fecha"
@@ -5700,8 +5572,8 @@
msgid "no information about date"
msgstr "no informacines sobre la fecha"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:312
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:346
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:314
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:348
#, perl-format
msgid "present in the moderation queue for the list %s"
msgstr ""
@@ -5710,50 +5582,327 @@
msgid "subscribe\t - subscribe the shipper to the list\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:399
-#, perl-format
-msgid "to %s-request@%s with the following subject : \"moderate %s\" \n"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:56
+msgid ""
+"subscription accept XXXXX\t\t - accept the subscription with key XXXXX\n"
msgstr ""
-#: ../vhffs-listengine/src/archives/show_msg.pl:99
-#, perl-format
-msgid "unknown message-id t: %s"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:57
+msgid ""
+"subscription refuse XXXXX\t\t - refuse the subscription with key XXXXX\n"
msgstr ""
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:52
msgid "unsubscribe\t - unsubscribe from this list\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:64
-msgid "user info user@xxxxxxxxxx\t\t - show this user's informations\n"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:66
+msgid "user info user@xxxxxxxxxx\t\t - show user information\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:62
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:64
msgid "user right RIGHT user@xxxxxxxxxx\t - change right for this user\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:61
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:63
msgid ""
"user subscribe user@xxxxxxxxxx\t\t - register the user user@xxxxxxxxxx on "
"the list\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:60
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:62
msgid ""
"user unsubscribe user@xxxxxxxxxx\t - delete user user@xxxxxxxxxx from list\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:330
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:332
#, perl-format
msgid "was removed from the moderation queue from the list %s"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:363
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:365
#, fuzzy
msgid "was sent on the list.\n"
msgstr "Mail por la lista"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:399
+#, perl-format
+msgid ""
+"with the following subject :\n"
+" \"moderate %s\" \n"
+msgstr ""
+
#, fuzzy
+#~ msgid "Add this user !"
+#~ msgstr "Aadir esto usuario "
+
+#~ msgid "Add this user to this group"
+#~ msgstr "Aadir esto usuario en el grupo"
+
+#, fuzzy
+#~ msgid "Alert state"
+#~ msgstr "Estadsticas usuarios"
+
+#, fuzzy
+#~ msgid "An error occured while adding an ACL for the group"
+#~ msgstr "Un error lleg durante el aadido ACL en esto grupo"
+
+#, fuzzy
+#~ msgid "An error occured while adding yourself to the ACL"
+#~ msgstr "Un error lleg durante el aadido ACL en esto grupo"
+
+#, fuzzy
+#~ msgid "An error occured while creating the list"
+#~ msgstr "Un error lleg durante la creacin de la lista"
+
+#, fuzzy
+#~ msgid "An error occured while creating the object"
+#~ msgstr "Un error lleg durante la creacin del objecto %s %s"
+
+#, fuzzy
+#~ msgid "An error occured while creating the object %s %s"
+#~ msgstr "Un error lleg durante la creacin del objecto %s %s"
+
+#, fuzzy
+#~ msgid "An error occured while setting up the ACL"
+#~ msgstr "Un error lleg durante el aadido ACL"
+
+#, fuzzy
+#~ msgid "Archive are not open for this list"
+#~ msgstr "Esto miembro ya existe sobre esta lista"
+
+#, fuzzy
+#~ msgid "Archives"
+#~ msgstr "Abrir los archivos"
+
+#, fuzzy
+#~ msgid "Archives for "
+#~ msgstr "Buscar un resultado por"
+
+#, fuzzy
+#~ msgid "Archives for year"
+#~ msgstr "Bsqueda sobre un usuario"
+
+#, fuzzy
+#~ msgid "Bad listname"
+#~ msgstr "Nombre de pila"
+
+#, fuzzy
+#~ msgid "Bad message-id"
+#~ msgstr "Su mensaje"
+
+#, fuzzy
+#~ msgid "CGI Errror!"
+#~ msgstr "Error CGI!"
+
+#, fuzzy
+#~ msgid "Cannot add this user in this group"
+#~ msgstr "Es imposible aadir esto usuario al grupo"
+
+#, fuzzy
+#~ msgid "Cannot remove the owner from a group"
+#~ msgstr "Destruir esto usuario desde esto grupo"
+
+#, fuzzy
+#~ msgid "Change language"
+#~ msgstr "Lenguaje"
+
+#, fuzzy
+#~ msgid "Change theme"
+#~ msgstr "Administrar los miembros"
+
+#~ msgid "Crawl"
+#~ msgstr "Crawl"
+
+#~ msgid "Create a Postgres database"
+#~ msgstr "Crear una base de datos Postgres"
+
+#, fuzzy
+#~ msgid "Database name must contain at least 3 caracters"
+#~ msgstr ""
+#~ "El nombre de la base de datos debe contener por lo menos 3 caracteres."
+
+#, fuzzy
+#~ msgid "Database name must contain between 3 and 16 characters"
+#~ msgstr ""
+#~ "El nombre de la base de datos debe contener por lo menos 3 caracteres."
+
+#, fuzzy
+#~ msgid "Database password must contains at least 3 characters"
+#~ msgstr ""
+#~ "El cdigo de acceso de la base de datos debe contener por lo menos 3 "
+#~ "caracteres"
+
+#, fuzzy
+#~ msgid "Doe not exist in the VHFFS database"
+#~ msgstr "Esto usuario no existe en la base de datos VHFFS"
+
+#~ msgid "Don't use Crawl"
+#~ msgstr "No utilizar crawl"
+
+#, fuzzy
+#~ msgid "Error when upload avatar for this object"
+#~ msgstr "Un error lleg durante la actualisacin del objecto"
+
+#, fuzzy
+#~ msgid "Error while creating list (unknow problem)"
+#~ msgstr "Un error lleg durante la creacin de la lista (problema desconocido)"
+
+#, fuzzy
+#~ msgid "Invalid mail domain"
+#~ msgstr "Mail invlido"
+
+#, fuzzy
+#~ msgid "Mail area successfully created !"
+#~ msgstr "Zona mail bien creada"
+
+#, fuzzy
+#~ msgid "Mailing-list successfully created !"
+#~ msgstr "Mailing-list bien creada!"
+
+#, fuzzy
+#~ msgid "Message from list %s"
+#~ msgstr "Destruir de la lista"
+
+#, fuzzy
+#~ msgid "Password must contain at least 3 caracters"
+#~ msgstr "El cdigo de acceso debe contener por lo menos 3 caracteres."
+
+#, fuzzy
+#~ msgid "Password must contains only alphanum caracters"
+#~ msgstr "El cdigo de acceso debe contener por lo menos 3 caracteres."
+
+#~ msgid "PostgreSQL database name"
+#~ msgstr "Nombre de la base de datos PostgreSQL"
+
+#~ msgid "PostgreSQL password for this database"
+#~ msgstr "Cdigo de acceso PostgreSQL por esta base de datos"
+
+#, fuzzy
+#~ msgid "Project Successfully modified"
+#~ msgstr "Proyecto bien creado!"
+
+#~ msgid "Remove this user from this group"
+#~ msgstr "Destruir esto usuario desde esto grupo"
+
+#, fuzzy
+#~ msgid "Send logo"
+#~ msgstr "Envia lo"
+
+#, fuzzy
+#~ msgid "Servername error. Please enter a valid servername"
+#~ msgstr ""
+#~ "Error de nombre de servidor. Escribe un nombre de servidor vlido por favor"
+
+#, fuzzy
+#~ msgid "Subject: "
+#~ msgstr "Tema"
+
+#, fuzzy
+#~ msgid ""
+#~ "Sucessfully added this user to this group. Please wait while robots add "
+#~ "him"
+#~ msgstr ""
+#~ "Usuario bien aadido a esto grupo. Espera un momento por favor durante la "
+#~ "actualisacin de esto."
+
+#, fuzzy
+#~ msgid "The Download repository object was successfully created !"
+#~ msgstr "El objecto PostgreSQL es bien creado."
+
+#, fuzzy
+#~ msgid "The MySQL object was successfully created !"
+#~ msgstr "El objecto MySQL esta bien creado!"
+
+#, fuzzy
+#~ msgid "The PostgreSQL object was successfully created !"
+#~ msgstr "El objecto PostgreSQL es bien creado."
+
+#, fuzzy
+#~ msgid "The Subversion object was successfully created !"
+#~ msgstr "El objecto Subversion es bien creado."
+
+#~ msgid "The database name is not valid"
+#~ msgstr "El nombre de la base de datos es invlido"
+
+#, fuzzy
+#~ msgid "The database name is too long. There is a 32 character limit"
+#~ msgstr ""
+#~ "El nombre de la base de datos debe contener por lo menos 3 caracteres."
+
+#, fuzzy
+#~ msgid ""
+#~ "The groupname should contain at least 3 caracters and must contain only "
+#~ "letters or numbers in lower case"
+#~ msgstr ""
+#~ "El nombre del grupo debe contener por lo menos 3 caracteres, solo en "
+#~ "letras o cifras"
+
+#, fuzzy
+#~ msgid "The password is not valid"
+#~ msgstr "El nombre de la base de datos es invlido"
+
+#, fuzzy
+#~ 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 ""
+#~ "El prefijo de su bases de datos es fijo, entonces, el nombre de su bases "
+#~ "de datos ser%s_DBNAME<br>. Un usuario ser creado, con un nombre fijo, y "
+#~ "ser llamado %s_DBNAME"
+
+#, fuzzy
+#~ msgid ""
+#~ "The repository name is too short. It must contains at least 3 caracters, "
+#~ "and must only contain letters and numbers"
+#~ msgstr ""
+#~ "El nombre del grupo debe contener por lo menos 3 caracteres, solo en "
+#~ "letras o cifras"
+
+#~ msgid "This group is not activated yet"
+#~ msgstr "Esto grupo no es activado ya"
+
+#~ msgid "This repository name already exists"
+#~ msgstr "Esto nombre de repositorio ya existe"
+
+#, fuzzy
+#~ msgid "This user does not exists "
+#~ msgstr "Esto usuario no existe"
+
+#~ msgid "This user is not in this group "
+#~ msgstr "Esto usuario no es en esto grupo"
+
+#~ msgid "Unable to record changes on this domain"
+#~ msgstr "Es imposible grabar cambios sobre esto dominio"
+
+#~ msgid "Use Crawl"
+#~ msgstr "Utilize Crawl"
+
+#~ msgid "Use crawl (useful for web-search engine)"
+#~ msgstr "Utilize Crawl (til por los motores de Bsqueda)"
+
+#, fuzzy
+#~ msgid "Web area successfully created !"
+#~ msgstr "Zona Web bien creada."
+
+#, fuzzy
+#~ msgid "You don't own this domain"
+#~ msgstr "Es imposible poner MX al da sobre esto dominio"
+
+#, fuzzy
+#~ msgid "You have been successfully subscribed to the list %s\n"
+#~ msgstr "Esto bzon es bien aadido a esto dominio"
+
+#~ msgid "You need to manage at least a domain to host a mailing-list"
+#~ msgstr ""
+#~ "Debe administrar por lo menos un dominio, por albergar una mailing-list"
+
+#, fuzzy
+#~ msgid "Your request on VHFFS platform"
+#~ msgstr "Alarma sobre la plataforma Vhffs"
+
+#, fuzzy
#~ msgid "Administrator Menu"
#~ msgstr "Administracin PostgreSQL"
@@ -6101,9 +6250,6 @@
#~ msgid "No such user on Vhffs"
#~ msgstr "El usuario no existe sobre Vhffs"
-#~ msgid "This forward has been successfully added to this domain"
-#~ msgstr "Esto reenviar es bien aadido a esto dominio"
-
#, fuzzy
#~ msgid "Unable to reccord changes on this domain"
#~ msgstr "Es imposible grabar cambios sobre esto dominio"
Modified: trunk/vhffs-intl/src/fr.po
===================================================================
--- trunk/vhffs-intl/src/fr.po 2007-07-13 15:03:49 UTC (rev 724)
+++ trunk/vhffs-intl/src/fr.po 2007-07-13 16:45:19 UTC (rev 725)
@@ -11,7 +11,7 @@
msgstr ""
"Project-Id-Version: VHFFS 4.1 French strings\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-12 11:44+0200\n"
+"POT-Creation-Date: 2007-07-13 15:30+0200\n"
"PO-Revision-Date: 2006-04-26 11:41+0200\n"
"Last-Translator: Sylvain Vrignaud <misric@xxxxxxxxxx>\n"
"Language-Team: <vhffs-dev@xxxxxxxxx>\n"
@@ -54,7 +54,7 @@
"Avec le sujet suivant :\n"
" \"Inscription refusée %s %s\" \n"
-#: ../vhffs-irc/modobot.pl:397 ../vhffs-panel/admin/moderation_submit.pl:105
+#: ../vhffs-irc/modobot.pl:397
msgid ""
" was accepted\n"
"Please wait while we are creating your object\n"
@@ -88,7 +88,7 @@
msgid "@ represents the origin (%s)"
msgstr "@ représente l'origine (%s)"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:310
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:297
msgid ""
"A CNAME, A or AAAA record with the same name already exists for this domain"
msgstr ""
@@ -113,6 +113,7 @@
"Il y a un mail à modérer dans la liste suivante :\n"
" %s\n"
"\n"
+
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:413
#, perl-format
msgid ""
@@ -123,6 +124,7 @@
"Une personne souhaite s'inscrire à la liste de diffusion suivante:\n"
" %s\n"
"\n"
+
#: ../vhffs-panel/dns/prefs.pl:151
msgid "A record added"
msgstr "Enregistrement A ajouté"
@@ -173,7 +175,7 @@
msgid "Access denied"
msgstr "Accès refusé"
-#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:65 ../vhffs-panel/logout.pl:60
+#: ../vhffs-panel/logout.pl:60 ../vhffs-api/src/Vhffs/Panel/Commons.pm:65
msgid "Access to panel"
msgstr "Accéder au panel"
@@ -190,14 +192,14 @@
msgid "Activate %s@%s email"
msgstr "Activer l'adresse email %s@%s"
-#: ../vhffs-intl/extra_strings.pl:22
+#: ../vhffs-panel/admin/user/edit.pl:143
+#: ../vhffs-panel/admin/pgsql/edit.pl:119
+#: ../vhffs-panel/admin/group/edit.pl:124
#: ../vhffs-panel/admin/repository/edit.pl:119
-#: ../vhffs-panel/admin/mail/edit.pl:160
-#: ../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:120
#: ../vhffs-panel/admin/object/edit.pl:119
-#: ../vhffs-panel/admin/web/edit.pl:115 ../vhffs-panel/admin/user/edit.pl:143
+#: ../vhffs-panel/admin/web/edit.pl:115 ../vhffs-panel/admin/mysql/edit.pl:120
+#: ../vhffs-panel/admin/cvs/edit.pl:128 ../vhffs-panel/admin/mail/edit.pl:160
+#: ../vhffs-intl/extra_strings.pl:22
msgid "Activated"
msgstr "Activé"
@@ -205,7 +207,7 @@
msgid "Add"
msgstr "Ajouter"
-#: ../vhffs-panel/dns/prefs.pl:280 ../vhffs-panel/mailinglist/prefs.pl:156
+#: ../vhffs-panel/mailinglist/prefs.pl:156 ../vhffs-panel/dns/prefs.pl:280
msgid "Add !"
msgstr "Ajouter !"
@@ -257,8 +259,8 @@
msgid "Add an account"
msgstr "Ajouter un compte"
+#: ../vhffs-panel/subscribe.pl:223 ../vhffs-panel/user/prefs.pl:267
#: ../vhffs-panel/admin/user/edit.pl:104 ../vhffs-panel/admin/user/show.pl:104
-#: ../vhffs-panel/user/prefs.pl:267 ../vhffs-panel/subscribe.pl:223
msgid "Address"
msgstr "Adresse"
@@ -284,7 +286,7 @@
msgid "Admin Download repository"
msgstr "Administration des espaces de téléchargement"
-#: ../vhffs-panel/dns/prefs.pl:260 ../vhffs-panel/svn/prefs.pl:130
+#: ../vhffs-panel/svn/prefs.pl:130 ../vhffs-panel/dns/prefs.pl:260
#: ../vhffs-panel/web/prefs.pl:103 ../vhffs-panel/mail/prefs.pl:138
msgid "Admin Rights on this object (ACL)"
msgstr "Droits d'admin sur cet objet (ACL)"
@@ -297,8 +299,8 @@
msgid "Admin account"
msgstr "Compte administrateur"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:402
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:405 ../vhffs-panel/admin/index.pl:53
+#: ../vhffs-panel/admin/index.pl:53 ../vhffs-api/src/Vhffs/Panel/Main.pm:402
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:405
msgid "Administration"
msgstr "Administration"
@@ -318,8 +320,8 @@
msgid "Alert on Vhffs platform"
msgstr "Signaler un dysfonctionnement"
+#: ../vhffs-panel/public/allwebsites.pl:73
#: ../vhffs-panel/public/allgroups.pl:69
-#: ../vhffs-panel/public/allwebsites.pl:73
msgid "All"
msgstr "Tous"
@@ -400,11 +402,11 @@
"Existe déjà sur ce domaine ou paramètres incorrects. Vérifiez votre "
"domaine"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:262
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:249
msgid "An MX record with the same name already exists for this domain"
msgstr "Un enregistrement MX avec le même nom existe déjà pour ce domaine."
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:285
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:272
msgid "An NS record with the same name already exists for this domain"
msgstr "Un enregistrement NS avec le même nom existe déjà pour ce domaine."
@@ -422,6 +424,7 @@
"a cette liste de diffusion :\n"
" %s\n"
"\n"
+
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:191
#, perl-format
msgid ""
@@ -429,7 +432,8 @@
" %s\n"
"\n"
msgstr ""
-"Une erreur s'est produite lors de votre inscription à cette liste de diffusion:\n"
+"Une erreur s'est produite lors de votre inscription à cette liste de "
+"diffusion:\n"
" %s\n"
"\n"
@@ -486,7 +490,7 @@
"Une erreur est survenue lors de la création de l'objet. Le domaine est "
"incorrect ou existe déjà sur cette plate-forme"
-#: ../vhffs-panel/cvs/create.pl:83 ../vhffs-panel/mailinglist/create.pl:81
+#: ../vhffs-panel/mailinglist/create.pl:81 ../vhffs-panel/cvs/create.pl:83
msgid "An error occured while creating the object.It probably already exists"
msgstr ""
"Une erreur est survenue lors de la création de cet objet. Il existe "
@@ -564,7 +568,7 @@
msgid "An error occured while updating the object"
msgstr "Une erreur est survenue lors de la mise à jour de l'objet"
-#: ../vhffs-panel/group/prefs.pl:93 ../vhffs-panel/group/delete.pl:89
+#: ../vhffs-panel/group/delete.pl:89 ../vhffs-panel/group/prefs.pl:93
msgid "An error occured while updating the project"
msgstr "Une erreur est survenue lors de la mise à jour du projet"
@@ -634,8 +638,8 @@
msgid "Avatar management"
msgstr "Gestion des avatars"
+#: ../vhffs-panel/admin/broadcast_list.pl:95
#: ../vhffs-panel/admin/broadcast_view.pl:96
-#: ../vhffs-panel/admin/broadcast_list.pl:95
msgid "Awaiting sending"
msgstr "En attente d'envoi"
@@ -669,9 +673,9 @@
"with domain.tld as servername. VHFFS redirect all request from www.domain."
"tld to domain.tld"
msgstr ""
-"Faites attention ! Si vous souhaitez créer www.domaine.tld, vous devez créer "
-"un espace web sous la forme domaine.tld. VHFFS redirige www.domain.tld vers"
-"domain.tld"
+"Faites attention ! Si vous souhaitez créer www.domaine.tld, vous devez "
+"créer un espace web sous la forme domaine.tld. VHFFS redirige www.domain."
+"tld versdomain.tld"
#: ../vhffs-panel/admin/broadcast_view.pl:88
msgid "Body"
@@ -685,41 +689,40 @@
"Mais nous sommes gentils : tapez votre identifiant (« login ») ici<br/> et "
"un nouveau mot de passe vous sera envoyé par mail"
-#: ../vhffs-panel/mail/delete_forward.pl:79
-#: ../vhffs-panel/mail/change_forward.pl:82 ../vhffs-panel/mail/spambox.pl:82
-#: ../vhffs-panel/mail/spamvirus.pl:82 ../vhffs-panel/mail/delete_box.pl:79
-#: ../vhffs-panel/mail/password_box.pl:82
-#: ../vhffs-panel/mail/add_forward.pl:78 ../vhffs-panel/mail/delete.pl:74
-#: ../vhffs-panel/mail/add_account.pl:82
+#: ../vhffs-panel/admin/mail/delete_box.pl:82
+#: ../vhffs-panel/admin/mail/password_box.pl:83
#: ../vhffs-panel/admin/mail/delete_forward.pl:83
#: ../vhffs-panel/admin/mail/change_forward.pl:83
-#: ../vhffs-panel/admin/mail/delete_box.pl:82
-#: ../vhffs-panel/admin/mail/password_box.pl:83
+#: ../vhffs-panel/mail/delete.pl:74 ../vhffs-panel/mail/delete_box.pl:79
+#: ../vhffs-panel/mail/add_account.pl:82
+#: ../vhffs-panel/mail/password_box.pl:82
+#: ../vhffs-panel/mail/delete_forward.pl:79
+#: ../vhffs-panel/mail/add_forward.pl:78
+#: ../vhffs-panel/mail/change_forward.pl:82
+#: ../vhffs-panel/mail/spamvirus.pl:82 ../vhffs-panel/mail/spambox.pl:82
msgid "CGI ERROR"
msgstr "Erreur CGI"
+#: ../vhffs-panel/admin/user/edit_submit.pl:91
+#: ../vhffs-panel/admin/user/edit.pl:79 ../vhffs-panel/admin/user/show.pl:81
+#: ../vhffs-panel/admin/user/edit_note.pl:81
+#: ../vhffs-panel/admin/pgsql/edit_submit.pl:79
+#: ../vhffs-panel/admin/pgsql/edit.pl:79 ../vhffs-panel/admin/pgsql/show.pl:79
+#: ../vhffs-panel/admin/group/edit_submit.pl:83
+#: ../vhffs-panel/admin/group/edit.pl:77
+#: ../vhffs-panel/admin/repository/edit_submit.pl:81
#: ../vhffs-panel/admin/repository/edit.pl:79
-#: ../vhffs-panel/admin/repository/edit_submit.pl:81
#: ../vhffs-panel/admin/repository/show.pl:79
-#: ../vhffs-panel/admin/mail/edit.pl:81 ../vhffs-panel/admin/mail/show.pl:81
-#: ../vhffs-panel/admin/pgsql/edit.pl:79
-#: ../vhffs-panel/admin/pgsql/edit_submit.pl:79
-#: ../vhffs-panel/admin/pgsql/show.pl:79 ../vhffs-panel/admin/cvs/edit.pl:79
-#: ../vhffs-panel/admin/cvs/edit_submit.pl:81
-#: ../vhffs-panel/admin/cvs/show.pl:79 ../vhffs-panel/admin/group/edit.pl:77
-#: ../vhffs-panel/admin/group/edit_submit.pl:83
-#: ../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_submit.pl:77
#: ../vhffs-panel/admin/object/delete_avatar.pl:81
-#: ../vhffs-panel/admin/web/edit.pl:79
+#: ../vhffs-panel/admin/object/edit.pl:79
#: ../vhffs-panel/admin/web/edit_submit.pl:79
-#: ../vhffs-panel/admin/web/show.pl:79 ../vhffs-panel/admin/user/edit.pl:79
-#: ../vhffs-panel/admin/user/edit_submit.pl:91
-#: ../vhffs-panel/admin/user/edit_note.pl:81
-#: ../vhffs-panel/admin/user/show.pl:81
+#: ../vhffs-panel/admin/web/edit.pl:79 ../vhffs-panel/admin/web/show.pl:79
+#: ../vhffs-panel/admin/mysql/edit_submit.pl:78
+#: ../vhffs-panel/admin/mysql/edit.pl:79 ../vhffs-panel/admin/mysql/show.pl:78
+#: ../vhffs-panel/admin/cvs/edit_submit.pl:81
+#: ../vhffs-panel/admin/cvs/edit.pl:79 ../vhffs-panel/admin/cvs/show.pl:79
+#: ../vhffs-panel/admin/mail/edit.pl:81 ../vhffs-panel/admin/mail/show.pl:81
msgid "CGI ERROR !"
msgstr "Erreur CGI"
@@ -728,54 +731,54 @@
msgid "CGI ERROR ! %s"
msgstr "Erreur CGI : %s"
-#: ../vhffs-panel/public/group.pl:72 ../vhffs-panel/public/user.pl:68
+#: ../vhffs-panel/public/user.pl:68 ../vhffs-panel/public/group.pl:72
msgid "CGI ERROR!"
msgstr "Erreur CGI"
-#: ../vhffs-panel/acl/view.pl:84 ../vhffs-panel/acl/view.pl:99
-#: ../vhffs-panel/acl/view.pl:114 ../vhffs-panel/svn/prefs.pl:82
+#: ../vhffs-panel/svn/prefs.pl:82 ../vhffs-panel/acl/view.pl:84
+#: ../vhffs-panel/acl/view.pl:99 ../vhffs-panel/acl/view.pl:114
msgid "CGI Error"
msgstr "Erreur CGI"
-#: ../vhffs-panel/repository/prefs.pl:72 ../vhffs-panel/cvs/prefs.pl:72
-#: ../vhffs-panel/svn/delete.pl:73 ../vhffs-panel/pgsql/delete.pl:81
+#: ../vhffs-panel/svn/delete.pl:73 ../vhffs-panel/history.pl:84
+#: ../vhffs-panel/pgsql/delete.pl:81 ../vhffs-panel/repository/prefs.pl:72
#: ../vhffs-panel/admin/mailing/mailing_submit.pl:78
+#: ../vhffs-panel/admin/broadcast_submit.pl:83
+#: ../vhffs-panel/admin/broadcast_delete.pl:83
#: ../vhffs-panel/admin/group/edit_submit.pl:95
-#: ../vhffs-panel/admin/broadcast_delete.pl:83
-#: ../vhffs-panel/admin/broadcast_submit.pl:83
-#: ../vhffs-panel/admin/broadcast_view.pl:78
-#: ../vhffs-panel/mysql/prefs_save.pl:79 ../vhffs-panel/mysql/prefs.pl:71
-#: ../vhffs-panel/mysql/delete.pl:76 ../vhffs-panel/history.pl:84
+#: ../vhffs-panel/admin/broadcast_view.pl:78 ../vhffs-panel/mysql/delete.pl:76
+#: ../vhffs-panel/mysql/prefs.pl:71 ../vhffs-panel/mysql/prefs_save.pl:79
+#: ../vhffs-panel/cvs/prefs.pl:72
msgid "CGI Error !"
msgstr "Erreur CGI"
-#: ../vhffs-panel/repository/prefs_save.pl:74
-#: ../vhffs-panel/repository/delete.pl:74 ../vhffs-panel/cvs/prefs_save.pl:74
-#: ../vhffs-panel/cvs/delete.pl:74 ../vhffs-panel/svn/prefs_save.pl:76
+#: ../vhffs-panel/svn/prefs_save.pl:76 ../vhffs-panel/repository/delete.pl:74
+#: ../vhffs-panel/repository/prefs_save.pl:74 ../vhffs-panel/cvs/delete.pl:74
+#: ../vhffs-panel/cvs/prefs_save.pl:74
#, perl-format
msgid "CGI Error ! %s"
msgstr "Erreur CGI %s"
-#: ../vhffs-panel/dns/prefs.pl:79 ../vhffs-panel/dns/delete.pl:79
+#: ../vhffs-panel/mailinglist/delete.pl:78
+#: ../vhffs-panel/mailinglist/save_sig.pl:77
+#: ../vhffs-panel/mailinglist/add_sub.pl:79
#: ../vhffs-panel/mailinglist/save_options.pl:81
-#: ../vhffs-panel/mailinglist/del_member.pl:79
-#: ../vhffs-panel/mailinglist/add_sub.pl:79
#: ../vhffs-panel/mailinglist/change_right.pl:81
#: ../vhffs-panel/mailinglist/change_right.pl:101
-#: ../vhffs-panel/mailinglist/delete.pl:78
-#: ../vhffs-panel/mailinglist/save_sig.pl:77 ../vhffs-panel/user/prefs.pl:86
+#: ../vhffs-panel/mailinglist/del_member.pl:79 ../vhffs-panel/user/prefs.pl:86
+#: ../vhffs-panel/dns/delete.pl:79 ../vhffs-panel/dns/prefs.pl:79
msgid "CGI Error!"
msgstr "Erreur CGI"
-#: ../vhffs-panel/repository/create.pl:68 ../vhffs-panel/group/prefs.pl:87
+#: ../vhffs-panel/mailinglist/create.pl:72 ../vhffs-panel/svn/create.pl:69
+#: ../vhffs-panel/pgsql/create.pl:74 ../vhffs-panel/group/prefs.pl:87
#: ../vhffs-panel/group/prefs.pl:106 ../vhffs-panel/group/prefs.pl:121
-#: ../vhffs-panel/group/prefs.pl:162 ../vhffs-panel/svn/create.pl:69
-#: ../vhffs-panel/mailinglist/create.pl:72 ../vhffs-panel/web/create.pl:69
-#: ../vhffs-panel/pgsql/create.pl:74 ../vhffs-panel/mysql/create.pl:74
+#: ../vhffs-panel/group/prefs.pl:162 ../vhffs-panel/repository/create.pl:68
+#: ../vhffs-panel/web/create.pl:69 ../vhffs-panel/mysql/create.pl:74
msgid "CGI error"
msgstr ""
-#: ../vhffs-panel/admin/moderation_submit.pl:90
+#: ../vhffs-panel/admin/moderation_submit.pl:91
msgid "CGI problem"
msgstr "Problème CGI"
@@ -866,9 +869,9 @@
msgid "Can't modify object ..."
msgstr "Impossible de modifier l'objet..."
+#: ../vhffs-panel/admin/group/edit_submit.pl:110
#: ../vhffs-panel/admin/repository/edit_submit.pl:101
#: ../vhffs-panel/admin/cvs/edit_submit.pl:100
-#: ../vhffs-panel/admin/group/edit_submit.pl:110
msgid "Can't modify object..."
msgstr "Impossible de modifier l'objet..."
@@ -894,31 +897,29 @@
msgid "Cannot delete this avatar"
msgstr "Impossible de supprimer cet avatar"
+#: ../vhffs-panel/admin/user/edit_submit.pl:96
+#: ../vhffs-panel/admin/user/edit.pl:85 ../vhffs-panel/admin/user/show.pl:87
+#: ../vhffs-panel/admin/user/edit_note.pl:86
+#: ../vhffs-panel/admin/pgsql/edit.pl:85 ../vhffs-panel/admin/pgsql/show.pl:85
+#: ../vhffs-panel/admin/group/edit_submit.pl:89
+#: ../vhffs-panel/admin/group/edit.pl:83 ../vhffs-panel/admin/group/show.pl:84
#: ../vhffs-panel/admin/repository/edit.pl:85
#: ../vhffs-panel/admin/repository/show.pl:85
-#: ../vhffs-panel/admin/mail/edit.pl:87 ../vhffs-panel/admin/mail/show.pl:87
-#: ../vhffs-panel/admin/pgsql/edit.pl:85 ../vhffs-panel/admin/pgsql/show.pl:85
-#: ../vhffs-panel/admin/cvs/edit.pl:85 ../vhffs-panel/admin/cvs/show.pl:85
-#: ../vhffs-panel/admin/group/edit.pl:83
-#: ../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_submit.pl:81
#: ../vhffs-panel/admin/object/delete_avatar.pl:85
-#: ../vhffs-panel/admin/web/edit.pl:85
+#: ../vhffs-panel/admin/object/edit.pl:84
#: ../vhffs-panel/admin/web/edit_submit.pl:85
-#: ../vhffs-panel/admin/web/show.pl:85 ../vhffs-panel/admin/user/edit.pl:85
-#: ../vhffs-panel/admin/user/edit_submit.pl:96
-#: ../vhffs-panel/admin/user/edit_note.pl:86
-#: ../vhffs-panel/admin/user/show.pl:87
+#: ../vhffs-panel/admin/web/edit.pl:85 ../vhffs-panel/admin/web/show.pl:85
+#: ../vhffs-panel/admin/mysql/edit.pl:85 ../vhffs-panel/admin/mysql/show.pl:84
+#: ../vhffs-panel/admin/cvs/edit.pl:85 ../vhffs-panel/admin/cvs/show.pl:85
+#: ../vhffs-panel/admin/mail/edit.pl:87 ../vhffs-panel/admin/mail/show.pl:87
msgid "Cannot fetch object"
msgstr "Impossible de lire l'objet"
+#: ../vhffs-panel/admin/pgsql/edit_submit.pl:85
#: ../vhffs-panel/admin/repository/edit_submit.pl:87
-#: ../vhffs-panel/admin/pgsql/edit_submit.pl:85
+#: ../vhffs-panel/admin/mysql/edit_submit.pl:84
#: ../vhffs-panel/admin/cvs/edit_submit.pl:87
-#: ../vhffs-panel/admin/mysql/edit_submit.pl:84
#, perl-format
msgid "Cannot fetch object %s"
msgstr "Impossible de lire l'objet %s"
@@ -936,19 +937,19 @@
msgid "Cannot get informations on object #%d"
msgstr "Impossible d'obtenir des informations sur l'objet #%d"
-#: ../vhffs-panel/repository/prefs.pl:76 ../vhffs-panel/dns/prefs.pl:86
-#: ../vhffs-panel/dns/delete.pl:84 ../vhffs-panel/cvs/prefs.pl:76
-#: ../vhffs-panel/svn/prefs.pl:93
+#: ../vhffs-panel/mailinglist/delete.pl:82
+#: ../vhffs-panel/mailinglist/save_sig.pl:81
+#: ../vhffs-panel/mailinglist/add_sub.pl:83
+#: ../vhffs-panel/mailinglist/prefs.pl:84
#: ../vhffs-panel/mailinglist/save_options.pl:85
-#: ../vhffs-panel/mailinglist/del_member.pl:83
-#: ../vhffs-panel/mailinglist/prefs.pl:84
-#: ../vhffs-panel/mailinglist/add_sub.pl:83
#: ../vhffs-panel/mailinglist/change_right.pl:85
-#: ../vhffs-panel/mailinglist/delete.pl:82
-#: ../vhffs-panel/mailinglist/save_sig.pl:81 ../vhffs-panel/web/prefs.pl:72
+#: ../vhffs-panel/mailinglist/del_member.pl:83 ../vhffs-panel/svn/prefs.pl:93
+#: ../vhffs-panel/dns/delete.pl:84 ../vhffs-panel/dns/prefs.pl:86
+#: ../vhffs-panel/pgsql/prefs.pl:71 ../vhffs-panel/repository/prefs.pl:76
+#: ../vhffs-panel/web/prefs.pl:72 ../vhffs-panel/mysql/prefs.pl:77
+#: ../vhffs-panel/cvs/prefs.pl:76 ../vhffs-panel/mail/add_account.pl:75
#: ../vhffs-panel/mail/save_catchall.pl:74
-#: ../vhffs-panel/mail/add_forward.pl:73 ../vhffs-panel/mail/add_account.pl:75
-#: ../vhffs-panel/pgsql/prefs.pl:71 ../vhffs-panel/mysql/prefs.pl:77
+#: ../vhffs-panel/mail/add_forward.pl:73
msgid "Cannot get informations on this object"
msgstr "Impossible d'obtenir des informations sur cet objet"
@@ -956,12 +957,12 @@
msgid "Cannot get statistics"
msgstr "Impossible d'obtenir les statistiques"
-#: ../vhffs-panel/cvs/prefs_save.pl:77 ../vhffs-panel/cvs/delete.pl:78
+#: ../vhffs-panel/cvs/delete.pl:78 ../vhffs-panel/cvs/prefs_save.pl:77
msgid "Cannot retrieve informations about this CVS repository"
msgstr "Impossible d'obtenir des informations à propos de ce dépôt CVS"
+#: ../vhffs-panel/repository/delete.pl:78
#: ../vhffs-panel/repository/prefs_save.pl:78
-#: ../vhffs-panel/repository/delete.pl:78
msgid "Cannot retrieve informations about this Download repository"
msgstr ""
"Impossible d'obtenir des informations sur cet espace de téléchargement"
@@ -974,8 +975,8 @@
msgid "Cannot retrieve informations about this repository"
msgstr "Impossible de consulter ce dépôt"
+#: ../vhffs-panel/mailinglist/save_sig.pl:95
#: ../vhffs-panel/mailinglist/save_options.pl:124
-#: ../vhffs-panel/mailinglist/save_sig.pl:95
msgid "Cannot save"
msgstr "Impossible de sauvegarder"
@@ -1003,7 +1004,7 @@
msgid "Change Forward"
msgstr "Modifier la redirection"
-#: ../vhffs-panel/mail/prefs.pl:152 ../vhffs-panel/admin/mail/edit.pl:142
+#: ../vhffs-panel/admin/mail/edit.pl:142 ../vhffs-panel/mail/prefs.pl:152
msgid "Change Password"
msgstr "Modifier le mot de passe"
@@ -1027,7 +1028,7 @@
msgid "Change this Website"
msgstr "Changer ce site web"
-#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:93 ../vhffs-panel/admin/su.pl:76
+#: ../vhffs-panel/admin/su.pl:76 ../vhffs-api/src/Vhffs/Panel/Admin.pm:93
msgid "Change user-id"
msgstr "Changer d'identifiant utilisateur"
@@ -1035,19 +1036,18 @@
msgid "Changed anti-virus status for your account\n"
msgstr "Paramètres anti-virus mis à jour\n"
-#: ../vhffs-robots/src/refused_cvs.pl:76
+#: ../vhffs-robots/src/refused_ml.pl:77 ../vhffs-robots/src/refused_mail.pl:79
#: ../vhffs-robots/src/refused_postgres.pl:80
-#: ../vhffs-robots/src/refused_web.pl:75
+#: ../vhffs-robots/src/refused_cvs.pl:76 ../vhffs-robots/src/refused_web.pl:75
+#: ../vhffs-robots/src/refused_mysql.pl:50
+#: ../vhffs-robots/src/refused_svn.pl:46
+#: ../vhffs-robots/src/refused_groups.pl:75
#: ../vhffs-robots/src/refused_repository.pl:80
-#: ../vhffs-robots/src/refused_mail.pl:79
#: ../vhffs-robots/src/refused_dns.pl:79
-#: ../vhffs-robots/src/refused_mysql.pl:50
-#: ../vhffs-robots/src/refused_svn.pl:46 ../vhffs-robots/src/refused_ml.pl:77
-#: ../vhffs-robots/src/refused_groups.pl:75
msgid "Cheers,"
msgstr "Respectueusement,"
-#: ../vhffs-irc/modobot.pl:398 ../vhffs-panel/admin/moderation_submit.pl:106
+#: ../vhffs-irc/modobot.pl:398
msgid ""
"Cheers,\n"
"The Moderator and Admin team\n"
@@ -1055,8 +1055,8 @@
"Cordialement,\n"
"L'équipe de modérateurs et d'administrateurs\n"
+#: ../vhffs-panel/subscribe.pl:221 ../vhffs-panel/user/prefs.pl:266
#: ../vhffs-panel/admin/user/edit.pl:105 ../vhffs-panel/admin/user/show.pl:105
-#: ../vhffs-panel/user/prefs.pl:266 ../vhffs-panel/subscribe.pl:221
msgid "City"
msgstr "Ville"
@@ -1090,8 +1090,8 @@
"Code de validation, contactez l'équipe d'administration si vous ne pouvez "
"pas le lire."
+#: ../vhffs-panel/subscribe.pl:222 ../vhffs-panel/user/prefs.pl:268
#: ../vhffs-panel/admin/user/edit.pl:107 ../vhffs-panel/admin/user/show.pl:107
-#: ../vhffs-panel/user/prefs.pl:268 ../vhffs-panel/subscribe.pl:222
msgid "Country"
msgstr "Pays"
@@ -1143,24 +1143,24 @@
msgid "Create new project"
msgstr "Créer un nouveau projet"
-#: ../vhffs-intl/extra_strings.pl:21
+#: ../vhffs-panel/admin/user/edit.pl:144
+#: ../vhffs-panel/admin/pgsql/edit.pl:120
+#: ../vhffs-panel/admin/group/edit.pl:125
#: ../vhffs-panel/admin/repository/edit.pl:120
-#: ../vhffs-panel/admin/mail/edit.pl:161
-#: ../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:121
#: ../vhffs-panel/admin/object/edit.pl:120
-#: ../vhffs-panel/admin/web/edit.pl:116 ../vhffs-panel/admin/user/edit.pl:144
+#: ../vhffs-panel/admin/web/edit.pl:116 ../vhffs-panel/admin/mysql/edit.pl:121
+#: ../vhffs-panel/admin/cvs/edit.pl:129 ../vhffs-panel/admin/mail/edit.pl:161
+#: ../vhffs-intl/extra_strings.pl:21
msgid "Created"
msgstr "Créé"
+#: ../vhffs-panel/admin/user/edit.pl:142
+#: ../vhffs-panel/admin/pgsql/edit.pl:118
+#: ../vhffs-panel/admin/group/edit.pl:123
#: ../vhffs-panel/admin/repository/edit.pl:118
-#: ../vhffs-panel/admin/mail/edit.pl:159
-#: ../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:119
#: ../vhffs-panel/admin/object/edit.pl:118
-#: ../vhffs-panel/admin/web/edit.pl:114 ../vhffs-panel/admin/user/edit.pl:142
+#: ../vhffs-panel/admin/web/edit.pl:114 ../vhffs-panel/admin/mysql/edit.pl:119
+#: ../vhffs-panel/admin/cvs/edit.pl:127 ../vhffs-panel/admin/mail/edit.pl:159
msgid "Creating error"
msgstr "Erreur de création"
@@ -1168,7 +1168,7 @@
msgid "Creation error"
msgstr "Erreur lors de la création"
-#: ../vhffs-panel/group/prefs.pl:201 ../vhffs-panel/user/prefs.pl:297
+#: ../vhffs-panel/user/prefs.pl:297 ../vhffs-panel/group/prefs.pl:201
msgid "Current avatar"
msgstr "Avatar utilisé"
@@ -1213,20 +1213,20 @@
msgid "Database Name"
msgstr "Nom de la base de données"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:173
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:209
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:221
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:239
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:251
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:263
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:275
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:286
+#: ../vhffs-panel/ajax/help.pl:46 ../vhffs-api/src/Vhffs/Panel/DNS.pm:160
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:196
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:208
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:226
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:238
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:250
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:262
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:273
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:285
#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:298
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:311
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:327
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:342
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:354
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:366 ../vhffs-panel/ajax/help.pl:46
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:314
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:329
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:341
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:353
msgid "Database error"
msgstr "Erreur de base de données"
@@ -1250,15 +1250,15 @@
msgid "December"
msgstr "Décembre"
-#: ../vhffs-panel/repository/prefs.pl:108 ../vhffs-panel/dns/prefs.pl:271
+#: ../vhffs-panel/mailinglist/prefs.pl:206 ../vhffs-panel/svn/prefs.pl:127
+#: ../vhffs-panel/user/prefs.pl:290 ../vhffs-panel/dns/prefs.pl:271
#: ../vhffs-panel/dns/prefs.pl:328 ../vhffs-panel/dns/prefs.pl:340
#: ../vhffs-panel/dns/prefs.pl:353 ../vhffs-panel/dns/prefs.pl:365
#: ../vhffs-panel/dns/prefs.pl:381 ../vhffs-panel/dns/prefs.pl:392
-#: ../vhffs-panel/dns/prefs.pl:408 ../vhffs-panel/cvs/prefs.pl:102
-#: ../vhffs-panel/group/prefs.pl:190 ../vhffs-panel/svn/prefs.pl:127
-#: ../vhffs-panel/mailinglist/prefs.pl:206 ../vhffs-panel/web/prefs.pl:113
-#: ../vhffs-panel/mail/prefs.pl:135 ../vhffs-panel/pgsql/prefs.pl:113
-#: ../vhffs-panel/mysql/prefs.pl:120 ../vhffs-panel/user/prefs.pl:290
+#: ../vhffs-panel/dns/prefs.pl:408 ../vhffs-panel/pgsql/prefs.pl:113
+#: ../vhffs-panel/group/prefs.pl:190 ../vhffs-panel/repository/prefs.pl:108
+#: ../vhffs-panel/web/prefs.pl:113 ../vhffs-panel/mysql/prefs.pl:120
+#: ../vhffs-panel/cvs/prefs.pl:102 ../vhffs-panel/mail/prefs.pl:135
msgid "Delete"
msgstr "Supprimer"
@@ -1286,7 +1286,7 @@
msgid "Delete this domain name from the VHFFS platform"
msgstr "Supprimer ce nom de domaine"
-#: ../vhffs-panel/mail/prefs.pl:212 ../vhffs-panel/admin/mail/edit.pl:144
+#: ../vhffs-panel/admin/mail/edit.pl:144 ../vhffs-panel/mail/prefs.pl:212
msgid "Delete this forward"
msgstr "Supprimer cette redirection"
@@ -1294,7 +1294,7 @@
msgid "Delete this list"
msgstr "Supprimer cette liste"
-#: ../vhffs-panel/mail/prefs.pl:153 ../vhffs-panel/admin/mail/edit.pl:129
+#: ../vhffs-panel/admin/mail/edit.pl:129 ../vhffs-panel/mail/prefs.pl:153
msgid "Delete this mail account"
msgstr "Supprimer ce compte mail"
@@ -1306,8 +1306,8 @@
msgid "Delete this mailing"
msgstr "Supprimer cet envoi en masse"
-#: ../vhffs-panel/repository/prefs.pl:103 ../vhffs-panel/cvs/prefs.pl:97
-#: ../vhffs-panel/group/prefs.pl:185
+#: ../vhffs-panel/group/prefs.pl:185 ../vhffs-panel/repository/prefs.pl:103
+#: ../vhffs-panel/cvs/prefs.pl:97
msgid "Delete this project"
msgstr "Supprimer ce groupe/projet"
@@ -1319,22 +1319,23 @@
msgid "Delete this web area"
msgstr "Supprimer ce site web"
-#: ../vhffs-panel/repository/create.pl:92 ../vhffs-panel/dns/create.pl:69
-#: ../vhffs-panel/cvs/create.pl:103 ../vhffs-panel/group/create.pl:85
-#: ../vhffs-panel/svn/create.pl:95 ../vhffs-panel/public/allgroups.pl:84
-#: ../vhffs-panel/public/group.pl:91 ../vhffs-panel/public/lastgroups.pl:77
-#: ../vhffs-panel/pgsql/create.pl:104
+#: ../vhffs-panel/svn/create.pl:95 ../vhffs-panel/dns/create.pl:69
+#: ../vhffs-panel/pgsql/create.pl:104 ../vhffs-panel/group/create.pl:85
+#: ../vhffs-panel/repository/create.pl:92
+#: ../vhffs-panel/admin/pgsql/edit.pl:101
+#: ../vhffs-panel/admin/pgsql/show.pl:99
+#: ../vhffs-panel/admin/group/edit.pl:100
+#: ../vhffs-panel/admin/group/show.pl:99
#: ../vhffs-panel/admin/repository/edit.pl:99
#: ../vhffs-panel/admin/repository/show.pl:98
-#: ../vhffs-panel/admin/mail/edit.pl:102 ../vhffs-panel/admin/mail/show.pl:102
-#: ../vhffs-panel/admin/pgsql/edit.pl:101
-#: ../vhffs-panel/admin/pgsql/show.pl:99 ../vhffs-panel/admin/cvs/edit.pl:100
-#: ../vhffs-panel/admin/cvs/show.pl:99 ../vhffs-panel/admin/group/edit.pl:100
-#: ../vhffs-panel/admin/group/show.pl:99
-#: ../vhffs-panel/admin/mysql/edit.pl:102
-#: ../vhffs-panel/admin/mysql/show.pl:98
#: ../vhffs-panel/admin/object/edit.pl:97 ../vhffs-panel/admin/web/edit.pl:99
-#: ../vhffs-panel/admin/web/show.pl:98 ../vhffs-panel/mysql/create.pl:104
+#: ../vhffs-panel/admin/web/show.pl:98 ../vhffs-panel/admin/mysql/edit.pl:102
+#: ../vhffs-panel/admin/mysql/show.pl:98 ../vhffs-panel/admin/cvs/edit.pl:100
+#: ../vhffs-panel/admin/cvs/show.pl:99 ../vhffs-panel/admin/mail/edit.pl:102
+#: ../vhffs-panel/admin/mail/show.pl:102
+#: ../vhffs-panel/public/lastgroups.pl:77 ../vhffs-panel/public/group.pl:91
+#: ../vhffs-panel/public/allgroups.pl:84 ../vhffs-panel/mysql/create.pl:104
+#: ../vhffs-panel/cvs/create.pl:103
msgid "Description"
msgstr "Description"
@@ -1363,13 +1364,13 @@
msgid "Dl repos"
msgstr "Espaces de téléchargement"
-#: ../vhffs-panel/mail/create.pl:81 ../vhffs-panel/admin/mail/edit.pl:97
-#: ../vhffs-panel/admin/mail/show.pl:97
+#: ../vhffs-panel/admin/mail/edit.pl:97 ../vhffs-panel/admin/mail/show.pl:97
+#: ../vhffs-panel/mail/create.pl:81
msgid "Domain"
msgstr "Domaine"
-#: ../vhffs-intl/extra_strings.pl:40 ../vhffs-panel/dns/create.pl:60
-#: ../vhffs-panel/admin/mail/list.pl:87 ../vhffs-panel/admin/dns/list.pl:87
+#: ../vhffs-panel/dns/create.pl:60 ../vhffs-panel/admin/dns/list.pl:87
+#: ../vhffs-panel/admin/mail/list.pl:87 ../vhffs-intl/extra_strings.pl:40
msgid "Domain Name"
msgstr "Nom de domaine"
@@ -1473,11 +1474,11 @@
msgstr ""
"Entrez une adresse mail valide qui recevra tous les emails pour ce domaine"
-#: ../vhffs-panel/repository/index.pl:52 ../vhffs-panel/dns/index.pl:52
-#: ../vhffs-panel/cvs/index.pl:52 ../vhffs-panel/svn/index.pl:52
-#: ../vhffs-panel/mailinglist/index.pl:52 ../vhffs-panel/web/index.pl:52
-#: ../vhffs-panel/mail/index.pl:52 ../vhffs-panel/pgsql/index.pl:52
-#: ../vhffs-panel/mysql/index.pl:52
+#: ../vhffs-panel/mailinglist/index.pl:52 ../vhffs-panel/svn/index.pl:52
+#: ../vhffs-panel/dns/index.pl:52 ../vhffs-panel/pgsql/index.pl:52
+#: ../vhffs-panel/repository/index.pl:52 ../vhffs-panel/web/index.pl:52
+#: ../vhffs-panel/mysql/index.pl:52 ../vhffs-panel/cvs/index.pl:52
+#: ../vhffs-panel/mail/index.pl:52
msgid "Error"
msgstr "Erreur"
@@ -1553,9 +1554,9 @@
msgid "Filetype not supported, only png is supported"
msgstr "Type de fichier non supporté, seul le png est supporté"
-#: ../vhffs-panel/public/lastusers.pl:80 ../vhffs-panel/public/user.pl:85
+#: ../vhffs-panel/subscribe.pl:218 ../vhffs-panel/user/prefs.pl:263
#: ../vhffs-panel/admin/user/edit.pl:96 ../vhffs-panel/admin/user/show.pl:97
-#: ../vhffs-panel/user/prefs.pl:263 ../vhffs-panel/subscribe.pl:218
+#: ../vhffs-panel/public/user.pl:85 ../vhffs-panel/public/lastusers.pl:80
msgid "Firstname"
msgstr "Prénom"
@@ -1622,8 +1623,8 @@
msgid "Forwards"
msgstr "Redirections"
+#: ../vhffs-panel/admin/user/edit.pl:103 ../vhffs-panel/admin/user/show.pl:103
#: ../vhffs-panel/admin/group/edit.pl:95 ../vhffs-panel/admin/group/show.pl:94
-#: ../vhffs-panel/admin/user/edit.pl:103 ../vhffs-panel/admin/user/show.pl:103
msgid "GID"
msgstr "Identifiant de groupe"
@@ -1631,15 +1632,15 @@
msgid "GPG key"
msgstr "Clé GPG"
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:108
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:78
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:100
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:108
msgid "General"
msgstr "Général"
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:89
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:75
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:92
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:89
msgid "Get Statistics"
msgstr "Afficher les statistiques"
@@ -1647,10 +1648,10 @@
msgid "Give me a new password"
msgstr "Donnez-moi un nouveau mot de passe"
-#: ../vhffs-panel/public/lastusers.pl:113 ../vhffs-panel/public/index.pl:82
-#: ../vhffs-panel/public/allgroups.pl:112 ../vhffs-panel/public/group.pl:226
-#: ../vhffs-panel/public/allwebsites.pl:100 ../vhffs-panel/public/user.pl:116
-#: ../vhffs-panel/public/lastgroups.pl:104
+#: ../vhffs-panel/public/user.pl:116 ../vhffs-panel/public/lastgroups.pl:104
+#: ../vhffs-panel/public/lastusers.pl:113
+#: ../vhffs-panel/public/allwebsites.pl:100 ../vhffs-panel/public/index.pl:82
+#: ../vhffs-panel/public/group.pl:226 ../vhffs-panel/public/allgroups.pl:112
msgid "Go on login page"
msgstr "Aller à la page d'authentification"
@@ -1658,8 +1659,8 @@
msgid "Go to administration"
msgstr "Aller à la page d'administration"
-#: ../vhffs-panel/dns/prefs.pl:423 ../vhffs-panel/svn/prefs.pl:160
-#: ../vhffs-panel/mailinglist/prefs.pl:217
+#: ../vhffs-panel/mailinglist/prefs.pl:217 ../vhffs-panel/svn/prefs.pl:160
+#: ../vhffs-panel/dns/prefs.pl:423
msgid "Go to object-part admin"
msgstr "Aller à l'administration de la partie objet"
@@ -1692,20 +1693,19 @@
"\n"
"Cordialement"
-#: ../vhffs-intl/extra_strings.pl:33
+#: ../vhffs-panel/admin/svn/list.pl:77 ../vhffs-panel/admin/mailing/list.pl:87
+#: ../vhffs-panel/admin/dns/list.pl:88 ../vhffs-panel/admin/pgsql/edit.pl:98
+#: ../vhffs-panel/admin/pgsql/show.pl:96 ../vhffs-panel/admin/pgsql/list.pl:88
#: ../vhffs-panel/admin/repository/edit.pl:96
+#: ../vhffs-panel/admin/repository/show.pl:95
#: ../vhffs-panel/admin/repository/list.pl:89
-#: ../vhffs-panel/admin/repository/show.pl:95
-#: ../vhffs-panel/admin/mailing/list.pl:87
-#: ../vhffs-panel/admin/mail/edit.pl:99 ../vhffs-panel/admin/mail/list.pl:88
-#: ../vhffs-panel/admin/mail/show.pl:99 ../vhffs-panel/admin/dns/list.pl:88
-#: ../vhffs-panel/admin/pgsql/edit.pl:98 ../vhffs-panel/admin/pgsql/list.pl:88
-#: ../vhffs-panel/admin/pgsql/show.pl:96 ../vhffs-panel/admin/cvs/edit.pl:97
-#: ../vhffs-panel/admin/cvs/list.pl:90 ../vhffs-panel/admin/cvs/show.pl:96
-#: ../vhffs-panel/admin/mysql/edit.pl:99 ../vhffs-panel/admin/mysql/list.pl:89
-#: ../vhffs-panel/admin/mysql/show.pl:95 ../vhffs-panel/admin/svn/list.pl:77
-#: ../vhffs-panel/admin/web/edit.pl:96 ../vhffs-panel/admin/web/list.pl:79
-#: ../vhffs-panel/admin/web/show.pl:95
+#: ../vhffs-panel/admin/web/edit.pl:96 ../vhffs-panel/admin/web/show.pl:95
+#: ../vhffs-panel/admin/web/list.pl:79 ../vhffs-panel/admin/mysql/edit.pl:99
+#: ../vhffs-panel/admin/mysql/show.pl:95 ../vhffs-panel/admin/mysql/list.pl:89
+#: ../vhffs-panel/admin/cvs/edit.pl:97 ../vhffs-panel/admin/cvs/show.pl:96
+#: ../vhffs-panel/admin/cvs/list.pl:90 ../vhffs-panel/admin/mail/edit.pl:99
+#: ../vhffs-panel/admin/mail/show.pl:99 ../vhffs-panel/admin/mail/list.pl:88
+#: ../vhffs-intl/extra_strings.pl:33
msgid "Group"
msgstr "Groupe"
@@ -1766,10 +1766,10 @@
msgid "Group public area"
msgstr "Zone publique des groupes"
-#: ../vhffs-panel/acl/view.pl:176 ../vhffs-panel/public/allgroups.pl:80
-#: ../vhffs-panel/public/group.pl:90 ../vhffs-panel/public/lastgroups.pl:73
-#: ../vhffs-panel/admin/group/edit.pl:94 ../vhffs-panel/admin/group/list.pl:89
-#: ../vhffs-panel/admin/group/show.pl:93
+#: ../vhffs-panel/acl/view.pl:176 ../vhffs-panel/admin/group/edit.pl:94
+#: ../vhffs-panel/admin/group/show.pl:93 ../vhffs-panel/admin/group/list.pl:89
+#: ../vhffs-panel/public/lastgroups.pl:73 ../vhffs-panel/public/group.pl:90
+#: ../vhffs-panel/public/allgroups.pl:80
msgid "Groupname"
msgstr "Nom du groupe"
@@ -1778,15 +1778,15 @@
"Groupname must contain between 3 and 12 characters, only letters or numbers "
"in lower case"
msgstr ""
-"Le nom de groupe doit contenir entre 3 et 12 caractères, comprenant uniquement"
-"des chiffres et des lettres en minuscules"
+"Le nom de groupe doit contenir entre 3 et 12 caractères, comprenant "
+"uniquementdes chiffres et des lettres en minuscules"
#: ../vhffs-panel/acl/view.pl:133
msgid "Groupname:"
msgstr "Nom de groupe:"
+#: ../vhffs-panel/public/user.pl:89 ../vhffs-panel/public/lastusers.pl:84
#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:110
-#: ../vhffs-panel/public/lastusers.pl:84 ../vhffs-panel/public/user.pl:89
msgid "Groups"
msgstr "Groupes"
@@ -1831,6 +1831,29 @@
msgid "Hello and welcome on listengine help\n"
msgstr "Bonjour et bienvenue dans l'aide de listengine\n"
+#: ../vhffs-panel/admin/moderation_submit.pl:101
+#, perl-format
+msgid ""
+"Hello,\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"
+"\n"
+"The Moderator and Admin Team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
+msgstr "Bonjour,\n"
+"\n"
+"Votre requête concernant un service %s (%s) sur l'hébergement %s a été acceptée\n"
+"Veuillez patienter pendant la création de votre objet.\n"
+"Cordialement,\n\n"
+"----------\n"
+"%s\n%s"
+
#: ../vhffs-api/src/Vhffs/Panel/Main.pm:411
#: ../vhffs-api/src/Vhffs/Panel/Main.pm:610
msgid "Help"
@@ -1853,20 +1876,21 @@
"Son adresse email est :\n"
" %s\n"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:776
+#: ../vhffs-panel/history.pl:105 ../vhffs-panel/admin/user/edit.pl:110
+#: ../vhffs-panel/admin/user/show.pl:111
+#: ../vhffs-panel/admin/pgsql/edit.pl:103
+#: ../vhffs-panel/admin/pgsql/show.pl:100
+#: ../vhffs-panel/admin/group/edit.pl:102
+#: ../vhffs-panel/admin/group/show.pl:100
#: ../vhffs-panel/admin/repository/edit.pl:101
#: ../vhffs-panel/admin/repository/show.pl:99
-#: ../vhffs-panel/admin/mail/edit.pl:104 ../vhffs-panel/admin/mail/show.pl:103
-#: ../vhffs-panel/admin/pgsql/edit.pl:103
-#: ../vhffs-panel/admin/pgsql/show.pl:100 ../vhffs-panel/admin/cvs/edit.pl:102
-#: ../vhffs-panel/admin/cvs/show.pl:100 ../vhffs-panel/admin/group/edit.pl:102
-#: ../vhffs-panel/admin/group/show.pl:100
-#: ../vhffs-panel/admin/mysql/edit.pl:104
-#: ../vhffs-panel/admin/mysql/show.pl:100
#: ../vhffs-panel/admin/object/list.pl:90
#: ../vhffs-panel/admin/object/list.pl:97 ../vhffs-panel/admin/web/edit.pl:101
-#: ../vhffs-panel/admin/web/show.pl:99 ../vhffs-panel/admin/user/edit.pl:110
-#: ../vhffs-panel/admin/user/show.pl:111 ../vhffs-panel/history.pl:105
+#: ../vhffs-panel/admin/web/show.pl:99 ../vhffs-panel/admin/mysql/edit.pl:104
+#: ../vhffs-panel/admin/mysql/show.pl:100 ../vhffs-panel/admin/cvs/edit.pl:102
+#: ../vhffs-panel/admin/cvs/show.pl:100 ../vhffs-panel/admin/mail/edit.pl:104
+#: ../vhffs-panel/admin/mail/show.pl:103
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:776
msgid "History"
msgstr "Historique"
@@ -1874,15 +1898,15 @@
msgid "History of this object"
msgstr "Historique de cet objet"
-#: ../vhffs-panel/admin/user/edit.pl:100 ../vhffs-panel/admin/user/show.pl:100
-#: ../vhffs-panel/subscribe.pl:226
+#: ../vhffs-panel/subscribe.pl:226 ../vhffs-panel/admin/user/edit.pl:100
+#: ../vhffs-panel/admin/user/show.pl:100
msgid "Home"
msgstr "Répertoire utilisateur"
-#: ../vhffs-panel/public/lastusers.pl:112 ../vhffs-panel/public/index.pl:81
-#: ../vhffs-panel/public/allgroups.pl:111 ../vhffs-panel/public/group.pl:225
-#: ../vhffs-panel/public/allwebsites.pl:99 ../vhffs-panel/public/user.pl:115
-#: ../vhffs-panel/public/lastgroups.pl:103
+#: ../vhffs-panel/public/user.pl:115 ../vhffs-panel/public/lastgroups.pl:103
+#: ../vhffs-panel/public/lastusers.pl:112
+#: ../vhffs-panel/public/allwebsites.pl:99 ../vhffs-panel/public/index.pl:81
+#: ../vhffs-panel/public/group.pl:225 ../vhffs-panel/public/allgroups.pl:111
msgid "Homepage of public area"
msgstr "Aller à la page d'accueil de la zone publique"
@@ -1925,15 +1949,14 @@
"Si vous n'avez pas demandé à être inscrit à cette liste de\n"
"diffusion, merci de ne pas tenir compte de ce mail\n"
-#: ../vhffs-robots/src/refused_cvs.pl:75
+#: ../vhffs-robots/src/refused_ml.pl:76 ../vhffs-robots/src/refused_mail.pl:78
#: ../vhffs-robots/src/refused_postgres.pl:79
-#: ../vhffs-robots/src/refused_web.pl:74
+#: ../vhffs-robots/src/refused_cvs.pl:75 ../vhffs-robots/src/refused_web.pl:74
+#: ../vhffs-robots/src/refused_mysql.pl:49
+#: ../vhffs-robots/src/refused_svn.pl:45
+#: ../vhffs-robots/src/refused_groups.pl:74
#: ../vhffs-robots/src/refused_repository.pl:79
-#: ../vhffs-robots/src/refused_mail.pl:78
#: ../vhffs-robots/src/refused_dns.pl:78
-#: ../vhffs-robots/src/refused_mysql.pl:49
-#: ../vhffs-robots/src/refused_svn.pl:45 ../vhffs-robots/src/refused_ml.pl:76
-#: ../vhffs-robots/src/refused_groups.pl:74
#, perl-format
msgid "If you encounters problem, please mail: %s\n"
msgstr "Si vous rencontrez des problèmes, envoyez un mail à %s\n"
@@ -1956,29 +1979,28 @@
"signalez un dysfonctionnement via le formulaire d'aide du site. N'oubliez "
"pas de mentionner le nom de votre groupe"
-#: ../vhffs-robots/src/refused_cvs.pl:70
+#: ../vhffs-robots/src/refused_ml.pl:70 ../vhffs-robots/src/refused_mail.pl:72
#: ../vhffs-robots/src/refused_postgres.pl:73
-#: ../vhffs-robots/src/refused_web.pl:69
+#: ../vhffs-robots/src/refused_cvs.pl:70 ../vhffs-robots/src/refused_web.pl:69
+#: ../vhffs-robots/src/refused_mysql.pl:43
+#: ../vhffs-robots/src/refused_svn.pl:40
+#: ../vhffs-robots/src/refused_groups.pl:69
#: ../vhffs-robots/src/refused_repository.pl:73
-#: ../vhffs-robots/src/refused_mail.pl:72
#: ../vhffs-robots/src/refused_dns.pl:72
-#: ../vhffs-robots/src/refused_mysql.pl:43
-#: ../vhffs-robots/src/refused_svn.pl:40 ../vhffs-robots/src/refused_ml.pl:70
-#: ../vhffs-robots/src/refused_groups.pl:69
msgid "In hope to keep you in our hosting service"
msgstr "Dans l'espoir de vous garder dans notre service d'hébergement"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:208
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:220
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:250
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:195
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:207
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:237
msgid "Invalid IP address"
msgstr "Adresse IP invalide"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:238
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:225
msgid "Invalid IP v6 address"
msgstr "Adresse IP v6 invalide"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:308
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:295
msgid "Invalid alias"
msgstr "Alias invalide"
@@ -1988,20 +2010,20 @@
"underscore (the latter isn't allowed in first or last position) and be "
"between 3 and 32 characters."
msgstr ""
-"Nom de base de données invalide, il ne doit contenir que des nombres, des lettres"
-"minuscules ou des underscores (ces derniers ne devant pas être en première ou "
-"dernière position) et contenir entre 3 et 12 caractères."
+"Nom de base de données invalide, il ne doit contenir que des nombres, des "
+"lettresminuscules ou des underscores (ces derniers ne devant pas être en "
+"première ou dernière position) et contenir entre 3 et 12 caractères."
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:297
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:284
msgid "Invalid destination"
msgstr "Destination invalide"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:322
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:338
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:309
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:325
msgid "Invalid destination domain name"
msgstr "Destionation de nom de domaine invalide"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:309
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:296
msgid "Invalid destination host"
msgstr "Destionation host invalide"
@@ -2009,12 +2031,12 @@
msgid "Invalid domain name"
msgstr "Nom de domaine invalide"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:274
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:261
msgid "Invalid host"
msgstr "host invalide"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:260
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:284
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:247
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:271
msgid "Invalid hostname"
msgstr "Nom de host invalide"
@@ -2027,37 +2049,37 @@
"Invalid password. It must be at least 3 characters and contain only letters "
"(lower and uppercase) and numbers"
msgstr ""
-"Mot de passe invalide. Il doit contenir au moins 3 caractères et ne doit contenir"
-"que des lettres (minuscules ou majuscules) et des chiffres"
+"Mot de passe invalide. Il doit contenir au moins 3 caractères et ne doit "
+"contenirque des lettres (minuscules ou majuscules) et des chiffres"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:323
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:339
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:310
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:326
msgid "Invalid port"
msgstr "Port invalide"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:205
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:235
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:352
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:192
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:222
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:339
msgid "Invalid prefix"
msgstr "Prefixe invalide"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:261
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:324
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:340
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:248
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:311
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:327
msgid "Invalid priority"
msgstr "Priorité invalide"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:320
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:307
msgid "Invalid protocol syntax"
msgstr "Syntaxe de protocole invalide"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:170
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:218
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:248
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:272
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:295
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:336
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:363
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:157
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:205
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:235
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:259
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:282
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:323
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:350
msgid "Invalid record"
msgstr "Enregistrement invalide"
@@ -2066,14 +2088,14 @@
"Invalid reponame. It must contain between 3 and 64 characters, only "
"lowercase letters and numbers"
msgstr ""
-"Nom d'espace de téléchargement invalide. Il doit contenir entre 3 et 64 caractères,"
-"et ne contenir que des chiffres ou des lettres en minuscules"
+"Nom d'espace de téléchargement invalide. Il doit contenir entre 3 et 64 "
+"caractères,et ne contenir que des chiffres ou des lettres en minuscules"
#: ../vhffs-panel/web/create.pl:71
msgid "Invalid servername (doesn't conform to domain names rules)"
msgstr "Servername invalide (ne se conforme pas aux règles du nom de domaine)"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:321
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:308
msgid "Invalid service syntax"
msgstr "Syntaxe de service invalide"
@@ -2085,8 +2107,8 @@
"Le nom d'utilisateur doit contenir entre 3 et 12 caractères, tous en "
"minuscules"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:325
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:341
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:312
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:328
msgid "Invalid weight"
msgstr "Poids invalide"
@@ -2114,10 +2136,10 @@
msgid "Language"
msgstr "Langue"
-#: ../vhffs-panel/public/lastusers.pl:115 ../vhffs-panel/public/index.pl:84
-#: ../vhffs-panel/public/allgroups.pl:114 ../vhffs-panel/public/group.pl:228
-#: ../vhffs-panel/public/allwebsites.pl:102 ../vhffs-panel/public/user.pl:118
-#: ../vhffs-panel/public/lastgroups.pl:106
+#: ../vhffs-panel/public/user.pl:118 ../vhffs-panel/public/lastgroups.pl:106
+#: ../vhffs-panel/public/lastusers.pl:115
+#: ../vhffs-panel/public/allwebsites.pl:102 ../vhffs-panel/public/index.pl:84
+#: ../vhffs-panel/public/group.pl:228 ../vhffs-panel/public/allgroups.pl:114
msgid "Last groups"
msgstr "Derniers groupes"
@@ -2126,10 +2148,10 @@
msgid "Last groups on %s"
msgstr "Derniers groupes sur %s"
-#: ../vhffs-panel/public/lastusers.pl:116 ../vhffs-panel/public/index.pl:85
-#: ../vhffs-panel/public/allgroups.pl:115 ../vhffs-panel/public/group.pl:229
-#: ../vhffs-panel/public/allwebsites.pl:103 ../vhffs-panel/public/user.pl:119
-#: ../vhffs-panel/public/lastgroups.pl:107
+#: ../vhffs-panel/public/user.pl:119 ../vhffs-panel/public/lastgroups.pl:107
+#: ../vhffs-panel/public/lastusers.pl:116
+#: ../vhffs-panel/public/allwebsites.pl:103 ../vhffs-panel/public/index.pl:85
+#: ../vhffs-panel/public/group.pl:229 ../vhffs-panel/public/allgroups.pl:115
msgid "Last users"
msgstr "Derniers utilisateurs"
@@ -2138,9 +2160,9 @@
msgid "Last users on %s"
msgstr "Derniers utilisateurs sur %s"
-#: ../vhffs-panel/public/lastusers.pl:82 ../vhffs-panel/public/user.pl:87
+#: ../vhffs-panel/subscribe.pl:219 ../vhffs-panel/user/prefs.pl:264
#: ../vhffs-panel/admin/user/edit.pl:97 ../vhffs-panel/admin/user/show.pl:98
-#: ../vhffs-panel/user/prefs.pl:264 ../vhffs-panel/subscribe.pl:219
+#: ../vhffs-panel/public/user.pl:87 ../vhffs-panel/public/lastusers.pl:82
msgid "Lastname"
msgstr "Nom"
@@ -2260,10 +2282,11 @@
msgid "List of all users"
msgstr "Liste de tous les utilisateurs"
-#: ../vhffs-panel/public/lastusers.pl:114 ../vhffs-panel/public/index.pl:83
-#: ../vhffs-panel/public/allgroups.pl:113 ../vhffs-panel/public/group.pl:227
-#: ../vhffs-panel/public/allwebsites.pl:101 ../vhffs-panel/public/user.pl:117
-#: ../vhffs-panel/public/lastgroups.pl:105 ../vhffs-panel/admin/web/list.pl:75
+#: ../vhffs-panel/admin/web/list.pl:75 ../vhffs-panel/public/user.pl:117
+#: ../vhffs-panel/public/lastgroups.pl:105
+#: ../vhffs-panel/public/lastusers.pl:114
+#: ../vhffs-panel/public/allwebsites.pl:101 ../vhffs-panel/public/index.pl:83
+#: ../vhffs-panel/public/group.pl:227 ../vhffs-panel/public/allgroups.pl:113
msgid "List of all websites"
msgstr "Liste de tous les sites web"
@@ -2320,9 +2343,9 @@
msgid "MX Record updated"
msgstr "Enregistrement MX mis à jour"
+#: ../vhffs-panel/admin/user/edit.pl:108 ../vhffs-panel/admin/user/show.pl:108
#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:70
#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:118
-#: ../vhffs-panel/admin/user/edit.pl:108 ../vhffs-panel/admin/user/show.pl:108
msgid "Mail"
msgstr "Mail"
@@ -2388,7 +2411,7 @@
msgid "Mailbox successfully added"
msgstr "Boîte mail ajoutée avec succès"
-#: ../vhffs-intl/extra_strings.pl:42 ../vhffs-panel/admin/mailing/list.pl:86
+#: ../vhffs-panel/admin/mailing/list.pl:86 ../vhffs-intl/extra_strings.pl:42
msgid "Mailing List"
msgstr "Liste de diffusion"
@@ -2468,10 +2491,10 @@
msgid "Moderated for everyone"
msgstr "Modéré pour tout le monde"
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:90
+#: ../vhffs-panel/admin/moderation.pl:84
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:76
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:94
-#: ../vhffs-panel/admin/moderation.pl:84
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:90
msgid "Moderation"
msgstr "Modération"
@@ -2483,25 +2506,25 @@
msgid "Moderator account"
msgstr "Compte du modérateur"
-#: ../vhffs-intl/extra_strings.pl:27
+#: ../vhffs-panel/admin/user/edit.pl:149
+#: ../vhffs-panel/admin/pgsql/edit.pl:125
+#: ../vhffs-panel/admin/group/edit.pl:130
#: ../vhffs-panel/admin/repository/edit.pl:125
-#: ../vhffs-panel/admin/mail/edit.pl:166
-#: ../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:126
#: ../vhffs-panel/admin/object/edit.pl:125
-#: ../vhffs-panel/admin/web/edit.pl:121 ../vhffs-panel/admin/user/edit.pl:149
+#: ../vhffs-panel/admin/web/edit.pl:121 ../vhffs-panel/admin/mysql/edit.pl:126
+#: ../vhffs-panel/admin/cvs/edit.pl:134 ../vhffs-panel/admin/mail/edit.pl:166
+#: ../vhffs-intl/extra_strings.pl:27
msgid "Modification applied"
msgstr "Modification(s) appliquée(s)"
-#: ../vhffs-intl/extra_strings.pl:26
+#: ../vhffs-panel/admin/user/edit.pl:148
+#: ../vhffs-panel/admin/pgsql/edit.pl:124
+#: ../vhffs-panel/admin/group/edit.pl:129
#: ../vhffs-panel/admin/repository/edit.pl:124
-#: ../vhffs-panel/admin/mail/edit.pl:165
-#: ../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:125
#: ../vhffs-panel/admin/object/edit.pl:124
-#: ../vhffs-panel/admin/web/edit.pl:120 ../vhffs-panel/admin/user/edit.pl:148
+#: ../vhffs-panel/admin/web/edit.pl:120 ../vhffs-panel/admin/mysql/edit.pl:125
+#: ../vhffs-panel/admin/cvs/edit.pl:133 ../vhffs-panel/admin/mail/edit.pl:165
+#: ../vhffs-intl/extra_strings.pl:26
msgid "Modification error"
msgstr "Erreur lors de la modification"
@@ -2517,26 +2540,26 @@
msgid "Modifications applied to your webarea"
msgstr "Modifications appliquées à votre site web"
-#: ../vhffs-panel/admin/repository/edit_submit.pl:105
#: ../vhffs-panel/admin/pgsql/edit_submit.pl:102
-#: ../vhffs-panel/admin/cvs/edit_submit.pl:104
#: ../vhffs-panel/admin/group/edit_submit.pl:114
+#: ../vhffs-panel/admin/repository/edit_submit.pl:105
#: ../vhffs-panel/admin/mysql/edit_submit.pl:106
+#: ../vhffs-panel/admin/cvs/edit_submit.pl:104
msgid "Modifications successfully added"
msgstr "Modifications appliquées"
+#: ../vhffs-panel/admin/user/edit_submit.pl:135
#: ../vhffs-panel/admin/web/edit_submit.pl:101
-#: ../vhffs-panel/admin/user/edit_submit.pl:135
msgid "Modifications successfully applied"
msgstr "Modifications appliquées avec succès"
+#: ../vhffs-panel/svn/prefs.pl:121 ../vhffs-panel/user/prefs.pl:274
#: ../vhffs-panel/dns/prefs.pl:330 ../vhffs-panel/dns/prefs.pl:342
#: ../vhffs-panel/dns/prefs.pl:355 ../vhffs-panel/dns/prefs.pl:366
#: ../vhffs-panel/dns/prefs.pl:393 ../vhffs-panel/dns/prefs.pl:409
-#: ../vhffs-panel/cvs/prefs.pl:96 ../vhffs-panel/group/prefs.pl:184
-#: ../vhffs-panel/acl/view.pl:166 ../vhffs-panel/svn/prefs.pl:121
-#: ../vhffs-panel/web/prefs.pl:101 ../vhffs-panel/pgsql/prefs.pl:107
-#: ../vhffs-panel/mysql/prefs.pl:114 ../vhffs-panel/user/prefs.pl:274
+#: ../vhffs-panel/acl/view.pl:166 ../vhffs-panel/pgsql/prefs.pl:107
+#: ../vhffs-panel/group/prefs.pl:184 ../vhffs-panel/web/prefs.pl:101
+#: ../vhffs-panel/mysql/prefs.pl:114 ../vhffs-panel/cvs/prefs.pl:96
msgid "Modify"
msgstr "Modifier"
@@ -2584,7 +2607,7 @@
msgid "Must we redirect the DNS on our servers ?"
msgstr "Les DNS doivent-ils être redirigés sur nos serveurs ?"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:409 ../vhffs-panel/user/projects.pl:49
+#: ../vhffs-panel/user/projects.pl:49 ../vhffs-api/src/Vhffs/Panel/Main.pm:409
msgid "My Projects"
msgstr "Mes groupes/projets"
@@ -2672,9 +2695,9 @@
msgid "New language is: %s\n"
msgstr "La nouvelle langue est : %s\n"
-#: ../vhffs-panel/dns/prefs.pl:277 ../vhffs-panel/cvs/prefs.pl:95
-#: ../vhffs-panel/svn/prefs.pl:120 ../vhffs-panel/admin/cvs/edit.pl:104
-#: ../vhffs-panel/admin/cvs/show.pl:108
+#: ../vhffs-panel/svn/prefs.pl:120 ../vhffs-panel/dns/prefs.pl:277
+#: ../vhffs-panel/admin/cvs/edit.pl:104 ../vhffs-panel/admin/cvs/show.pl:108
+#: ../vhffs-panel/cvs/prefs.pl:95
msgid "No"
msgstr "Non"
@@ -2741,7 +2764,7 @@
msgid "No enough rights"
msgstr "Pas assez de droits"
-#: ../vhffs-panel/admin/object/edit.pl:203 ../vhffs-panel/history.pl:115
+#: ../vhffs-panel/history.pl:115 ../vhffs-panel/admin/object/edit.pl:203
msgid "No event about this object"
msgstr "Aucun événement à propos de cet objet"
@@ -2749,8 +2772,8 @@
msgid "No group"
msgstr "Aucun groupe"
+#: ../vhffs-panel/public/user.pl:100 ../vhffs-panel/public/lastgroups.pl:86
#: ../vhffs-panel/public/lastusers.pl:94 ../vhffs-panel/public/allgroups.pl:94
-#: ../vhffs-panel/public/user.pl:100 ../vhffs-panel/public/lastgroups.pl:86
msgid "No group for this user"
msgstr "Aucun groupe pour cet utilisateur"
@@ -2805,15 +2828,15 @@
msgid "No website available for this group"
msgstr "Aucun site web pour ce groupe"
-#: ../vhffs-panel/dns/prefs.pl:270 ../vhffs-panel/web/prefs.pl:112
-#: ../vhffs-panel/user/prefs.pl:289
+#: ../vhffs-panel/user/prefs.pl:289 ../vhffs-panel/dns/prefs.pl:270
+#: ../vhffs-panel/web/prefs.pl:112
msgid "No, I'm not sure, I prefer to keep it."
msgstr "Non, je suis pas sûr, je préfère le garder"
-#: ../vhffs-panel/repository/prefs.pl:107 ../vhffs-panel/cvs/prefs.pl:101
-#: ../vhffs-panel/group/prefs.pl:189 ../vhffs-panel/svn/prefs.pl:126
-#: ../vhffs-panel/mailinglist/prefs.pl:205 ../vhffs-panel/mail/prefs.pl:134
-#: ../vhffs-panel/pgsql/prefs.pl:112 ../vhffs-panel/mysql/prefs.pl:119
+#: ../vhffs-panel/mailinglist/prefs.pl:205 ../vhffs-panel/svn/prefs.pl:126
+#: ../vhffs-panel/pgsql/prefs.pl:112 ../vhffs-panel/group/prefs.pl:189
+#: ../vhffs-panel/repository/prefs.pl:107 ../vhffs-panel/mysql/prefs.pl:119
+#: ../vhffs-panel/cvs/prefs.pl:101 ../vhffs-panel/mail/prefs.pl:134
msgid "No, I'm not sure, I prefer to keep this project."
msgstr "Non, je ne suis pas sûr, je préfère garder ce projet"
@@ -2821,9 +2844,9 @@
msgid "None"
msgstr "Aucun"
-#: ../vhffs-panel/mailinglist/del_member.pl:95
#: ../vhffs-panel/mailinglist/add_sub.pl:95
#: ../vhffs-panel/mailinglist/change_right.pl:97
+#: ../vhffs-panel/mailinglist/del_member.pl:95
msgid "Not valid mail"
msgstr "Adresse non valide"
@@ -2847,8 +2870,8 @@
msgid "Object id"
msgstr "Identifiant de l'objet"
-#: ../vhffs-panel/dns/prefs.pl:424 ../vhffs-panel/svn/prefs.pl:161
-#: ../vhffs-panel/mailinglist/prefs.pl:218
+#: ../vhffs-panel/mailinglist/prefs.pl:218 ../vhffs-panel/svn/prefs.pl:161
+#: ../vhffs-panel/dns/prefs.pl:424
msgid "Object part"
msgstr "Partie objet"
@@ -2864,7 +2887,7 @@
msgid "October"
msgstr "Octobre"
-#: ../vhffs-panel/dns/prefs.pl:262 ../vhffs-panel/svn/prefs.pl:132
+#: ../vhffs-panel/svn/prefs.pl:132 ../vhffs-panel/dns/prefs.pl:262
#: ../vhffs-panel/web/prefs.pl:105 ../vhffs-panel/mail/prefs.pl:140
msgid "Ok, go to ACL admin"
msgstr "Aller à l'administration des ACL"
@@ -2893,12 +2916,12 @@
msgid "Open, no approval required"
msgstr "Ouvret, pas d'approbation"
-#: ../vhffs-panel/svn/prefs.pl:137 ../vhffs-panel/mailinglist/prefs.pl:110
+#: ../vhffs-panel/mailinglist/prefs.pl:110 ../vhffs-panel/svn/prefs.pl:137
msgid "Options"
msgstr "Options"
+#: ../vhffs-panel/mailinglist/save_sig.pl:97
#: ../vhffs-panel/mailinglist/save_options.pl:128
-#: ../vhffs-panel/mailinglist/save_sig.pl:97
msgid "Options successfully modified"
msgstr "Options modifiées avec succès"
@@ -2906,17 +2929,16 @@
msgid "Owned by"
msgstr "Appartient à"
-#: ../vhffs-panel/group/create.pl:82
+#: ../vhffs-panel/group/create.pl:82 ../vhffs-panel/admin/pgsql/edit.pl:99
+#: ../vhffs-panel/admin/pgsql/show.pl:97 ../vhffs-panel/admin/group/edit.pl:96
+#: ../vhffs-panel/admin/group/show.pl:95
#: ../vhffs-panel/admin/repository/edit.pl:97
#: ../vhffs-panel/admin/repository/show.pl:96
-#: ../vhffs-panel/admin/mail/edit.pl:100 ../vhffs-panel/admin/mail/show.pl:100
-#: ../vhffs-panel/admin/pgsql/edit.pl:99 ../vhffs-panel/admin/pgsql/show.pl:97
-#: ../vhffs-panel/admin/cvs/edit.pl:98 ../vhffs-panel/admin/cvs/show.pl:97
-#: ../vhffs-panel/admin/group/edit.pl:96 ../vhffs-panel/admin/group/show.pl:95
-#: ../vhffs-panel/admin/mysql/edit.pl:100
-#: ../vhffs-panel/admin/mysql/show.pl:96
#: ../vhffs-panel/admin/object/list.pl:88 ../vhffs-panel/admin/web/edit.pl:97
-#: ../vhffs-panel/admin/web/show.pl:96
+#: ../vhffs-panel/admin/web/show.pl:96 ../vhffs-panel/admin/mysql/edit.pl:100
+#: ../vhffs-panel/admin/mysql/show.pl:96 ../vhffs-panel/admin/cvs/edit.pl:98
+#: ../vhffs-panel/admin/cvs/show.pl:97 ../vhffs-panel/admin/mail/edit.pl:100
+#: ../vhffs-panel/admin/mail/show.pl:100
msgid "Owner"
msgstr "Propriétaire"
@@ -2928,9 +2950,9 @@
msgid "Owner of this group"
msgstr "Propriétaire de ce groupe"
-#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:64 ../vhffs-panel/mail/prefs.pl:111
+#: ../vhffs-panel/user/prefs.pl:269 ../vhffs-panel/admin/user/edit.pl:99
#: ../vhffs-panel/admin/pgsql/edit.pl:97 ../vhffs-panel/admin/mysql/edit.pl:97
-#: ../vhffs-panel/admin/user/edit.pl:99 ../vhffs-panel/user/prefs.pl:269
+#: ../vhffs-panel/mail/prefs.pl:111 ../vhffs-api/src/Vhffs/Panel/Commons.pm:64
msgid "Password"
msgstr "Mot de passe"
@@ -2957,7 +2979,9 @@
#: ../vhffs-panel/admin/mysql/edit.pl:98
msgid "Password will not be modified if it is set to 'blanked' or empty"
-msgstr "Le mot de passe ne sera pas modifié s'il est laissé vide ou marqué 'blanked'"
+msgstr ""
+"Le mot de passe ne sera pas modifié s'il est laissé vide ou marqué "
+"'blanked'"
#: ../vhffs-panel/user/prefs.pl:112
msgid "Passwords don't match"
@@ -3036,7 +3060,7 @@
"Veuillez patienter %s, un nouveau mot de passe va vous être envoyé dans "
"quelques minutes..."
-#: ../vhffs-panel/pgsql/prefs_save.pl:81 ../vhffs-panel/pgsql/prefs.pl:84
+#: ../vhffs-panel/pgsql/prefs.pl:84 ../vhffs-panel/pgsql/prefs_save.pl:81
msgid "Please wait modification, creation or deletion"
msgstr "Veuillez attendre la modification, création ou suppression"
@@ -3092,8 +3116,8 @@
msgid "Preferences"
msgstr "Préférences"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:206
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:236
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:193
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:223
msgid "Prefix already exists"
msgstr "Ce préfixe existe déjà"
@@ -3163,27 +3187,27 @@
msgid "Public area not available"
msgstr "La zone publique n'est pas disponible."
+#: ../vhffs-panel/admin/group/edit.pl:97 ../vhffs-panel/admin/group/show.pl:96
#: ../vhffs-panel/admin/repository/edit.pl:102
#: ../vhffs-panel/admin/repository/show.pl:100
-#: ../vhffs-panel/admin/group/edit.pl:97 ../vhffs-panel/admin/group/show.pl:96
msgid "Quota"
msgstr "Quota"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:505
#: ../vhffs-panel/repository/prefs.pl:100
#: ../vhffs-panel/admin/group/edit.pl:109
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:505
#, perl-format
msgid "Quota (used/total) : %s/%s"
msgstr "Quota (utilisé/total) : %s/%s"
+#: ../vhffs-panel/admin/group/edit.pl:98 ../vhffs-panel/admin/group/show.pl:97
#: ../vhffs-panel/admin/repository/edit.pl:103
#: ../vhffs-panel/admin/repository/show.pl:101
-#: ../vhffs-panel/admin/group/edit.pl:98 ../vhffs-panel/admin/group/show.pl:97
msgid "Quota used"
msgstr "Quota utilisé"
+#: ../vhffs-panel/public/rss/lastgroups.pl:108
#: ../vhffs-panel/public/rss/lastusers.pl:106
-#: ../vhffs-panel/public/rss/lastgroups.pl:108
msgid "RSS infos are not published"
msgstr "Les informations ne sont pas publiées au format RSS"
@@ -3191,15 +3215,14 @@
msgid "Real Name"
msgstr "Nom"
-#: ../vhffs-robots/src/refused_cvs.pl:72
+#: ../vhffs-robots/src/refused_ml.pl:73 ../vhffs-robots/src/refused_mail.pl:75
#: ../vhffs-robots/src/refused_postgres.pl:76
-#: ../vhffs-robots/src/refused_web.pl:71
+#: ../vhffs-robots/src/refused_cvs.pl:72 ../vhffs-robots/src/refused_web.pl:71
+#: ../vhffs-robots/src/refused_mysql.pl:46
+#: ../vhffs-robots/src/refused_svn.pl:42
+#: ../vhffs-robots/src/refused_groups.pl:71
#: ../vhffs-robots/src/refused_repository.pl:76
-#: ../vhffs-robots/src/refused_mail.pl:75
#: ../vhffs-robots/src/refused_dns.pl:75
-#: ../vhffs-robots/src/refused_mysql.pl:46
-#: ../vhffs-robots/src/refused_svn.pl:42 ../vhffs-robots/src/refused_ml.pl:73
-#: ../vhffs-robots/src/refused_groups.pl:71
msgid "Reason given : "
msgstr "Raison donnée : "
@@ -3207,17 +3230,17 @@
msgid "Recopy the code"
msgstr "Recopier le code"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:172
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:219
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:249
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:273
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:296
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:337
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:364
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:159
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:206
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:236
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:260
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:283
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:324
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:351
msgid "Record does not exists"
msgstr "L'enregistrement n'existe pas"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:171
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:158
msgid "Record type doesn't exists"
msgstr "Ce type d'enregistrement n'existe pas"
@@ -3242,8 +3265,8 @@
msgid "Reply to: on list"
msgstr "Champ Reply-to: actif"
-#: ../vhffs-panel/repository/create.pl:85 ../vhffs-panel/cvs/create.pl:97
-#: ../vhffs-panel/svn/create.pl:89 ../vhffs-panel/admin/repository/list.pl:88
+#: ../vhffs-panel/svn/create.pl:89 ../vhffs-panel/repository/create.pl:85
+#: ../vhffs-panel/admin/repository/list.pl:88 ../vhffs-panel/cvs/create.pl:97
msgid "Repository Name"
msgstr "Nom du dépôt"
@@ -3313,8 +3336,8 @@
msgid "Search an object (give object_id)"
msgstr "Chercher un objet (en donnant son identifiant oid)"
+#: ../vhffs-panel/admin/cvs/search.pl:77
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:185
-#: ../vhffs-panel/admin/cvs/search.pl:77
msgid "Search for a CVS repository"
msgstr "Chercher un dépôt CVS"
@@ -3330,8 +3353,8 @@
msgid "Search for a Pg database"
msgstr "Rechercher une base de données PostgreSQL"
+#: ../vhffs-panel/admin/svn/search.pl:79
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:167
-#: ../vhffs-panel/admin/svn/search.pl:79
msgid "Search for a SVN repository"
msgstr "Chercher un dépôt svn"
@@ -3340,8 +3363,8 @@
msgid "Search for a database"
msgstr "Recherche d'une base de données"
+#: ../vhffs-panel/admin/dns/search.pl:78
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:272
-#: ../vhffs-panel/admin/dns/search.pl:78
msgid "Search for a domain name"
msgstr "Recherche d'un nom de domaine"
@@ -3349,8 +3372,8 @@
msgid "Search for a download repository"
msgstr "Chercher un espace de téléchargement"
+#: ../vhffs-panel/admin/group/search.pl:78
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:132
-#: ../vhffs-panel/admin/group/search.pl:78
msgid "Search for a group"
msgstr "Recherche de groupe"
@@ -3358,8 +3381,8 @@
msgid "Search for a list"
msgstr "Recherche d'une liste de diffusion"
+#: ../vhffs-panel/admin/mail/search.pl:78
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:236
-#: ../vhffs-panel/admin/mail/search.pl:78
msgid "Search for a mail domain"
msgstr "Recherche d'un domaine mail"
@@ -3383,8 +3406,8 @@
msgid "Search for an object"
msgstr "Recherche d'un objet"
+#: ../vhffs-panel/admin/user/search.pl:78
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:115
-#: ../vhffs-panel/admin/user/search.pl:78
msgid "Search for an user"
msgstr "Recherche d'un utilisateur"
@@ -3397,8 +3420,8 @@
msgstr "Résultat de la recherche "
#: ../vhffs-panel/admin/mailing/list.pl:79
-#: ../vhffs-panel/admin/mail/list.pl:80 ../vhffs-panel/admin/web/list.pl:71
-#: ../vhffs-panel/admin/user/list.pl:72
+#: ../vhffs-panel/admin/user/list.pl:72 ../vhffs-panel/admin/web/list.pl:71
+#: ../vhffs-panel/admin/mail/list.pl:80
msgid "Search result for"
msgstr "Résultat de la recherche pour"
@@ -3422,28 +3445,27 @@
msgid "Search result for domain"
msgstr "Résultat de recherche pour un nom de domaine"
-#: ../vhffs-panel/public/lastusers.pl:117 ../vhffs-panel/public/index.pl:86
-#: ../vhffs-panel/public/allgroups.pl:116 ../vhffs-panel/public/group.pl:230
-#: ../vhffs-panel/public/allwebsites.pl:104 ../vhffs-panel/public/user.pl:120
-#: ../vhffs-panel/public/lastgroups.pl:108
+#: ../vhffs-panel/public/user.pl:120 ../vhffs-panel/public/lastgroups.pl:108
+#: ../vhffs-panel/public/lastusers.pl:117
+#: ../vhffs-panel/public/allwebsites.pl:104 ../vhffs-panel/public/index.pl:86
+#: ../vhffs-panel/public/group.pl:230 ../vhffs-panel/public/allgroups.pl:116
msgid "Search:"
msgstr "Recherche :"
-#: ../vhffs-panel/repository/create.pl:91 ../vhffs-panel/dns/create.pl:68
-#: ../vhffs-panel/cvs/create.pl:102 ../vhffs-panel/group/create.pl:84
-#: ../vhffs-panel/svn/create.pl:94 ../vhffs-panel/mailinglist/create.pl:109
-#: ../vhffs-panel/web/create.pl:97 ../vhffs-panel/mail/create.pl:86
-#: ../vhffs-panel/pgsql/create.pl:103
+#: ../vhffs-panel/mailinglist/create.pl:109 ../vhffs-panel/svn/create.pl:94
+#: ../vhffs-panel/dns/create.pl:68 ../vhffs-panel/pgsql/create.pl:103
+#: ../vhffs-panel/group/create.pl:84 ../vhffs-panel/repository/create.pl:91
+#: ../vhffs-panel/alert.pl:71 ../vhffs-panel/admin/user/edit.pl:111
+#: ../vhffs-panel/admin/pgsql/edit.pl:102
+#: ../vhffs-panel/admin/group/edit.pl:101
+#: ../vhffs-panel/admin/broadcast_list.pl:99
#: ../vhffs-panel/admin/repository/edit.pl:100
-#: ../vhffs-panel/admin/mail/edit.pl:103
-#: ../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:103
-#: ../vhffs-panel/admin/object/edit.pl:98 ../vhffs-panel/admin/web/edit.pl:100
-#: ../vhffs-panel/admin/user/edit.pl:111
+#: ../vhffs-panel/admin/object/edit.pl:98
#: ../vhffs-panel/admin/broadcast_view.pl:100
-#: ../vhffs-panel/admin/broadcast_list.pl:99
-#: ../vhffs-panel/mysql/create.pl:103 ../vhffs-panel/alert.pl:71
+#: ../vhffs-panel/admin/web/edit.pl:100 ../vhffs-panel/admin/mysql/edit.pl:103
+#: ../vhffs-panel/admin/cvs/edit.pl:101 ../vhffs-panel/admin/mail/edit.pl:103
+#: ../vhffs-panel/web/create.pl:97 ../vhffs-panel/mysql/create.pl:103
+#: ../vhffs-panel/cvs/create.pl:102 ../vhffs-panel/mail/create.pl:86
msgid "Send"
msgstr "Envoyer"
@@ -3467,9 +3489,9 @@
msgid "September"
msgstr "Septembre"
-#: ../vhffs-panel/admin/mysql/edit.pl:95 ../vhffs-panel/admin/mysql/show.pl:93
-#: ../vhffs-panel/admin/web/edit.pl:95 ../vhffs-panel/admin/web/list.pl:78
-#: ../vhffs-panel/admin/web/show.pl:94
+#: ../vhffs-panel/admin/web/edit.pl:95 ../vhffs-panel/admin/web/show.pl:94
+#: ../vhffs-panel/admin/web/list.pl:78 ../vhffs-panel/admin/mysql/edit.pl:95
+#: ../vhffs-panel/admin/mysql/show.pl:93
msgid "Servername"
msgstr "Directive ServerName (nom du site)"
@@ -3477,8 +3499,8 @@
msgid "Service"
msgstr "Service"
-#: ../vhffs-panel/admin/user/edit.pl:98 ../vhffs-panel/admin/user/show.pl:99
-#: ../vhffs-panel/user/prefs.pl:273
+#: ../vhffs-panel/user/prefs.pl:273 ../vhffs-panel/admin/user/edit.pl:98
+#: ../vhffs-panel/admin/user/show.pl:99
msgid "Shell"
msgstr "Shell"
@@ -3598,29 +3620,28 @@
msgid "Spam status updated for box %s"
msgstr "La protection anti-spam pour la boîte %s a été mise à jour"
+#: ../vhffs-panel/admin/svn/list.pl:78 ../vhffs-panel/admin/mailing/list.pl:88
+#: ../vhffs-panel/admin/user/list.pl:81 ../vhffs-panel/admin/dns/list.pl:89
+#: ../vhffs-panel/admin/pgsql/list.pl:89 ../vhffs-panel/admin/group/list.pl:91
#: ../vhffs-panel/admin/repository/list.pl:90
-#: ../vhffs-panel/admin/mailing/list.pl:88
-#: ../vhffs-panel/admin/mail/list.pl:89 ../vhffs-panel/admin/dns/list.pl:89
-#: ../vhffs-panel/admin/pgsql/list.pl:89 ../vhffs-panel/admin/cvs/list.pl:91
-#: ../vhffs-panel/admin/group/list.pl:91 ../vhffs-panel/admin/mysql/list.pl:90
-#: ../vhffs-panel/admin/object/list.pl:89 ../vhffs-panel/admin/svn/list.pl:78
-#: ../vhffs-panel/admin/web/list.pl:80 ../vhffs-panel/admin/user/list.pl:81
+#: ../vhffs-panel/admin/object/list.pl:89
#: ../vhffs-panel/admin/broadcast_view.pl:87
+#: ../vhffs-panel/admin/web/list.pl:80 ../vhffs-panel/admin/mysql/list.pl:90
+#: ../vhffs-panel/admin/cvs/list.pl:91 ../vhffs-panel/admin/mail/list.pl:89
msgid "State"
msgstr "État"
+#: ../vhffs-panel/admin/user/edit.pl:137 ../vhffs-panel/admin/user/show.pl:110
+#: ../vhffs-panel/admin/pgsql/edit.pl:100
+#: ../vhffs-panel/admin/pgsql/show.pl:98 ../vhffs-panel/admin/group/edit.pl:99
+#: ../vhffs-panel/admin/group/show.pl:98
#: ../vhffs-panel/admin/repository/edit.pl:98
#: ../vhffs-panel/admin/repository/show.pl:97
+#: ../vhffs-panel/admin/object/edit.pl:96 ../vhffs-panel/admin/web/edit.pl:98
+#: ../vhffs-panel/admin/web/show.pl:97 ../vhffs-panel/admin/mysql/edit.pl:101
+#: ../vhffs-panel/admin/mysql/show.pl:97 ../vhffs-panel/admin/mysql/show.pl:99
+#: ../vhffs-panel/admin/cvs/edit.pl:99 ../vhffs-panel/admin/cvs/show.pl:98
#: ../vhffs-panel/admin/mail/edit.pl:101 ../vhffs-panel/admin/mail/show.pl:101
-#: ../vhffs-panel/admin/pgsql/edit.pl:100
-#: ../vhffs-panel/admin/pgsql/show.pl:98 ../vhffs-panel/admin/cvs/edit.pl:99
-#: ../vhffs-panel/admin/cvs/show.pl:98 ../vhffs-panel/admin/group/edit.pl:99
-#: ../vhffs-panel/admin/group/show.pl:98
-#: ../vhffs-panel/admin/mysql/edit.pl:101
-#: ../vhffs-panel/admin/mysql/show.pl:97 ../vhffs-panel/admin/mysql/show.pl:99
-#: ../vhffs-panel/admin/object/edit.pl:96 ../vhffs-panel/admin/web/edit.pl:98
-#: ../vhffs-panel/admin/web/show.pl:97 ../vhffs-panel/admin/user/edit.pl:137
-#: ../vhffs-panel/admin/user/show.pl:110
msgid "Status"
msgstr "État"
@@ -3636,8 +3657,8 @@
msgid "Subdomain name"
msgstr "Nom de sous-domaine"
+#: ../vhffs-panel/admin/broadcast.pl:78
#: ../vhffs-panel/admin/broadcast_view.pl:86
-#: ../vhffs-panel/admin/broadcast.pl:78
msgid "Subject"
msgstr "Sujet"
@@ -3650,8 +3671,8 @@
msgid "Submit a bug"
msgstr "Signaler un dysfonctionnement"
-#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:67 ../vhffs-panel/subscribe.pl:224
-#: ../vhffs-panel/subscribe.pl:239
+#: ../vhffs-panel/subscribe.pl:224 ../vhffs-panel/subscribe.pl:239
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:67
msgid "Subscribe"
msgstr "Inscription"
@@ -3679,6 +3700,7 @@
" %s\n"
"\n"
"Merci de votre compréhension.\n"
+
#: ../vhffs-panel/admin/moderation.pl:305
msgid "Subversion repository awaiting validation"
msgstr "Dépôts Subversion en attente de validation"
@@ -3695,24 +3717,24 @@
msgid "Successfully deleted"
msgstr "Supprimé avec succès"
-#: ../vhffs-intl/extra_strings.pl:23
+#: ../vhffs-panel/admin/user/edit.pl:145
+#: ../vhffs-panel/admin/pgsql/edit.pl:121
+#: ../vhffs-panel/admin/pgsql/edit.pl:122
+#: ../vhffs-panel/admin/group/edit.pl:126
+#: ../vhffs-panel/admin/group/edit.pl:127
#: ../vhffs-panel/admin/repository/edit.pl:121
#: ../vhffs-panel/admin/repository/edit.pl:122
-#: ../vhffs-panel/admin/mail/edit.pl:162 ../vhffs-panel/admin/mail/edit.pl:163
-#: ../vhffs-panel/admin/pgsql/edit.pl:121
-#: ../vhffs-panel/admin/pgsql/edit.pl:122 ../vhffs-panel/admin/cvs/edit.pl:130
-#: ../vhffs-panel/admin/cvs/edit.pl:131 ../vhffs-panel/admin/group/edit.pl:126
-#: ../vhffs-panel/admin/group/edit.pl:127
-#: ../vhffs-panel/admin/mysql/edit.pl:122
-#: ../vhffs-panel/admin/mysql/edit.pl:123
#: ../vhffs-panel/admin/object/edit.pl:121
#: ../vhffs-panel/admin/object/edit.pl:122
#: ../vhffs-panel/admin/web/edit.pl:117 ../vhffs-panel/admin/web/edit.pl:118
-#: ../vhffs-panel/admin/user/edit.pl:145
+#: ../vhffs-panel/admin/mysql/edit.pl:122
+#: ../vhffs-panel/admin/mysql/edit.pl:123 ../vhffs-panel/admin/cvs/edit.pl:130
+#: ../vhffs-panel/admin/cvs/edit.pl:131 ../vhffs-panel/admin/mail/edit.pl:162
+#: ../vhffs-panel/admin/mail/edit.pl:163 ../vhffs-intl/extra_strings.pl:23
msgid "Suspended"
msgstr "Suspendu"
-#: ../vhffs-intl/extra_strings.pl:24 ../vhffs-panel/admin/user/edit.pl:146
+#: ../vhffs-panel/admin/user/edit.pl:146 ../vhffs-intl/extra_strings.pl:24
msgid "Suspended before deletion"
msgstr "Suspendu avant suppression"
@@ -3744,8 +3766,8 @@
msgid "Text"
msgstr "Texte"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:353
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:365
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:340
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:352
msgid "Text can't be empty"
msgstr "Le texte ne peut être vide"
@@ -3757,15 +3779,14 @@
msgid "The DNS object was successfully created !"
msgstr "Nom de domaine créé avec succès"
-#: ../vhffs-robots/src/refused_cvs.pl:77
+#: ../vhffs-robots/src/refused_ml.pl:78 ../vhffs-robots/src/refused_mail.pl:80
#: ../vhffs-robots/src/refused_postgres.pl:81
-#: ../vhffs-robots/src/refused_web.pl:76
+#: ../vhffs-robots/src/refused_cvs.pl:77 ../vhffs-robots/src/refused_web.pl:76
+#: ../vhffs-robots/src/refused_mysql.pl:51
+#: ../vhffs-robots/src/refused_svn.pl:47
+#: ../vhffs-robots/src/refused_groups.pl:76
#: ../vhffs-robots/src/refused_repository.pl:81
-#: ../vhffs-robots/src/refused_mail.pl:80
#: ../vhffs-robots/src/refused_dns.pl:80
-#: ../vhffs-robots/src/refused_mysql.pl:51
-#: ../vhffs-robots/src/refused_svn.pl:47 ../vhffs-robots/src/refused_ml.pl:78
-#: ../vhffs-robots/src/refused_groups.pl:76
msgid "The Moderator and Admin team"
msgstr "L'équipe de modérateurs et d'administrateurs"
@@ -3804,9 +3825,9 @@
"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 ""
-"Le nom de la base de données est préfixé par votre nom de groupe suivi d'un "
-"underscore (%s_dbname). L'utilisateur de la base est le nom complet de la base"
-"(%s_dbname)."
+"Le nom de la base de données est préfixé par votre nom de groupe suivi "
+"d'un underscore (%s_dbname). L'utilisateur de la base est le nom complet de "
+"la base(%s_dbname)."
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:381
#, perl-format
@@ -3853,7 +3874,8 @@
msgid ""
"The state of you subscription was not changed, you are still subscribed\n"
msgstr ""
-"L'état de votre inscription n'a pas été modifié, vous êtes toujours inscrit\n"
+"L'état de votre inscription n'a pas été modifié, vous êtes toujours "
+"inscrit\n"
#: ../vhffs-panel/web/create.pl:75
msgid "The webarea was successfully created !"
@@ -3876,8 +3898,8 @@
"There is no default mail domain on this platform, you have to create a mail "
"domain before creating a mailing list"
msgstr ""
-"Il n'y a pas de domaine mail par défaut sur cette plateforme, vous devez créer"
-"un domaine mail avant de créer une liste de diffusion"
+"Il n'y a pas de domaine mail par défaut sur cette plateforme, vous devez "
+"créerun domaine mail avant de créer une liste de diffusion"
#: ../vhffs-panel/user/prefs.pl:377
msgid "There is two possible usages :"
@@ -3891,7 +3913,7 @@
msgid "This CVS will be delete"
msgstr "Ce dépôt CVS sera détruit"
-#: ../vhffs-panel/pgsql/prefs_save.pl:77 ../vhffs-panel/pgsql/delete.pl:73
+#: ../vhffs-panel/pgsql/delete.pl:73 ../vhffs-panel/pgsql/prefs_save.pl:77
msgid "This DB doesn't exist in VHFFS database"
msgstr "Cet utilisateur n'existe pas sur la plateforme"
@@ -3903,11 +3925,11 @@
msgid "This Download repository will be deleted"
msgstr "Cet espace de téléchargement sera détruit"
-#: ../vhffs-panel/repository/prefs.pl:104 ../vhffs-panel/dns/prefs.pl:267
-#: ../vhffs-panel/cvs/prefs.pl:98 ../vhffs-panel/group/prefs.pl:186
-#: ../vhffs-panel/svn/prefs.pl:123 ../vhffs-panel/mailinglist/prefs.pl:202
-#: ../vhffs-panel/web/prefs.pl:109 ../vhffs-panel/mail/prefs.pl:131
-#: ../vhffs-panel/pgsql/prefs.pl:109 ../vhffs-panel/mysql/prefs.pl:116
+#: ../vhffs-panel/mailinglist/prefs.pl:202 ../vhffs-panel/svn/prefs.pl:123
+#: ../vhffs-panel/dns/prefs.pl:267 ../vhffs-panel/pgsql/prefs.pl:109
+#: ../vhffs-panel/group/prefs.pl:186 ../vhffs-panel/repository/prefs.pl:104
+#: ../vhffs-panel/web/prefs.pl:109 ../vhffs-panel/mysql/prefs.pl:116
+#: ../vhffs-panel/cvs/prefs.pl:98 ../vhffs-panel/mail/prefs.pl:131
msgid ""
"This action is non-reversible. All services associated to this project will "
"be DESTROYED."
@@ -3965,7 +3987,7 @@
msgid "This group will be deleted"
msgstr "Ce groupe sera détruit"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:326
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:313
msgid "This host is already registered for this service"
msgstr "Ce host est déjà enregistré pour ce service"
@@ -3985,8 +4007,7 @@
#, perl-format
msgid ""
"This mail must contains the following subject : \"confirm unsubscribe %s\"\n"
-msgstr ""
-"Ce mail doit contenir le sujet suivant : \"confirm unsubscribe %s\"\n"
+msgstr "Ce mail doit contenir le sujet suivant : \"confirm unsubscribe %s\"\n"
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:83
#, perl-format
@@ -4022,38 +4043,38 @@
"Ce service n'est pas fonctionnel actuellement. Veuillez attendre la "
"création ou la modération"
-#: ../vhffs-panel/repository/prefs_save.pl:86
-#: ../vhffs-panel/repository/delete.pl:86 ../vhffs-panel/dns/prefs.pl:100
-#: ../vhffs-panel/cvs/prefs_save.pl:85 ../vhffs-panel/cvs/delete.pl:86
-#: ../vhffs-panel/group/delete.pl:74 ../vhffs-panel/svn/prefs_save.pl:88
-#: ../vhffs-panel/svn/delete.pl:85
+#: ../vhffs-panel/mailinglist/delete.pl:86
+#: ../vhffs-panel/mailinglist/save_sig.pl:85
+#: ../vhffs-panel/mailinglist/add_sub.pl:87
+#: ../vhffs-panel/mailinglist/prefs.pl:92
#: ../vhffs-panel/mailinglist/save_options.pl:89
-#: ../vhffs-panel/mailinglist/del_member.pl:87
-#: ../vhffs-panel/mailinglist/prefs.pl:92
-#: ../vhffs-panel/mailinglist/add_sub.pl:87
#: ../vhffs-panel/mailinglist/change_right.pl:89
-#: ../vhffs-panel/mailinglist/delete.pl:86
-#: ../vhffs-panel/mailinglist/save_sig.pl:85
-#: ../vhffs-panel/web/prefs_save.pl:81 ../vhffs-panel/web/prefs.pl:80
+#: ../vhffs-panel/mailinglist/del_member.pl:87 ../vhffs-panel/svn/delete.pl:85
+#: ../vhffs-panel/svn/prefs_save.pl:88 ../vhffs-panel/dns/prefs.pl:100
+#: ../vhffs-panel/group/delete.pl:74 ../vhffs-panel/repository/delete.pl:86
+#: ../vhffs-panel/repository/prefs_save.pl:86
+#: ../vhffs-panel/admin/mail/delete_box.pl:89
+#: ../vhffs-panel/admin/mail/password_box.pl:90
+#: ../vhffs-panel/admin/mail/delete_forward.pl:90
+#: ../vhffs-panel/admin/mail/change_forward.pl:90
+#: ../vhffs-panel/web/prefs.pl:80 ../vhffs-panel/web/prefs_save.pl:81
+#: ../vhffs-panel/mysql/prefs.pl:90 ../vhffs-panel/mysql/prefs_save.pl:91
+#: ../vhffs-panel/cvs/delete.pl:86 ../vhffs-panel/cvs/prefs_save.pl:85
+#: ../vhffs-panel/mail/delete.pl:82 ../vhffs-panel/mail/delete_box.pl:86
+#: ../vhffs-panel/mail/add_account.pl:89 ../vhffs-panel/mail/prefs.pl:85
+#: ../vhffs-panel/mail/save_catchall.pl:80
+#: ../vhffs-panel/mail/password_box.pl:89
#: ../vhffs-panel/mail/delete_forward.pl:84
+#: ../vhffs-panel/mail/add_forward.pl:83
#: ../vhffs-panel/mail/change_forward.pl:89
-#: ../vhffs-panel/mail/save_catchall.pl:80 ../vhffs-panel/mail/spambox.pl:89
-#: ../vhffs-panel/mail/spamvirus.pl:89 ../vhffs-panel/mail/delete_box.pl:86
-#: ../vhffs-panel/mail/password_box.pl:89
-#: ../vhffs-panel/mail/add_forward.pl:83 ../vhffs-panel/mail/prefs.pl:85
-#: ../vhffs-panel/mail/delete.pl:82 ../vhffs-panel/mail/add_account.pl:89
-#: ../vhffs-panel/admin/mail/delete_forward.pl:90
-#: ../vhffs-panel/admin/mail/change_forward.pl:90
-#: ../vhffs-panel/admin/mail/delete_box.pl:89
-#: ../vhffs-panel/admin/mail/password_box.pl:90
-#: ../vhffs-panel/mysql/prefs_save.pl:91 ../vhffs-panel/mysql/prefs.pl:90
+#: ../vhffs-panel/mail/spamvirus.pl:89 ../vhffs-panel/mail/spambox.pl:89
msgid "This object is not functionnal yet. Please wait creation or moderation."
msgstr ""
"Ce service n'est pas encore actif. Merci d'attendre la création ou la "
"modération"
-#: ../vhffs-panel/repository/prefs.pl:89 ../vhffs-panel/cvs/prefs.pl:84
-#: ../vhffs-panel/svn/prefs.pl:106
+#: ../vhffs-panel/svn/prefs.pl:106 ../vhffs-panel/repository/prefs.pl:89
+#: ../vhffs-panel/cvs/prefs.pl:84
msgid ""
"This object is not functionnal yet. Please wait creation, moderation or "
"modification."
@@ -4121,7 +4142,7 @@
msgid "This user will be removed from this group as soon as possible"
msgstr "Cet utilisateur sera supprimé de ce groupe dès que possible"
-#: ../vhffs-panel/web/prefs_save.pl:77 ../vhffs-panel/web/delete.pl:79
+#: ../vhffs-panel/web/delete.pl:79 ../vhffs-panel/web/prefs_save.pl:77
msgid "This web area doesn't exist in VHFFS database"
msgstr "Ce site web n'existe pas"
@@ -4290,8 +4311,8 @@
"Unable to add user, he might already be in the group (waiting for addition "
"or deletion)"
msgstr ""
-"Impossible d'ajouter l'utilisateur, il doit être déjà dans le groupe (en cours "
-"d'ajout ou de suppression)"
+"Impossible d'ajouter l'utilisateur, il doit être déjà dans le groupe (en "
+"cours d'ajout ou de suppression)"
#: ../vhffs-panel/admin/mail/password_box.pl:105
#, perl-format
@@ -4361,8 +4382,8 @@
msgid "Unable to delete this domain"
msgstr "Impossible de détruire ce domaine mail"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:207
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:237
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:194
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:224
msgid ""
"Unable to find default redirection address, please contact administrators"
msgstr ""
@@ -4387,15 +4408,15 @@
msgid "Unable to get SVN repositories"
msgstr "Impossible d'obtenir les dépôts SVN"
-#: ../vhffs-panel/mail/delete_forward.pl:74
-#: ../vhffs-panel/mail/change_forward.pl:76 ../vhffs-panel/mail/spambox.pl:76
-#: ../vhffs-panel/mail/spamvirus.pl:76 ../vhffs-panel/mail/delete_box.pl:73
-#: ../vhffs-panel/mail/password_box.pl:76 ../vhffs-panel/mail/prefs.pl:77
-#: ../vhffs-panel/mail/delete.pl:78
+#: ../vhffs-panel/admin/mail/delete_box.pl:76
+#: ../vhffs-panel/admin/mail/password_box.pl:77
#: ../vhffs-panel/admin/mail/delete_forward.pl:77
#: ../vhffs-panel/admin/mail/change_forward.pl:77
-#: ../vhffs-panel/admin/mail/delete_box.pl:76
-#: ../vhffs-panel/admin/mail/password_box.pl:77
+#: ../vhffs-panel/mail/delete.pl:78 ../vhffs-panel/mail/delete_box.pl:73
+#: ../vhffs-panel/mail/prefs.pl:77 ../vhffs-panel/mail/password_box.pl:76
+#: ../vhffs-panel/mail/delete_forward.pl:74
+#: ../vhffs-panel/mail/change_forward.pl:76
+#: ../vhffs-panel/mail/spamvirus.pl:76 ../vhffs-panel/mail/spambox.pl:76
#, perl-format
msgid "Unable to get information on mail domain %s"
msgstr "Impossible d'obtenir des information sur le domain mail %s"
@@ -4446,8 +4467,8 @@
msgid "Unable to modify TXT record: %s"
msgstr "Impossible de modifier l'enregistrement de type TXT : %s"
+#: ../vhffs-panel/admin/mail/change_forward.pl:105
#: ../vhffs-panel/mail/change_forward.pl:104
-#: ../vhffs-panel/admin/mail/change_forward.pl:105
#, perl-format
msgid "Unable to modify forward %s (%d)"
msgstr "Impossible de modifier la redirection %s (%d)"
@@ -4468,25 +4489,26 @@
msgstr ""
"Commande inconnue\n"
"\n"
-#: ../vhffs-api/src/Vhffs/Functions.pm:400
-#: ../vhffs-api/src/Vhffs/Functions.pm:405
+
+#: ../vhffs-api/src/Vhffs/Functions.pm:402
+#: ../vhffs-api/src/Vhffs/Functions.pm:407
msgid "Unknown"
msgstr "Inconnu"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:174
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:210
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:222
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:240
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:252
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:264
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:276
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:287
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:161
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:197
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:209
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:227
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:239
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:251
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:263
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:274
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:286
#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:299
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:312
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:328
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:343
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:355
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:367
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:315
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:330
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:342
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:354
msgid "Unknown error"
msgstr "Erreur inconnue"
@@ -4494,8 +4516,8 @@
msgid "Unknown month"
msgstr "Mois inconnu"
+#: ../vhffs-panel/admin/broadcast_list.pl:103
#: ../vhffs-panel/admin/broadcast_view.pl:104
-#: ../vhffs-panel/admin/broadcast_list.pl:103
msgid "Unknown status"
msgstr "Statut inconnu"
@@ -4546,9 +4568,9 @@
msgid "Use anti-virus protection"
msgstr "Utiliser la protection par anti-virus"
-#: ../vhffs-intl/extra_strings.pl:32 ../vhffs-panel/admin/pgsql/edit.pl:96
-#: ../vhffs-panel/admin/pgsql/show.pl:95 ../vhffs-panel/admin/mysql/edit.pl:96
-#: ../vhffs-panel/admin/mysql/show.pl:94
+#: ../vhffs-panel/admin/pgsql/edit.pl:96 ../vhffs-panel/admin/pgsql/show.pl:95
+#: ../vhffs-panel/admin/mysql/edit.pl:96 ../vhffs-panel/admin/mysql/show.pl:94
+#: ../vhffs-intl/extra_strings.pl:32
msgid "User"
msgstr "Utilisateur"
@@ -4561,7 +4583,7 @@
msgid "User Admin"
msgstr "Administration des Utilisateurs"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:410 ../vhffs-panel/user/prefs.pl:256
+#: ../vhffs-panel/user/prefs.pl:256 ../vhffs-api/src/Vhffs/Panel/Main.pm:410
msgid "User Preferences"
msgstr "Préférences utilisateur"
@@ -4581,7 +4603,7 @@
msgid "User is not active yet"
msgstr "L'utilisateur n'est pas encore actif"
-#: ../vhffs-panel/group/prefs.pl:142 ../vhffs-panel/acl/view.pl:86
+#: ../vhffs-panel/acl/view.pl:86 ../vhffs-panel/group/prefs.pl:142
msgid "User not found"
msgstr "Utilisateur Introuvable"
@@ -4593,12 +4615,11 @@
msgid "User will be added as soon as possible"
msgstr "L'utilisateur sera ajouté le plus rapidement possible"
-#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:62
-#: ../vhffs-panel/group/prefs.pl:192 ../vhffs-panel/acl/view.pl:171
-#: ../vhffs-panel/public/lastusers.pl:78 ../vhffs-panel/public/user.pl:83
+#: ../vhffs-panel/subscribe.pl:216 ../vhffs-panel/user/prefs.pl:261
+#: ../vhffs-panel/acl/view.pl:171 ../vhffs-panel/group/prefs.pl:192
#: ../vhffs-panel/admin/user/list.pl:79 ../vhffs-panel/admin/su.pl:78
-#: ../vhffs-panel/user/prefs.pl:261 ../vhffs-panel/subscribe.pl:216
-#: ../vhffs-panel/lost.pl:54
+#: ../vhffs-panel/public/user.pl:83 ../vhffs-panel/public/lastusers.pl:78
+#: ../vhffs-panel/lost.pl:54 ../vhffs-api/src/Vhffs/Panel/Commons.pm:62
msgid "Username"
msgstr "Nom d'utilisateur"
@@ -4611,9 +4632,9 @@
msgid "Username:"
msgstr "Nom d'utilisateur :"
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:109 ../vhffs-panel/group/prefs.pl:210
-#: ../vhffs-panel/public/allgroups.pl:82 ../vhffs-panel/public/group.pl:94
-#: ../vhffs-panel/public/lastgroups.pl:75
+#: ../vhffs-panel/group/prefs.pl:210 ../vhffs-panel/public/lastgroups.pl:75
+#: ../vhffs-panel/public/group.pl:94 ../vhffs-panel/public/allgroups.pl:82
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:109
msgid "Users"
msgstr "Utilisateurs"
@@ -4641,14 +4662,14 @@
msgid "VHFFS Password Lost failed"
msgstr "Impossible de retrouver l'utilisateur"
-#: ../vhffs-intl/extra_strings.pl:18
+#: ../vhffs-panel/admin/user/edit.pl:140
+#: ../vhffs-panel/admin/pgsql/edit.pl:116
+#: ../vhffs-panel/admin/group/edit.pl:121
#: ../vhffs-panel/admin/repository/edit.pl:116
-#: ../vhffs-panel/admin/mail/edit.pl:157
-#: ../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:117
#: ../vhffs-panel/admin/object/edit.pl:116
-#: ../vhffs-panel/admin/web/edit.pl:112 ../vhffs-panel/admin/user/edit.pl:140
+#: ../vhffs-panel/admin/web/edit.pl:112 ../vhffs-panel/admin/mysql/edit.pl:117
+#: ../vhffs-panel/admin/cvs/edit.pl:125 ../vhffs-panel/admin/mail/edit.pl:157
+#: ../vhffs-intl/extra_strings.pl:18
msgid "Validation refused"
msgstr "Validation refusée"
@@ -4686,14 +4707,14 @@
msgid "Waiting for confirmation"
msgstr "En attente de confirmation"
-#: ../vhffs-intl/extra_strings.pl:19
+#: ../vhffs-panel/admin/user/edit.pl:141
+#: ../vhffs-panel/admin/pgsql/edit.pl:117
+#: ../vhffs-panel/admin/group/edit.pl:122
#: ../vhffs-panel/admin/repository/edit.pl:117
-#: ../vhffs-panel/admin/mail/edit.pl:158
-#: ../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:118
#: ../vhffs-panel/admin/object/edit.pl:117
-#: ../vhffs-panel/admin/web/edit.pl:113 ../vhffs-panel/admin/user/edit.pl:141
+#: ../vhffs-panel/admin/web/edit.pl:113 ../vhffs-panel/admin/mysql/edit.pl:118
+#: ../vhffs-panel/admin/cvs/edit.pl:126 ../vhffs-panel/admin/mail/edit.pl:158
+#: ../vhffs-intl/extra_strings.pl:19
msgid "Waiting for creation"
msgstr "En attente de création"
@@ -4701,25 +4722,26 @@
msgid "Waiting for deletion"
msgstr "En attente de suppression"
-#: ../vhffs-intl/extra_strings.pl:25
+#: ../vhffs-panel/admin/user/edit.pl:147
+#: ../vhffs-panel/admin/pgsql/edit.pl:123
+#: ../vhffs-panel/admin/group/edit.pl:128
#: ../vhffs-panel/admin/repository/edit.pl:123
-#: ../vhffs-panel/admin/mail/edit.pl:164
-#: ../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:124
#: ../vhffs-panel/admin/object/edit.pl:123
-#: ../vhffs-panel/admin/web/edit.pl:119 ../vhffs-panel/admin/user/edit.pl:147
+#: ../vhffs-panel/admin/web/edit.pl:119 ../vhffs-panel/admin/mysql/edit.pl:124
+#: ../vhffs-panel/admin/cvs/edit.pl:132 ../vhffs-panel/admin/mail/edit.pl:164
+#: ../vhffs-intl/extra_strings.pl:25
msgid "Waiting for modification"
msgstr "En attente de modification"
-#: ../vhffs-intl/extra_strings.pl:17 ../vhffs-panel/mailinglist/prefs.pl:180
+#: ../vhffs-panel/mailinglist/prefs.pl:180
+#: ../vhffs-panel/admin/user/edit.pl:139
+#: ../vhffs-panel/admin/pgsql/edit.pl:115
+#: ../vhffs-panel/admin/group/edit.pl:120
#: ../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:116
#: ../vhffs-panel/admin/object/edit.pl:115
-#: ../vhffs-panel/admin/web/edit.pl:111 ../vhffs-panel/admin/user/edit.pl:139
+#: ../vhffs-panel/admin/web/edit.pl:111 ../vhffs-panel/admin/mysql/edit.pl:116
+#: ../vhffs-panel/admin/cvs/edit.pl:124 ../vhffs-panel/admin/mail/edit.pl:156
+#: ../vhffs-intl/extra_strings.pl:17
msgid "Waiting for validation"
msgstr "En attente de validation"
@@ -4827,14 +4849,14 @@
msgid "Will be DELETED in a few minutes"
msgstr "Sera détruit dans quelques minutes"
-#: ../vhffs-intl/extra_strings.pl:28
+#: ../vhffs-panel/admin/user/edit.pl:150
+#: ../vhffs-panel/admin/pgsql/edit.pl:126
+#: ../vhffs-panel/admin/group/edit.pl:131
#: ../vhffs-panel/admin/repository/edit.pl:126
-#: ../vhffs-panel/admin/mail/edit.pl:167
-#: ../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:127
#: ../vhffs-panel/admin/object/edit.pl:126
-#: ../vhffs-panel/admin/web/edit.pl:122 ../vhffs-panel/admin/user/edit.pl:150
+#: ../vhffs-panel/admin/web/edit.pl:122 ../vhffs-panel/admin/mysql/edit.pl:127
+#: ../vhffs-panel/admin/cvs/edit.pl:135 ../vhffs-panel/admin/mail/edit.pl:167
+#: ../vhffs-intl/extra_strings.pl:28
msgid "Will be deleted"
msgstr "Sera détruit"
@@ -4843,18 +4865,18 @@
msgid "Woah, %s users and %s groups already trust %s"
msgstr "Youhou, %s utilisateurs et %s groupes font déjà confiance à %s"
-#: ../vhffs-panel/dns/prefs.pl:276 ../vhffs-panel/cvs/prefs.pl:94
-#: ../vhffs-panel/svn/prefs.pl:119 ../vhffs-panel/admin/cvs/edit.pl:105
-#: ../vhffs-panel/admin/cvs/show.pl:104
+#: ../vhffs-panel/svn/prefs.pl:119 ../vhffs-panel/dns/prefs.pl:276
+#: ../vhffs-panel/admin/cvs/edit.pl:105 ../vhffs-panel/admin/cvs/show.pl:104
+#: ../vhffs-panel/cvs/prefs.pl:94
msgid "Yes"
msgstr "Oui"
-#: ../vhffs-panel/repository/prefs.pl:106 ../vhffs-panel/dns/prefs.pl:269
-#: ../vhffs-panel/cvs/prefs.pl:100 ../vhffs-panel/group/prefs.pl:188
-#: ../vhffs-panel/svn/prefs.pl:125 ../vhffs-panel/mailinglist/prefs.pl:204
-#: ../vhffs-panel/web/prefs.pl:111 ../vhffs-panel/mail/prefs.pl:133
-#: ../vhffs-panel/pgsql/prefs.pl:111 ../vhffs-panel/mysql/prefs.pl:118
-#: ../vhffs-panel/user/prefs.pl:288
+#: ../vhffs-panel/mailinglist/prefs.pl:204 ../vhffs-panel/svn/prefs.pl:125
+#: ../vhffs-panel/user/prefs.pl:288 ../vhffs-panel/dns/prefs.pl:269
+#: ../vhffs-panel/pgsql/prefs.pl:111 ../vhffs-panel/group/prefs.pl:188
+#: ../vhffs-panel/repository/prefs.pl:106 ../vhffs-panel/web/prefs.pl:111
+#: ../vhffs-panel/mysql/prefs.pl:118 ../vhffs-panel/cvs/prefs.pl:100
+#: ../vhffs-panel/mail/prefs.pl:133
msgid "Yes I'm sure of what I do"
msgstr "Oui, je suis sûr de ce que je fais"
@@ -4862,48 +4884,48 @@
msgid "You are not a subscriber on this list.\n"
msgstr "Vous n'êtes pas inscrit à la liste.\n"
-#: ../vhffs-panel/admin/repository/edit.pl:73
-#: ../vhffs-panel/admin/repository/search.pl:70
-#: ../vhffs-panel/admin/repository/edit_submit.pl:75
-#: ../vhffs-panel/admin/repository/list.pl:72
-#: ../vhffs-panel/admin/repository/show.pl:73
+#: ../vhffs-panel/admin/svn/search.pl:72 ../vhffs-panel/admin/svn/list.pl:61
+#: ../vhffs-panel/admin/broadcast.pl:69
+#: ../vhffs-panel/admin/mailing/mailing_submit.pl:74
#: ../vhffs-panel/admin/mailing/search.pl:70
-#: ../vhffs-panel/admin/mailing/list.pl:70
-#: ../vhffs-panel/admin/mailing/mailing_submit.pl:74
-#: ../vhffs-panel/admin/mail/edit.pl:75 ../vhffs-panel/admin/mail/search.pl:71
-#: ../vhffs-panel/admin/mail/list.pl:71 ../vhffs-panel/admin/mail/show.pl:75
+#: ../vhffs-panel/admin/mailing/list.pl:70 ../vhffs-panel/admin/stats.pl:81
+#: ../vhffs-panel/admin/user/edit_submit.pl:85
+#: ../vhffs-panel/admin/user/edit.pl:73 ../vhffs-panel/admin/user/show.pl:75
+#: ../vhffs-panel/admin/user/edit_note.pl:75
+#: ../vhffs-panel/admin/user/search.pl:71 ../vhffs-panel/admin/user/list.pl:63
#: ../vhffs-panel/admin/dns/search.pl:71 ../vhffs-panel/admin/dns/list.pl:71
-#: ../vhffs-panel/admin/pgsql/edit.pl:73
+#: ../vhffs-panel/admin/pgsql/edit_submit.pl:73
+#: ../vhffs-panel/admin/pgsql/edit.pl:73 ../vhffs-panel/admin/pgsql/show.pl:73
#: ../vhffs-panel/admin/pgsql/search.pl:71
-#: ../vhffs-panel/admin/pgsql/edit_submit.pl:73
-#: ../vhffs-panel/admin/pgsql/list.pl:71 ../vhffs-panel/admin/pgsql/show.pl:73
-#: ../vhffs-panel/admin/cvs/edit.pl:73 ../vhffs-panel/admin/cvs/search.pl:70
-#: ../vhffs-panel/admin/cvs/edit_submit.pl:75
-#: ../vhffs-panel/admin/cvs/list.pl:73 ../vhffs-panel/admin/cvs/show.pl:73
-#: ../vhffs-panel/admin/group/edit.pl:71
+#: ../vhffs-panel/admin/pgsql/list.pl:71
+#: ../vhffs-panel/admin/group/edit_submit.pl:77
+#: ../vhffs-panel/admin/group/edit.pl:71 ../vhffs-panel/admin/group/show.pl:72
#: ../vhffs-panel/admin/group/search.pl:71
-#: ../vhffs-panel/admin/group/edit_submit.pl:77
-#: ../vhffs-panel/admin/group/list.pl:72 ../vhffs-panel/admin/group/show.pl:72
-#: ../vhffs-panel/admin/mysql/edit.pl:73
-#: ../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/group/list.pl:72
+#: ../vhffs-panel/admin/broadcast_list.pl:70
+#: ../vhffs-panel/admin/repository/edit_submit.pl:75
+#: ../vhffs-panel/admin/repository/edit.pl:73
+#: ../vhffs-panel/admin/repository/show.pl:73
+#: ../vhffs-panel/admin/repository/search.pl:70
+#: ../vhffs-panel/admin/repository/list.pl:72 ../vhffs-panel/admin/su.pl:69
+#: ../vhffs-panel/admin/object/edit_submit.pl:73
+#: ../vhffs-panel/admin/object/delete_avatar.pl:77
#: ../vhffs-panel/admin/object/edit.pl:73
#: ../vhffs-panel/admin/object/search.pl:70
-#: ../vhffs-panel/admin/object/edit_submit.pl:73
#: ../vhffs-panel/admin/object/list.pl:71
-#: ../vhffs-panel/admin/object/delete_avatar.pl:77
-#: ../vhffs-panel/admin/svn/search.pl:72 ../vhffs-panel/admin/svn/list.pl:61
-#: ../vhffs-panel/admin/web/edit.pl:73 ../vhffs-panel/admin/web/search.pl:71
+#: ../vhffs-panel/admin/broadcast_view.pl:72
#: ../vhffs-panel/admin/web/edit_submit.pl:73
-#: ../vhffs-panel/admin/web/list.pl:62 ../vhffs-panel/admin/web/show.pl:73
-#: ../vhffs-panel/admin/user/edit.pl:73 ../vhffs-panel/admin/user/search.pl:71
-#: ../vhffs-panel/admin/user/edit_submit.pl:85
-#: ../vhffs-panel/admin/user/edit_note.pl:75
-#: ../vhffs-panel/admin/user/list.pl:63 ../vhffs-panel/admin/user/show.pl:75
-#: ../vhffs-panel/admin/su.pl:69 ../vhffs-panel/admin/broadcast_view.pl:72
-#: ../vhffs-panel/admin/broadcast_list.pl:70 ../vhffs-panel/admin/stats.pl:81
-#: ../vhffs-panel/admin/broadcast.pl:69
+#: ../vhffs-panel/admin/web/edit.pl:73 ../vhffs-panel/admin/web/show.pl:73
+#: ../vhffs-panel/admin/web/search.pl:71 ../vhffs-panel/admin/web/list.pl:62
+#: ../vhffs-panel/admin/mysql/edit_submit.pl:72
+#: ../vhffs-panel/admin/mysql/edit.pl:73 ../vhffs-panel/admin/mysql/show.pl:72
+#: ../vhffs-panel/admin/mysql/search.pl:71
+#: ../vhffs-panel/admin/mysql/list.pl:72
+#: ../vhffs-panel/admin/cvs/edit_submit.pl:75
+#: ../vhffs-panel/admin/cvs/edit.pl:73 ../vhffs-panel/admin/cvs/show.pl:73
+#: ../vhffs-panel/admin/cvs/search.pl:70 ../vhffs-panel/admin/cvs/list.pl:73
+#: ../vhffs-panel/admin/mail/edit.pl:75 ../vhffs-panel/admin/mail/show.pl:75
+#: ../vhffs-panel/admin/mail/search.pl:71 ../vhffs-panel/admin/mail/list.pl:71
msgid "You are not allowed to see it"
msgstr "Vous n'êtes pas autorisé à voir ceci"
@@ -4924,7 +4946,8 @@
"\n"
"%s\n"
"\n"
-#: ../vhffs-panel/dns/prefs.pl:261 ../vhffs-panel/svn/prefs.pl:131
+
+#: ../vhffs-panel/svn/prefs.pl:131 ../vhffs-panel/dns/prefs.pl:261
#: ../vhffs-panel/web/prefs.pl:104 ../vhffs-panel/mail/prefs.pl:139
msgid ""
"You can Manage rights on this service for each user in the VHFFS database. "
@@ -4984,11 +5007,11 @@
"Vous avez été inscrit avec succès à la liste de diffusion suivante:\n"
" %s\n"
-#: ../vhffs-panel/repository/index.pl:53 ../vhffs-panel/dns/index.pl:53
-#: ../vhffs-panel/cvs/index.pl:53 ../vhffs-panel/svn/index.pl:53
-#: ../vhffs-panel/mailinglist/index.pl:53 ../vhffs-panel/web/index.pl:53
-#: ../vhffs-panel/mail/index.pl:53 ../vhffs-panel/pgsql/index.pl:53
-#: ../vhffs-panel/mysql/index.pl:53
+#: ../vhffs-panel/mailinglist/index.pl:53 ../vhffs-panel/svn/index.pl:53
+#: ../vhffs-panel/dns/index.pl:53 ../vhffs-panel/pgsql/index.pl:53
+#: ../vhffs-panel/repository/index.pl:53 ../vhffs-panel/web/index.pl:53
+#: ../vhffs-panel/mysql/index.pl:53 ../vhffs-panel/cvs/index.pl:53
+#: ../vhffs-panel/mail/index.pl:53
msgid "You have to select a group first"
msgstr "Vous devez d'abord selectionner un groupe"
@@ -5004,8 +5027,9 @@
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:165
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:436
msgid "You may get some help on listengine by sending an email to\n"
-msgstr "Si vous souhaitez obtenir des informations sur le fonctionnement"
-" de la liste, vous pouvrez envoyer un mail à \n"
+msgstr ""
+"Si vous souhaitez obtenir des informations sur le fonctionnement de la "
+"liste, vous pouvrez envoyer un mail à \n"
#: ../vhffs-panel/user/prefs.pl:169
msgid "You must choose a method for your mail"
@@ -5049,12 +5073,12 @@
msgid "You must declare your zipcode"
msgstr "Vous devez entrer un code postal valide"
-#: ../vhffs-panel/repository/create.pl:70 ../vhffs-panel/dns/create.pl:43
-#: ../vhffs-panel/cvs/create.pl:75 ../vhffs-panel/group/prefs.pl:89
-#: ../vhffs-panel/group/create.pl:68 ../vhffs-panel/svn/create.pl:73
-#: ../vhffs-panel/mailinglist/create.pl:74 ../vhffs-panel/web/create.pl:73
-#: ../vhffs-panel/mail/create.pl:66 ../vhffs-panel/pgsql/create.pl:76
-#: ../vhffs-panel/mysql/create.pl:76
+#: ../vhffs-panel/mailinglist/create.pl:74 ../vhffs-panel/svn/create.pl:73
+#: ../vhffs-panel/dns/create.pl:43 ../vhffs-panel/pgsql/create.pl:76
+#: ../vhffs-panel/group/prefs.pl:89 ../vhffs-panel/group/create.pl:68
+#: ../vhffs-panel/repository/create.pl:70 ../vhffs-panel/web/create.pl:73
+#: ../vhffs-panel/mysql/create.pl:76 ../vhffs-panel/cvs/create.pl:75
+#: ../vhffs-panel/mail/create.pl:66
msgid "You must enter a description"
msgstr "Vous devez saisir une description"
@@ -5070,46 +5094,46 @@
msgid "You're are not allowed to browse panel"
msgstr "Vous n'êtes pas autorisé à parcourir le panel"
-#: ../vhffs-panel/repository/prefs_save.pl:82
-#: ../vhffs-panel/repository/prefs.pl:83
-#: ../vhffs-panel/repository/delete.pl:82 ../vhffs-panel/dns/prefs.pl:93
-#: ../vhffs-panel/dns/prefs.pl:110 ../vhffs-panel/dns/delete.pl:89
-#: ../vhffs-panel/dns/delete.pl:93 ../vhffs-panel/cvs/prefs_save.pl:81
-#: ../vhffs-panel/cvs/prefs.pl:80 ../vhffs-panel/cvs/delete.pl:82
+#: ../vhffs-panel/mailinglist/delete.pl:90
+#: ../vhffs-panel/mailinglist/save_sig.pl:89
+#: ../vhffs-panel/mailinglist/add_sub.pl:91
+#: ../vhffs-panel/mailinglist/prefs.pl:98
+#: ../vhffs-panel/mailinglist/save_options.pl:93
+#: ../vhffs-panel/mailinglist/change_right.pl:93
+#: ../vhffs-panel/mailinglist/del_member.pl:91 ../vhffs-panel/svn/delete.pl:81
+#: ../vhffs-panel/svn/prefs.pl:100 ../vhffs-panel/svn/prefs_save.pl:84
+#: ../vhffs-panel/dns/delete.pl:89 ../vhffs-panel/dns/delete.pl:93
+#: ../vhffs-panel/dns/prefs.pl:93 ../vhffs-panel/dns/prefs.pl:110
+#: ../vhffs-panel/pgsql/delete.pl:77 ../vhffs-panel/pgsql/prefs.pl:78
+#: ../vhffs-panel/pgsql/prefs_save.pl:85 ../vhffs-panel/group/delete.pl:70
#: ../vhffs-panel/group/prefs.pl:74 ../vhffs-panel/group/prefs.pl:83
#: ../vhffs-panel/group/prefs.pl:102 ../vhffs-panel/group/prefs.pl:117
-#: ../vhffs-panel/group/prefs.pl:158 ../vhffs-panel/group/delete.pl:70
-#: ../vhffs-panel/svn/prefs_save.pl:84 ../vhffs-panel/svn/prefs.pl:100
-#: ../vhffs-panel/svn/delete.pl:81
-#: ../vhffs-panel/mailinglist/save_options.pl:93
-#: ../vhffs-panel/mailinglist/del_member.pl:91
-#: ../vhffs-panel/mailinglist/prefs.pl:98
-#: ../vhffs-panel/mailinglist/add_sub.pl:91
-#: ../vhffs-panel/mailinglist/change_right.pl:93
-#: ../vhffs-panel/mailinglist/delete.pl:90
-#: ../vhffs-panel/mailinglist/save_sig.pl:89
-#: ../vhffs-panel/web/prefs_save.pl:85 ../vhffs-panel/web/prefs.pl:86
-#: ../vhffs-panel/web/delete.pl:83 ../vhffs-panel/mail/change_forward.pl:95
-#: ../vhffs-panel/mail/save_catchall.pl:85 ../vhffs-panel/mail/spambox.pl:95
-#: ../vhffs-panel/mail/spamvirus.pl:95 ../vhffs-panel/mail/delete_box.pl:92
-#: ../vhffs-panel/mail/password_box.pl:95
-#: ../vhffs-panel/mail/add_forward.pl:88 ../vhffs-panel/mail/prefs.pl:91
-#: ../vhffs-panel/mail/delete.pl:86 ../vhffs-panel/mail/add_account.pl:95
-#: ../vhffs-panel/pgsql/prefs_save.pl:85 ../vhffs-panel/pgsql/prefs.pl:78
-#: ../vhffs-panel/pgsql/delete.pl:77
-#: ../vhffs-panel/admin/mail/change_forward.pl:96
+#: ../vhffs-panel/group/prefs.pl:158 ../vhffs-panel/repository/delete.pl:82
+#: ../vhffs-panel/repository/prefs.pl:83
+#: ../vhffs-panel/repository/prefs_save.pl:82
+#: ../vhffs-panel/admin/moderation_submit.pl:79
+#: ../vhffs-panel/admin/moderation.pl:76
+#: ../vhffs-panel/admin/broadcast_submit.pl:78
+#: ../vhffs-panel/admin/broadcast_delete.pl:78
#: ../vhffs-panel/admin/mail/delete_box.pl:95
#: ../vhffs-panel/admin/mail/password_box.pl:96
-#: ../vhffs-panel/admin/moderation_submit.pl:78
-#: ../vhffs-panel/admin/broadcast_delete.pl:78
-#: ../vhffs-panel/admin/broadcast_submit.pl:78
-#: ../vhffs-panel/admin/moderation.pl:76 ../vhffs-panel/mysql/prefs_save.pl:87
-#: ../vhffs-panel/mysql/prefs.pl:84 ../vhffs-panel/mysql/delete.pl:80
+#: ../vhffs-panel/admin/mail/change_forward.pl:96
+#: ../vhffs-panel/web/delete.pl:83 ../vhffs-panel/web/prefs.pl:86
+#: ../vhffs-panel/web/prefs_save.pl:85 ../vhffs-panel/mysql/delete.pl:80
+#: ../vhffs-panel/mysql/prefs.pl:84 ../vhffs-panel/mysql/prefs_save.pl:87
+#: ../vhffs-panel/cvs/delete.pl:82 ../vhffs-panel/cvs/prefs.pl:80
+#: ../vhffs-panel/cvs/prefs_save.pl:81 ../vhffs-panel/mail/delete.pl:86
+#: ../vhffs-panel/mail/delete_box.pl:92 ../vhffs-panel/mail/add_account.pl:95
+#: ../vhffs-panel/mail/prefs.pl:91 ../vhffs-panel/mail/save_catchall.pl:85
+#: ../vhffs-panel/mail/password_box.pl:95
+#: ../vhffs-panel/mail/add_forward.pl:88
+#: ../vhffs-panel/mail/change_forward.pl:95
+#: ../vhffs-panel/mail/spamvirus.pl:95 ../vhffs-panel/mail/spambox.pl:95
msgid "You're not allowed to do this (ACL rights)"
msgstr "Vous n'êtes pas autorisé à voir ceci (droits ACL insuffisants)"
+#: ../vhffs-panel/admin/mail/delete_forward.pl:96
#: ../vhffs-panel/mail/delete_forward.pl:89
-#: ../vhffs-panel/admin/mail/delete_forward.pl:96
msgid "You're not allowed to do this (ACL rights) "
msgstr "Vous n'êtes pas autorisé à faire ceci (droits ACL insuffisants)"
@@ -5118,7 +5142,7 @@
msgid "You're not allowed to manage this object's ACL"
msgstr "Vous n'êtes pas autorisé à modifier les ACL pour cet objet"
-#: ../vhffs-panel/acl/view.pl:76 ../vhffs-panel/history.pl:98
+#: ../vhffs-panel/history.pl:98 ../vhffs-panel/acl/view.pl:76
msgid "You're not allowed to view this object's ACL"
msgstr "Vous n'êtes pas autorisé à voir l'ACL de ce service"
@@ -5212,8 +5236,8 @@
"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 ""
-"Votre adresse email. Il sera utilisé pour vous contacter si nécessaire "
-"et comme adresse de destination si vous utilisez le service de redirection"
+"Votre adresse email. Il sera utilisé pour vous contacter si nécessaire et "
+"comme adresse de destination si vous utilisez le service de redirection"
#: ../vhffs-robots/src/refused_web.pl:78
msgid "Your hosting request"
@@ -5243,7 +5267,7 @@
msgstr ""
"Le nom du dépôt ne doit contenir que des caractères alphanumériques"
-#: ../vhffs-irc/modobot.pl:393 ../vhffs-panel/admin/moderation_submit.pl:101
+#: ../vhffs-irc/modobot.pl:393
msgid "Your request for a "
msgstr "Votre demande de "
@@ -5252,9 +5276,10 @@
msgid "Your request on %s"
msgstr "Votre demande sur l'hébergement %s "
-#: ../vhffs-panel/admin/moderation_submit.pl:111
-msgid "Your request on VHFFS platform"
-msgstr "Votre demande sur la plate-forme VHFFS"
+#: ../vhffs-panel/admin/moderation_submit.pl:102
+#, perl-format
+msgid "Your request on %s platform"
+msgstr ""
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:434
#, perl-format
@@ -5283,8 +5308,8 @@
"Your username. It must contains only alphanumeric characters in lowercase, "
"its length must be between 3 and 12 chars"
msgstr ""
-"Votre nom d'utilisateur. Il doit contenir seulement des chiffres ou des"
-"lettres en minuscules et doit faire entre 3 et 12 caractères"
+"Votre nom d'utilisateur. Il doit contenir seulement des chiffres ou "
+"deslettres en minuscules et doit faire entre 3 et 12 caractères"
#: ../vhffs-robots/src/refused_web.pl:67
#, perl-format
@@ -5295,8 +5320,8 @@
msgid "Your zipcode is not correct! Please enter a correct zipcode"
msgstr "Le code postal est incorrect. Veuillez entrer un code postal correct"
+#: ../vhffs-panel/subscribe.pl:220 ../vhffs-panel/user/prefs.pl:265
#: ../vhffs-panel/admin/user/edit.pl:106 ../vhffs-panel/admin/user/show.pl:106
-#: ../vhffs-panel/user/prefs.pl:265 ../vhffs-panel/subscribe.pl:220
msgid "Zipcode"
msgstr "Code postal"
@@ -5317,15 +5342,14 @@
msgid "cannot be removed.\n"
msgstr "ne peut pas être supprimé.\n"
-#: ../vhffs-robots/src/refused_cvs.pl:69
+#: ../vhffs-robots/src/refused_ml.pl:69 ../vhffs-robots/src/refused_mail.pl:71
#: ../vhffs-robots/src/refused_postgres.pl:72
-#: ../vhffs-robots/src/refused_web.pl:68
+#: ../vhffs-robots/src/refused_cvs.pl:69 ../vhffs-robots/src/refused_web.pl:68
+#: ../vhffs-robots/src/refused_mysql.pl:42
+#: ../vhffs-robots/src/refused_svn.pl:39
+#: ../vhffs-robots/src/refused_groups.pl:68
#: ../vhffs-robots/src/refused_repository.pl:72
-#: ../vhffs-robots/src/refused_mail.pl:71
#: ../vhffs-robots/src/refused_dns.pl:71
-#: ../vhffs-robots/src/refused_mysql.pl:42
-#: ../vhffs-robots/src/refused_svn.pl:39 ../vhffs-robots/src/refused_ml.pl:69
-#: ../vhffs-robots/src/refused_groups.pl:68
msgid "has been refused by the Moderators team"
msgstr "a été refusé par l'équipe de modérateurs"
@@ -5415,11 +5439,11 @@
msgid "listengine: unknown command"
msgstr "listengine : commande inconnue"
-#: ../vhffs-panel/user/prefs.pl:262 ../vhffs-panel/subscribe.pl:217
+#: ../vhffs-panel/subscribe.pl:217 ../vhffs-panel/user/prefs.pl:262
msgid "mail"
msgstr "adresse mail"
-#: ../vhffs-panel/svn/prefs_save.pl:115 ../vhffs-panel/svn/prefs.pl:144
+#: ../vhffs-panel/svn/prefs.pl:144 ../vhffs-panel/svn/prefs_save.pl:115
msgid "ml adress here..."
msgstr "adresse de la liste de diffusion ici..."
@@ -5446,7 +5470,7 @@
msgid "no date"
msgstr "pas de date"
-#: ../vhffs-panel/admin/object/edit.pl:218 ../vhffs-panel/history.pl:129
+#: ../vhffs-panel/history.pl:129 ../vhffs-panel/admin/object/edit.pl:218
msgid "no information about date"
msgstr "aucune information à propos de la date"
@@ -5471,13 +5495,15 @@
"subscription refuse XXXXX\t\t - refuse the subscription with key XXXXX\n"
msgstr ""
"subscription refuse XXXXX\t\t - refuser l'inscription avec la clé XXXXX\n"
+
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:52
msgid "unsubscribe\t - unsubscribe from this list\n"
msgstr "unsubscribe\t - désinscrire de la liste\n"
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:66
msgid "user info user@xxxxxxxxxx\t\t - show user information\n"
-msgstr "user info user@xxxxxxxxxx\t\t - afficher les informations de l'utilisateur\n"
+msgstr ""
+"user info user@xxxxxxxxxx\t\t - afficher les informations de l'utilisateur\n"
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:64
msgid "user right RIGHT user@xxxxxxxxxx\t - change right for this user\n"
@@ -5517,6 +5543,10 @@
msgstr ""
"avec le sujet :\n"
" \"moderate %s\" \n"
+
+#~ msgid "Your request on VHFFS platform"
+#~ msgstr "Votre demande sur la plate-forme VHFFS"
+
#~ msgid "A mail to moderate is on the list %s.\n"
#~ msgstr "Un mail à modérer est arrivé sur la liste %s.\n"
Modified: trunk/vhffs-intl/src/vhffs.pot
===================================================================
--- trunk/vhffs-intl/src/vhffs.pot 2007-07-13 15:03:49 UTC (rev 724)
+++ trunk/vhffs-intl/src/vhffs.pot 2007-07-13 16:45:19 UTC (rev 725)
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-30 10:56+0200\n"
+"POT-Creation-Date: 2007-07-13 15:30+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@xxxxxx>\n"
@@ -16,33 +16,34 @@
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:63
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:65
msgid "\t\t\t\t RIGHT can be subscriber or admin\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:143
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:159
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:162
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:145
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:161
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:164
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:435
msgid "\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:417
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:418
#, perl-format
msgid ""
" %s-request@%s\n"
"with the following subject :\n"
-" \"accept %s\" \n"
+" \"subscription accept %s %s\" \n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:420
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:421
#, perl-format
msgid ""
" %s-request@%s\n"
"with the following subject :\n"
-" \"refuse %s\" \n"
+" \"subscription refuse %s %s\" \n"
msgstr ""
-#: ../vhffs-panel/admin/moderation_submit.pl:105 ../vhffs-irc/modobot.pl:397
+#: ../vhffs-irc/modobot.pl:397
msgid ""
" was accepted\n"
"Please wait while we are creating your object\n"
@@ -53,18 +54,19 @@
msgid "%s public area"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:365
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:593
#, perl-format
msgid "%s's Panel"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:145
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:164
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:147
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:166
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:437
#, perl-format
msgid "%s-request@%s with subject \"help\"\n"
msgstr ""
-#: ../vhffs-panel/web/create.pl:69
+#: ../vhffs-panel/web/create.pl:84
msgid "<new site>."
msgstr ""
@@ -73,7 +75,7 @@
msgid "@ represents the origin (%s)"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:310
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:297
msgid ""
"A CNAME, A or AAAA record with the same name already exists for this domain"
msgstr ""
@@ -86,18 +88,20 @@
msgid "A Record updated"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:394
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:396
#, perl-format
-msgid "A mail to moderate is on the list %s.\n"
+msgid ""
+"A mail to moderate is on the following mailing list:\n"
+" %s\n"
+"\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:412
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:413
#, perl-format
msgid ""
"A new person wants to subscribe to the following mailing list:\n"
+" %s\n"
"\n"
-"%s\n"
-"\n"
msgstr ""
#: ../vhffs-panel/dns/prefs.pl:151
@@ -150,7 +154,7 @@
msgid "Access denied"
msgstr ""
-#: ../vhffs-panel/logout.pl:60 ../vhffs-api/src/Vhffs/Panel/Commons.pm:57
+#: ../vhffs-panel/logout.pl:60 ../vhffs-api/src/Vhffs/Panel/Commons.pm:65
msgid "Access to panel"
msgstr ""
@@ -162,22 +166,26 @@
msgid "Accounts"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:346
+#: ../vhffs-panel/user/prefs.pl:375
#, perl-format
msgid "Activate %s@%s email"
msgstr ""
#: ../vhffs-panel/admin/user/edit.pl:143
#: ../vhffs-panel/admin/pgsql/edit.pl:119
-#: ../vhffs-panel/admin/group/edit.pl:119
+#: ../vhffs-panel/admin/group/edit.pl:124
#: ../vhffs-panel/admin/repository/edit.pl:119
#: ../vhffs-panel/admin/object/edit.pl:119
-#: ../vhffs-panel/admin/web/edit.pl:132 ../vhffs-panel/admin/mysql/edit.pl:120
+#: ../vhffs-panel/admin/web/edit.pl:115 ../vhffs-panel/admin/mysql/edit.pl:120
#: ../vhffs-panel/admin/cvs/edit.pl:128 ../vhffs-panel/admin/mail/edit.pl:160
#: ../vhffs-intl/extra_strings.pl:22
msgid "Activated"
msgstr ""
+#: ../vhffs-panel/group/prefs.pl:148 ../vhffs-panel/group/prefs.pl:194
+msgid "Add"
+msgstr ""
+
#: ../vhffs-panel/mailinglist/prefs.pl:156 ../vhffs-panel/dns/prefs.pl:280
msgid "Add !"
msgstr ""
@@ -214,7 +222,7 @@
msgid "Add a popbox to this domain"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:105
+#: ../vhffs-panel/group/prefs.pl:193
msgid "Add a user in this group"
msgstr ""
@@ -230,15 +238,7 @@
msgid "Add an account"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:106
-msgid "Add this user !"
-msgstr ""
-
-#: ../vhffs-panel/group/join_group.pl:110
-msgid "Add this user to this group"
-msgstr ""
-
-#: ../vhffs-panel/subscribe.pl:205 ../vhffs-panel/user/prefs.pl:259
+#: ../vhffs-panel/subscribe.pl:223 ../vhffs-panel/user/prefs.pl:267
#: ../vhffs-panel/admin/user/edit.pl:104 ../vhffs-panel/admin/user/show.pl:104
msgid "Address"
msgstr ""
@@ -247,7 +247,7 @@
msgid "Address (Servername)"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:108
+#: ../vhffs-panel/user/prefs.pl:109
msgid "Address is not correct !"
msgstr ""
@@ -266,7 +266,7 @@
msgstr ""
#: ../vhffs-panel/svn/prefs.pl:130 ../vhffs-panel/dns/prefs.pl:260
-#: ../vhffs-panel/web/prefs.pl:122 ../vhffs-panel/mail/prefs.pl:138
+#: ../vhffs-panel/web/prefs.pl:103 ../vhffs-panel/mail/prefs.pl:138
msgid "Admin Rights on this object (ACL)"
msgstr ""
@@ -274,12 +274,12 @@
msgid "Admin Subversion Repository"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:420
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:401
msgid "Admin account"
msgstr ""
-#: ../vhffs-panel/admin/index.pl:53 ../vhffs-api/src/Vhffs/Panel/Main.pm:421
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:424
+#: ../vhffs-panel/admin/index.pl:53 ../vhffs-api/src/Vhffs/Panel/Main.pm:402
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:405
msgid "Administration"
msgstr ""
@@ -291,22 +291,14 @@
msgid "Admins only"
msgstr ""
-#: ../vhffs-panel/web/create.pl:74
+#: ../vhffs-panel/web/create.pl:91
msgid "Adress (ServerName directive)"
msgstr ""
-#: ../vhffs-panel/admin/web/edit.pl:97 ../vhffs-panel/admin/web/show.pl:96
-msgid "Alert Limit"
-msgstr ""
-
#: ../vhffs-panel/alert_submit.pl:73
msgid "Alert on Vhffs platform"
msgstr ""
-#: ../vhffs-panel/admin/web/edit.pl:98 ../vhffs-panel/admin/web/show.pl:97
-msgid "Alert state"
-msgstr ""
-
#: ../vhffs-panel/public/allwebsites.pl:73
#: ../vhffs-panel/public/allgroups.pl:69
msgid "All"
@@ -370,7 +362,7 @@
msgid "All objects List"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:126
+#: ../vhffs-panel/group/prefs.pl:211
msgid "All users in this group"
msgstr ""
@@ -385,47 +377,48 @@
msgid "Already exists for this domain or bad parameters. Check your domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:262
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:249
msgid "An MX record with the same name already exists for this domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:285
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:272
msgid "An NS record with the same name already exists for this domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:189
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:486
#, perl-format
msgid ""
-"An error occured during your subscription to the following list:\n"
+"An error occured during your approval of subscription of:\n"
+" %s\n"
+"into the following mailing list:\n"
+" %s\n"
"\n"
-"%s\n"
-"\n"
msgstr ""
-#: ../vhffs-panel/mailinglist/submit.pl:114
-msgid "An error occured while adding an ACL for the group"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:191
+#, perl-format
+msgid ""
+"An error occured during your subscription to the following list:\n"
+" %s\n"
+"\n"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:169
+#: ../vhffs-panel/user/prefs.pl:177
msgid "An error occured while adding the box"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:171
+#: ../vhffs-panel/user/prefs.pl:179
msgid "An error occured while adding the box (anti-spam adding)"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:173
+#: ../vhffs-panel/user/prefs.pl:181
msgid "An error occured while adding the box (anti-virus adding)"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:213
+#: ../vhffs-panel/user/prefs.pl:221
msgid "An error occured while adding the forwarding"
msgstr ""
-#: ../vhffs-panel/mailinglist/submit.pl:112
-msgid "An error occured while adding yourself to the ACL"
-msgstr ""
-
#: ../vhffs-panel/user/delete.pl:83
msgid "An error occured while applying changes. This user will NOT be deleted"
msgstr ""
@@ -435,11 +428,7 @@
"An error occured while applying changes. This web area will NOT be deleted"
msgstr ""
-#: ../vhffs-panel/mailinglist/submit.pl:110
-msgid "An error occured while creating the list"
-msgstr ""
-
-#: ../vhffs-panel/mail/submit.pl:86
+#: ../vhffs-panel/mail/create.pl:68
msgid "An error occured while creating the mail area"
msgstr ""
@@ -447,26 +436,26 @@
msgid "An error occured while creating the message in the database"
msgstr ""
-#: ../vhffs-panel/svn/svn_submit.pl:80 ../vhffs-panel/mysql/submit.pl:103
-msgid "An error occured while creating the object"
+#: ../vhffs-panel/repository/create.pl:75
+msgid ""
+"An error occured while creating the object. Check that this group doesn't "
+"already have a download repository"
msgstr ""
-#: ../vhffs-panel/pgsql/pgsql_submit.pl:99
-#, perl-format
-msgid "An error occured while creating the object %s %s"
-msgstr ""
-
#: ../vhffs-panel/dns/create.pl:50
msgid ""
"An error occured while creating the object. The domain is not correct or "
"aleady exists in Vhffs database"
msgstr ""
-#: ../vhffs-panel/repository/repository_submit.pl:93
-#: ../vhffs-panel/cvs/create.pl:81
+#: ../vhffs-panel/mailinglist/create.pl:81 ../vhffs-panel/cvs/create.pl:83
msgid "An error occured while creating the object.It probably already exists"
msgstr ""
+#: ../vhffs-panel/svn/create.pl:78
+msgid "An error occured while creating the svn repository"
+msgstr ""
+
#: ../vhffs-panel/cvs/delete.pl:99
msgid "An error occured while deleting the CVS repository"
msgstr ""
@@ -491,11 +480,7 @@
msgid "An error occured while modifying the rights"
msgstr ""
-#: ../vhffs-panel/svn/svn_submit.pl:78
-msgid "An error occured while setting up the ACL"
-msgstr ""
-
-#: ../vhffs-panel/user/prefs.pl:220
+#: ../vhffs-panel/user/prefs.pl:228
msgid "An error occured while the forwarding"
msgstr ""
@@ -507,7 +492,7 @@
msgid "An error occured while updating"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:280
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:282
#, perl-format
msgid ""
"An error occured while updating language for the following address: %s.\n"
@@ -533,38 +518,18 @@
msgid "An error occured while updating the object"
msgstr ""
-#: ../vhffs-panel/group/delete.pl:89 ../vhffs-panel/group/prefs_save.pl:91
+#: ../vhffs-panel/group/delete.pl:89 ../vhffs-panel/group/prefs.pl:93
msgid "An error occured while updating the project"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:140
+#: ../vhffs-panel/user/prefs.pl:148
msgid "An error occured while updating the user account"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:445
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:510
msgid "April"
msgstr ""
-#: ../vhffs-listengine/src/archives/archives.pl:147
-#: ../vhffs-listengine/src/archives/show_msg.pl:93
-msgid "Archive are not open for this list"
-msgstr ""
-
-#: ../vhffs-listengine/src/archives/archives.pl:160
-#: ../vhffs-listengine/src/archives/archives.pl:197
-#: ../vhffs-listengine/src/archives/archives.pl:219
-#: ../vhffs-listengine/src/archives/archives.pl:243
-msgid "Archives"
-msgstr ""
-
-#: ../vhffs-listengine/src/archives/archives.pl:231
-msgid "Archives for "
-msgstr ""
-
-#: ../vhffs-listengine/src/archives/archives.pl:255
-msgid "Archives for year"
-msgstr ""
-
#: ../vhffs-panel/svn/prefs.pl:124
msgid "Are you SURE you want DELETE this subversion repository ?"
msgstr ""
@@ -581,7 +546,7 @@
msgid "Are you SURE you want DELETE this PostgreSQL database ?"
msgstr ""
-#: ../vhffs-panel/web/prefs.pl:129
+#: ../vhffs-panel/web/prefs.pl:110
msgid "Are you SURE you want DELETE this Web Area ?"
msgstr ""
@@ -593,7 +558,7 @@
msgid "Are you SURE you want DELETE this domain ?"
msgstr ""
-#: ../vhffs-panel/repository/prefs.pl:104
+#: ../vhffs-panel/repository/prefs.pl:105
msgid "Are you SURE you want DELETE this download repository ?"
msgstr ""
@@ -601,15 +566,15 @@
msgid "Are you SURE you want DELETE this mailing list ?"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:99
+#: ../vhffs-panel/group/prefs.pl:187
msgid "Are you SURE you want DELETE this project ?"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:278
+#: ../vhffs-panel/user/prefs.pl:287
msgid "Are you SURE you want DELETE this user?"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:461
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:526
msgid "August"
msgstr ""
@@ -626,41 +591,14 @@
msgid "Awaiting sending"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:169 ../vhffs-panel/subscribe.pl:207
+#: ../vhffs-panel/subscribe.pl:187 ../vhffs-panel/subscribe.pl:225
msgid "Back to Login"
msgstr ""
-#: ../vhffs-listengine/src/archives/archives.pl:191
-#, perl-format
-msgid "Back to archives by month ( %s )"
-msgstr ""
-
-#: ../vhffs-listengine/src/archives/archives.pl:220
-#, perl-format
-msgid "Back to archives by year ( %s )"
-msgstr ""
-
-#: ../vhffs-listengine/src/archives/archives.pl:161
-msgid "Back to list by day"
-msgstr ""
-
#: ../vhffs-panel/lost.pl:56
msgid "Back to login page"
msgstr ""
-#: ../vhffs-listengine/src/archives/show_msg.pl:71
-msgid "Bad listname"
-msgstr ""
-
-#: ../vhffs-listengine/src/archives/archives.pl:131
-#, perl-format
-msgid "Bad listname %s"
-msgstr ""
-
-#: ../vhffs-listengine/src/archives/show_msg.pl:87
-msgid "Bad message-id"
-msgstr ""
-
#: ../vhffs-panel/mysql/prefs.pl:98
msgid ""
"Be careful ! If you click on modify, VHFFS will stop the database and set a "
@@ -673,10 +611,10 @@
"our servers."
msgstr ""
-#: ../vhffs-panel/web/create.pl:75
+#: ../vhffs-panel/web/create.pl:92
msgid ""
"Be careful, if you want create www.domain.tld, you should create a webspace "
-"with servername as domain.tld. VHFFS redirect all request from www.domain."
+"with domain.tld as servername. VHFFS redirect all request from www.domain."
"tld to domain.tld"
msgstr ""
@@ -736,24 +674,20 @@
msgid "CGI ERROR!"
msgstr ""
-#: ../vhffs-panel/mailinglist/submit.pl:96 ../vhffs-panel/svn/prefs.pl:82
-#: ../vhffs-panel/svn/create.pl:64 ../vhffs-panel/acl/view.pl:84
+#: ../vhffs-panel/svn/prefs.pl:82 ../vhffs-panel/acl/view.pl:84
#: ../vhffs-panel/acl/view.pl:99 ../vhffs-panel/acl/view.pl:114
-#: ../vhffs-panel/group/remove_user_from_group.pl:71
-#: ../vhffs-panel/group/join_group.pl:70 ../vhffs-panel/mail/submit.pl:74
msgid "CGI Error"
msgstr ""
-#: ../vhffs-panel/svn/delete.pl:73 ../vhffs-panel/svn/svn_submit.pl:71
-#: ../vhffs-panel/history.pl:84 ../vhffs-panel/pgsql/delete.pl:81
-#: ../vhffs-panel/group/prefs_save.pl:74 ../vhffs-panel/repository/prefs.pl:72
+#: ../vhffs-panel/svn/delete.pl:73 ../vhffs-panel/history.pl:84
+#: ../vhffs-panel/pgsql/delete.pl:81 ../vhffs-panel/repository/prefs.pl:72
#: ../vhffs-panel/admin/mailing/mailing_submit.pl:78
#: ../vhffs-panel/admin/broadcast_submit.pl:83
#: ../vhffs-panel/admin/broadcast_delete.pl:83
#: ../vhffs-panel/admin/group/edit_submit.pl:95
#: ../vhffs-panel/admin/broadcast_view.pl:78 ../vhffs-panel/mysql/delete.pl:76
-#: ../vhffs-panel/mysql/prefs.pl:71 ../vhffs-panel/mysql/submit.pl:75
-#: ../vhffs-panel/mysql/prefs_save.pl:79 ../vhffs-panel/cvs/prefs.pl:72
+#: ../vhffs-panel/mysql/prefs.pl:71 ../vhffs-panel/mysql/prefs_save.pl:79
+#: ../vhffs-panel/cvs/prefs.pl:72
msgid "CGI Error !"
msgstr ""
@@ -770,17 +704,20 @@
#: ../vhffs-panel/mailinglist/save_options.pl:81
#: ../vhffs-panel/mailinglist/change_right.pl:81
#: ../vhffs-panel/mailinglist/change_right.pl:101
-#: ../vhffs-panel/mailinglist/del_member.pl:79 ../vhffs-panel/user/prefs.pl:85
+#: ../vhffs-panel/mailinglist/del_member.pl:79 ../vhffs-panel/user/prefs.pl:86
#: ../vhffs-panel/dns/delete.pl:79 ../vhffs-panel/dns/prefs.pl:79
-#: ../vhffs-panel/pgsql/pgsql_submit.pl:73 ../vhffs-panel/web/web_submit.pl:72
msgid "CGI Error!"
msgstr ""
-#: ../vhffs-panel/group/project_submit.pl:70
-msgid "CGI Errror!"
+#: ../vhffs-panel/mailinglist/create.pl:72 ../vhffs-panel/svn/create.pl:69
+#: ../vhffs-panel/pgsql/create.pl:74 ../vhffs-panel/group/prefs.pl:87
+#: ../vhffs-panel/group/prefs.pl:106 ../vhffs-panel/group/prefs.pl:121
+#: ../vhffs-panel/group/prefs.pl:162 ../vhffs-panel/repository/create.pl:68
+#: ../vhffs-panel/web/create.pl:69 ../vhffs-panel/mysql/create.pl:74
+msgid "CGI error"
msgstr ""
-#: ../vhffs-panel/admin/moderation_submit.pl:90
+#: ../vhffs-panel/admin/moderation_submit.pl:91
msgid "CGI problem"
msgstr ""
@@ -867,7 +804,7 @@
msgid "Can't delete box %s"
msgstr ""
-#: ../vhffs-panel/admin/web/edit_submit.pl:100
+#: ../vhffs-panel/admin/web/edit_submit.pl:97
msgid "Can't modify object ..."
msgstr ""
@@ -877,11 +814,7 @@
msgid "Can't modify object..."
msgstr ""
-#: ../vhffs-panel/group/join_group.pl:82
-msgid "Cannot add this user in this group"
-msgstr ""
-
-#: ../vhffs-panel/subscribe.pl:162
+#: ../vhffs-panel/subscribe.pl:180
msgid "Cannot apply changes to the user"
msgstr ""
@@ -893,7 +826,7 @@
msgid "Cannot commit changes on this object, will NOT be deleted"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:152
+#: ../vhffs-panel/subscribe.pl:170
msgid "Cannot create user, the username you entered already exists"
msgstr ""
@@ -961,10 +894,6 @@
msgid "Cannot get statistics"
msgstr ""
-#: ../vhffs-panel/group/remove_user_from_group.pl:83
-msgid "Cannot remove the owner from a group"
-msgstr ""
-
#: ../vhffs-panel/cvs/delete.pl:78 ../vhffs-panel/cvs/prefs_save.pl:77
msgid "Cannot retrieve informations about this CVS repository"
msgstr ""
@@ -1007,10 +936,6 @@
msgid "Catchall mail"
msgstr ""
-#: ../vhffs-listengine/src/archives/show_msg.pl:108
-msgid "Cc: "
-msgstr ""
-
#: ../vhffs-panel/mail/prefs.pl:211
msgid "Change Forward"
msgstr ""
@@ -1027,22 +952,14 @@
msgid "Change forward"
msgstr ""
-#: ../vhffs-listengine/src/archives/archives.pl:119
-msgid "Change language"
-msgstr ""
-
#: ../vhffs-panel/mailinglist/prefs.pl:168
msgid "Change rights\n"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:188
+#: ../vhffs-panel/user/prefs.pl:196
msgid "Change spam protection status for your account\n"
msgstr ""
-#: ../vhffs-listengine/src/archives/archives.pl:118
-msgid "Change theme"
-msgstr ""
-
#: ../vhffs-panel/admin/web/list.pl:91
msgid "Change this Website"
msgstr ""
@@ -1051,7 +968,7 @@
msgid "Change user-id"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:199
+#: ../vhffs-panel/user/prefs.pl:207
msgid "Changed anti-virus status for your account\n"
msgstr ""
@@ -1066,18 +983,18 @@
msgid "Cheers,"
msgstr ""
-#: ../vhffs-panel/admin/moderation_submit.pl:106 ../vhffs-irc/modobot.pl:398
+#: ../vhffs-irc/modobot.pl:398
msgid ""
"Cheers,\n"
"The Moderator and Admin team\n"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:203 ../vhffs-panel/user/prefs.pl:258
+#: ../vhffs-panel/subscribe.pl:221 ../vhffs-panel/user/prefs.pl:266
#: ../vhffs-panel/admin/user/edit.pl:105 ../vhffs-panel/admin/user/show.pl:105
msgid "City"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:96
+#: ../vhffs-panel/user/prefs.pl:97
msgid "City is not correct !"
msgstr ""
@@ -1085,40 +1002,36 @@
msgid "Closed"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:213
+#: ../vhffs-panel/subscribe.pl:232
msgid "Code confirmation"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:85
+#: ../vhffs-panel/subscribe.pl:103
msgid "Codes do not match"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:262
+#: ../vhffs-panel/user/prefs.pl:270
msgid "Confirm Password"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:236
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:238
msgid "Confirmation code was wrong.\n"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:215
+#: ../vhffs-panel/subscribe.pl:234
msgid "Confirmation code, contact administrator team if you can't read it"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:204 ../vhffs-panel/user/prefs.pl:260
+#: ../vhffs-panel/subscribe.pl:222 ../vhffs-panel/user/prefs.pl:268
#: ../vhffs-panel/admin/user/edit.pl:107 ../vhffs-panel/admin/user/show.pl:107
msgid "Country"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:105
+#: ../vhffs-panel/user/prefs.pl:106
msgid "Country is not correct !"
msgstr ""
-#: ../vhffs-panel/admin/web/edit.pl:96 ../vhffs-panel/admin/web/show.pl:95
-msgid "Crawl"
-msgstr ""
-
-#: ../vhffs-panel/cvs/create.pl:89
+#: ../vhffs-panel/cvs/create.pl:95
msgid "Create a CVS Repository"
msgstr ""
@@ -1126,35 +1039,35 @@
msgid "Create a DNS"
msgstr ""
-#: ../vhffs-panel/repository/create.pl:64
+#: ../vhffs-panel/repository/create.pl:84
msgid "Create a Download Repository"
msgstr ""
-#: ../vhffs-panel/mysql/create.pl:64
+#: ../vhffs-panel/mysql/create.pl:95
msgid "Create a MySQL database"
msgstr ""
-#: ../vhffs-panel/pgsql/create.pl:64
-msgid "Create a Postgres database"
+#: ../vhffs-panel/pgsql/create.pl:95
+msgid "Create a PostgreSQL database"
msgstr ""
-#: ../vhffs-panel/group/create.pl:61
+#: ../vhffs-panel/group/create.pl:80
msgid "Create a Project"
msgstr ""
-#: ../vhffs-panel/svn/create.pl:70
+#: ../vhffs-panel/svn/create.pl:88
msgid "Create a Subversion Repository"
msgstr ""
-#: ../vhffs-panel/mail/create.pl:64
+#: ../vhffs-panel/mail/create.pl:80
msgid "Create a mail space"
msgstr ""
-#: ../vhffs-panel/mailinglist/create.pl:87
+#: ../vhffs-panel/mailinglist/create.pl:96
msgid "Create a new mailing list"
msgstr ""
-#: ../vhffs-panel/web/create.pl:73
+#: ../vhffs-panel/web/create.pl:90
msgid "Create a web space"
msgstr ""
@@ -1164,10 +1077,10 @@
#: ../vhffs-panel/admin/user/edit.pl:144
#: ../vhffs-panel/admin/pgsql/edit.pl:120
-#: ../vhffs-panel/admin/group/edit.pl:120
+#: ../vhffs-panel/admin/group/edit.pl:125
#: ../vhffs-panel/admin/repository/edit.pl:120
#: ../vhffs-panel/admin/object/edit.pl:120
-#: ../vhffs-panel/admin/web/edit.pl:133 ../vhffs-panel/admin/mysql/edit.pl:121
+#: ../vhffs-panel/admin/web/edit.pl:116 ../vhffs-panel/admin/mysql/edit.pl:121
#: ../vhffs-panel/admin/cvs/edit.pl:129 ../vhffs-panel/admin/mail/edit.pl:161
#: ../vhffs-intl/extra_strings.pl:21
msgid "Created"
@@ -1175,10 +1088,10 @@
#: ../vhffs-panel/admin/user/edit.pl:142
#: ../vhffs-panel/admin/pgsql/edit.pl:118
-#: ../vhffs-panel/admin/group/edit.pl:118
+#: ../vhffs-panel/admin/group/edit.pl:123
#: ../vhffs-panel/admin/repository/edit.pl:118
#: ../vhffs-panel/admin/object/edit.pl:118
-#: ../vhffs-panel/admin/web/edit.pl:131 ../vhffs-panel/admin/mysql/edit.pl:119
+#: ../vhffs-panel/admin/web/edit.pl:114 ../vhffs-panel/admin/mysql/edit.pl:119
#: ../vhffs-panel/admin/cvs/edit.pl:127 ../vhffs-panel/admin/mail/edit.pl:159
msgid "Creating error"
msgstr ""
@@ -1187,11 +1100,11 @@
msgid "Creation error"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:288 ../vhffs-panel/group/prefs.pl:111
+#: ../vhffs-panel/user/prefs.pl:297 ../vhffs-panel/group/prefs.pl:201
msgid "Current avatar"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:447
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:428
msgid "Current group:"
msgstr ""
@@ -1232,35 +1145,23 @@
msgid "Database Name"
msgstr ""
-#: ../vhffs-panel/ajax/help.pl:46 ../vhffs-api/src/Vhffs/Panel/DNS.pm:173
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:209
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:221
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:239
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:251
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:263
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:275
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:286
+#: ../vhffs-panel/ajax/help.pl:46 ../vhffs-api/src/Vhffs/Panel/DNS.pm:160
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:196
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:208
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:226
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:238
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:250
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:262
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:273
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:285
#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:298
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:311
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:327
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:342
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:354
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:366
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:314
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:329
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:341
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:353
msgid "Database error"
msgstr ""
-#: ../vhffs-panel/mysql/submit.pl:83
-msgid "Database name must contain at least 3 caracters"
-msgstr ""
-
-#: ../vhffs-panel/pgsql/pgsql_submit.pl:85
-msgid "Database name must contain between 3 and 16 characters"
-msgstr ""
-
-#: ../vhffs-panel/pgsql/pgsql_submit.pl:77
-msgid "Database password must contains at least 3 characters"
-msgstr ""
-
#: ../vhffs-panel/pgsql/delete.pl:85
msgid "Database will NOT be deleted !"
msgstr ""
@@ -1277,23 +1178,23 @@
msgid "Date of creation"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:477
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:542
msgid "December"
msgstr ""
#: ../vhffs-panel/mailinglist/prefs.pl:206 ../vhffs-panel/svn/prefs.pl:127
-#: ../vhffs-panel/user/prefs.pl:281 ../vhffs-panel/dns/prefs.pl:271
+#: ../vhffs-panel/user/prefs.pl:290 ../vhffs-panel/dns/prefs.pl:271
#: ../vhffs-panel/dns/prefs.pl:328 ../vhffs-panel/dns/prefs.pl:340
#: ../vhffs-panel/dns/prefs.pl:353 ../vhffs-panel/dns/prefs.pl:365
#: ../vhffs-panel/dns/prefs.pl:381 ../vhffs-panel/dns/prefs.pl:392
#: ../vhffs-panel/dns/prefs.pl:408 ../vhffs-panel/pgsql/prefs.pl:113
-#: ../vhffs-panel/group/prefs.pl:102 ../vhffs-panel/repository/prefs.pl:107
-#: ../vhffs-panel/web/prefs.pl:132 ../vhffs-panel/mysql/prefs.pl:120
+#: ../vhffs-panel/group/prefs.pl:190 ../vhffs-panel/repository/prefs.pl:108
+#: ../vhffs-panel/web/prefs.pl:113 ../vhffs-panel/mysql/prefs.pl:120
#: ../vhffs-panel/cvs/prefs.pl:102 ../vhffs-panel/mail/prefs.pl:135
msgid "Delete"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:276
+#: ../vhffs-panel/user/prefs.pl:285
msgid "Delete YOUR user"
msgstr ""
@@ -1337,7 +1238,7 @@
msgid "Delete this mailing"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:97 ../vhffs-panel/repository/prefs.pl:102
+#: ../vhffs-panel/group/prefs.pl:185 ../vhffs-panel/repository/prefs.pl:103
#: ../vhffs-panel/cvs/prefs.pl:97
msgid "Delete this project"
msgstr ""
@@ -1346,26 +1247,27 @@
msgid "Delete this repository"
msgstr ""
-#: ../vhffs-panel/web/prefs.pl:127
+#: ../vhffs-panel/web/prefs.pl:108
msgid "Delete this web area"
msgstr ""
-#: ../vhffs-panel/svn/create.pl:77 ../vhffs-panel/dns/create.pl:69
-#: ../vhffs-panel/pgsql/create.pl:74 ../vhffs-panel/group/create.pl:66
-#: ../vhffs-panel/repository/create.pl:72
+#: ../vhffs-panel/svn/create.pl:95 ../vhffs-panel/dns/create.pl:69
+#: ../vhffs-panel/pgsql/create.pl:104 ../vhffs-panel/group/create.pl:85
+#: ../vhffs-panel/repository/create.pl:92
#: ../vhffs-panel/admin/pgsql/edit.pl:101
-#: ../vhffs-panel/admin/pgsql/show.pl:99 ../vhffs-panel/admin/group/edit.pl:99
+#: ../vhffs-panel/admin/pgsql/show.pl:99
+#: ../vhffs-panel/admin/group/edit.pl:100
#: ../vhffs-panel/admin/group/show.pl:99
#: ../vhffs-panel/admin/repository/edit.pl:99
#: ../vhffs-panel/admin/repository/show.pl:98
-#: ../vhffs-panel/admin/object/edit.pl:97 ../vhffs-panel/admin/web/edit.pl:104
-#: ../vhffs-panel/admin/web/show.pl:101 ../vhffs-panel/admin/mysql/edit.pl:102
+#: ../vhffs-panel/admin/object/edit.pl:97 ../vhffs-panel/admin/web/edit.pl:99
+#: ../vhffs-panel/admin/web/show.pl:98 ../vhffs-panel/admin/mysql/edit.pl:102
#: ../vhffs-panel/admin/mysql/show.pl:98 ../vhffs-panel/admin/cvs/edit.pl:100
#: ../vhffs-panel/admin/cvs/show.pl:99 ../vhffs-panel/admin/mail/edit.pl:102
#: ../vhffs-panel/admin/mail/show.pl:102
#: ../vhffs-panel/public/lastgroups.pl:77 ../vhffs-panel/public/group.pl:91
-#: ../vhffs-panel/public/allgroups.pl:84 ../vhffs-panel/mysql/create.pl:72
-#: ../vhffs-panel/cvs/create.pl:97
+#: ../vhffs-panel/public/allgroups.pl:84 ../vhffs-panel/mysql/create.pl:104
+#: ../vhffs-panel/cvs/create.pl:103
msgid "Description"
msgstr ""
@@ -1373,6 +1275,10 @@
msgid "Description of your webarea"
msgstr ""
+#: ../vhffs-panel/group/prefs.pl:95
+msgid "Description updated"
+msgstr ""
+
#: ../vhffs-panel/dns/prefs.pl:295
msgid "Destination"
msgstr ""
@@ -1390,12 +1296,8 @@
msgid "Dl repos"
msgstr ""
-#: ../vhffs-panel/group/join_group.pl:119
-msgid "Doe not exist in the VHFFS database"
-msgstr ""
-
#: ../vhffs-panel/admin/mail/edit.pl:97 ../vhffs-panel/admin/mail/show.pl:97
-#: ../vhffs-panel/mail/create.pl:65
+#: ../vhffs-panel/mail/create.pl:81
msgid "Domain"
msgstr ""
@@ -1414,10 +1316,6 @@
msgid "Domain names for %s"
msgstr ""
-#: ../vhffs-panel/admin/web/edit.pl:103 ../vhffs-panel/admin/web/show.pl:117
-msgid "Don't use Crawl"
-msgstr ""
-
#: ../vhffs-intl/extra_strings.pl:35
msgid "Download Repository"
msgstr ""
@@ -1483,7 +1381,7 @@
msgid "Edit this object"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:135
+#: ../vhffs-panel/user/prefs.pl:143
msgid "Email address changed"
msgstr ""
@@ -1491,7 +1389,7 @@
msgid "Email adress"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:99
+#: ../vhffs-panel/user/prefs.pl:100
msgid "Email is not correct !"
msgstr ""
@@ -1519,41 +1417,32 @@
msgid "Error !"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:167
+#: ../vhffs-panel/user/prefs.pl:175
msgid ""
"Error ! You MUST provide a password in your account when you create your "
"popable account"
msgstr ""
-#: ../vhffs-panel/group/project_submit.pl:83
+#: ../vhffs-panel/group/create.pl:70
msgid "Error creating group (maybe a group with the same name already exists)"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:190
+#: ../vhffs-panel/web/create.pl:78
+msgid "Error creating webarea."
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:198
msgid "Error for spam protection\n"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:201
+#: ../vhffs-panel/user/prefs.pl:209
msgid "Error for virus protection\n"
msgstr ""
-#: ../vhffs-listengine/src/archives/archives.pl:136
-#: ../vhffs-listengine/src/archives/show_msg.pl:76
-msgid "Error in listname"
-msgstr ""
-
#: ../vhffs-panel/object/upavatar.pl:130
-msgid "Error when upload avatar for this object"
+msgid "Error when uploading avatar for this object"
msgstr ""
-#: ../vhffs-panel/mailinglist/submit.pl:116
-msgid "Error while creating list (unknow problem)"
-msgstr ""
-
-#: ../vhffs-panel/web/web_submit.pl:90
-msgid "Error while creating the webarea, it probably already exists !"
-msgstr ""
-
#: ../vhffs-panel/dns/delete.pl:102
msgid "Error while switching state. DNS will NOT be deleted"
msgstr ""
@@ -1568,11 +1457,11 @@
"and try again"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:70
+#: ../vhffs-panel/group/prefs.pl:68
msgid "Error. This group doesn't exists"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:334
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:335
msgid "Expired session ! Please login again"
msgstr ""
@@ -1580,25 +1469,21 @@
msgid "Failed to modify note"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:437
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:502
msgid "February"
msgstr ""
-#: ../vhffs-panel/object/upavatar.pl:118
-msgid "File to big. Max size if 5000 bytes for an avatar"
-msgstr ""
-
#: ../vhffs-panel/object/upavatar.pl:114
-msgid "Filetype not supported"
+msgid "Filetype not supported, only png is supported"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:200 ../vhffs-panel/user/prefs.pl:255
+#: ../vhffs-panel/subscribe.pl:218 ../vhffs-panel/user/prefs.pl:263
#: ../vhffs-panel/admin/user/edit.pl:96 ../vhffs-panel/admin/user/show.pl:97
#: ../vhffs-panel/public/user.pl:85 ../vhffs-panel/public/lastusers.pl:80
msgid "Firstname"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:90
+#: ../vhffs-panel/user/prefs.pl:91
msgid "Firstname is not correct !"
msgstr ""
@@ -1626,11 +1511,11 @@
msgid "Forward %s successfully added"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:215
+#: ../vhffs-panel/user/prefs.pl:223
msgid "Forward added"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:350
+#: ../vhffs-panel/user/prefs.pl:379
#, perl-format
msgid "Forward emails from %s@%s to %s"
msgstr ""
@@ -1651,7 +1536,7 @@
msgid "Forward successfully deleted"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:222
+#: ../vhffs-panel/user/prefs.pl:230
msgid "Forward updated"
msgstr ""
@@ -1659,12 +1544,8 @@
msgid "Forwards"
msgstr ""
-#: ../vhffs-listengine/src/archives/show_msg.pl:106
-msgid "From: "
-msgstr ""
-
#: ../vhffs-panel/admin/user/edit.pl:103 ../vhffs-panel/admin/user/show.pl:103
-#: ../vhffs-panel/admin/group/edit.pl:94 ../vhffs-panel/admin/group/show.pl:94
+#: ../vhffs-panel/admin/group/edit.pl:95 ../vhffs-panel/admin/group/show.pl:94
msgid "GID"
msgstr ""
@@ -1695,7 +1576,7 @@
msgid "Go on login page"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:767
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:775
msgid "Go to administration"
msgstr ""
@@ -1704,7 +1585,7 @@
msgid "Go to object-part admin"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:74
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:82
msgid "Go to public area"
msgstr ""
@@ -1731,7 +1612,7 @@
#: ../vhffs-panel/admin/repository/edit.pl:96
#: ../vhffs-panel/admin/repository/show.pl:95
#: ../vhffs-panel/admin/repository/list.pl:89
-#: ../vhffs-panel/admin/web/edit.pl:99 ../vhffs-panel/admin/web/show.pl:98
+#: ../vhffs-panel/admin/web/edit.pl:96 ../vhffs-panel/admin/web/show.pl:95
#: ../vhffs-panel/admin/web/list.pl:79 ../vhffs-panel/admin/mysql/edit.pl:99
#: ../vhffs-panel/admin/mysql/show.pl:95 ../vhffs-panel/admin/mysql/list.pl:89
#: ../vhffs-panel/admin/cvs/edit.pl:97 ../vhffs-panel/admin/cvs/show.pl:96
@@ -1741,7 +1622,7 @@
msgid "Group"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:520
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:501
#, perl-format
msgid "Group %s"
msgstr ""
@@ -1750,7 +1631,7 @@
msgid "Group Admin"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:517
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:498
msgid "Group error"
msgstr ""
@@ -1762,7 +1643,7 @@
msgid "Group or user not found"
msgstr ""
-#: ../vhffs-panel/cvs/create.pl:93
+#: ../vhffs-panel/cvs/create.pl:99
msgid "Group owning this CVS"
msgstr ""
@@ -1770,23 +1651,27 @@
msgid "Group owning this DNS"
msgstr ""
-#: ../vhffs-panel/svn/create.pl:72
+#: ../vhffs-panel/svn/create.pl:91
msgid "Group owning this Subversion repository"
msgstr ""
-#: ../vhffs-panel/pgsql/create.pl:67 ../vhffs-panel/mysql/create.pl:66
+#: ../vhffs-panel/pgsql/create.pl:97 ../vhffs-panel/mysql/create.pl:97
msgid "Group owning this database"
msgstr ""
-#: ../vhffs-panel/mailinglist/create.pl:89
+#: ../vhffs-panel/mail/create.pl:83
+msgid "Group owning this mail domain"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/create.pl:105
msgid "Group owning this mailing list"
msgstr ""
-#: ../vhffs-panel/repository/create.pl:66
+#: ../vhffs-panel/repository/create.pl:86
msgid "Group owning this repository"
msgstr ""
-#: ../vhffs-panel/web/create.pl:76 ../vhffs-panel/mail/create.pl:66
+#: ../vhffs-panel/web/create.pl:94
msgid "Group owning this web space"
msgstr ""
@@ -1794,13 +1679,19 @@
msgid "Group public area"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:176 ../vhffs-panel/admin/group/edit.pl:93
+#: ../vhffs-panel/acl/view.pl:176 ../vhffs-panel/admin/group/edit.pl:94
#: ../vhffs-panel/admin/group/show.pl:93 ../vhffs-panel/admin/group/list.pl:89
#: ../vhffs-panel/public/lastgroups.pl:73 ../vhffs-panel/public/group.pl:90
#: ../vhffs-panel/public/allgroups.pl:80
msgid "Groupname"
msgstr ""
+#: ../vhffs-panel/group/create.pl:66
+msgid ""
+"Groupname must contain between 3 and 12 characters, only letters or numbers "
+"in lower case"
+msgstr ""
+
#: ../vhffs-panel/acl/view.pl:133
msgid "Groupname:"
msgstr ""
@@ -1826,7 +1717,7 @@
msgid "Groups' administration"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:133
+#: ../vhffs-panel/user/prefs.pl:141
#, perl-format
msgid ""
"Hello %s %s,\n"
@@ -1843,8 +1734,25 @@
msgid "Hello and welcome on listengine help\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:382
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:430
+#: ../vhffs-panel/admin/moderation_submit.pl:101
+#, perl-format
+msgid ""
+"Hello,\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"
+"\n"
+"The Moderator and Admin Team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:411
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:610
msgid "Help"
msgstr ""
@@ -1856,7 +1764,7 @@
msgid "Here, you can report a bug to the admin team"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:413
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:414
#, perl-format
msgid ""
"His email address is:\n"
@@ -1867,17 +1775,17 @@
#: ../vhffs-panel/admin/user/show.pl:111
#: ../vhffs-panel/admin/pgsql/edit.pl:103
#: ../vhffs-panel/admin/pgsql/show.pl:100
-#: ../vhffs-panel/admin/group/edit.pl:101
+#: ../vhffs-panel/admin/group/edit.pl:102
#: ../vhffs-panel/admin/group/show.pl:100
#: ../vhffs-panel/admin/repository/edit.pl:101
#: ../vhffs-panel/admin/repository/show.pl:99
#: ../vhffs-panel/admin/object/list.pl:90
-#: ../vhffs-panel/admin/object/list.pl:97 ../vhffs-panel/admin/web/edit.pl:106
-#: ../vhffs-panel/admin/web/show.pl:102 ../vhffs-panel/admin/mysql/edit.pl:104
+#: ../vhffs-panel/admin/object/list.pl:97 ../vhffs-panel/admin/web/edit.pl:101
+#: ../vhffs-panel/admin/web/show.pl:99 ../vhffs-panel/admin/mysql/edit.pl:104
#: ../vhffs-panel/admin/mysql/show.pl:100 ../vhffs-panel/admin/cvs/edit.pl:102
#: ../vhffs-panel/admin/cvs/show.pl:100 ../vhffs-panel/admin/mail/edit.pl:104
#: ../vhffs-panel/admin/mail/show.pl:103
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:768
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:776
msgid "History"
msgstr ""
@@ -1885,7 +1793,7 @@
msgid "History of this object"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:208 ../vhffs-panel/admin/user/edit.pl:100
+#: ../vhffs-panel/subscribe.pl:226 ../vhffs-panel/admin/user/edit.pl:100
#: ../vhffs-panel/admin/user/show.pl:100
msgid "Home"
msgstr ""
@@ -1906,16 +1814,16 @@
msgid "Hosted"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:160
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:162
msgid "However this list require approval for new subscribers.\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:115
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:117
#, perl-format
msgid "However you are (%s) already subscribed to this list.\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:58
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:66
msgid "I've lost my password"
msgstr ""
@@ -1927,6 +1835,12 @@
msgid "IP/host of your NS"
msgstr ""
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:85
+msgid ""
+"If you don't asked to be subscribed to this mailing list,\n"
+"just forget this email\n"
+msgstr ""
+
#: ../vhffs-robots/src/refused_ml.pl:76 ../vhffs-robots/src/refused_mail.pl:78
#: ../vhffs-robots/src/refused_postgres.pl:79
#: ../vhffs-robots/src/refused_cvs.pl:75 ../vhffs-robots/src/refused_web.pl:74
@@ -1939,19 +1853,13 @@
msgid "If you encounters problem, please mail: %s\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:83
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:103
msgid ""
-"If you haven't asked to be subscribed to this list,\n"
-"please don't answer to this mail\n"
-msgstr ""
-
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:101
-msgid ""
"If you haven't asked to be unsubscribed from this list,\n"
"please don't answer to this mail\n"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:89
+#: ../vhffs-panel/group/prefs.pl:178
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 "
@@ -1969,93 +1877,116 @@
msgid "In hope to keep you in our hosting service"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:208
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:220
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:250
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:195
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:207
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:237
msgid "Invalid IP address"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:238
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:225
msgid "Invalid IP v6 address"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:308
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:295
msgid "Invalid alias"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:297
+#: ../vhffs-panel/pgsql/create.pl:78 ../vhffs-panel/mysql/create.pl:78
+msgid ""
+"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 ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:284
msgid "Invalid destination"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:322
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:338
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:309
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:325
msgid "Invalid destination domain name"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:309
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:296
msgid "Invalid destination host"
msgstr ""
-#: ../vhffs-panel/dns/create.pl:41
+#: ../vhffs-panel/dns/create.pl:41 ../vhffs-panel/mail/create.pl:64
msgid "Invalid domain name"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:274
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:261
msgid "Invalid host"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:260
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:284
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:247
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:271
msgid "Invalid hostname"
msgstr ""
-#: ../vhffs-panel/mail/submit.pl:78
-msgid "Invalid mail domain"
+#: ../vhffs-panel/mailinglist/create.pl:76
+msgid "Invalid local part"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:323
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:339
+#: ../vhffs-panel/pgsql/create.pl:80 ../vhffs-panel/mysql/create.pl:80
+msgid ""
+"Invalid password. It must be at least 3 characters and contain only letters "
+"(lower and uppercase) and numbers"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:310
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:326
msgid "Invalid port"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:205
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:235
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:352
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:192
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:222
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:339
msgid "Invalid prefix"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:261
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:324
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:340
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:248
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:311
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:327
msgid "Invalid priority"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:320
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:307
msgid "Invalid protocol syntax"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:170
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:218
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:248
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:272
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:295
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:336
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:363
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:157
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:205
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:235
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:259
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:282
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:323
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:350
msgid "Invalid record"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:321
+#: ../vhffs-panel/svn/create.pl:71
+msgid ""
+"Invalid reponame. It must contain between 3 and 64 characters, only "
+"lowercase letters and numbers"
+msgstr ""
+
+#: ../vhffs-panel/web/create.pl:71
+msgid "Invalid servername (doesn't conform to domain names rules)"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:308
msgid "Invalid service syntax"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:93
+#: ../vhffs-panel/subscribe.pl:111
msgid ""
"Invalid username, it must contain between 3 and 12 alphanumeric characters, "
"all in lowercase"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:325
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:341
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:312
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:328
msgid "Invalid weight"
msgstr ""
@@ -2067,19 +1998,19 @@
msgid "Is this a public repository ?"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:433
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:498
msgid "January"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:457
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:522
msgid "July"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:453
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:518
msgid "June"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:263
+#: ../vhffs-panel/user/prefs.pl:271
msgid "Language"
msgstr ""
@@ -2107,13 +2038,13 @@
msgid "Last users on %s"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:201 ../vhffs-panel/user/prefs.pl:256
+#: ../vhffs-panel/subscribe.pl:219 ../vhffs-panel/user/prefs.pl:264
#: ../vhffs-panel/admin/user/edit.pl:97 ../vhffs-panel/admin/user/show.pl:98
#: ../vhffs-panel/public/user.pl:87 ../vhffs-panel/public/lastusers.pl:82
msgid "Lastname"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:93
+#: ../vhffs-panel/user/prefs.pl:94
msgid "Lastname is not correct !"
msgstr ""
@@ -2265,7 +2196,11 @@
msgid "Login failed !"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:432
+#: ../vhffs-panel/group/prefs.pl:199
+msgid "Logo"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:413
msgid "Logout"
msgstr ""
@@ -2304,12 +2239,12 @@
msgid "Mail Domain"
msgstr ""
-#: ../vhffs-panel/mail/submit.pl:82
-msgid "Mail area successfully created !"
+#: ../vhffs-panel/user/prefs.pl:235
+msgid "Mail deleted"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:227
-msgid "Mail deleted"
+#: ../vhffs-panel/mail/create.pl:70
+msgid "Mail domain successfully created !"
msgstr ""
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:238
@@ -2325,7 +2260,7 @@
msgid "Mail domains' administration"
msgstr ""
-#: ../vhffs-panel/mailinglist/create.pl:88
+#: ../vhffs-panel/mailinglist/create.pl:104
msgid "Mail for the list"
msgstr ""
@@ -2341,16 +2276,16 @@
msgid "Mail to all hosted people"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:361
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:363
#, perl-format
msgid "Mail with id %s"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:132
+#: ../vhffs-panel/user/prefs.pl:140
msgid "Mailbox modified"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:175
+#: ../vhffs-panel/user/prefs.pl:183
msgid "Mailbox successfully added"
msgstr ""
@@ -2383,10 +2318,6 @@
msgid "Mailing successfully deleted"
msgstr ""
-#: ../vhffs-panel/mailinglist/submit.pl:108
-msgid "Mailing-list successfully created !"
-msgstr ""
-
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:98
msgid "Manage mailings"
msgstr ""
@@ -2395,15 +2326,15 @@
msgid "Manage members"
msgstr ""
-#: ../vhffs-panel/group/join_group.pl:101
+#: ../vhffs-panel/group/prefs.pl:150
msgid "Many users matched your query. Please choose between them"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:441
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:506
msgid "March"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:449
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:514
msgid "May"
msgstr ""
@@ -2419,11 +2350,6 @@
msgid "Message"
msgstr ""
-#: ../vhffs-listengine/src/archives/show_msg.pl:120
-#, perl-format
-msgid "Message from list %s"
-msgstr ""
-
#: ../vhffs-panel/alert_submit.pl:74
msgid "Message sent by the following account"
msgstr ""
@@ -2432,8 +2358,8 @@
msgid "Message sent successfully"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:329
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:345
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:331
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:347
#, perl-format
msgid "Message with id: %s"
msgstr ""
@@ -2453,16 +2379,16 @@
msgid "Moderator"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:423
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:404
msgid "Moderator account"
msgstr ""
#: ../vhffs-panel/admin/user/edit.pl:149
#: ../vhffs-panel/admin/pgsql/edit.pl:125
-#: ../vhffs-panel/admin/group/edit.pl:125
+#: ../vhffs-panel/admin/group/edit.pl:130
#: ../vhffs-panel/admin/repository/edit.pl:125
#: ../vhffs-panel/admin/object/edit.pl:125
-#: ../vhffs-panel/admin/web/edit.pl:138 ../vhffs-panel/admin/mysql/edit.pl:126
+#: ../vhffs-panel/admin/web/edit.pl:121 ../vhffs-panel/admin/mysql/edit.pl:126
#: ../vhffs-panel/admin/cvs/edit.pl:134 ../vhffs-panel/admin/mail/edit.pl:166
#: ../vhffs-intl/extra_strings.pl:27
msgid "Modification applied"
@@ -2470,10 +2396,10 @@
#: ../vhffs-panel/admin/user/edit.pl:148
#: ../vhffs-panel/admin/pgsql/edit.pl:124
-#: ../vhffs-panel/admin/group/edit.pl:124
+#: ../vhffs-panel/admin/group/edit.pl:129
#: ../vhffs-panel/admin/repository/edit.pl:124
#: ../vhffs-panel/admin/object/edit.pl:124
-#: ../vhffs-panel/admin/web/edit.pl:137 ../vhffs-panel/admin/mysql/edit.pl:125
+#: ../vhffs-panel/admin/web/edit.pl:120 ../vhffs-panel/admin/mysql/edit.pl:125
#: ../vhffs-panel/admin/cvs/edit.pl:133 ../vhffs-panel/admin/mail/edit.pl:165
#: ../vhffs-intl/extra_strings.pl:26
msgid "Modification error"
@@ -2487,7 +2413,7 @@
msgid "Modifications applied to your database"
msgstr ""
-#: ../vhffs-panel/web/prefs_save.pl:95
+#: ../vhffs-panel/web/prefs_save.pl:92
msgid "Modifications applied to your webarea"
msgstr ""
@@ -2500,16 +2426,16 @@
msgstr ""
#: ../vhffs-panel/admin/user/edit_submit.pl:135
-#: ../vhffs-panel/admin/web/edit_submit.pl:104
+#: ../vhffs-panel/admin/web/edit_submit.pl:101
msgid "Modifications successfully applied"
msgstr ""
-#: ../vhffs-panel/svn/prefs.pl:121 ../vhffs-panel/user/prefs.pl:265
+#: ../vhffs-panel/svn/prefs.pl:121 ../vhffs-panel/user/prefs.pl:274
#: ../vhffs-panel/dns/prefs.pl:330 ../vhffs-panel/dns/prefs.pl:342
#: ../vhffs-panel/dns/prefs.pl:355 ../vhffs-panel/dns/prefs.pl:366
#: ../vhffs-panel/dns/prefs.pl:393 ../vhffs-panel/dns/prefs.pl:409
#: ../vhffs-panel/acl/view.pl:166 ../vhffs-panel/pgsql/prefs.pl:107
-#: ../vhffs-panel/group/prefs.pl:96 ../vhffs-panel/web/prefs.pl:119
+#: ../vhffs-panel/group/prefs.pl:184 ../vhffs-panel/web/prefs.pl:101
#: ../vhffs-panel/mysql/prefs.pl:114 ../vhffs-panel/cvs/prefs.pl:96
msgid "Modify"
msgstr ""
@@ -2550,7 +2476,7 @@
msgid "Modify this mail domain"
msgstr ""
-#: ../vhffs-panel/admin/user/list.pl:91
+#: ../vhffs-panel/admin/user/list.pl:92
msgid "Modify this user"
msgstr ""
@@ -2558,7 +2484,7 @@
msgid "Must we redirect the DNS on our servers ?"
msgstr ""
-#: ../vhffs-panel/user/projects.pl:49 ../vhffs-api/src/Vhffs/Panel/Main.pm:428
+#: ../vhffs-panel/user/projects.pl:49 ../vhffs-api/src/Vhffs/Panel/Main.pm:409
msgid "My Projects"
msgstr ""
@@ -2588,7 +2514,7 @@
msgid "MySQL database awaiting validation"
msgstr ""
-#: ../vhffs-panel/mysql/create.pl:68
+#: ../vhffs-panel/mysql/create.pl:99
msgid "MySQL database name "
msgstr ""
@@ -2596,7 +2522,7 @@
msgid "MySQL databases' administration"
msgstr ""
-#: ../vhffs-panel/mysql/create.pl:69
+#: ../vhffs-panel/mysql/create.pl:101
msgid "MySQL password for this database "
msgstr ""
@@ -2637,18 +2563,18 @@
msgid "Name of your MX"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:769
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:777
msgid "New"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:266
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:268
#, perl-format
msgid "New language is: %s\n"
msgstr ""
#: ../vhffs-panel/svn/prefs.pl:120 ../vhffs-panel/dns/prefs.pl:277
#: ../vhffs-panel/admin/cvs/edit.pl:104 ../vhffs-panel/admin/cvs/show.pl:108
-#: ../vhffs-panel/web/prefs.pl:116 ../vhffs-panel/cvs/prefs.pl:95
+#: ../vhffs-panel/cvs/prefs.pl:95
msgid "No"
msgstr ""
@@ -2696,7 +2622,7 @@
msgid "No Web Area to validate"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:327
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:328
msgid "No cookie found, please accept the cookie and then please login again !"
msgstr ""
@@ -2738,7 +2664,7 @@
msgid "No member on this list"
msgstr ""
-#: ../vhffs-listengine/src/listengine.pl:592
+#: ../vhffs-listengine/src/listengine.pl:736
msgid "No message to moderate"
msgstr ""
@@ -2764,7 +2690,7 @@
msgid "No such user"
msgstr ""
-#: ../vhffs-panel/public/group.pl:103
+#: ../vhffs-panel/group/prefs.pl:209 ../vhffs-panel/public/group.pl:103
msgid "No user for this group"
msgstr ""
@@ -2776,19 +2702,19 @@
msgid "No website available for this group"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:280 ../vhffs-panel/dns/prefs.pl:270
-#: ../vhffs-panel/web/prefs.pl:131
+#: ../vhffs-panel/user/prefs.pl:289 ../vhffs-panel/dns/prefs.pl:270
+#: ../vhffs-panel/web/prefs.pl:112
msgid "No, I'm not sure, I prefer to keep it."
msgstr ""
#: ../vhffs-panel/mailinglist/prefs.pl:205 ../vhffs-panel/svn/prefs.pl:126
-#: ../vhffs-panel/pgsql/prefs.pl:112 ../vhffs-panel/group/prefs.pl:101
-#: ../vhffs-panel/repository/prefs.pl:106 ../vhffs-panel/mysql/prefs.pl:119
+#: ../vhffs-panel/pgsql/prefs.pl:112 ../vhffs-panel/group/prefs.pl:189
+#: ../vhffs-panel/repository/prefs.pl:107 ../vhffs-panel/mysql/prefs.pl:119
#: ../vhffs-panel/cvs/prefs.pl:101 ../vhffs-panel/mail/prefs.pl:134
msgid "No, I'm not sure, I prefer to keep this project."
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:770
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:778
msgid "None"
msgstr ""
@@ -2806,7 +2732,7 @@
msgid "Notify changes on mailing-list :"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:473
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:538
msgid "November"
msgstr ""
@@ -2831,12 +2757,12 @@
msgid "Object-ID error"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:469
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:534
msgid "October"
msgstr ""
#: ../vhffs-panel/svn/prefs.pl:132 ../vhffs-panel/dns/prefs.pl:262
-#: ../vhffs-panel/web/prefs.pl:124 ../vhffs-panel/mail/prefs.pl:140
+#: ../vhffs-panel/web/prefs.pl:105 ../vhffs-panel/mail/prefs.pl:140
msgid "Ok, go to ACL admin"
msgstr ""
@@ -2877,13 +2803,13 @@
msgid "Owned by"
msgstr ""
-#: ../vhffs-panel/group/create.pl:63 ../vhffs-panel/admin/pgsql/edit.pl:99
-#: ../vhffs-panel/admin/pgsql/show.pl:97 ../vhffs-panel/admin/group/edit.pl:95
+#: ../vhffs-panel/group/create.pl:82 ../vhffs-panel/admin/pgsql/edit.pl:99
+#: ../vhffs-panel/admin/pgsql/show.pl:97 ../vhffs-panel/admin/group/edit.pl:96
#: ../vhffs-panel/admin/group/show.pl:95
#: ../vhffs-panel/admin/repository/edit.pl:97
#: ../vhffs-panel/admin/repository/show.pl:96
-#: ../vhffs-panel/admin/object/list.pl:88 ../vhffs-panel/admin/web/edit.pl:100
-#: ../vhffs-panel/admin/web/show.pl:99 ../vhffs-panel/admin/mysql/edit.pl:100
+#: ../vhffs-panel/admin/object/list.pl:88 ../vhffs-panel/admin/web/edit.pl:97
+#: ../vhffs-panel/admin/web/show.pl:96 ../vhffs-panel/admin/mysql/edit.pl:100
#: ../vhffs-panel/admin/mysql/show.pl:96 ../vhffs-panel/admin/cvs/edit.pl:98
#: ../vhffs-panel/admin/cvs/show.pl:97 ../vhffs-panel/admin/mail/edit.pl:100
#: ../vhffs-panel/admin/mail/show.pl:100
@@ -2898,13 +2824,13 @@
msgid "Owner of this group"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:261 ../vhffs-panel/admin/user/edit.pl:99
+#: ../vhffs-panel/user/prefs.pl:269 ../vhffs-panel/admin/user/edit.pl:99
#: ../vhffs-panel/admin/pgsql/edit.pl:97 ../vhffs-panel/admin/mysql/edit.pl:97
-#: ../vhffs-panel/mail/prefs.pl:111 ../vhffs-api/src/Vhffs/Panel/Commons.pm:56
+#: ../vhffs-panel/mail/prefs.pl:111 ../vhffs-api/src/Vhffs/Panel/Commons.pm:64
msgid "Password"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:125
+#: ../vhffs-panel/user/prefs.pl:133
msgid "Password changed"
msgstr ""
@@ -2917,14 +2843,6 @@
msgid "Password for this database"
msgstr ""
-#: ../vhffs-panel/mysql/submit.pl:87
-msgid "Password must contain at least 3 caracters"
-msgstr ""
-
-#: ../vhffs-panel/pgsql/pgsql_submit.pl:81
-msgid "Password must contains only alphanum caracters"
-msgstr ""
-
#: ../vhffs-panel/lost_ack.pl:90
msgid "Password recovery failed!"
msgstr ""
@@ -2967,41 +2885,41 @@
msgid "Platform temporary closed<br/>database error"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:137
+#: ../vhffs-panel/subscribe.pl:155
msgid "Please enter a correct city"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:141
+#: ../vhffs-panel/subscribe.pl:159
msgid "Please enter a correct country"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:129
+#: ../vhffs-panel/subscribe.pl:147
msgid "Please enter a correct firstname"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:133
+#: ../vhffs-panel/subscribe.pl:151
msgid "Please enter a correct lastname"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:53
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:61
msgid "Please enter your username and password"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:197
+#: ../vhffs-panel/subscribe.pl:215
msgid ""
"Please fill in all fields, a mail containing your password will be sent to "
"you"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:294
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:296
msgid "Please read help of listengine\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:191
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:193
msgid "Please try again !\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:237
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:239
msgid "Please try again.\n"
msgstr ""
@@ -3014,7 +2932,7 @@
msgid "Please wait modification, creation or deletion"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:167
+#: ../vhffs-panel/subscribe.pl:185
msgid ""
"Please wait while we are creating the account, it will take some minutes"
msgstr ""
@@ -3040,16 +2958,16 @@
msgid "PostgreSQL DBs for %s"
msgstr ""
-#: ../vhffs-panel/pgsql/create.pl:65
-msgid "PostgreSQL database name"
+#: ../vhffs-panel/pgsql/create.pl:99
+msgid "PostgreSQL database name "
msgstr ""
#: ../vhffs-panel/admin/pgsql/index.pl:55
msgid "PostgreSQL databases' administration"
msgstr ""
-#: ../vhffs-panel/pgsql/create.pl:66
-msgid "PostgreSQL password for this database"
+#: ../vhffs-panel/pgsql/create.pl:101
+msgid "PostgreSQL password for this database "
msgstr ""
#: ../vhffs-panel/admin/moderation.pl:435
@@ -3060,12 +2978,12 @@
msgid "Posting control:"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:532
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:513
msgid "Preferences"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:206
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:236
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:193
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:223
msgid "Prefix already exists"
msgstr ""
@@ -3085,31 +3003,27 @@
msgid "Priority: "
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:93
+#: ../vhffs-panel/group/prefs.pl:182
msgid "Project Description"
msgstr ""
-#: ../vhffs-panel/group/create.pl:62
+#: ../vhffs-panel/group/create.pl:81
msgid "Project Name"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:91
+#: ../vhffs-panel/group/prefs.pl:180
msgid "Project Owner"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:88
+#: ../vhffs-panel/group/prefs.pl:176
msgid "Project Preferences"
msgstr ""
-#: ../vhffs-panel/group/project_submit.pl:85
+#: ../vhffs-panel/group/create.pl:72
msgid "Project Successfully created !"
msgstr ""
-#: ../vhffs-panel/group/prefs_save.pl:93
-msgid "Project Successfully modified"
-msgstr ""
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:448
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:429
msgid "Project home"
msgstr ""
@@ -3139,20 +3053,20 @@
msgid "Public area not available"
msgstr ""
-#: ../vhffs-panel/admin/group/edit.pl:96 ../vhffs-panel/admin/group/show.pl:96
+#: ../vhffs-panel/admin/group/edit.pl:97 ../vhffs-panel/admin/group/show.pl:96
#: ../vhffs-panel/admin/repository/edit.pl:102
#: ../vhffs-panel/admin/repository/show.pl:100
msgid "Quota"
msgstr ""
#: ../vhffs-panel/repository/prefs.pl:100
-#: ../vhffs-panel/admin/group/edit.pl:110
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:524
+#: ../vhffs-panel/admin/group/edit.pl:109
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:505
#, perl-format
msgid "Quota (used/total) : %s/%s"
msgstr ""
-#: ../vhffs-panel/admin/group/edit.pl:97 ../vhffs-panel/admin/group/show.pl:97
+#: ../vhffs-panel/admin/group/edit.pl:98 ../vhffs-panel/admin/group/show.pl:97
#: ../vhffs-panel/admin/repository/edit.pl:103
#: ../vhffs-panel/admin/repository/show.pl:101
msgid "Quota used"
@@ -3178,21 +3092,21 @@
msgid "Reason given : "
msgstr ""
-#: ../vhffs-panel/subscribe.pl:214
+#: ../vhffs-panel/subscribe.pl:233
msgid "Recopy the code"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:172
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:219
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:249
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:273
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:296
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:337
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:364
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:159
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:206
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:236
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:260
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:283
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:324
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:351
msgid "Record does not exists"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:171
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:158
msgid "Record type doesn't exists"
msgstr ""
@@ -3209,16 +3123,16 @@
msgid "Refuse"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:121
-msgid "Remove this user from this group"
+#: ../vhffs-panel/group/prefs.pl:208
+msgid "Remove"
msgstr ""
#: ../vhffs-panel/mailinglist/prefs.pl:142
msgid "Reply to: on list"
msgstr ""
-#: ../vhffs-panel/svn/create.pl:71 ../vhffs-panel/repository/create.pl:65
-#: ../vhffs-panel/admin/repository/list.pl:88 ../vhffs-panel/cvs/create.pl:91
+#: ../vhffs-panel/svn/create.pl:89 ../vhffs-panel/repository/create.pl:85
+#: ../vhffs-panel/admin/repository/list.pl:88 ../vhffs-panel/cvs/create.pl:97
msgid "Repository Name"
msgstr ""
@@ -3404,20 +3318,20 @@
msgid "Search:"
msgstr ""
-#: ../vhffs-panel/mailinglist/create.pl:101 ../vhffs-panel/svn/create.pl:76
-#: ../vhffs-panel/dns/create.pl:68 ../vhffs-panel/pgsql/create.pl:73
-#: ../vhffs-panel/group/create.pl:65 ../vhffs-panel/repository/create.pl:71
+#: ../vhffs-panel/mailinglist/create.pl:109 ../vhffs-panel/svn/create.pl:94
+#: ../vhffs-panel/dns/create.pl:68 ../vhffs-panel/pgsql/create.pl:103
+#: ../vhffs-panel/group/create.pl:84 ../vhffs-panel/repository/create.pl:91
#: ../vhffs-panel/alert.pl:71 ../vhffs-panel/admin/user/edit.pl:111
#: ../vhffs-panel/admin/pgsql/edit.pl:102
-#: ../vhffs-panel/admin/group/edit.pl:100
+#: ../vhffs-panel/admin/group/edit.pl:101
#: ../vhffs-panel/admin/broadcast_list.pl:99
#: ../vhffs-panel/admin/repository/edit.pl:100
#: ../vhffs-panel/admin/object/edit.pl:98
#: ../vhffs-panel/admin/broadcast_view.pl:100
-#: ../vhffs-panel/admin/web/edit.pl:105 ../vhffs-panel/admin/mysql/edit.pl:103
+#: ../vhffs-panel/admin/web/edit.pl:100 ../vhffs-panel/admin/mysql/edit.pl:103
#: ../vhffs-panel/admin/cvs/edit.pl:101 ../vhffs-panel/admin/mail/edit.pl:103
-#: ../vhffs-panel/web/create.pl:80 ../vhffs-panel/mysql/create.pl:71
-#: ../vhffs-panel/cvs/create.pl:96 ../vhffs-panel/mail/create.pl:70
+#: ../vhffs-panel/web/create.pl:97 ../vhffs-panel/mysql/create.pl:103
+#: ../vhffs-panel/cvs/create.pl:102 ../vhffs-panel/mail/create.pl:86
msgid "Send"
msgstr ""
@@ -3425,7 +3339,7 @@
msgid "Send an email to all hosted people"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:295
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:297
msgid "Send an email with the subject \"help\" to the following address: \n"
msgstr ""
@@ -3433,15 +3347,11 @@
msgid "Send it"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:108 ../vhffs-panel/group/prefs.pl:109
-msgid "Send logo"
-msgstr ""
-
-#: ../vhffs-panel/user/prefs.pl:287 ../vhffs-panel/user/prefs.pl:289
+#: ../vhffs-panel/user/prefs.pl:296 ../vhffs-panel/user/prefs.pl:298
msgid "Send my avatar"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:465
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:530
msgid "September"
msgstr ""
@@ -3451,15 +3361,12 @@
msgid "Servername"
msgstr ""
-#: ../vhffs-panel/web/web_submit.pl:77
-msgid "Servername error. Please enter a valid servername"
-msgstr ""
-
#: ../vhffs-panel/dns/prefs.pl:309
msgid "Service"
msgstr ""
-#: ../vhffs-panel/admin/user/edit.pl:98 ../vhffs-panel/admin/user/show.pl:99
+#: ../vhffs-panel/user/prefs.pl:273 ../vhffs-panel/admin/user/edit.pl:98
+#: ../vhffs-panel/admin/user/show.pl:99
msgid "Shell"
msgstr ""
@@ -3554,7 +3461,7 @@
msgid "Show this mail domain"
msgstr ""
-#: ../vhffs-panel/admin/user/list.pl:94
+#: ../vhffs-panel/admin/user/list.pl:95
msgid "Show this user"
msgstr ""
@@ -3592,19 +3499,19 @@
#: ../vhffs-panel/admin/user/edit.pl:137 ../vhffs-panel/admin/user/show.pl:110
#: ../vhffs-panel/admin/pgsql/edit.pl:100
-#: ../vhffs-panel/admin/pgsql/show.pl:98 ../vhffs-panel/admin/group/edit.pl:98
+#: ../vhffs-panel/admin/pgsql/show.pl:98 ../vhffs-panel/admin/group/edit.pl:99
#: ../vhffs-panel/admin/group/show.pl:98
#: ../vhffs-panel/admin/repository/edit.pl:98
#: ../vhffs-panel/admin/repository/show.pl:97
-#: ../vhffs-panel/admin/object/edit.pl:96 ../vhffs-panel/admin/web/edit.pl:101
-#: ../vhffs-panel/admin/web/show.pl:100 ../vhffs-panel/admin/mysql/edit.pl:101
+#: ../vhffs-panel/admin/object/edit.pl:96 ../vhffs-panel/admin/web/edit.pl:98
+#: ../vhffs-panel/admin/web/show.pl:97 ../vhffs-panel/admin/mysql/edit.pl:101
#: ../vhffs-panel/admin/mysql/show.pl:97 ../vhffs-panel/admin/mysql/show.pl:99
#: ../vhffs-panel/admin/cvs/edit.pl:99 ../vhffs-panel/admin/cvs/show.pl:98
#: ../vhffs-panel/admin/mail/edit.pl:101 ../vhffs-panel/admin/mail/show.pl:101
msgid "Status"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:383
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:611
msgid "Stay over an icon to see its description."
msgstr ""
@@ -3621,21 +3528,17 @@
msgid "Subject"
msgstr ""
-#: ../vhffs-listengine/src/archives/show_msg.pl:109
-msgid "Subject: "
-msgstr ""
-
#: ../vhffs-panel/dns/prefs.pl:288 ../vhffs-panel/dns/prefs.pl:294
#: ../vhffs-panel/dns/prefs.pl:315
msgid "Submit"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:431
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:412
msgid "Submit a bug"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:206 ../vhffs-panel/subscribe.pl:220
-#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:59
+#: ../vhffs-panel/subscribe.pl:224 ../vhffs-panel/subscribe.pl:239
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:67
msgid "Subscribe"
msgstr ""
@@ -3647,17 +3550,16 @@
msgid "Subscribed"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:196
+#: ../vhffs-panel/subscribe.pl:214
msgid "Subscription"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:130
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:132
#, perl-format
msgid ""
"Subscription to the following list is forbidden:\n"
+" %s\n"
"\n"
-"%s\n"
-"\n"
"Have a nice day.\n"
msgstr ""
@@ -3665,33 +3567,28 @@
msgid "Subversion repository awaiting validation"
msgstr ""
-#: ../vhffs-panel/object/upavatar.pl:126
-msgid "Successfull create or replace avatar"
-msgstr ""
-
#: ../vhffs-panel/mailinglist/add_sub.pl:105
msgid "Successfully added"
msgstr ""
+#: ../vhffs-panel/object/upavatar.pl:126
+msgid "Successfully created or updated avatar"
+msgstr ""
+
#: ../vhffs-panel/mailinglist/del_member.pl:105
msgid "Successfully deleted"
msgstr ""
-#: ../vhffs-panel/group/join_group.pl:86
-msgid ""
-"Sucessfully added this user to this group. Please wait while robots add him"
-msgstr ""
-
#: ../vhffs-panel/admin/user/edit.pl:145
#: ../vhffs-panel/admin/pgsql/edit.pl:121
#: ../vhffs-panel/admin/pgsql/edit.pl:122
-#: ../vhffs-panel/admin/group/edit.pl:121
-#: ../vhffs-panel/admin/group/edit.pl:122
+#: ../vhffs-panel/admin/group/edit.pl:126
+#: ../vhffs-panel/admin/group/edit.pl:127
#: ../vhffs-panel/admin/repository/edit.pl:121
#: ../vhffs-panel/admin/repository/edit.pl:122
#: ../vhffs-panel/admin/object/edit.pl:121
#: ../vhffs-panel/admin/object/edit.pl:122
-#: ../vhffs-panel/admin/web/edit.pl:134 ../vhffs-panel/admin/web/edit.pl:135
+#: ../vhffs-panel/admin/web/edit.pl:117 ../vhffs-panel/admin/web/edit.pl:118
#: ../vhffs-panel/admin/mysql/edit.pl:122
#: ../vhffs-panel/admin/mysql/edit.pl:123 ../vhffs-panel/admin/cvs/edit.pl:130
#: ../vhffs-panel/admin/cvs/edit.pl:131 ../vhffs-panel/admin/mail/edit.pl:162
@@ -3715,15 +3612,15 @@
msgid "TXT Record updated"
msgstr ""
-#: ../vhffs-panel/mail/create.pl:71
-msgid "Tell us what the use of this mail space will be"
+#: ../vhffs-panel/mail/create.pl:87
+msgid "Tell us for what purpose you want to create this mail domain"
msgstr ""
-#: ../vhffs-panel/mailinglist/create.pl:102
+#: ../vhffs-panel/mailinglist/create.pl:110
msgid "Tell us what the use of this mailing list will be"
msgstr ""
-#: ../vhffs-panel/web/create.pl:81
+#: ../vhffs-panel/web/create.pl:98
msgid "Tell us what the use of this web space will be"
msgstr ""
@@ -3731,12 +3628,12 @@
msgid "Text"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:353
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:365
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:340
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:352
msgid "Text can't be empty"
msgstr ""
-#: ../vhffs-panel/cvs/create.pl:78
+#: ../vhffs-panel/cvs/create.pl:80
msgid "The CVS object was successfully created !"
msgstr ""
@@ -3744,10 +3641,6 @@
msgid "The DNS object was successfully created !"
msgstr ""
-#: ../vhffs-panel/repository/repository_submit.pl:89
-msgid "The Download repository object was successfully created !"
-msgstr ""
-
#: ../vhffs-robots/src/refused_ml.pl:78 ../vhffs-robots/src/refused_mail.pl:80
#: ../vhffs-robots/src/refused_postgres.pl:81
#: ../vhffs-robots/src/refused_cvs.pl:77 ../vhffs-robots/src/refused_web.pl:76
@@ -3759,111 +3652,102 @@
msgid "The Moderator and Admin team"
msgstr ""
-#: ../vhffs-panel/mysql/submit.pl:99
-msgid "The MySQL object was successfully created !"
+#: ../vhffs-panel/mysql/create.pl:82
+msgid "The MySQL DB was successfully created !"
msgstr ""
-#: ../vhffs-panel/pgsql/pgsql_submit.pl:95
-msgid "The PostgreSQL object was successfully created !"
+#: ../vhffs-panel/pgsql/create.pl:82
+msgid "The PostgreSQL DB was successfully created !"
msgstr ""
-#: ../vhffs-panel/svn/svn_submit.pl:83
-msgid "The Subversion object was successfully created !"
+#: ../vhffs-panel/svn/create.pl:75
+msgid "The SVN object was successfully created !"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:290
+#: ../vhffs-panel/user/prefs.pl:299
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 ""
-#: ../vhffs-panel/group/prefs.pl:110
+#: ../vhffs-panel/group/prefs.pl:200
msgid "The avatar is an image to describe the group"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:190
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:192
msgid "The confirmation code was wrong\n"
msgstr ""
-#: ../vhffs-panel/mysql/submit.pl:91
-msgid "The database name is not valid"
+#: ../vhffs-panel/pgsql/create.pl:96 ../vhffs-panel/mysql/create.pl:96
+#, perl-format
+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 ""
-#: ../vhffs-panel/mysql/submit.pl:79
-msgid "The database name is too long. There is a 32 character limit"
-msgstr ""
-
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:379
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:381
#, perl-format
msgid ""
"The following address %s is not allowed to execute commands on the list %s\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:205
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:207
#, perl-format
-msgid "The following address %s is not on the list %s\n"
-msgstr ""
-
-#: ../vhffs-panel/group/project_submit.pl:78
-msgid "The groupname can have no more than 12 caracters."
-msgstr ""
-
-#: ../vhffs-panel/group/project_submit.pl:74
msgid ""
-"The groupname should contain at least 3 caracters and must contain only "
-"letters or numbers in lower case"
+"The following address %s is not on the following mailing list:\n"
+" %s\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:265
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:267
#, perl-format
msgid ""
"The listengine language preference was changed for the following address %"
"s.\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:314
+#: ../vhffs-panel/mailinglist/create.pl:83
+msgid "The mailing list object was successfully created !"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:316
msgid "The message does not exists or was moderated before you.\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:311
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:313
#, perl-format
msgid "The message with the following id %s"
msgstr ""
-#: ../vhffs-panel/mysql/submit.pl:95
-msgid "The password is not valid"
+#: ../vhffs-panel/repository/create.pl:72
+msgid "The repository was successfully created !"
msgstr ""
-#: ../vhffs-panel/pgsql/create.pl:70 ../vhffs-panel/mysql/create.pl:65
-#, perl-format
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:119
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"
+"The state of you subscription was not changed, you are still subscribed\n"
msgstr ""
-#: ../vhffs-panel/svn/svn_submit.pl:73
-msgid ""
-"The repository name is too short. It must contains at least 3 caracters, and "
-"must only contain letters and numbers"
+#: ../vhffs-panel/web/create.pl:75
+msgid "The webarea was successfully created !"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:117
-msgid ""
-"The state of you subscription was not changed, you are still subscribed\n"
-msgstr ""
-
-#: ../vhffs-panel/user/prefs.pl:264
+#: ../vhffs-panel/user/prefs.pl:272
msgid "Theme"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:211
+#: ../vhffs-panel/user/prefs.pl:219
msgid ""
"There is a problem with the address you filled in your profile, unable to "
"add forwarding"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:348
+#: ../vhffs-panel/mailinglist/create.pl:99
+msgid ""
+"There is no default mail domain on this platform, you have to create a mail "
+"domain before creating a mailing list"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:377
msgid "There is two possible usages :"
msgstr ""
@@ -3889,15 +3773,15 @@
#: ../vhffs-panel/mailinglist/prefs.pl:202 ../vhffs-panel/svn/prefs.pl:123
#: ../vhffs-panel/dns/prefs.pl:267 ../vhffs-panel/pgsql/prefs.pl:109
-#: ../vhffs-panel/group/prefs.pl:98 ../vhffs-panel/repository/prefs.pl:103
-#: ../vhffs-panel/web/prefs.pl:128 ../vhffs-panel/mysql/prefs.pl:116
+#: ../vhffs-panel/group/prefs.pl:186 ../vhffs-panel/repository/prefs.pl:104
+#: ../vhffs-panel/web/prefs.pl:109 ../vhffs-panel/mysql/prefs.pl:116
#: ../vhffs-panel/cvs/prefs.pl:98 ../vhffs-panel/mail/prefs.pl:131
msgid ""
"This action is non-reversible. All services associated to this project will "
"be DESTROYED."
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:277
+#: ../vhffs-panel/user/prefs.pl:286
msgid "This action is non-reversible. WHEN YOU DELETE IT, YOU CANNOT CANCEL."
msgstr ""
@@ -3935,15 +3819,15 @@
msgid "This domain will be DELETED from Vhffs platform"
msgstr ""
-#: ../vhffs-panel/group/prefs_save.pl:82
-msgid "This group is not activated yet"
+#: ../vhffs-panel/mail/add_forward.pl:99
+msgid "This forward has been successfully added to this domain"
msgstr ""
#: ../vhffs-panel/group/delete.pl:91
msgid "This group will be deleted"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:326
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:313
msgid "This host is already registered for this service"
msgstr ""
@@ -3959,20 +3843,25 @@
msgid "This mail domain will NOT be DELETED"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:99
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:101
#, perl-format
msgid ""
"This mail must contains the following subject : \"confirm unsubscribe %s\"\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:81
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:83
#, perl-format
-msgid "This mail must have the following subject : \"confirm subscribe %s\"\n"
+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 ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:395
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:397
#, perl-format
-msgid "This mail was sent by %s with the following subject: \n"
+msgid ""
+"This mail was sent by %s with the following subject:\n"
+" %s\n"
+"\n"
msgstr ""
#: ../vhffs-panel/mailinglist/add_sub.pl:101
@@ -3983,7 +3872,7 @@
msgid "This object does not have an avatar"
msgstr ""
-#: ../vhffs-panel/group/prefs.pl:75
+#: ../vhffs-panel/group/prefs.pl:71
msgid "This object is not functional yet. Please wait creation or moderation."
msgstr ""
@@ -4001,7 +3890,7 @@
#: ../vhffs-panel/admin/mail/password_box.pl:90
#: ../vhffs-panel/admin/mail/delete_forward.pl:90
#: ../vhffs-panel/admin/mail/change_forward.pl:90
-#: ../vhffs-panel/web/prefs.pl:80 ../vhffs-panel/web/prefs_save.pl:82
+#: ../vhffs-panel/web/prefs.pl:80 ../vhffs-panel/web/prefs_save.pl:81
#: ../vhffs-panel/mysql/prefs.pl:90 ../vhffs-panel/mysql/prefs_save.pl:91
#: ../vhffs-panel/cvs/delete.pl:86 ../vhffs-panel/cvs/prefs_save.pl:85
#: ../vhffs-panel/mail/delete.pl:82 ../vhffs-panel/mail/delete_box.pl:86
@@ -4051,10 +3940,6 @@
"maintenances tasks. Please come back in a few minutes to log in."
msgstr ""
-#: ../vhffs-panel/svn/svn_submit.pl:76
-msgid "This repository name already exists"
-msgstr ""
-
#: ../vhffs-panel/svn/delete.pl:102
msgid "This repository will be deleted"
msgstr ""
@@ -4063,18 +3948,10 @@
msgid "This subversion repository will NOT be deleted"
msgstr ""
-#: ../vhffs-panel/group/remove_user_from_group.pl:79
-msgid "This user does not exists "
-msgstr ""
-
#: ../vhffs-panel/user/delete.pl:76
msgid "This user is always in a group"
msgstr ""
-#: ../vhffs-panel/group/remove_user_from_group.pl:88
-msgid "This user is not in this group "
-msgstr ""
-
#: ../vhffs-panel/user/delete.pl:87
msgid "This user will BE DELETED"
msgstr ""
@@ -4083,30 +3960,29 @@
msgid "This user will NOT be DELETED"
msgstr ""
-#: ../vhffs-panel/group/remove_user_from_group.pl:92
+#: ../vhffs-panel/group/prefs.pl:110
msgid "This user will be removed from this group as soon as possible"
msgstr ""
-#: ../vhffs-panel/web/delete.pl:79 ../vhffs-panel/web/prefs_save.pl:78
+#: ../vhffs-panel/web/delete.pl:79 ../vhffs-panel/web/prefs_save.pl:77
msgid "This web area doesn't exist in VHFFS database"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:416
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:417
msgid "To accept this subscriber, send a message to\n"
msgstr ""
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:398
-msgid "To put this post on the list, send a message \n"
+#, perl-format
+msgid ""
+"To put this post on the list, send a message to:\n"
+" %s-request@%s\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:419
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:420
msgid "To refuse this subscriber, send a message to\n"
msgstr ""
-#: ../vhffs-listengine/src/archives/show_msg.pl:107
-msgid "To: "
-msgstr ""
-
#: ../vhffs-panel/ajax/help.pl:54 ../vhffs-panel/ajax/help.pl:59
msgid "Topic not found"
msgstr ""
@@ -4250,6 +4126,12 @@
msgid "Unable to add TXT record: %s"
msgstr ""
+#: ../vhffs-panel/group/prefs.pl:135 ../vhffs-panel/group/prefs.pl:169
+msgid ""
+"Unable to add user, he might already be in the group (waiting for addition "
+"or deletion)"
+msgstr ""
+
#: ../vhffs-panel/admin/mail/password_box.pl:105
#, perl-format
msgid "Unable to change password for box %s (%d)"
@@ -4318,8 +4200,8 @@
msgid "Unable to delete this domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:207
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:237
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:194
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:224
msgid ""
"Unable to find default redirection address, please contact administrators"
msgstr ""
@@ -4414,42 +4296,39 @@
msgid "Unable to modify the object"
msgstr ""
-#: ../vhffs-panel/mail/add_forward.pl:99
-msgid "Unable to record changes on this domain"
+#: ../vhffs-panel/group/prefs.pl:112
+msgid "Unable to remove user from group"
msgstr ""
-#: ../vhffs-listengine/src/archives/archives.pl:141
-#: ../vhffs-listengine/src/archives/show_msg.pl:81
-msgid "Undefined list"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:295
+msgid ""
+"Unknow command\n"
+"\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:293
-msgid "Unknow command\n"
-msgstr ""
-
-#: ../vhffs-api/src/Vhffs/Functions.pm:400
-#: ../vhffs-api/src/Vhffs/Functions.pm:405
+#: ../vhffs-api/src/Vhffs/Functions.pm:402
+#: ../vhffs-api/src/Vhffs/Functions.pm:407
msgid "Unknown"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:174
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:210
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:222
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:240
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:252
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:264
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:276
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:287
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:161
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:197
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:209
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:227
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:239
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:251
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:263
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:274
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:286
#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:299
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:312
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:328
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:343
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:355
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:367
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:315
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:330
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:342
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:354
msgid "Unknown error"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:480
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:545
msgid "Unknown month"
msgstr ""
@@ -4458,11 +4337,19 @@
msgid "Unknown status"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:235
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:237
#, perl-format
msgid "Unsubscribe for the list %s was not complete.\n"
msgstr ""
+#: ../vhffs-panel/group/prefs.pl:198
+msgid "Update"
+msgstr ""
+
+#: ../vhffs-panel/group/prefs.pl:202
+msgid "Update avatar"
+msgstr ""
+
#: ../vhffs-panel/admin/user/edit.pl:260
msgid "Update note"
msgstr ""
@@ -4471,34 +4358,30 @@
msgid "Update signature"
msgstr ""
+#: ../vhffs-panel/object/upavatar.pl:118
+msgid "Uploaded file is too big. The maximum size is 20 Kbytes."
+msgstr ""
+
#: ../vhffs-panel/dns/prefs.pl:255
#, perl-format
msgid "Use @ for origin (%s)"
msgstr ""
-#: ../vhffs-panel/admin/web/edit.pl:102 ../vhffs-panel/admin/web/show.pl:115
-msgid "Use Crawl"
-msgstr ""
-
-#: ../vhffs-panel/user/prefs.pl:349
+#: ../vhffs-panel/user/prefs.pl:378
#, perl-format
msgid ""
"Use VHFFS servers to manage this mail,<br>you should use use the host pop.%s "
"or imap.%s to fetch your mails"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:355
+#: ../vhffs-panel/user/prefs.pl:384
msgid "Use anti-spam protection"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:363
+#: ../vhffs-panel/user/prefs.pl:392
msgid "Use anti-virus protection"
msgstr ""
-#: ../vhffs-panel/web/prefs.pl:98
-msgid "Use crawl (useful for web-search engine)"
-msgstr ""
-
#: ../vhffs-panel/admin/pgsql/edit.pl:96 ../vhffs-panel/admin/pgsql/show.pl:95
#: ../vhffs-panel/admin/mysql/edit.pl:96 ../vhffs-panel/admin/mysql/show.pl:94
#: ../vhffs-intl/extra_strings.pl:32
@@ -4514,19 +4397,19 @@
msgid "User Admin"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:248 ../vhffs-api/src/Vhffs/Panel/Main.pm:429
+#: ../vhffs-panel/user/prefs.pl:256 ../vhffs-api/src/Vhffs/Panel/Main.pm:410
msgid "User Preferences"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:166
+#: ../vhffs-panel/subscribe.pl:184
msgid "User Successfully created"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:426
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:407
msgid "User account"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:337
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:338
msgid "User does not exist"
msgstr ""
@@ -4534,7 +4417,7 @@
msgid "User is not active yet"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:86
+#: ../vhffs-panel/acl/view.pl:86 ../vhffs-panel/group/prefs.pl:142
msgid "User not found"
msgstr ""
@@ -4542,11 +4425,15 @@
msgid "User public area"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:198 ../vhffs-panel/user/prefs.pl:253
-#: ../vhffs-panel/acl/view.pl:171 ../vhffs-panel/group/prefs.pl:104
+#: ../vhffs-panel/group/prefs.pl:132 ../vhffs-panel/group/prefs.pl:166
+msgid "User will be added as soon as possible"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:216 ../vhffs-panel/user/prefs.pl:261
+#: ../vhffs-panel/acl/view.pl:171 ../vhffs-panel/group/prefs.pl:192
#: ../vhffs-panel/admin/user/list.pl:79 ../vhffs-panel/admin/su.pl:78
#: ../vhffs-panel/public/user.pl:83 ../vhffs-panel/public/lastusers.pl:78
-#: ../vhffs-panel/lost.pl:54 ../vhffs-api/src/Vhffs/Panel/Commons.pm:54
+#: ../vhffs-panel/lost.pl:54 ../vhffs-api/src/Vhffs/Panel/Commons.pm:62
msgid "Username"
msgstr ""
@@ -4559,8 +4446,8 @@
msgid "Username:"
msgstr ""
-#: ../vhffs-panel/public/lastgroups.pl:75 ../vhffs-panel/public/group.pl:94
-#: ../vhffs-panel/public/allgroups.pl:82
+#: ../vhffs-panel/group/prefs.pl:210 ../vhffs-panel/public/lastgroups.pl:75
+#: ../vhffs-panel/public/group.pl:94 ../vhffs-panel/public/allgroups.pl:82
#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:109
msgid "Users"
msgstr ""
@@ -4573,7 +4460,7 @@
msgid "Users' administration"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:50
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:58
msgid "VHFFS Login"
msgstr ""
@@ -4591,10 +4478,10 @@
#: ../vhffs-panel/admin/user/edit.pl:140
#: ../vhffs-panel/admin/pgsql/edit.pl:116
-#: ../vhffs-panel/admin/group/edit.pl:116
+#: ../vhffs-panel/admin/group/edit.pl:121
#: ../vhffs-panel/admin/repository/edit.pl:116
#: ../vhffs-panel/admin/object/edit.pl:116
-#: ../vhffs-panel/admin/web/edit.pl:129 ../vhffs-panel/admin/mysql/edit.pl:117
+#: ../vhffs-panel/admin/web/edit.pl:112 ../vhffs-panel/admin/mysql/edit.pl:117
#: ../vhffs-panel/admin/cvs/edit.pl:125 ../vhffs-panel/admin/mail/edit.pl:157
#: ../vhffs-intl/extra_strings.pl:18
msgid "Validation refused"
@@ -4604,11 +4491,6 @@
msgid "Vhffs Statistics"
msgstr ""
-#: ../vhffs-listengine/src/archives/archives.pl:68
-#: ../vhffs-listengine/src/archives/archives.pl:175
-msgid "View"
-msgstr ""
-
#: ../vhffs-panel/public/group.pl:211
msgid "View archives"
msgstr ""
@@ -4640,10 +4522,10 @@
#: ../vhffs-panel/admin/user/edit.pl:141
#: ../vhffs-panel/admin/pgsql/edit.pl:117
-#: ../vhffs-panel/admin/group/edit.pl:117
+#: ../vhffs-panel/admin/group/edit.pl:122
#: ../vhffs-panel/admin/repository/edit.pl:117
#: ../vhffs-panel/admin/object/edit.pl:117
-#: ../vhffs-panel/admin/web/edit.pl:130 ../vhffs-panel/admin/mysql/edit.pl:118
+#: ../vhffs-panel/admin/web/edit.pl:113 ../vhffs-panel/admin/mysql/edit.pl:118
#: ../vhffs-panel/admin/cvs/edit.pl:126 ../vhffs-panel/admin/mail/edit.pl:158
#: ../vhffs-intl/extra_strings.pl:19
msgid "Waiting for creation"
@@ -4655,10 +4537,10 @@
#: ../vhffs-panel/admin/user/edit.pl:147
#: ../vhffs-panel/admin/pgsql/edit.pl:123
-#: ../vhffs-panel/admin/group/edit.pl:123
+#: ../vhffs-panel/admin/group/edit.pl:128
#: ../vhffs-panel/admin/repository/edit.pl:123
#: ../vhffs-panel/admin/object/edit.pl:123
-#: ../vhffs-panel/admin/web/edit.pl:136 ../vhffs-panel/admin/mysql/edit.pl:124
+#: ../vhffs-panel/admin/web/edit.pl:119 ../vhffs-panel/admin/mysql/edit.pl:124
#: ../vhffs-panel/admin/cvs/edit.pl:132 ../vhffs-panel/admin/mail/edit.pl:164
#: ../vhffs-intl/extra_strings.pl:25
msgid "Waiting for modification"
@@ -4667,21 +4549,47 @@
#: ../vhffs-panel/mailinglist/prefs.pl:180
#: ../vhffs-panel/admin/user/edit.pl:139
#: ../vhffs-panel/admin/pgsql/edit.pl:115
-#: ../vhffs-panel/admin/group/edit.pl:115
+#: ../vhffs-panel/admin/group/edit.pl:120
#: ../vhffs-panel/admin/repository/edit.pl:115
#: ../vhffs-panel/admin/object/edit.pl:115
-#: ../vhffs-panel/admin/web/edit.pl:128 ../vhffs-panel/admin/mysql/edit.pl:116
+#: ../vhffs-panel/admin/web/edit.pl:111 ../vhffs-panel/admin/mysql/edit.pl:116
#: ../vhffs-panel/admin/cvs/edit.pl:124 ../vhffs-panel/admin/mail/edit.pl:156
#: ../vhffs-intl/extra_strings.pl:17
msgid "Waiting for validation"
msgstr ""
+#: ../vhffs-panel/user/prefs.pl:119
+msgid "Wanted shell is not in the shell list"
+msgstr ""
+
#: ../vhffs-panel/alert.pl:67
msgid "Warn the admin team"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:347
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:474
#, perl-format
+msgid ""
+"We confirm that you REFUSED the subscription of:\n"
+" %s\n"
+"\n"
+"to the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:450
+#, perl-format
+msgid ""
+"We confirm that you accepted the subscription of:\n"
+" %s\n"
+"\n"
+"to the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:376
+#, perl-format
msgid "We offer you the possibility to have one email box on the domain %s"
msgstr ""
@@ -4702,10 +4610,6 @@
msgid "Web Area awaiting validation"
msgstr ""
-#: ../vhffs-panel/web/web_submit.pl:86
-msgid "Web area successfully created !"
-msgstr ""
-
#: ../vhffs-intl/extra_strings.pl:34
msgid "Webarea"
msgstr ""
@@ -4731,11 +4635,11 @@
msgid "Weight"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:493
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:474
msgid "Welcome"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:51
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:59
#, perl-format
msgid "Welcome on %s"
msgstr ""
@@ -4746,36 +4650,36 @@
#: ../vhffs-panel/admin/user/edit.pl:150
#: ../vhffs-panel/admin/pgsql/edit.pl:126
-#: ../vhffs-panel/admin/group/edit.pl:126
+#: ../vhffs-panel/admin/group/edit.pl:131
#: ../vhffs-panel/admin/repository/edit.pl:126
#: ../vhffs-panel/admin/object/edit.pl:126
-#: ../vhffs-panel/admin/web/edit.pl:139 ../vhffs-panel/admin/mysql/edit.pl:127
+#: ../vhffs-panel/admin/web/edit.pl:122 ../vhffs-panel/admin/mysql/edit.pl:127
#: ../vhffs-panel/admin/cvs/edit.pl:135 ../vhffs-panel/admin/mail/edit.pl:167
#: ../vhffs-intl/extra_strings.pl:28
msgid "Will be deleted"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:70
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:78
#, perl-format
msgid "Woah, %s users and %s groups already trust %s"
msgstr ""
#: ../vhffs-panel/svn/prefs.pl:119 ../vhffs-panel/dns/prefs.pl:276
#: ../vhffs-panel/admin/cvs/edit.pl:105 ../vhffs-panel/admin/cvs/show.pl:104
-#: ../vhffs-panel/web/prefs.pl:115 ../vhffs-panel/cvs/prefs.pl:94
+#: ../vhffs-panel/cvs/prefs.pl:94
msgid "Yes"
msgstr ""
#: ../vhffs-panel/mailinglist/prefs.pl:204 ../vhffs-panel/svn/prefs.pl:125
-#: ../vhffs-panel/user/prefs.pl:279 ../vhffs-panel/dns/prefs.pl:269
-#: ../vhffs-panel/pgsql/prefs.pl:111 ../vhffs-panel/group/prefs.pl:100
-#: ../vhffs-panel/repository/prefs.pl:105 ../vhffs-panel/web/prefs.pl:130
+#: ../vhffs-panel/user/prefs.pl:288 ../vhffs-panel/dns/prefs.pl:269
+#: ../vhffs-panel/pgsql/prefs.pl:111 ../vhffs-panel/group/prefs.pl:188
+#: ../vhffs-panel/repository/prefs.pl:106 ../vhffs-panel/web/prefs.pl:111
#: ../vhffs-panel/mysql/prefs.pl:118 ../vhffs-panel/cvs/prefs.pl:100
#: ../vhffs-panel/mail/prefs.pl:133
msgid "Yes I'm sure of what I do"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:222
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:224
msgid "You are not a subscriber on this list.\n"
msgstr ""
@@ -4829,7 +4733,7 @@
msgid "You are not granted to access this page"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:114
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:116
#, perl-format
msgid ""
"You asked to be subscribed to the following list:\n"
@@ -4839,7 +4743,7 @@
msgstr ""
#: ../vhffs-panel/svn/prefs.pl:131 ../vhffs-panel/dns/prefs.pl:261
-#: ../vhffs-panel/web/prefs.pl:123 ../vhffs-panel/mail/prefs.pl:139
+#: ../vhffs-panel/web/prefs.pl:104 ../vhffs-panel/mail/prefs.pl:139
msgid ""
"You can Manage rights on this service for each user in the VHFFS database. "
"Please read help before manage it."
@@ -4849,40 +4753,45 @@
msgid "You can also send a command list in the mail body.\n"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:80
+#: ../vhffs-panel/group/prefs.pl:108
+msgid "You cannot remove the owner of the group"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:85
msgid "You cannot subscribe to VHFFS"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:221
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:223
#, perl-format
msgid "You cannot unsubscribe from the list %s\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:206
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:208
msgid "You demand was refused\n"
msgstr ""
-#: ../vhffs-panel/mailinglist/submit.pl:100
-msgid "You don't own this domain"
+#: ../vhffs-panel/mailinglist/create.pl:79
+msgid "You do not own this domain !"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:177
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:179
#, perl-format
msgid ""
"You have been successfully removed from the following list:\n"
-"\n"
-"%s\n"
+" %s\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:250
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:252
#, perl-format
msgid "You have been successfully removed from the list %s.\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:142
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:158
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:144
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:160
#, perl-format
-msgid "You have been successfully subscribed to the list %s\n"
+msgid ""
+"You have been successfully subscribed to the following mailing list:\n"
+" %s\n"
msgstr ""
#: ../vhffs-panel/mailinglist/index.pl:53 ../vhffs-panel/svn/index.pl:53
@@ -4901,65 +4810,71 @@
msgid "You lost your password? You're a bad guy!"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:144
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:163
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:146
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:165
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:436
msgid "You may get some help on listengine by sending an email to\n"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:161
+#: ../vhffs-panel/user/prefs.pl:169
msgid "You must choose a method for your mail"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:80
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:98
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:82
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:100
msgid "You must confirm your request by sending a confirmation email\n"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:121
+#: ../vhffs-panel/subscribe.pl:139
msgid "You must declare a valid mail address"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:101
+#: ../vhffs-panel/subscribe.pl:119
msgid "You must declare your city"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:97
+#: ../vhffs-panel/subscribe.pl:115
msgid "You must declare your country"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:109
+#: ../vhffs-panel/subscribe.pl:127
msgid "You must declare your firstname"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:113
+#: ../vhffs-panel/subscribe.pl:131
msgid "You must declare your lastname"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:117
+#: ../vhffs-panel/subscribe.pl:135
msgid "You must declare your mail address"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:89
+#: ../vhffs-panel/subscribe.pl:107
msgid "You must declare your username"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:105
+#: ../vhffs-panel/subscribe.pl:123
msgid "You must declare your zipcode"
msgstr ""
-#: ../vhffs-panel/dns/create.pl:43 ../vhffs-panel/cvs/create.pl:73
+#: ../vhffs-panel/mailinglist/create.pl:74 ../vhffs-panel/svn/create.pl:73
+#: ../vhffs-panel/dns/create.pl:43 ../vhffs-panel/pgsql/create.pl:76
+#: ../vhffs-panel/group/prefs.pl:89 ../vhffs-panel/group/create.pl:68
+#: ../vhffs-panel/repository/create.pl:70 ../vhffs-panel/web/create.pl:73
+#: ../vhffs-panel/mysql/create.pl:76 ../vhffs-panel/cvs/create.pl:75
+#: ../vhffs-panel/mail/create.pl:66
msgid "You must enter a description"
msgstr ""
-#: ../vhffs-panel/mailinglist/create.pl:81
-msgid "You need to manage at least a domain to host a mailing-list"
+#: ../vhffs-panel/group/prefs.pl:124
+msgid "You must enter an username"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:161
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:163
msgid "You will receive an email with the decision of administrators.\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:339
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:340
msgid "You're are not allowed to browse panel"
msgstr ""
@@ -4975,13 +4890,12 @@
#: ../vhffs-panel/dns/prefs.pl:93 ../vhffs-panel/dns/prefs.pl:110
#: ../vhffs-panel/pgsql/delete.pl:77 ../vhffs-panel/pgsql/prefs.pl:78
#: ../vhffs-panel/pgsql/prefs_save.pl:85 ../vhffs-panel/group/delete.pl:70
-#: ../vhffs-panel/group/remove_user_from_group.pl:75
-#: ../vhffs-panel/group/prefs.pl:80 ../vhffs-panel/group/join_group.pl:74
-#: ../vhffs-panel/group/prefs_save.pl:78
-#: ../vhffs-panel/repository/delete.pl:82
+#: ../vhffs-panel/group/prefs.pl:74 ../vhffs-panel/group/prefs.pl:83
+#: ../vhffs-panel/group/prefs.pl:102 ../vhffs-panel/group/prefs.pl:117
+#: ../vhffs-panel/group/prefs.pl:158 ../vhffs-panel/repository/delete.pl:82
#: ../vhffs-panel/repository/prefs.pl:83
#: ../vhffs-panel/repository/prefs_save.pl:82
-#: ../vhffs-panel/admin/moderation_submit.pl:78
+#: ../vhffs-panel/admin/moderation_submit.pl:79
#: ../vhffs-panel/admin/moderation.pl:76
#: ../vhffs-panel/admin/broadcast_submit.pl:78
#: ../vhffs-panel/admin/broadcast_delete.pl:78
@@ -4989,7 +4903,7 @@
#: ../vhffs-panel/admin/mail/password_box.pl:96
#: ../vhffs-panel/admin/mail/change_forward.pl:96
#: ../vhffs-panel/web/delete.pl:83 ../vhffs-panel/web/prefs.pl:86
-#: ../vhffs-panel/web/prefs_save.pl:86 ../vhffs-panel/mysql/delete.pl:80
+#: ../vhffs-panel/web/prefs_save.pl:85 ../vhffs-panel/mysql/delete.pl:80
#: ../vhffs-panel/mysql/prefs.pl:84 ../vhffs-panel/mysql/prefs_save.pl:87
#: ../vhffs-panel/cvs/delete.pl:82 ../vhffs-panel/cvs/prefs.pl:80
#: ../vhffs-panel/cvs/prefs_save.pl:81 ../vhffs-panel/mail/delete.pl:86
@@ -5101,7 +5015,7 @@
msgid "Your Subversion repository request : %s"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:218
+#: ../vhffs-panel/subscribe.pl:237
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"
@@ -5123,18 +5037,18 @@
msgid "Your projects"
msgstr ""
-#: ../vhffs-panel/cvs/create.pl:71
+#: ../vhffs-panel/cvs/create.pl:73
msgid ""
"Your repository name is not correct. It must contains at least 3 caracters"
msgstr ""
-#: ../vhffs-panel/cvs/create.pl:69
+#: ../vhffs-panel/cvs/create.pl:71
msgid ""
"Your repository name is not correct. It must contains only caracter and "
"numbers"
msgstr ""
-#: ../vhffs-panel/admin/moderation_submit.pl:101 ../vhffs-irc/modobot.pl:393
+#: ../vhffs-irc/modobot.pl:393
msgid "Your request for a "
msgstr ""
@@ -5143,12 +5057,29 @@
msgid "Your request on %s"
msgstr ""
-#: ../vhffs-panel/admin/moderation_submit.pl:111
-msgid "Your request on VHFFS platform"
+#: ../vhffs-panel/admin/moderation_submit.pl:102
+#, perl-format
+msgid "Your request on %s platform"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:217
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:434
+#, perl-format
msgid ""
+"Your subscription was accepted to the following mailing list:\n"
+" %s\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:462
+#, perl-format
+msgid ""
+"Your subscription was refused to the following mailing list:\n"
+" %s\n"
+"\n"
+"Have a nice day.\n"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:236
+msgid ""
"Your username. It must contains only alphanumeric characters in lowercase, "
"its length must be between 3 and 12 chars"
msgstr ""
@@ -5158,16 +5089,16 @@
msgid "Your web hosting request for the servername : %s "
msgstr ""
-#: ../vhffs-panel/subscribe.pl:125
+#: ../vhffs-panel/subscribe.pl:143
msgid "Your zipcode is not correct! Please enter a correct zipcode"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:202 ../vhffs-panel/user/prefs.pl:257
+#: ../vhffs-panel/subscribe.pl:220 ../vhffs-panel/user/prefs.pl:265
#: ../vhffs-panel/admin/user/edit.pl:106 ../vhffs-panel/admin/user/show.pl:106
msgid "Zipcode"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:102
+#: ../vhffs-panel/user/prefs.pl:103
msgid "Zipcode is not correct !"
msgstr ""
@@ -5176,11 +5107,11 @@
msgid "[%s] You've been added to the list %s"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:347
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:349
msgid "cannot be removed from the list\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:313
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:315
msgid "cannot be removed.\n"
msgstr ""
@@ -5227,7 +5158,7 @@
msgid "help_user_projects"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:362
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:364
#, perl-format
msgid "in the moderation queue of the list %s"
msgstr ""
@@ -5236,35 +5167,35 @@
msgid "lang [fr|us|es]\t - set listengine language\n"
msgstr ""
-#: ../vhffs-listengine/src/listengine.pl:781
+#: ../vhffs-listengine/src/listengine.pl:926
#, perl-format
msgid "listengine - list of messages to moderate for %s"
msgstr ""
-#: ../vhffs-listengine/src/listengine.pl:664
-#: ../vhffs-listengine/src/listengine.pl:686
-#: ../vhffs-listengine/src/listengine.pl:697
+#: ../vhffs-listengine/src/listengine.pl:809
+#: ../vhffs-listengine/src/listengine.pl:831
+#: ../vhffs-listengine/src/listengine.pl:842
msgid "listengine help"
msgstr ""
-#: ../vhffs-listengine/src/listengine.pl:729
-#: ../vhffs-listengine/src/listengine.pl:740
-#: ../vhffs-listengine/src/listengine.pl:756
-#: ../vhffs-listengine/src/listengine.pl:768
-#: ../vhffs-listengine/src/listengine.pl:795
-#: ../vhffs-listengine/src/listengine.pl:806
+#: ../vhffs-listengine/src/listengine.pl:874
+#: ../vhffs-listengine/src/listengine.pl:885
+#: ../vhffs-listengine/src/listengine.pl:901
+#: ../vhffs-listengine/src/listengine.pl:913
+#: ../vhffs-listengine/src/listengine.pl:940
+#: ../vhffs-listengine/src/listengine.pl:951
msgid "listengine moderation"
msgstr ""
-#: ../vhffs-listengine/src/listengine.pl:714
+#: ../vhffs-listengine/src/listengine.pl:859
msgid "listengine result command"
msgstr ""
-#: ../vhffs-listengine/src/listengine.pl:833
+#: ../vhffs-listengine/src/listengine.pl:992
msgid "listengine: unknown command"
msgstr ""
-#: ../vhffs-panel/subscribe.pl:199 ../vhffs-panel/user/prefs.pl:254
+#: ../vhffs-panel/subscribe.pl:217 ../vhffs-panel/user/prefs.pl:262
msgid "mail"
msgstr ""
@@ -5272,24 +5203,24 @@
msgid "ml adress here..."
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:56
-msgid "moderate XXXXX\t\t\t - moderate the message with message-id XXXXX\n"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:58
+msgid "moderate XXXXX\t\t\t - accept the message with message-id XXXXX\n"
msgstr ""
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:59
+msgid ""
+"moderate accept XXXXX\t\t\t - accept the message with message-id XXXXX\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:61
msgid "moderate list\t\t\t - give the message list for moderation\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:58
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:60
msgid ""
"moderate refused XXXXX\t\t\t - refuse the message with message-id XXXXX\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:57
-msgid ""
-"moderate validate XXXXX\t\t\t - moderate the message with message-id XXXXX\n"
-msgstr ""
-
#: ../vhffs-panel/admin/object/edit.pl:112
msgid "no date"
msgstr ""
@@ -5298,8 +5229,8 @@
msgid "no information about date"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:312
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:346
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:314
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:348
#, perl-format
msgid "present in the moderation queue for the list %s"
msgstr ""
@@ -5308,44 +5239,51 @@
msgid "subscribe\t - subscribe the shipper to the list\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:399
-#, perl-format
-msgid "to %s-request@%s with the following subject : \"moderate %s\" \n"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:56
+msgid ""
+"subscription accept XXXXX\t\t - accept the subscription with key XXXXX\n"
msgstr ""
-#: ../vhffs-listengine/src/archives/show_msg.pl:99
-#, perl-format
-msgid "unknown message-id t: %s"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:57
+msgid ""
+"subscription refuse XXXXX\t\t - refuse the subscription with key XXXXX\n"
msgstr ""
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:52
msgid "unsubscribe\t - unsubscribe from this list\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:64
-msgid "user info user@xxxxxxxxxx\t\t - show this user's informations\n"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:66
+msgid "user info user@xxxxxxxxxx\t\t - show user information\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:62
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:64
msgid "user right RIGHT user@xxxxxxxxxx\t - change right for this user\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:61
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:63
msgid ""
"user subscribe user@xxxxxxxxxx\t\t - register the user user@xxxxxxxxxx on "
"the list\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:60
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:62
msgid ""
"user unsubscribe user@xxxxxxxxxx\t - delete user user@xxxxxxxxxx from list\n"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:330
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:332
#, perl-format
msgid "was removed from the moderation queue from the list %s"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:363
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:365
msgid "was sent on the list.\n"
msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:399
+#, perl-format
+msgid ""
+"with the following subject :\n"
+" \"moderate %s\" \n"
+msgstr ""
Modified: trunk/vhffs-panel/admin/moderation_submit.pl
===================================================================
--- trunk/vhffs-panel/admin/moderation_submit.pl 2007-07-13 15:03:49 UTC (rev 724)
+++ trunk/vhffs-panel/admin/moderation_submit.pl 2007-07-13 16:45:19 UTC (rev 725)
@@ -48,6 +48,7 @@
use Vhffs::Services::Httpd;
use Vhffs::Acl;
use Vhffs::Constants;
+use Vhffs::ObjectFactory;
my $panel = new Vhffs::Panel::Main();
if(!$panel) {
exit 0;
@@ -83,7 +84,7 @@
use Vhffs::Object;
my $oid = $cgi->param("OID");
my $uidasker = $cgi->param("UID_ASKER");
- my $object = Vhffs::Object::get_by_oid( $vhffs , $oid );
+ my $object = Vhffs::ObjectFactory::fetch_object( $vhffs , $oid );
if( ( ! defined $oid ) || ( ! defined $object ) || ( ! defined $accept ) )
{
@@ -97,18 +98,17 @@
my $userbis = Vhffs::User::get_by_uid( $vhffs , $object->get_owner_uid );
if( defined $userbis )
{
- my $mail;
- $mail = gettext('Your request for a ');
- $mail .= Vhffs::Functions::type_string_from_type_id($object->get_type);
- $mail .= (' on ');
- $mail .= $vhffs->get_config->get_host_name;
- $mail .= gettext(" was accepted\nPlease wait while we are creating your object\n");
- $mail .= gettext("Cheers,\nThe Moderator and Admin team\n");
- $mail .= "-----\n";
- $mail .= $vhffs->get_config->get_host_name()."\n";
- $mail .= $vhffs->get_config->get_panel_url();
+ my $mail = gettext("Hello,\n\nYour request for a %s (%s) on %s was accepted.\nPlease wait while we are creating your object.\n\nCheers,\n\nThe Moderator and Admin Team\n\n---------\n%s\n%s");
+ my $subject = gettext('Your request on %s platform');
+ $mail = sprintf($mail,
+ Vhffs::Functions::type_string_from_type_id($object->get_type()),
+ $object->get_label(),
+ $vhffs->get_config->get_host_name(),
+ $vhffs->get_config->get_host_name(),
+ $vhffs->get_config->get_panel_url());
- my $subject = gettext("Your request on VHFFS platform");
+ $subject = sprintf($subject,
+ $vhffs->get_config->get_host_name());
Vhffs::Functions::send_mail( $vhffs->get_config->get_moderator_mail , $userbis->get_mail , $subject , $mail );
if( $vhffs->get_config->use_notation == 1 )