[vhffs-dev] [623] Use the same template fragment for service index and group index. |
[ Thread Index |
Date Index
| More vhffs.org/vhffs-dev Archives
]
Revision: 623
Author: beuss
Date: 2007-05-23 06:15:23 +0000 (Wed, 23 May 2007)
Log Message:
-----------
Use the same template fragment for service index and group index.
Modified Paths:
--------------
branches/vhffs-design/vhffs-api/src/Vhffs/Panel/Main.pm
branches/vhffs-design/vhffs-intl/compile_po.sh
branches/vhffs-design/vhffs-intl/result/en_US/LC_MESSAGES/vhffs.mo
branches/vhffs-design/vhffs-intl/result/es_ES/LC_MESSAGES/vhffs.mo
branches/vhffs-design/vhffs-intl/result/fr_FR/LC_MESSAGES/vhffs.mo
branches/vhffs-design/vhffs-intl/src/en.po
branches/vhffs-design/vhffs-intl/src/es.po
branches/vhffs-design/vhffs-intl/src/fr.po
branches/vhffs-design/vhffs-intl/src/vhffs.pot
branches/vhffs-design/vhffs-panel/cvs/index.pl
branches/vhffs-design/vhffs-panel/dns/index.pl
branches/vhffs-design/vhffs-panel/mail/index.pl
branches/vhffs-design/vhffs-panel/mailinglist/index.pl
branches/vhffs-design/vhffs-panel/mysql/index.pl
branches/vhffs-design/vhffs-panel/pgsql/index.pl
branches/vhffs-design/vhffs-panel/repository/index.pl
branches/vhffs-design/vhffs-panel/svn/index.pl
branches/vhffs-design/vhffs-panel/templates/group/info.tmpl
branches/vhffs-design/vhffs-panel/templates/misc/service_index.tmpl
branches/vhffs-design/vhffs-panel/web/index.pl
Modified: branches/vhffs-design/vhffs-api/src/Vhffs/Panel/Main.pm
===================================================================
--- branches/vhffs-design/vhffs-api/src/Vhffs/Panel/Main.pm 2007-05-22 11:38:50 UTC (rev 622)
+++ branches/vhffs-design/vhffs-api/src/Vhffs/Panel/Main.pm 2007-05-23 06:15:23 UTC (rev 623)
@@ -379,7 +379,7 @@
push @$items, {service => 'pgsql', label => gettext('PgSQL') } if( $config->use_postgres );
push @$items, {service => 'cvs', label => gettext('CVS') } if( $config->use_cvs );
push @$items, {service => 'svn', label => gettext('SVN') } if( $config->use_svn );
- push @$items, {service => 'dns', label => gettext('DNS') } if( $config->use_dns );
+ push @$items, {service => 'dns', label => gettext('Domain names') } if( $config->use_dns );
push @$items, {service => 'repository', label => gettext('Dl repos') } if( $config->use_repository );
push @$items, {service => 'mail', label => gettext('Mail') } if( $config->use_mail );
push @$items, {service => 'mailinglist', label => gettext('ML') } if( $config->use_mailing );
@@ -449,259 +449,71 @@
$templatedir = $vhffs->get_config->get_templatedir;
- if( ! defined( $group ) )
- {
- $template = new HTML::Template( filename => $templatedir."/misc/simplemsg.tmpl" );
- $template->param( MESSAGE => gettext("Group error" ) );
- }
- else
- {
- $template = new HTML::Template( filename => $templatedir."/group/info.tmpl" );
- $self->set_title( sprintf( gettext("Group %s") , $group->get_groupname ) );
- $template->param( THEME => $self->{theme} );
-
- # Quota stuff
- $template->param( QUOTA_TEXT => sprintf( gettext("Quota (used/total) : %s/%s") , $group->get_quota_used , $group->get_quota ) );
- # Yes, sorry quota progress image has to be 300px width max
- $template->param( QUOTA_WIDTH => ( ($group->get_quota_used / $group->get_quota) * 300 ) );
+ if( ! defined( $group ) ) {
+ $template = new HTML::Template( filename => $templatedir."/misc/simplemsg.tmpl" );
+ $template->param( MESSAGE => gettext("Group error" ) );
+ } else {
+ $template = new HTML::Template( filename => $templatedir."/group/info.tmpl" );
+ $self->set_title( sprintf( gettext("Group %s") , $group->get_groupname ) );
+ $template->param( THEME => $self->{theme} );
- $template->param( NEW => gettext('New') );
- $template->param( TEXT_PREFS => gettext('Preferences') );
-
- if( $vhffs->get_config->use_web == 1 )
- {
- $temp = "";
- $template->param( WEBAREA => gettext("Webarea for this group") );
- $objects = Vhffs::Services::Httpd::getall( $vhffs , undef , undef , $group );
- if( @$objects != 0 )
- {
- foreach $object ( @{$objects} )
- {
- $subtemplate = new HTML::Template( filename => $templatedir."/misc/group_service.tmpl" );
- $subtemplate->param( SERVICE => "web" );
- $subtemplate->param( VALUE => $object->get_servername );
- $subtemplate->param( TEXT => gettext("Go to admin") );
- $subtemplate->param( HISTORY => gettext("View history") );
- $subtemplate->param( OID => $object->get_oid );
- $temp .= $subtemplate->output;
- }
- }
- else
- {
- $temp = gettext("No webarea for this group");
- }
- $template->param( WEBAREA_VALUES => $temp );
- }
- if( $vhffs->get_config->use_mysql == 1 )
- {
- $temp = "";
- $template->param( MYSQL => gettext("Mysql database for this group") );
- $objects = Vhffs::Services::Mysql::getall( $vhffs , undef , undef , $group );
- if( defined $objects )
- {
- foreach $object ( @{$objects} )
- {
- $subtemplate = new HTML::Template( filename => $templatedir."/misc/group_service.tmpl" );
- $subtemplate->param( SERVICE => "mysql" );
- $subtemplate->param( VALUE => $object->get_dbname );
- $subtemplate->param( TEXT => gettext("Go to admin") );
- $subtemplate->param( HISTORY => gettext("View history") );
- $subtemplate->param( OID => $object->get_oid );
- $temp .= $subtemplate->output;
- }
- }
- else
- {
- $temp = gettext("No mysql database for this group");
- }
- $template->param( MYSQL_VALUES => $temp );
- }
+ # Quota stuff
+ $template->param( QUOTA_TEXT => sprintf( gettext("Quota (used/total) : %s/%s") , $group->get_quota_used , $group->get_quota ) );
+ # Yes, sorry quota progress image has to be 300px width max
+ $template->param( QUOTA_WIDTH => ( ($group->get_quota_used / $group->get_quota) * 300 ) );
+ my $gid = $group->get_gid;
+ my $config = $vhffs->get_config;
+ my $services_list = '';
- if( $vhffs->get_config->use_postgres == 1 )
- {
- $temp = "";
- $template->param( PGSQL => gettext("PostgreSQL database for this group") );
- $objects = Vhffs::Services::Postgres::getall( $vhffs , undef , undef , $group );
- if( defined $objects )
- {
- foreach $object ( @{$objects} )
- {
- $subtemplate = new HTML::Template( filename => $templatedir."/misc/group_service.tmpl" );
- $subtemplate->param( SERVICE => "pgsql" );
- $subtemplate->param( VALUE => $object->get_dbname );
- $subtemplate->param( TEXT => gettext("Go to admin") );
- $subtemplate->param( HISTORY => gettext("View history") );
- $subtemplate->param( OID => $object->get_oid );
- $temp .= $subtemplate->output;
- }
- }
- else
- {
- $temp = gettext("No PostgreSQL database for this group");
- }
- $template->param( PGSQL_VALUES => $temp );
- }
+ $template->param( TEXT_PREFS => gettext('Preferences') );
+ if($config->use_web) {
+ my $webs = Vhffs::Panel::Web::getall_per_group( $vhffs, $gid );
+ $services_list .= $self->create_service_index('web', $webs);
+ }
- if( $vhffs->get_config->use_cvs == 1 )
- {
- $temp = "";
- $template->param( CVS => gettext("CVS repositories for this group") );
- $objects = Vhffs::Services::Cvs::getall( $vhffs , undef , undef , $group );
- if( defined $objects )
- {
- foreach $object ( @{$objects} )
- {
- $subtemplate = new HTML::Template( filename => $templatedir."/misc/group_service.tmpl" );
- $subtemplate->param( SERVICE => "cvs" );
- $subtemplate->param( VALUE => $object->get_cvsroot );
- $subtemplate->param( TEXT => gettext("Go to admin") );
- $subtemplate->param( HISTORY => gettext("View history") );
- $subtemplate->param( OID => $object->get_oid );
- $temp .= $subtemplate->output;
- }
- }
- else
- {
- $temp = gettext("No CVS repository for this group");
- }
- $template->param( CVS_VALUES => $temp );
- }
+ if($config->use_mysql) {
+ my $mysql = Vhffs::Panel::Mysql::getall_per_group( $vhffs, $gid );
+ $services_list .= $self->create_service_index('mysql', $mysql);
+ }
+ if($config->use_postgres) {
+ my $pg = Vhffs::Panel::Pgsql::getall_per_group( $vhffs, $gid );
+ $services_list .= $self->create_service_index('pgsql', $pg);
+ }
- if( $vhffs->get_config->use_svn == 1 )
- {
- $temp = "";
- $template->param( SVN => gettext("SVN repositories for this group") );
- $objects = Vhffs::Services::Svn::getall( $vhffs , undef , undef , $group );
- if( defined $objects )
- {
- foreach $object ( @{$objects} )
- {
- $subtemplate = new HTML::Template( filename => $templatedir."/misc/group_service.tmpl" );
- $subtemplate->param( SERVICE => "svn" );
- $subtemplate->param( VALUE => $object->get_title );
- $subtemplate->param( TEXT => gettext("Go to admin") );
- $subtemplate->param( HISTORY => gettext("View history") );
- $subtemplate->param( OID => $object->get_oid );
- $temp .= $subtemplate->output;
- }
- }
- else
- {
- $temp = gettext("No SVN repository for this group");
- }
- $template->param( SVN_VALUES => $temp );
- }
+ if($config->use_cvs) {
+ my $cvs = Vhffs::Panel::Cvs::getall_per_group( $vhffs, $gid );
+ $services_list .= $self->create_service_index('cvs', $cvs);
+ }
+ if($config->use_svn) {
+ my $svn = Vhffs::Panel::Svn::getall_per_group( $vhffs, $gid );
+ $services_list .= $self->create_service_index('svn', $svn);
+ }
+ if($config->use_mailing) {
+ my $ml = Vhffs::Panel::Mailinglist::getall_per_group( $vhffs, $gid );
+ $services_list .= $self->create_service_index('mailing', $ml);
+ }
- if( $vhffs->get_config->use_mailing == 1 )
- {
- $temp = "";
- $template->param( MLS => gettext("Mailing-lists for this group") );
- $objects = Vhffs::Services::Mailing::getall( $vhffs , undef , undef , $group );
- if( defined $objects )
- {
- foreach $object ( @{$objects} )
- {
- $subtemplate = new HTML::Template( filename => $templatedir."/misc/group_service.tmpl" );
- $subtemplate->param( SERVICE => "mailinglist" );
- $subtemplate->param( VALUE => $object->get_listname );
- $subtemplate->param( TEXT => gettext("Go to admin") );
- $subtemplate->param( HISTORY => gettext("View history") );
- $subtemplate->param( OID => $object->get_oid );
- $temp .= $subtemplate->output;
- }
- }
- else
- {
- $temp = gettext("No Mailing-list for this group");
- }
- $template->param( MLS_VALUES => $temp );
- }
+ if($config->use_mail) {
+ my $mail = Vhffs::Panel::Mail::getall_per_group( $vhffs, $gid );
+ $services_list .= $self->create_service_index('mail', $mail);
+ }
+ if($config->use_repository) {
+ my $repos = Vhffs::Panel::Repository::getall_per_group( $vhffs, $gid );
+ $services_list .= $self->create_service_index('repo', $repos);
+ }
- if( $vhffs->get_config->use_mail == 1 )
- {
- $temp = "";
- $template->param( MAILS => gettext("Mail domain for this group") );
- $objects = Vhffs::Services::Mail::getall( $vhffs , undef , undef , $group );
- if( defined $objects )
- {
- foreach $object ( @{$objects} )
- {
- $subtemplate = new HTML::Template( filename => $templatedir."/misc/group_service.tmpl" );
- $subtemplate->param( SERVICE => "mail" );
- $subtemplate->param( VALUE => $object->get_domain );
- $subtemplate->param( TEXT => gettext("Go to admin") );
- $subtemplate->param( HISTORY => gettext("View history") );
- $subtemplate->param( OID => $object->get_oid );
- $temp .= $subtemplate->output;
- }
- }
- else
- {
- $temp = gettext("No Mail domain for this group");
- }
- $template->param( MAILS_VALUES => $temp );
+ if($config->use_dns) {
+ my $dns = Vhffs::Panel::DNS::getall_per_group( $vhffs, $gid );
+ $services_list .= $self->create_service_index('dns', $dns);
+ }
+ $template->param( SERVICES => $services_list );
}
-
-
- if( $vhffs->get_config->use_repository == 1 )
- {
- $temp = "";
- $template->param( REPOSITORY => gettext("Download repositories for this group") );
- $objects = Vhffs::Services::Repository::getall( $vhffs , undef , undef , $group );
- if( defined $objects )
- {
- foreach $object ( @{$objects} )
- {
- $subtemplate = new HTML::Template( filename => $templatedir."/misc/group_service.tmpl" );
- $subtemplate->param( SERVICE => "repository" );
- $subtemplate->param( VALUE => $object->get_name );
- $subtemplate->param( TEXT => gettext("Go to admin") );
- $subtemplate->param( HISTORY => gettext("View history") );
- $subtemplate->param( OID => $object->get_oid );
- $temp .= $subtemplate->output;
- }
- }
- else
- {
- $temp = gettext("No download repository for this group");
- }
- $template->param( REPOSITORY_VALUES => $temp );
- }
-
- if( $vhffs->get_config->use_dns == 1 )
- {
- $temp = "";
- $template->param( DNS => gettext("Domains for this group") );
- $objects = Vhffs::Services::DNS::getall( $vhffs , undef , undef , $group );
- if( defined $objects )
- {
- foreach $object ( @{$objects} )
- {
- $subtemplate = new HTML::Template( filename => $templatedir."/misc/group_service.tmpl" );
- $subtemplate->param( SERVICE => "dns" );
- $subtemplate->param( VALUE => $object->get_domain );
- $subtemplate->param( TEXT => gettext("Go to admin") );
- $subtemplate->param( HISTORY => gettext("View history") );
- $subtemplate->param( OID => $object->get_oid );
- $temp .= $subtemplate->output;
- }
- }
- else
- {
- $temp = gettext("No DNS domain for this group");
- }
- $template->param( DNS_VALUES => $temp );
- }
-
-
-
- }
return $template;
}
@@ -870,8 +682,8 @@
my %service_labels = (
cvs => 'CVS repositories',
dns => 'Domain names',
- mail => 'Mail Domains',
- mailing => 'Mailing Lists',
+ mail => 'Mail domains',
+ mailing => 'Mailing lists',
mysql => 'MySQL DBs',
pgsql => 'PostgreSQL DBs',
repo => 'Download repositories',
@@ -884,14 +696,15 @@
my $templatedir = $self->{templatedir};
my $svclabel = $service_labels{$service};
- $self->set_title( sprintf(gettext('%s for %s'), gettext($svclabel), $group->get_groupname) );
-
my $template = new HTML::Template( filename => $templatedir.'/misc/service_index.tmpl', global_vars => 1 );
- $template->param( TEXT_TITLE => sprintf(gettext('%s for %s'), gettext($svclabel), $group->get_groupname) );
+
+ my $format = sprintf( '%s for %%s', $svclabel );
+ $template->param( TEXT_TITLE => sprintf(gettext($format), $group->get_groupname) );
$template->param( SERVICE => $service );
$template->param( ADMIN_TEXT => gettext('Go to administration') );
$template->param( HISTORY_TEXT => gettext('History') );
$template->param( NEW => gettext('New') );
+ $template->param( NO_SERVICE_TEXT => gettext('None') );
$template->param( SERVICES => $services);
return $template->output;
Modified: branches/vhffs-design/vhffs-intl/compile_po.sh
===================================================================
--- branches/vhffs-design/vhffs-intl/compile_po.sh 2007-05-22 11:38:50 UTC (rev 622)
+++ branches/vhffs-design/vhffs-intl/compile_po.sh 2007-05-23 06:15:23 UTC (rev 623)
@@ -4,7 +4,10 @@
# with variables so we can easily add translation
# do it...
+echo 'French'
msgfmt --check --verbose --output-file result/fr_FR/LC_MESSAGES/vhffs.mo src/fr.po
+echo 'Spanish'
msgfmt --check --verbose --output-file result/es_ES/LC_MESSAGES/vhffs.mo src/es.po
+echo 'English'
msgfmt --check --verbose --output-file result/en_US/LC_MESSAGES/vhffs.mo src/en.po
Modified: branches/vhffs-design/vhffs-intl/result/en_US/LC_MESSAGES/vhffs.mo
===================================================================
(Binary files differ)
Modified: branches/vhffs-design/vhffs-intl/result/es_ES/LC_MESSAGES/vhffs.mo
===================================================================
(Binary files differ)
Modified: branches/vhffs-design/vhffs-intl/result/fr_FR/LC_MESSAGES/vhffs.mo
===================================================================
(Binary files differ)
Modified: branches/vhffs-design/vhffs-intl/src/en.po
===================================================================
--- branches/vhffs-design/vhffs-intl/src/en.po 2007-05-22 11:38:50 UTC (rev 622)
+++ branches/vhffs-design/vhffs-intl/src/en.po 2007-05-23 06:15:23 UTC (rev 623)
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: VHFFS 4.1 English strings\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-17 21:20+0200\n"
+"POT-Creation-Date: 2007-05-23 08:06+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"
@@ -68,21 +68,21 @@
msgid "<new site>."
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:324
+#: ../vhffs-panel/dns/prefs.pl:327
#, perl-format
msgid "@ represents the origin (%s)"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:341
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:354
msgid ""
"A CNAME, A or AAAA record with the same name already exists for this domain"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:126
+#: ../vhffs-panel/dns/prefs.pl:128
msgid "A Record deleted"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:121
+#: ../vhffs-panel/dns/prefs.pl:123
msgid "A Record updated"
msgstr ""
@@ -100,43 +100,38 @@
"\n"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:149
+#: ../vhffs-panel/dns/prefs.pl:151
msgid "A record added"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:138
+#: ../vhffs-panel/dns/prefs.pl:140
msgid "AAAA Record deleted"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:133
+#: ../vhffs-panel/dns/prefs.pl:135
msgid "AAAA Record updated"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:144
+#: ../vhffs-panel/dns/prefs.pl:146
msgid "AAAA record added"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:148
+#: ../vhffs-panel/acl/view.pl:127
msgid "ACL Administration"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:167
+#: ../vhffs-panel/acl/view.pl:147
msgid "ACL level"
msgstr ""
-#: ../vhffs-panel/acl/add_acl_group.pl:106
-#: ../vhffs-panel/acl/add_acl_user.pl:106
-msgid "ACL successfully added"
+#: ../vhffs-panel/acl/view.pl:92 ../vhffs-panel/acl/view.pl:107
+msgid "ACL sucessfuly added"
msgstr ""
-#: ../vhffs-panel/acl/submit.pl:108
-msgid "ACL successfully deleted"
+#: ../vhffs-panel/acl/view.pl:122
+msgid "ACL updated"
msgstr ""
-#: ../vhffs-panel/acl/submit.pl:119
-msgid "ACL successfully modified"
-msgstr ""
-
#: ../vhffs-panel/admin/moderation.pl:115
#: ../vhffs-panel/admin/moderation.pl:157
#: ../vhffs-panel/admin/moderation.pl:198
@@ -178,27 +173,27 @@
msgid "Activated"
msgstr ""
-#: ../vhffs-panel/mailinglist/prefs.pl:156 ../vhffs-panel/dns/prefs.pl:277
+#: ../vhffs-panel/mailinglist/prefs.pl:156 ../vhffs-panel/dns/prefs.pl:280
msgid "Add !"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:290
+#: ../vhffs-panel/dns/prefs.pl:293
msgid "Add a CNAME field to your domain"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:282
+#: ../vhffs-panel/dns/prefs.pl:285
msgid "Add a MX field to your domain"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:298
+#: ../vhffs-panel/dns/prefs.pl:301
msgid "Add a NS field to your domain"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:304
+#: ../vhffs-panel/dns/prefs.pl:307
msgid "Add a SRV record to your domain"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:316
+#: ../vhffs-panel/dns/prefs.pl:319
msgid "Add a TXT record"
msgstr ""
@@ -218,11 +213,11 @@
msgid "Add a user in this group"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:251
+#: ../vhffs-panel/dns/prefs.pl:253
msgid "Add an A record"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:252
+#: ../vhffs-panel/dns/prefs.pl:254
msgid "Add an AAAA record"
msgstr ""
@@ -265,8 +260,8 @@
msgid "Admin Download repository"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:257 ../vhffs-panel/web/prefs.pl:122
-#: ../vhffs-panel/mail/prefs.pl:137
+#: ../vhffs-panel/svn/prefs.pl:130 ../vhffs-panel/dns/prefs.pl:260
+#: ../vhffs-panel/web/prefs.pl:122 ../vhffs-panel/mail/prefs.pl:138
msgid "Admin Rights on this object (ACL)"
msgstr ""
@@ -317,31 +312,31 @@
msgid "All"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:245
+#: ../vhffs-panel/dns/prefs.pl:247
msgid "All A TYPE for your domain name"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:246
+#: ../vhffs-panel/dns/prefs.pl:248
msgid "All AAAA TYPE for your domain name"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:289
+#: ../vhffs-panel/dns/prefs.pl:292
msgid "All CNAME TYPE for your domain name"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:248
+#: ../vhffs-panel/dns/prefs.pl:250
msgid "All CNAME for your domain name"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:247 ../vhffs-panel/dns/prefs.pl:281
+#: ../vhffs-panel/dns/prefs.pl:249 ../vhffs-panel/dns/prefs.pl:284
msgid "All MX TYPE for your domain name"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:297
+#: ../vhffs-panel/dns/prefs.pl:300
msgid "All NS TYPE for your domain name"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:303
+#: ../vhffs-panel/dns/prefs.pl:306
msgid "All SRV records for your domain name"
msgstr ""
@@ -349,7 +344,7 @@
msgid "All Subversion repositories lists"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:317
+#: ../vhffs-panel/dns/prefs.pl:320
msgid "All TXT records for your domain name"
msgstr ""
@@ -390,11 +385,11 @@
msgid "Already exists for this domain or bad parameters. Check your domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:293
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:306
msgid "An MX record with the same name already exists for this domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:316
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:329
msgid "An NS record with the same name already exists for this domain"
msgstr ""
@@ -578,23 +573,23 @@
msgid "Are you SURE you want DELETE this Mail Area ?"
msgstr ""
-#: ../vhffs-panel/mysql/prefs.pl:116
+#: ../vhffs-panel/mysql/prefs.pl:117
msgid "Are you SURE you want DELETE this MySQL database ?"
msgstr ""
-#: ../vhffs-panel/pgsql/prefs.pl:109
+#: ../vhffs-panel/pgsql/prefs.pl:110
msgid "Are you SURE you want DELETE this PostgreSQL database ?"
msgstr ""
-#: ../vhffs-panel/web/prefs.pl:128
+#: ../vhffs-panel/web/prefs.pl:129
msgid "Are you SURE you want DELETE this Web Area ?"
msgstr ""
-#: ../vhffs-panel/cvs/prefs.pl:98
+#: ../vhffs-panel/cvs/prefs.pl:99
msgid "Are you SURE you want DELETE this cvs repository ?"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:265
+#: ../vhffs-panel/dns/prefs.pl:268
msgid "Are you SURE you want DELETE this domain ?"
msgstr ""
@@ -738,17 +733,13 @@
msgstr ""
#: ../vhffs-panel/mailinglist/submit.pl:96 ../vhffs-panel/svn/prefs.pl:82
-#: ../vhffs-panel/svn/create.pl:64 ../vhffs-panel/acl/submit.pl:85
+#: ../vhffs-panel/svn/create.pl:64 ../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/acl/add_acl_group.pl:86
-#: ../vhffs-panel/acl/add_acl_user.pl:86
-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
@@ -776,7 +767,7 @@
#: ../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/dns/delete.pl:79 ../vhffs-panel/dns/prefs.pl:77
+#: ../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 ""
@@ -789,18 +780,22 @@
msgid "CGI problem"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:188
+#: ../vhffs-panel/dns/prefs.pl:190
msgid "CNAME Record added"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:183
+#: ../vhffs-panel/dns/prefs.pl:185
msgid "CNAME Record deleted"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:179
+#: ../vhffs-panel/dns/prefs.pl:181
msgid "CNAME Record updated"
msgstr ""
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:380
+msgid "CVS"
+msgstr ""
+
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:145
msgid "CVS Admin"
msgstr ""
@@ -817,11 +812,12 @@
msgid "CVS Search"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:525
-msgid "CVS repositories for this group"
+#: ../vhffs-panel/cvs/index.pl:58
+#, perl-format
+msgid "CVS repositories for %s"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:118
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:147
msgid "CVS repository"
msgstr ""
@@ -841,32 +837,27 @@
msgid "CVS stats"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:136
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:165
msgid "CVSweb"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:165 ../vhffs-panel/acl/view.pl:189
-#: ../vhffs-panel/acl/view.pl:236
+#: ../vhffs-panel/acl/view.pl:139 ../vhffs-panel/acl/view.pl:165
msgid "Can destroy this service"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:164 ../vhffs-panel/acl/view.pl:188
-#: ../vhffs-panel/acl/view.pl:235
+#: ../vhffs-panel/acl/view.pl:138 ../vhffs-panel/acl/view.pl:164
msgid "Can manage ACL for this service"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:163 ../vhffs-panel/acl/view.pl:187
-#: ../vhffs-panel/acl/view.pl:234
+#: ../vhffs-panel/acl/view.pl:137 ../vhffs-panel/acl/view.pl:163
msgid "Can modify this service"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:162 ../vhffs-panel/acl/view.pl:186
-#: ../vhffs-panel/acl/view.pl:233
+#: ../vhffs-panel/acl/view.pl:136 ../vhffs-panel/acl/view.pl:162
msgid "Can view this service"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:161 ../vhffs-panel/acl/view.pl:185
-#: ../vhffs-panel/acl/view.pl:232
+#: ../vhffs-panel/acl/view.pl:135 ../vhffs-panel/acl/view.pl:161
msgid "Can't access"
msgstr ""
@@ -948,6 +939,11 @@
msgid "Cannot get information on this object"
msgstr ""
+#: ../vhffs-panel/acl/view.pl:71
+#, perl-format
+msgid "Cannot get informations on object #%d"
+msgstr ""
+
#: ../vhffs-panel/mailinglist/delete.pl:82
#: ../vhffs-panel/mailinglist/save_sig.pl:81
#: ../vhffs-panel/mailinglist/add_sub.pl:83
@@ -955,7 +951,7 @@
#: ../vhffs-panel/mailinglist/save_options.pl:85
#: ../vhffs-panel/mailinglist/change_right.pl:85
#: ../vhffs-panel/mailinglist/del_member.pl:83 ../vhffs-panel/svn/prefs.pl:93
-#: ../vhffs-panel/dns/delete.pl:84 ../vhffs-panel/dns/prefs.pl:84
+#: ../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
@@ -964,11 +960,6 @@
msgid "Cannot get informations on this object"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:134
-#, perl-format
-msgid "Cannot get informations on this object %s %s"
-msgstr ""
-
#: ../vhffs-panel/admin/stats.pl:73
msgid "Cannot get statistics"
msgstr ""
@@ -1023,11 +1014,11 @@
msgid "Cc: "
msgstr ""
-#: ../vhffs-panel/mail/prefs.pl:210
+#: ../vhffs-panel/mail/prefs.pl:211
msgid "Change Forward"
msgstr ""
-#: ../vhffs-panel/admin/mail/edit.pl:142 ../vhffs-panel/mail/prefs.pl:151
+#: ../vhffs-panel/admin/mail/edit.pl:142 ../vhffs-panel/mail/prefs.pl:152
msgid "Change Password"
msgstr ""
@@ -1130,16 +1121,16 @@
msgid "Crawl"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:142
-#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:147
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:152
+#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:176
#: ../vhffs-api/src/Vhffs/Panel/Mailinglist.pm:146
-#: ../vhffs-api/src/Vhffs/Panel/Web.pm:136
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:117
-#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:119
+#: ../vhffs-api/src/Vhffs/Panel/Web.pm:158
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:146
+#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:146
#: ../vhffs-api/src/Vhffs/Panel/Group.pm:163
-#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:140
-#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:118
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:151
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:162
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:128
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:164
msgid "Create"
msgstr ""
@@ -1216,7 +1207,7 @@
msgid "Current avatar"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:370
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:372
msgid "Current group:"
msgstr ""
@@ -1232,11 +1223,12 @@
msgid "DB Search"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:152
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:382
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:165
msgid "DNS"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:240
+#: ../vhffs-panel/dns/prefs.pl:242
#, perl-format
msgid "DNS Administration - %s"
msgstr ""
@@ -1253,8 +1245,8 @@
msgid "DNS stats"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:142
-#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:120
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:164
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:130
msgid "Database Access"
msgstr ""
@@ -1262,20 +1254,20 @@
msgid "Database Name"
msgstr ""
-#: ../vhffs-panel/ajax/help.pl:46 ../vhffs-api/src/Vhffs/Panel/DNS.pm:204
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:240
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:252
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:270
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:282
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:294
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:306
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:317
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:329
+#: ../vhffs-panel/ajax/help.pl:46 ../vhffs-api/src/Vhffs/Panel/DNS.pm:217
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:253
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:265
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:283
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:295
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:307
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:319
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:330
#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:342
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:358
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:373
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:385
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:397
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:355
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:371
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:386
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:398
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:410
msgid "Database error"
msgstr ""
@@ -1312,14 +1304,14 @@
msgstr ""
#: ../vhffs-panel/mailinglist/prefs.pl:206 ../vhffs-panel/svn/prefs.pl:127
-#: ../vhffs-panel/user/prefs.pl:281 ../vhffs-panel/dns/prefs.pl:268
-#: ../vhffs-panel/dns/prefs.pl:325 ../vhffs-panel/dns/prefs.pl:337
-#: ../vhffs-panel/dns/prefs.pl:350 ../vhffs-panel/dns/prefs.pl:362
-#: ../vhffs-panel/dns/prefs.pl:378 ../vhffs-panel/dns/prefs.pl:389
-#: ../vhffs-panel/dns/prefs.pl:405 ../vhffs-panel/pgsql/prefs.pl:112
+#: ../vhffs-panel/user/prefs.pl:281 ../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:131 ../vhffs-panel/mysql/prefs.pl:119
-#: ../vhffs-panel/cvs/prefs.pl:101 ../vhffs-panel/mail/prefs.pl:135
+#: ../vhffs-panel/web/prefs.pl:132 ../vhffs-panel/mysql/prefs.pl:120
+#: ../vhffs-panel/cvs/prefs.pl:102 ../vhffs-panel/mail/prefs.pl:135
msgid "Delete"
msgstr ""
@@ -1335,19 +1327,19 @@
msgid "Delete from list"
msgstr ""
-#: ../vhffs-panel/pgsql/prefs.pl:107
+#: ../vhffs-panel/pgsql/prefs.pl:108
msgid "Delete this PostgreSQL database"
msgstr ""
-#: ../vhffs-panel/mysql/prefs.pl:114
+#: ../vhffs-panel/mysql/prefs.pl:115
msgid "Delete this database"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:263
+#: ../vhffs-panel/dns/prefs.pl:266
msgid "Delete this domain name from the VHFFS platform"
msgstr ""
-#: ../vhffs-panel/admin/mail/edit.pl:144 ../vhffs-panel/mail/prefs.pl:211
+#: ../vhffs-panel/admin/mail/edit.pl:144 ../vhffs-panel/mail/prefs.pl:212
msgid "Delete this forward"
msgstr ""
@@ -1355,7 +1347,7 @@
msgid "Delete this list"
msgstr ""
-#: ../vhffs-panel/admin/mail/edit.pl:129 ../vhffs-panel/mail/prefs.pl:152
+#: ../vhffs-panel/admin/mail/edit.pl:129 ../vhffs-panel/mail/prefs.pl:153
msgid "Delete this mail account"
msgstr ""
@@ -1368,7 +1360,7 @@
msgstr ""
#: ../vhffs-panel/group/prefs.pl:97 ../vhffs-panel/repository/prefs.pl:102
-#: ../vhffs-panel/cvs/prefs.pl:96
+#: ../vhffs-panel/cvs/prefs.pl:97
msgid "Delete this project"
msgstr ""
@@ -1376,7 +1368,7 @@
msgid "Delete this repository"
msgstr ""
-#: ../vhffs-panel/web/prefs.pl:126
+#: ../vhffs-panel/web/prefs.pl:127
msgid "Delete this web area"
msgstr ""
@@ -1403,20 +1395,24 @@
msgid "Description of your webarea"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:292
+#: ../vhffs-panel/dns/prefs.pl:295
msgid "Destination"
msgstr ""
-#: ../vhffs-panel/mail/prefs.pl:165
+#: ../vhffs-panel/mail/prefs.pl:166
msgid "Disable anti-spam"
msgstr ""
-#: ../vhffs-panel/mail/prefs.pl:184
+#: ../vhffs-panel/mail/prefs.pl:185
msgid "Disable anti-virus"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:144
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:119
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:383
+msgid "Dl repos"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:154
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:148
msgid "Documentation"
msgstr ""
@@ -1434,8 +1430,9 @@
msgid "Domain Name"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:655
-msgid "Domains for this group"
+#: ../vhffs-panel/dns/index.pl:58
+#, perl-format
+msgid "Domain names for %s"
msgstr ""
#: ../vhffs-panel/admin/web/edit.pl:103 ../vhffs-panel/admin/web/show.pl:117
@@ -1446,11 +1443,12 @@
msgid "Download Repository"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:630
-msgid "Download repositories for this group"
+#: ../vhffs-panel/repository/index.pl:58
+#, perl-format
+msgid "Download repositories for %s"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:120
+#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:147
msgid "Download repository"
msgstr ""
@@ -1518,11 +1516,11 @@
msgid "Email is not correct !"
msgstr ""
-#: ../vhffs-panel/mail/prefs.pl:169
+#: ../vhffs-panel/mail/prefs.pl:170
msgid "Enable anti-spam"
msgstr ""
-#: ../vhffs-panel/mail/prefs.pl:188
+#: ../vhffs-panel/mail/prefs.pl:189
msgid "Enable anti-virus"
msgstr ""
@@ -1530,6 +1528,14 @@
msgid "Enter a mail address to catch all email for this domain"
msgstr ""
+#: ../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 ""
+
#: ../vhffs-panel/admin/broadcast_submit.pl:95
msgid "Error !"
msgstr ""
@@ -1617,6 +1623,20 @@
msgid "Firstname is not correct !"
msgstr ""
+#: ../vhffs-panel/svn/prefs.pl:133
+msgid "Fix permissions in this repository"
+msgstr ""
+
+#: ../vhffs-panel/svn/prefs.pl:135
+msgid "Fix them !"
+msgstr ""
+
+#: ../vhffs-panel/svn/prefs.pl:134
+msgid ""
+"Fixing permissions on a repository solve permission access on the "
+"repository. Can be helpful if you encounter problems"
+msgstr ""
+
#: ../vhffs-panel/admin/mail/delete_forward.pl:109
#, perl-format
msgid "Forward %s deleted"
@@ -1692,20 +1712,12 @@
msgid "Go on login page"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:458
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:482
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:508
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:534
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:560
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:587
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:613
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:639
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:664
-msgid "Go to admin"
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:704
+msgid "Go to administration"
msgstr ""
-#: ../vhffs-panel/mailinglist/prefs.pl:216 ../vhffs-panel/svn/prefs.pl:159
-#: ../vhffs-panel/dns/prefs.pl:420
+#: ../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 ""
@@ -1733,7 +1745,7 @@
msgid "Group"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:441
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:457
#, perl-format
msgid "Group %s"
msgstr ""
@@ -1742,10 +1754,18 @@
msgid "Group Admin"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:436
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:454
msgid "Group error"
msgstr ""
+#: ../vhffs-panel/acl/view.pl:101
+msgid "Group not found"
+msgstr ""
+
+#: ../vhffs-panel/acl/view.pl:116
+msgid "Group or user not found"
+msgstr ""
+
#: ../vhffs-panel/cvs/create.pl:93
msgid "Group owning this CVS"
msgstr ""
@@ -1778,13 +1798,17 @@
msgid "Group public area"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:151 ../vhffs-panel/admin/group/edit.pl:93
+#: ../vhffs-panel/acl/view.pl:176 ../vhffs-panel/admin/group/edit.pl:93
#: ../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/acl/view.pl:133
+msgid "Groupname:"
+msgstr ""
+
#: ../vhffs-panel/public/user.pl:89 ../vhffs-panel/public/lastusers.pl:84
msgid "Groups"
msgstr ""
@@ -1853,24 +1877,25 @@
#: ../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/Svn.pm:159
-#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:171
-#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:162
-#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:170
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:705
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:169
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:181
+#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:191
+#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:199
#: ../vhffs-api/src/Vhffs/Panel/Mailinglist.pm:161
#: ../vhffs-api/src/Vhffs/Panel/Mailinglist.pm:166
-#: ../vhffs-api/src/Vhffs/Panel/Web.pm:152
-#: ../vhffs-api/src/Vhffs/Panel/Web.pm:161
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:133
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:145
-#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:133
-#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:144
+#: ../vhffs-api/src/Vhffs/Panel/Web.pm:174
+#: ../vhffs-api/src/Vhffs/Panel/Web.pm:183
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:162
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:174
+#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:160
+#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:171
#: ../vhffs-api/src/Vhffs/Panel/Group.pm:178
-#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:156
-#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:165
-#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:135
-#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:144
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:171
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:178
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:187
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:145
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:154
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:184
msgid "History"
msgstr ""
@@ -1890,8 +1915,8 @@
msgid "Homepage of public area"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:307 ../vhffs-panel/dns/prefs.pl:392
-#: ../vhffs-panel/dns/prefs.pl:408
+#: ../vhffs-panel/dns/prefs.pl:310 ../vhffs-panel/dns/prefs.pl:395
+#: ../vhffs-panel/dns/prefs.pl:411
msgid "Host"
msgstr ""
@@ -1912,11 +1937,11 @@
msgid "I've lost my password"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:275
+#: ../vhffs-panel/dns/prefs.pl:278
msgid "IP"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:299
+#: ../vhffs-panel/dns/prefs.pl:302
msgid "IP/host of your NS"
msgstr ""
@@ -1962,30 +1987,30 @@
msgid "In hope to keep you in our hosting service"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:239
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:251
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:281
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:252
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:264
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:294
msgid "Invalid IP address"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:269
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:282
msgid "Invalid IP v6 address"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:339
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:352
msgid "Invalid alias"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:328
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:341
msgid "Invalid destination"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:353
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:369
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:366
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:382
msgid "Invalid destination domain name"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:340
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:353
msgid "Invalid destination host"
msgstr ""
@@ -1993,12 +2018,12 @@
msgid "Invalid domain name"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:305
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:318
msgid "Invalid host"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:291
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:315
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:304
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:328
msgid "Invalid hostname"
msgstr ""
@@ -2006,38 +2031,38 @@
msgid "Invalid mail domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:354
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:370
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:367
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:383
msgid "Invalid port"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:236
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:266
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:383
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:249
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:279
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:396
msgid "Invalid prefix"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:292
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:355
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:371
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:305
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:368
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:384
msgid "Invalid priority"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:351
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:364
msgid "Invalid protocol syntax"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:201
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:249
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:279
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:303
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:326
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:367
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:394
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:214
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:262
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:292
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:316
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:339
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:380
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:407
msgid "Invalid record"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:352
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:365
msgid "Invalid service syntax"
msgstr ""
@@ -2047,12 +2072,12 @@
"all in lowercase"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:356
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:372
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:369
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:385
msgid "Invalid weight"
msgstr ""
-#: ../vhffs-panel/cvs/prefs.pl:92
+#: ../vhffs-panel/cvs/prefs.pl:93
msgid "Is this CVS repository public ??"
msgstr ""
@@ -2110,11 +2135,11 @@
msgid "Lastname is not correct !"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:249
+#: ../vhffs-panel/dns/prefs.pl:251
msgid "List all A reccords"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:250
+#: ../vhffs-panel/dns/prefs.pl:252
msgid "List all AAAA reccords"
msgstr ""
@@ -2134,7 +2159,7 @@
msgid "List all SVN repo"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:315
+#: ../vhffs-panel/dns/prefs.pl:318
msgid "List all TXT records"
msgstr ""
@@ -2263,15 +2288,19 @@
msgid "Logout"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:165
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:385
+msgid "ML"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:167
msgid "MX Record added"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:160
+#: ../vhffs-panel/dns/prefs.pl:162
msgid "MX Record deleted"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:155
+#: ../vhffs-panel/dns/prefs.pl:157
msgid "MX Record updated"
msgstr ""
@@ -2280,7 +2309,8 @@
msgstr ""
#: ../vhffs-panel/admin/user/edit.pl:108 ../vhffs-panel/admin/user/show.pl:108
-#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:148
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:384
+#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:177
msgid "Mail"
msgstr ""
@@ -2308,8 +2338,9 @@
msgid "Mail deleted"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:604
-msgid "Mail domain for this group"
+#: ../vhffs-panel/mail/index.pl:58
+#, perl-format
+msgid "Mail domains for %s"
msgstr ""
#: ../vhffs-panel/mailinglist/create.pl:88
@@ -2350,6 +2381,11 @@
msgid "Mailing list address is invalid"
msgstr ""
+#: ../vhffs-panel/mailinglist/index.pl:58
+#, perl-format
+msgid "Mailing lists for %s"
+msgstr ""
+
#: ../vhffs-panel/admin/broadcast_submit.pl:91
msgid "Mailing successfully added"
msgstr ""
@@ -2366,10 +2402,6 @@
msgid "Mailing-lists Admin"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:578
-msgid "Mailing-lists for this group"
-msgstr ""
-
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:89
msgid "Manage mailings"
msgstr ""
@@ -2487,19 +2519,15 @@
msgstr ""
#: ../vhffs-panel/svn/prefs.pl:121 ../vhffs-panel/user/prefs.pl:265
-#: ../vhffs-panel/dns/prefs.pl:327 ../vhffs-panel/dns/prefs.pl:339
-#: ../vhffs-panel/dns/prefs.pl:352 ../vhffs-panel/dns/prefs.pl:363
-#: ../vhffs-panel/dns/prefs.pl:390 ../vhffs-panel/dns/prefs.pl:406
-#: ../vhffs-panel/pgsql/prefs.pl:106 ../vhffs-panel/group/prefs.pl:96
-#: ../vhffs-panel/web/prefs.pl:119 ../vhffs-panel/mysql/prefs.pl:113
-#: ../vhffs-panel/cvs/prefs.pl:95
+#: ../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/mysql/prefs.pl:114 ../vhffs-panel/cvs/prefs.pl:96
msgid "Modify"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:190 ../vhffs-panel/acl/view.pl:237
-msgid "Modify this ACL"
-msgstr ""
-
#: ../vhffs-panel/admin/cvs/list.pl:97
msgid "Modify this CVS repository"
msgstr ""
@@ -2540,7 +2568,7 @@
msgid "Modify this user"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:272
+#: ../vhffs-panel/dns/prefs.pl:275
msgid "Must we redirect the DNS on our servers ?"
msgstr ""
@@ -2550,6 +2578,10 @@
msgid "My Projects"
msgstr ""
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:378
+msgid "MySQL"
+msgstr ""
+
#: ../vhffs-panel/mysql/prefs.pl:97
msgid "MySQL Administration"
msgstr ""
@@ -2558,7 +2590,12 @@
msgid "MySQL DB"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:141
+#: ../vhffs-panel/mysql/index.pl:58
+#, perl-format
+msgid "MySQL DBs for %s"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:163
msgid "MySQL Databases"
msgstr ""
@@ -2578,23 +2615,19 @@
msgid "MySQL stats"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:473
-msgid "Mysql database for this group"
-msgstr ""
-
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:211
msgid "NS Admin"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:174
+#: ../vhffs-panel/dns/prefs.pl:176
msgid "NS Record added"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:170
+#: ../vhffs-panel/dns/prefs.pl:172
msgid "NS Record deleted"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:296
+#: ../vhffs-panel/dns/prefs.pl:299
msgid "NS TYPE"
msgstr ""
@@ -2603,11 +2636,11 @@
msgid "Name"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:276
+#: ../vhffs-panel/dns/prefs.pl:279
msgid "Name for reccord"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:319
+#: ../vhffs-panel/dns/prefs.pl:322
msgid "Name for record"
msgstr ""
@@ -2615,41 +2648,37 @@
msgid "Name of the database"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:283
+#: ../vhffs-panel/dns/prefs.pl:286
msgid "Name of your MX"
msgstr ""
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:706
+msgid "New"
+msgstr ""
+
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:266
#, perl-format
msgid "New language is: %s\n"
msgstr ""
-#: ../vhffs-panel/svn/prefs.pl:120 ../vhffs-panel/dns/prefs.pl:274
+#: ../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:94
+#: ../vhffs-panel/web/prefs.pl:116 ../vhffs-panel/cvs/prefs.pl:95
msgid "No"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:331
+#: ../vhffs-panel/dns/prefs.pl:334
msgid "No A type found"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:343
+#: ../vhffs-panel/dns/prefs.pl:346
msgid "No AAAA type found"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:370
+#: ../vhffs-panel/dns/prefs.pl:373
msgid "No CNAME available on this domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:542
-msgid "No CVS repository for this group"
-msgstr ""
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:672
-msgid "No DNS domain for this group"
-msgstr ""
-
#: ../vhffs-panel/admin/moderation.pl:207
msgid "No DNS to validate"
msgstr ""
@@ -2658,7 +2687,7 @@
msgid "No Group to validate"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:357
+#: ../vhffs-panel/dns/prefs.pl:360
msgid "No MX reccord for this domain"
msgstr ""
@@ -2666,31 +2695,15 @@
msgid "No Mail Area to validate"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:621
-msgid "No Mail domain for this group"
-msgstr ""
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:595
-msgid "No Mailing-list for this group"
-msgstr ""
-
-#: ../vhffs-panel/dns/prefs.pl:383
+#: ../vhffs-panel/dns/prefs.pl:386
msgid "No NS available on this domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:516
-msgid "No PostgreSQL database for this group"
-msgstr ""
-
-#: ../vhffs-panel/dns/prefs.pl:399
+#: ../vhffs-panel/dns/prefs.pl:402
msgid "No SRV available on this domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:568
-msgid "No SVN repository for this group"
-msgstr ""
-
-#: ../vhffs-panel/dns/prefs.pl:412
+#: ../vhffs-panel/dns/prefs.pl:415
msgid "No TXT available on this domain"
msgstr ""
@@ -2711,10 +2724,6 @@
msgid "No database to validate"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:647
-msgid "No download repository for this group"
-msgstr ""
-
#: ../vhffs-panel/object/upavatar.pl:105
msgid "No enough rights"
msgstr ""
@@ -2752,10 +2761,6 @@
msgid "No modification can be applied. Please check your fields."
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:490
-msgid "No mysql database for this group"
-msgstr ""
-
#: ../vhffs-panel/admin/moderation.pl:251
#: ../vhffs-panel/admin/moderation.pl:339
#: ../vhffs-panel/admin/moderation.pl:511
@@ -2782,26 +2787,26 @@
msgid "No webarea"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:466
-msgid "No webarea for this group"
-msgstr ""
-
#: ../vhffs-panel/public/group.pl:139
msgid "No website available for this group"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:280 ../vhffs-panel/dns/prefs.pl:267
-#: ../vhffs-panel/web/prefs.pl:130
+#: ../vhffs-panel/user/prefs.pl:280 ../vhffs-panel/dns/prefs.pl:270
+#: ../vhffs-panel/web/prefs.pl:131
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:111 ../vhffs-panel/group/prefs.pl:101
-#: ../vhffs-panel/repository/prefs.pl:106 ../vhffs-panel/mysql/prefs.pl:118
-#: ../vhffs-panel/cvs/prefs.pl:100 ../vhffs-panel/mail/prefs.pl:134
+#: ../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/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:707
+msgid "None"
+msgstr ""
+
#: ../vhffs-panel/mailinglist/add_sub.pl:95
#: ../vhffs-panel/mailinglist/change_right.pl:97
#: ../vhffs-panel/mailinglist/del_member.pl:95
@@ -2812,14 +2817,14 @@
msgid "Note successfully modified"
msgstr ""
+#: ../vhffs-panel/svn/prefs.pl:138
+msgid "Notify changes on mailing-list :"
+msgstr ""
+
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:473
msgid "November"
msgstr ""
-#: ../vhffs-panel/acl/submit.pl:89 ../vhffs-panel/acl/add_acl_user.pl:90
-msgid "Object Error"
-msgstr ""
-
#: ../vhffs-panel/admin/object/list.pl:87
msgid "Object ID"
msgstr ""
@@ -2828,8 +2833,8 @@
msgid "Object id"
msgstr ""
-#: ../vhffs-panel/mailinglist/prefs.pl:217 ../vhffs-panel/svn/prefs.pl:160
-#: ../vhffs-panel/dns/prefs.pl:421
+#: ../vhffs-panel/mailinglist/prefs.pl:218 ../vhffs-panel/svn/prefs.pl:161
+#: ../vhffs-panel/dns/prefs.pl:424
msgid "Object part"
msgstr ""
@@ -2845,8 +2850,8 @@
msgid "October"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:259 ../vhffs-panel/web/prefs.pl:124
-#: ../vhffs-panel/mail/prefs.pl:139
+#: ../vhffs-panel/svn/prefs.pl:132 ../vhffs-panel/dns/prefs.pl:262
+#: ../vhffs-panel/web/prefs.pl:124 ../vhffs-panel/mail/prefs.pl:140
msgid "Ok, go to ACL admin"
msgstr ""
@@ -2874,7 +2879,7 @@
msgid "Open, no approval required"
msgstr ""
-#: ../vhffs-panel/mailinglist/prefs.pl:110
+#: ../vhffs-panel/mailinglist/prefs.pl:110 ../vhffs-panel/svn/prefs.pl:137
msgid "Options"
msgstr ""
@@ -2951,6 +2956,10 @@
msgid "Passwords don't match"
msgstr ""
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:379
+msgid "PgSQL"
+msgstr ""
+
#: ../vhffs-intl/extra_strings.pl:37
msgid "PgSQL DB"
msgstr ""
@@ -3028,7 +3037,7 @@
msgid "Popboxes for"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:308 ../vhffs-panel/dns/prefs.pl:393
+#: ../vhffs-panel/dns/prefs.pl:311 ../vhffs-panel/dns/prefs.pl:396
msgid "Port"
msgstr ""
@@ -3036,12 +3045,13 @@
msgid "PostgreSQL Administration"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:119
-msgid "PostgreSQL Databases"
+#: ../vhffs-panel/pgsql/index.pl:58
+#, perl-format
+msgid "PostgreSQL DBs for %s"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:499
-msgid "PostgreSQL database for this group"
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:129
+msgid "PostgreSQL Databases"
msgstr ""
#: ../vhffs-panel/pgsql/create.pl:65
@@ -3064,8 +3074,12 @@
msgid "Posting control:"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:237
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:267
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:469
+msgid "Preferences"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:250
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:280
msgid "Prefix already exists"
msgstr ""
@@ -3073,15 +3087,15 @@
msgid "Prefix on subject"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:309 ../vhffs-panel/dns/prefs.pl:394
+#: ../vhffs-panel/dns/prefs.pl:312 ../vhffs-panel/dns/prefs.pl:397
msgid "Priority"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:284
+#: ../vhffs-panel/dns/prefs.pl:287
msgid "Priority of your MX"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:353
+#: ../vhffs-panel/dns/prefs.pl:356
msgid "Priority: "
msgstr ""
@@ -3117,11 +3131,15 @@
msgid "Project Successfully modified"
msgstr ""
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:373
+msgid "Project home"
+msgstr ""
+
#: ../vhffs-panel/user/projects.pl:57
msgid "Projects you contribute to"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:305
+#: ../vhffs-panel/dns/prefs.pl:308
msgid "Protocol"
msgstr ""
@@ -3151,7 +3169,7 @@
#: ../vhffs-panel/repository/prefs.pl:100
#: ../vhffs-panel/admin/group/edit.pl:110
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:444
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:461
#, perl-format
msgid "Quota (used/total) : %s/%s"
msgstr ""
@@ -3186,17 +3204,17 @@
msgid "Recopy the code"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:203
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:250
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:280
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:304
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:327
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:368
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:395
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:216
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:263
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:293
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:317
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:340
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:381
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:408
msgid "Record does not exists"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:202
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:215
msgid "Record type doesn't exists"
msgstr ""
@@ -3234,28 +3252,33 @@
msgid "Rights successfully changed"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:211
+#: ../vhffs-panel/dns/prefs.pl:213
msgid "SRV Record added"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:200
+#: ../vhffs-panel/dns/prefs.pl:202
msgid "SRV Record deleted"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:196
+#: ../vhffs-panel/dns/prefs.pl:198
msgid "SRV Record updated"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:302
+#: ../vhffs-panel/dns/prefs.pl:305
msgid "SRV TYPE"
msgstr ""
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:381
+msgid "SVN"
+msgstr ""
+
#: ../vhffs-intl/extra_strings.pl:39
msgid "SVN Repository"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:551
-msgid "SVN repositories for this group"
+#: ../vhffs-panel/svn/index.pl:58
+#, perl-format
+msgid "SVN repositories for %s"
msgstr ""
#: ../vhffs-panel/public/group.pl:174
@@ -3270,7 +3293,7 @@
msgid "SVN stats"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:161
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:171
msgid "SVNweb"
msgstr ""
@@ -3414,7 +3437,7 @@
msgid "Send an email with the subject \"help\" to the following address: \n"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:170
+#: ../vhffs-panel/acl/view.pl:150
msgid "Send it"
msgstr ""
@@ -3440,7 +3463,7 @@
msgid "Servername error. Please enter a valid servername"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:306
+#: ../vhffs-panel/dns/prefs.pl:309
msgid "Service"
msgstr ""
@@ -3547,13 +3570,12 @@
msgid "Signature"
msgstr ""
-#: ../vhffs-panel/acl/submit.pl:115 ../vhffs-panel/acl/add_acl_group.pl:102
-#: ../vhffs-panel/acl/add_acl_user.pl:102
+#: ../vhffs-panel/acl/view.pl:90 ../vhffs-panel/acl/view.pl:105
msgid "Sorry, can't add ACL"
msgstr ""
-#: ../vhffs-panel/acl/submit.pl:104
-msgid "Sorry, can't delete this ACL"
+#: ../vhffs-panel/acl/view.pl:120
+msgid "Sorry, can't update ACL"
msgstr ""
#: ../vhffs-panel/mail/spambox.pl:101
@@ -3594,7 +3616,7 @@
msgid "Su !"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:293
+#: ../vhffs-panel/dns/prefs.pl:296
msgid "Subdomain name"
msgstr ""
@@ -3607,8 +3629,8 @@
msgid "Subject: "
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:285 ../vhffs-panel/dns/prefs.pl:291
-#: ../vhffs-panel/dns/prefs.pl:312
+#: ../vhffs-panel/dns/prefs.pl:288 ../vhffs-panel/dns/prefs.pl:294
+#: ../vhffs-panel/dns/prefs.pl:315
msgid "Submit"
msgstr ""
@@ -3648,7 +3670,7 @@
msgid "Subversion Admin"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:143
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:153
msgid "Subversion repository"
msgstr ""
@@ -3694,15 +3716,15 @@
msgid "Suspended before deletion"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:216
+#: ../vhffs-panel/dns/prefs.pl:218
msgid "TXT Record added"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:227
+#: ../vhffs-panel/dns/prefs.pl:229
msgid "TXT Record deleted"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:222
+#: ../vhffs-panel/dns/prefs.pl:224
msgid "TXT Record updated"
msgstr ""
@@ -3718,12 +3740,12 @@
msgid "Tell us what the use of this web space will be"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:318
+#: ../vhffs-panel/dns/prefs.pl:321
msgid "Text"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:384
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:396
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:397
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:409
msgid "Text can't be empty"
msgstr ""
@@ -3795,10 +3817,6 @@
msgid "The following address %s is not on the list %s\n"
msgstr ""
-#: ../vhffs-panel/acl/add_acl_group.pl:90
-msgid "The group does not exist"
-msgstr ""
-
#: ../vhffs-panel/group/project_submit.pl:78
msgid "The groupname can have no more than 12 caracters."
msgstr ""
@@ -3883,10 +3901,10 @@
msgstr ""
#: ../vhffs-panel/mailinglist/prefs.pl:202 ../vhffs-panel/svn/prefs.pl:123
-#: ../vhffs-panel/dns/prefs.pl:264 ../vhffs-panel/pgsql/prefs.pl:108
+#: ../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:127 ../vhffs-panel/mysql/prefs.pl:115
-#: ../vhffs-panel/cvs/prefs.pl:97 ../vhffs-panel/mail/prefs.pl:131
+#: ../vhffs-panel/web/prefs.pl:128 ../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."
@@ -3938,7 +3956,7 @@
msgid "This group will be deleted"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:357
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:370
msgid "This host is already registered for this service"
msgstr ""
@@ -3989,7 +4007,7 @@
#: ../vhffs-panel/mailinglist/save_options.pl:89
#: ../vhffs-panel/mailinglist/change_right.pl:89
#: ../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:98
+#: ../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
@@ -4058,10 +4076,6 @@
msgid "This subversion repository will NOT be deleted"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:124
-msgid "This type of object is not treated in the panel."
-msgstr ""
-
#: ../vhffs-panel/group/remove_user_from_group.pl:79
msgid "This user does not exists "
msgstr ""
@@ -4214,41 +4228,41 @@
msgid "UID of owner"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:135
+#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:162
msgid "URL"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:148
+#: ../vhffs-panel/dns/prefs.pl:150
#, perl-format
msgid "Unable to add A record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:143
+#: ../vhffs-panel/dns/prefs.pl:145
#, perl-format
msgid "Unable to add AAAA record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:187
+#: ../vhffs-panel/dns/prefs.pl:189
#, perl-format
msgid "Unable to add CNAME record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:164
+#: ../vhffs-panel/dns/prefs.pl:166
#, perl-format
msgid "Unable to add MX record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:173
+#: ../vhffs-panel/dns/prefs.pl:175
#, perl-format
msgid "Unable to add NS record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:210
+#: ../vhffs-panel/dns/prefs.pl:212
#, perl-format
msgid "Unable to add SRV record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:215
+#: ../vhffs-panel/dns/prefs.pl:217
#, perl-format
msgid "Unable to add TXT record: %s"
msgstr ""
@@ -4272,37 +4286,37 @@
msgid "Unable to change virus protection status for %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:125
+#: ../vhffs-panel/dns/prefs.pl:127
#, perl-format
msgid "Unable to delete A record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:137
+#: ../vhffs-panel/dns/prefs.pl:139
#, perl-format
msgid "Unable to delete AAAA record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:182
+#: ../vhffs-panel/dns/prefs.pl:184
#, perl-format
msgid "Unable to delete CNAME record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:159
+#: ../vhffs-panel/dns/prefs.pl:161
#, perl-format
msgid "Unable to delete MX record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:169
+#: ../vhffs-panel/dns/prefs.pl:171
#, perl-format
msgid "Unable to delete NS record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:199
+#: ../vhffs-panel/dns/prefs.pl:201
#, perl-format
msgid "Unable to delete SRV record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:226
+#: ../vhffs-panel/dns/prefs.pl:228
#, perl-format
msgid "Unable to delete TXT record: %s"
msgstr ""
@@ -4321,12 +4335,32 @@
msgid "Unable to delete this domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:238
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:268
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:251
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:281
msgid ""
"Unable to find default redirection address, please contact administrators"
msgstr ""
+#: ../vhffs-panel/cvs/index.pl:61
+msgid "Unable to get CVS repositories"
+msgstr ""
+
+#: ../vhffs-panel/dns/index.pl:61
+msgid "Unable to get DNS"
+msgstr ""
+
+#: ../vhffs-panel/mysql/index.pl:61
+msgid "Unable to get MySQL databases."
+msgstr ""
+
+#: ../vhffs-panel/pgsql/index.pl:61
+msgid "Unable to get PgSQL databases"
+msgstr ""
+
+#: ../vhffs-panel/svn/index.pl:61
+msgid "Unable to get SVN repositories"
+msgstr ""
+
#: ../vhffs-panel/admin/mail/delete_box.pl:76
#: ../vhffs-panel/admin/mail/password_box.pl:77
#: ../vhffs-panel/admin/mail/delete_forward.pl:77
@@ -4340,32 +4374,48 @@
msgid "Unable to get information on mail domain %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:120
+#: ../vhffs-panel/mail/index.pl:61
+msgid "Unable to get mail domains"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/index.pl:61
+msgid "Unable to get mailing lists"
+msgstr ""
+
+#: ../vhffs-panel/repository/index.pl:61
+msgid "Unable to get repositories"
+msgstr ""
+
+#: ../vhffs-panel/web/index.pl:61
+msgid "Unable to get webareas"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:122
#, perl-format
msgid "Unable to modify A record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:132
+#: ../vhffs-panel/dns/prefs.pl:134
#, perl-format
msgid "Unable to modify AAAA record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:178
+#: ../vhffs-panel/dns/prefs.pl:180
#, perl-format
msgid "Unable to modify CNAME record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:154
+#: ../vhffs-panel/dns/prefs.pl:156
#, perl-format
msgid "Unable to modify MX record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:195
+#: ../vhffs-panel/dns/prefs.pl:197
#, perl-format
msgid "Unable to modify SRV record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:221
+#: ../vhffs-panel/dns/prefs.pl:223
#, perl-format
msgid "Unable to modify TXT record: %s"
msgstr ""
@@ -4399,20 +4449,20 @@
msgid "Unknown"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:205
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:241
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:253
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:271
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:283
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:295
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:307
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:318
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:330
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:218
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:254
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:266
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:284
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:296
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:308
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:320
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:331
#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:343
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:359
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:374
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:386
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:398
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:356
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:372
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:387
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:399
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:411
msgid "Unknown error"
msgstr ""
@@ -4438,7 +4488,7 @@
msgid "Update signature"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:253
+#: ../vhffs-panel/dns/prefs.pl:255
#, perl-format
msgid "Use @ for origin (%s)"
msgstr ""
@@ -4503,12 +4553,16 @@
msgid "User is not active yet"
msgstr ""
+#: ../vhffs-panel/acl/view.pl:86
+msgid "User not found"
+msgstr ""
+
#: ../vhffs-panel/public/index.pl:65
msgid "User public area"
msgstr ""
#: ../vhffs-panel/subscribe.pl:198 ../vhffs-panel/user/prefs.pl:253
-#: ../vhffs-panel/acl/view.pl:150 ../vhffs-panel/group/prefs.pl:104
+#: ../vhffs-panel/acl/view.pl:171 ../vhffs-panel/group/prefs.pl:104
#: ../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
@@ -4519,7 +4573,8 @@
msgid "Username for this database"
msgstr ""
-#: ../vhffs-panel/admin/user/edit.pl:95 ../vhffs-panel/admin/user/show.pl:96
+#: ../vhffs-panel/acl/view.pl:132 ../vhffs-panel/admin/user/edit.pl:95
+#: ../vhffs-panel/admin/user/show.pl:96
msgid "Username:"
msgstr ""
@@ -4572,18 +4627,6 @@
msgid "View archives"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:459
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:483
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:509
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:535
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:561
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:588
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:614
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:640
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:665
-msgid "View history"
-msgstr ""
-
#: ../vhffs-panel/admin/broadcast_view.pl:84
msgid "View mailing"
msgstr ""
@@ -4656,6 +4699,10 @@
msgid "We offer you the possibility to have one email box on the domain %s"
msgstr ""
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:377
+msgid "Web"
+msgstr ""
+
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:117
msgid "Web Admin"
msgstr ""
@@ -4668,7 +4715,7 @@
msgid "Web Area awaiting validation"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Web.pm:137
+#: ../vhffs-api/src/Vhffs/Panel/Web.pm:159
msgid "Web Areas"
msgstr ""
@@ -4680,8 +4727,9 @@
msgid "Webarea"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:449
-msgid "Webarea for this group"
+#: ../vhffs-panel/web/index.pl:58
+#, perl-format
+msgid "Webareas for %s"
msgstr ""
#: ../vhffs-panel/public/group.pl:124
@@ -4692,11 +4740,11 @@
msgid "Websites area"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:310 ../vhffs-panel/dns/prefs.pl:395
+#: ../vhffs-panel/dns/prefs.pl:313 ../vhffs-panel/dns/prefs.pl:398
msgid "Weight"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:413
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:430
msgid "Welcome"
msgstr ""
@@ -4725,17 +4773,17 @@
msgid "Woah, %s users and %s groups already trust %s"
msgstr ""
-#: ../vhffs-panel/svn/prefs.pl:119 ../vhffs-panel/dns/prefs.pl:273
+#: ../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:93
+#: ../vhffs-panel/web/prefs.pl:115 ../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:266
-#: ../vhffs-panel/pgsql/prefs.pl:110 ../vhffs-panel/group/prefs.pl:100
-#: ../vhffs-panel/repository/prefs.pl:105 ../vhffs-panel/web/prefs.pl:129
-#: ../vhffs-panel/mysql/prefs.pl:117 ../vhffs-panel/cvs/prefs.pl:99
+#: ../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/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 ""
@@ -4798,8 +4846,8 @@
"\n"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:258 ../vhffs-panel/web/prefs.pl:123
-#: ../vhffs-panel/mail/prefs.pl:138
+#: ../vhffs-panel/svn/prefs.pl:131 ../vhffs-panel/dns/prefs.pl:261
+#: ../vhffs-panel/web/prefs.pl:123 ../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."
@@ -4845,6 +4893,14 @@
msgid "You have been successfully subscribed to the list %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
+#: ../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 ""
+
#: ../vhffs-panel/logout.pl:59
msgid "You left your VHFFS session!"
msgstr ""
@@ -4924,7 +4980,7 @@
#: ../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:91 ../vhffs-panel/dns/prefs.pl:108
+#: ../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
@@ -4959,9 +5015,12 @@
msgid "You're not allowed to do this (ACL rights) "
msgstr ""
-#: ../vhffs-panel/history.pl:98 ../vhffs-panel/acl/view.pl:141
-#: ../vhffs-panel/acl/submit.pl:95 ../vhffs-panel/acl/add_acl_group.pl:96
-#: ../vhffs-panel/acl/add_acl_user.pl:96
+#: ../vhffs-panel/acl/view.pl:88 ../vhffs-panel/acl/view.pl:103
+#: ../vhffs-panel/acl/view.pl:118
+msgid "You're not allowed to manage this object's ACL"
+msgstr ""
+
+#: ../vhffs-panel/history.pl:98 ../vhffs-panel/acl/view.pl:76
msgid "You're not allowed to view this object's ACL"
msgstr ""
@@ -5218,7 +5277,7 @@
msgid "mail"
msgstr ""
-#: ../vhffs-panel/svn/prefs.pl:143 ../vhffs-panel/svn/prefs_save.pl:115
+#: ../vhffs-panel/svn/prefs.pl:144 ../vhffs-panel/svn/prefs_save.pl:115
msgid "ml adress here..."
msgstr ""
Modified: branches/vhffs-design/vhffs-intl/src/es.po
===================================================================
--- branches/vhffs-design/vhffs-intl/src/es.po 2007-05-22 11:38:50 UTC (rev 622)
+++ branches/vhffs-design/vhffs-intl/src/es.po 2007-05-23 06:15:23 UTC (rev 623)
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: VHFFS 4.1 spanish\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-17 21:20+0200\n"
+"POT-Creation-Date: 2007-05-23 08:06+0200\n"
"PO-Revision-Date: ??????\n"
"Last-Translator: black coffee <coffeester@xxxxxxxxx>\n"
"Language-Team: black coffee <coffeester@xxxxxxxxx>\n"
@@ -69,21 +69,21 @@
msgid "<new site>."
msgstr "mi_nuevo_sitio"
-#: ../vhffs-panel/dns/prefs.pl:324
+#: ../vhffs-panel/dns/prefs.pl:327
#, perl-format
msgid "@ represents the origin (%s)"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:341
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:354
msgid ""
"A CNAME, A or AAAA record with the same name already exists for this domain"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:126
+#: ../vhffs-panel/dns/prefs.pl:128
msgid "A Record deleted"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:121
+#: ../vhffs-panel/dns/prefs.pl:123
msgid "A Record updated"
msgstr ""
@@ -101,43 +101,38 @@
"\n"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:149
+#: ../vhffs-panel/dns/prefs.pl:151
msgid "A record added"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:138
+#: ../vhffs-panel/dns/prefs.pl:140
msgid "AAAA Record deleted"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:133
+#: ../vhffs-panel/dns/prefs.pl:135
msgid "AAAA Record updated"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:144
+#: ../vhffs-panel/dns/prefs.pl:146
msgid "AAAA record added"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:148
+#: ../vhffs-panel/acl/view.pl:127
msgid "ACL Administration"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:167
+#: ../vhffs-panel/acl/view.pl:147
msgid "ACL level"
msgstr "Nivel ACL"
-#: ../vhffs-panel/acl/add_acl_group.pl:106
-#: ../vhffs-panel/acl/add_acl_user.pl:106
-msgid "ACL successfully added"
-msgstr "ACL bien aadida"
+#: ../vhffs-panel/acl/view.pl:92 ../vhffs-panel/acl/view.pl:107
+msgid "ACL sucessfuly added"
+msgstr ""
-#: ../vhffs-panel/acl/submit.pl:108
-msgid "ACL successfully deleted"
-msgstr "ACL bien destruida"
+#: ../vhffs-panel/acl/view.pl:122
+msgid "ACL updated"
+msgstr ""
-#: ../vhffs-panel/acl/submit.pl:119
-msgid "ACL successfully modified"
-msgstr "ACL bien modificada"
-
#: ../vhffs-panel/admin/moderation.pl:115
#: ../vhffs-panel/admin/moderation.pl:157
#: ../vhffs-panel/admin/moderation.pl:198
@@ -179,31 +174,31 @@
msgid "Activated"
msgstr "Activado"
-#: ../vhffs-panel/mailinglist/prefs.pl:156 ../vhffs-panel/dns/prefs.pl:277
+#: ../vhffs-panel/mailinglist/prefs.pl:156 ../vhffs-panel/dns/prefs.pl:280
#, fuzzy
msgid "Add !"
msgstr "Aadir"
-#: ../vhffs-panel/dns/prefs.pl:290
+#: ../vhffs-panel/dns/prefs.pl:293
#, fuzzy
msgid "Add a CNAME field to your domain"
msgstr "Aadir un reenviar hacia esto dominio"
-#: ../vhffs-panel/dns/prefs.pl:282
+#: ../vhffs-panel/dns/prefs.pl:285
#, fuzzy
msgid "Add a MX field to your domain"
msgstr "Aadir un reenviar hacia esto dominio"
-#: ../vhffs-panel/dns/prefs.pl:298
+#: ../vhffs-panel/dns/prefs.pl:301
#, fuzzy
msgid "Add a NS field to your domain"
msgstr "Aadir un reenviar hacia esto dominio"
-#: ../vhffs-panel/dns/prefs.pl:304
+#: ../vhffs-panel/dns/prefs.pl:307
msgid "Add a SRV record to your domain"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:316
+#: ../vhffs-panel/dns/prefs.pl:319
msgid "Add a TXT record"
msgstr ""
@@ -224,12 +219,12 @@
msgid "Add a user in this group"
msgstr "Aadir un usuario en esto grupo"
-#: ../vhffs-panel/dns/prefs.pl:251
+#: ../vhffs-panel/dns/prefs.pl:253
#, fuzzy
msgid "Add an A record"
msgstr "Aadir un cuenta"
-#: ../vhffs-panel/dns/prefs.pl:252
+#: ../vhffs-panel/dns/prefs.pl:254
msgid "Add an AAAA record"
msgstr ""
@@ -275,8 +270,8 @@
msgid "Admin Download repository"
msgstr "Admin Repositorio CVS"
-#: ../vhffs-panel/dns/prefs.pl:257 ../vhffs-panel/web/prefs.pl:122
-#: ../vhffs-panel/mail/prefs.pl:137
+#: ../vhffs-panel/svn/prefs.pl:130 ../vhffs-panel/dns/prefs.pl:260
+#: ../vhffs-panel/web/prefs.pl:122 ../vhffs-panel/mail/prefs.pl:138
#, fuzzy
msgid "Admin Rights on this object (ACL)"
msgstr "Derechos Admin sobre esto objecto (ACL)"
@@ -331,31 +326,31 @@
msgid "All"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:245
+#: ../vhffs-panel/dns/prefs.pl:247
msgid "All A TYPE for your domain name"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:246
+#: ../vhffs-panel/dns/prefs.pl:248
msgid "All AAAA TYPE for your domain name"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:289
+#: ../vhffs-panel/dns/prefs.pl:292
msgid "All CNAME TYPE for your domain name"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:248
+#: ../vhffs-panel/dns/prefs.pl:250
msgid "All CNAME for your domain name"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:247 ../vhffs-panel/dns/prefs.pl:281
+#: ../vhffs-panel/dns/prefs.pl:249 ../vhffs-panel/dns/prefs.pl:284
msgid "All MX TYPE for your domain name"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:297
+#: ../vhffs-panel/dns/prefs.pl:300
msgid "All NS TYPE for your domain name"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:303
+#: ../vhffs-panel/dns/prefs.pl:306
msgid "All SRV records for your domain name"
msgstr ""
@@ -363,7 +358,7 @@
msgid "All Subversion repositories lists"
msgstr "Todas las listas de repositorios Subversion"
-#: ../vhffs-panel/dns/prefs.pl:317
+#: ../vhffs-panel/dns/prefs.pl:320
msgid "All TXT records for your domain name"
msgstr ""
@@ -405,11 +400,11 @@
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:293
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:306
msgid "An MX record with the same name already exists for this domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:316
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:329
msgid "An NS record with the same name already exists for this domain"
msgstr ""
@@ -636,27 +631,27 @@
msgid "Are you SURE you want DELETE this Mail Area ?"
msgstr "Es SEGURO(A) que quiere DESTRUIR esta zona mail?"
-#: ../vhffs-panel/mysql/prefs.pl:116
+#: ../vhffs-panel/mysql/prefs.pl:117
#, fuzzy
msgid "Are you SURE you want DELETE this MySQL database ?"
msgstr "Es SEGURO(A) que quiere DESTRUIR esta base de datos MySQL?"
-#: ../vhffs-panel/pgsql/prefs.pl:109
+#: ../vhffs-panel/pgsql/prefs.pl:110
#, fuzzy
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:128
+#: ../vhffs-panel/web/prefs.pl:129
#, fuzzy
msgid "Are you SURE you want DELETE this Web Area ?"
msgstr "Es SEGURO(A) que quiere DESTRUIR esta zona web?"
-#: ../vhffs-panel/cvs/prefs.pl:98
+#: ../vhffs-panel/cvs/prefs.pl:99
#, fuzzy
msgid "Are you SURE you want DELETE this cvs repository ?"
msgstr "Es SEGURO(A) que quiere DESTRUIR este Repositorio CVS?"
-#: ../vhffs-panel/dns/prefs.pl:265
+#: ../vhffs-panel/dns/prefs.pl:268
#, fuzzy
msgid "Are you SURE you want DELETE this domain ?"
msgstr "Es SEGURO(A) que quiere DESTRUIR esta zona mail?"
@@ -811,18 +806,13 @@
msgstr "Error CGI!"
#: ../vhffs-panel/mailinglist/submit.pl:96 ../vhffs-panel/svn/prefs.pl:82
-#: ../vhffs-panel/svn/create.pl:64 ../vhffs-panel/acl/submit.pl:85
+#: ../vhffs-panel/svn/create.pl:64 ../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/acl/add_acl_group.pl:86
-#: ../vhffs-panel/acl/add_acl_user.pl:86
-#, fuzzy
-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
@@ -851,7 +841,7 @@
#: ../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/dns/delete.pl:79 ../vhffs-panel/dns/prefs.pl:77
+#: ../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!"
@@ -866,18 +856,22 @@
msgid "CGI problem"
msgstr "Error CGI"
-#: ../vhffs-panel/dns/prefs.pl:188
+#: ../vhffs-panel/dns/prefs.pl:190
msgid "CNAME Record added"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:183
+#: ../vhffs-panel/dns/prefs.pl:185
msgid "CNAME Record deleted"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:179
+#: ../vhffs-panel/dns/prefs.pl:181
msgid "CNAME Record updated"
msgstr ""
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:380
+msgid "CVS"
+msgstr ""
+
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:145
msgid "CVS Admin"
msgstr "Admin CVS"
@@ -895,12 +889,12 @@
msgid "CVS Search"
msgstr "Bsqueda CVS"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:525
-#, fuzzy
-msgid "CVS repositories for this group"
-msgstr "Todas las listas de repositorios CVS"
+#: ../vhffs-panel/cvs/index.pl:58
+#, perl-format
+msgid "CVS repositories for %s"
+msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:118
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:147
#, fuzzy
msgid "CVS repository"
msgstr "Admin Repositorio CVS"
@@ -924,32 +918,27 @@
msgid "CVS stats"
msgstr "Estadsticas CVS"
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:136
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:165
msgid "CVSweb"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:165 ../vhffs-panel/acl/view.pl:189
-#: ../vhffs-panel/acl/view.pl:236
+#: ../vhffs-panel/acl/view.pl:139 ../vhffs-panel/acl/view.pl:165
msgid "Can destroy this service"
msgstr "Se puede destruir este servicio"
-#: ../vhffs-panel/acl/view.pl:164 ../vhffs-panel/acl/view.pl:188
-#: ../vhffs-panel/acl/view.pl:235
+#: ../vhffs-panel/acl/view.pl:138 ../vhffs-panel/acl/view.pl:164
msgid "Can manage ACL for this service"
msgstr "Se puede administrar el ACL sobre este servicio"
-#: ../vhffs-panel/acl/view.pl:163 ../vhffs-panel/acl/view.pl:187
-#: ../vhffs-panel/acl/view.pl:234
+#: ../vhffs-panel/acl/view.pl:137 ../vhffs-panel/acl/view.pl:163
msgid "Can modify this service"
msgstr "Se puede modificar este servicio"
-#: ../vhffs-panel/acl/view.pl:162 ../vhffs-panel/acl/view.pl:186
-#: ../vhffs-panel/acl/view.pl:233
+#: ../vhffs-panel/acl/view.pl:136 ../vhffs-panel/acl/view.pl:162
msgid "Can view this service"
msgstr "Se puede ver a este servicio"
-#: ../vhffs-panel/acl/view.pl:161 ../vhffs-panel/acl/view.pl:185
-#: ../vhffs-panel/acl/view.pl:232
+#: ../vhffs-panel/acl/view.pl:135 ../vhffs-panel/acl/view.pl:161
#, fuzzy
msgid "Can't access"
msgstr "No acesos"
@@ -1041,6 +1030,11 @@
msgid "Cannot get information on this object"
msgstr "No se ha podido obtener informacines sobre esto objecto"
+#: ../vhffs-panel/acl/view.pl:71
+#, perl-format
+msgid "Cannot get informations on object #%d"
+msgstr ""
+
#: ../vhffs-panel/mailinglist/delete.pl:82
#: ../vhffs-panel/mailinglist/save_sig.pl:81
#: ../vhffs-panel/mailinglist/add_sub.pl:83
@@ -1048,7 +1042,7 @@
#: ../vhffs-panel/mailinglist/save_options.pl:85
#: ../vhffs-panel/mailinglist/change_right.pl:85
#: ../vhffs-panel/mailinglist/del_member.pl:83 ../vhffs-panel/svn/prefs.pl:93
-#: ../vhffs-panel/dns/delete.pl:84 ../vhffs-panel/dns/prefs.pl:84
+#: ../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
@@ -1057,11 +1051,6 @@
msgid "Cannot get informations on this object"
msgstr "No se ha podido obtener informacines sobre esto objecto"
-#: ../vhffs-panel/acl/view.pl:134
-#, perl-format
-msgid "Cannot get informations on this object %s %s"
-msgstr "No se ha podido obtener informacines sobre esto objecto %s %s"
-
#: ../vhffs-panel/admin/stats.pl:73
msgid "Cannot get statistics"
msgstr "Es imposible obtener estadsticas"
@@ -1124,11 +1113,11 @@
msgid "Cc: "
msgstr ""
-#: ../vhffs-panel/mail/prefs.pl:210
+#: ../vhffs-panel/mail/prefs.pl:211
msgid "Change Forward"
msgstr "Cambiar el reenviar"
-#: ../vhffs-panel/admin/mail/edit.pl:142 ../vhffs-panel/mail/prefs.pl:151
+#: ../vhffs-panel/admin/mail/edit.pl:142 ../vhffs-panel/mail/prefs.pl:152
#, fuzzy
msgid "Change Password"
msgstr "Cambiar el cdigo de acceso"
@@ -1243,16 +1232,16 @@
msgid "Crawl"
msgstr "Crawl"
-#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:142
-#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:147
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:152
+#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:176
#: ../vhffs-api/src/Vhffs/Panel/Mailinglist.pm:146
-#: ../vhffs-api/src/Vhffs/Panel/Web.pm:136
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:117
-#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:119
+#: ../vhffs-api/src/Vhffs/Panel/Web.pm:158
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:146
+#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:146
#: ../vhffs-api/src/Vhffs/Panel/Group.pm:163
-#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:140
-#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:118
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:151
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:162
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:128
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:164
msgid "Create"
msgstr "Crear"
@@ -1332,7 +1321,7 @@
msgid "Current avatar"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:370
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:372
msgid "Current group:"
msgstr ""
@@ -1351,11 +1340,12 @@
msgid "DB Search"
msgstr "Bsqueda CVS"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:152
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:382
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:165
msgid "DNS"
msgstr "DNS"
-#: ../vhffs-panel/dns/prefs.pl:240
+#: ../vhffs-panel/dns/prefs.pl:242
#, perl-format
msgid "DNS Administration - %s"
msgstr ""
@@ -1374,8 +1364,8 @@
msgid "DNS stats"
msgstr "Estadsticas DNS"
-#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:142
-#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:120
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:164
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:130
msgid "Database Access"
msgstr "Bsqueda de base de datos"
@@ -1383,20 +1373,20 @@
msgid "Database Name"
msgstr "Nombre de la base de datos"
-#: ../vhffs-panel/ajax/help.pl:46 ../vhffs-api/src/Vhffs/Panel/DNS.pm:204
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:240
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:252
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:270
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:282
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:294
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:306
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:317
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:329
+#: ../vhffs-panel/ajax/help.pl:46 ../vhffs-api/src/Vhffs/Panel/DNS.pm:217
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:253
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:265
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:283
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:295
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:307
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:319
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:330
#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:342
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:358
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:373
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:385
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:397
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:355
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:371
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:386
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:398
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:410
msgid "Database error"
msgstr ""
@@ -1442,14 +1432,14 @@
msgstr ""
#: ../vhffs-panel/mailinglist/prefs.pl:206 ../vhffs-panel/svn/prefs.pl:127
-#: ../vhffs-panel/user/prefs.pl:281 ../vhffs-panel/dns/prefs.pl:268
-#: ../vhffs-panel/dns/prefs.pl:325 ../vhffs-panel/dns/prefs.pl:337
-#: ../vhffs-panel/dns/prefs.pl:350 ../vhffs-panel/dns/prefs.pl:362
-#: ../vhffs-panel/dns/prefs.pl:378 ../vhffs-panel/dns/prefs.pl:389
-#: ../vhffs-panel/dns/prefs.pl:405 ../vhffs-panel/pgsql/prefs.pl:112
+#: ../vhffs-panel/user/prefs.pl:281 ../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:131 ../vhffs-panel/mysql/prefs.pl:119
-#: ../vhffs-panel/cvs/prefs.pl:101 ../vhffs-panel/mail/prefs.pl:135
+#: ../vhffs-panel/web/prefs.pl:132 ../vhffs-panel/mysql/prefs.pl:120
+#: ../vhffs-panel/cvs/prefs.pl:102 ../vhffs-panel/mail/prefs.pl:135
msgid "Delete"
msgstr "Destruir"
@@ -1467,19 +1457,19 @@
msgid "Delete from list"
msgstr "Destruir de la lista"
-#: ../vhffs-panel/pgsql/prefs.pl:107
+#: ../vhffs-panel/pgsql/prefs.pl:108
msgid "Delete this PostgreSQL database"
msgstr "Destruir esta base de datos PostgreSQL "
-#: ../vhffs-panel/mysql/prefs.pl:114
+#: ../vhffs-panel/mysql/prefs.pl:115
msgid "Delete this database"
msgstr "Destruir esta base de datos"
-#: ../vhffs-panel/dns/prefs.pl:263
+#: ../vhffs-panel/dns/prefs.pl:266
msgid "Delete this domain name from the VHFFS platform"
msgstr ""
-#: ../vhffs-panel/admin/mail/edit.pl:144 ../vhffs-panel/mail/prefs.pl:211
+#: ../vhffs-panel/admin/mail/edit.pl:144 ../vhffs-panel/mail/prefs.pl:212
msgid "Delete this forward"
msgstr "Destruir esto reenviar"
@@ -1487,7 +1477,7 @@
msgid "Delete this list"
msgstr "Destruir esta lista"
-#: ../vhffs-panel/admin/mail/edit.pl:129 ../vhffs-panel/mail/prefs.pl:152
+#: ../vhffs-panel/admin/mail/edit.pl:129 ../vhffs-panel/mail/prefs.pl:153
msgid "Delete this mail account"
msgstr "Destruir esto cuenta mail"
@@ -1501,7 +1491,7 @@
msgstr "Destruir esto dominio mail"
#: ../vhffs-panel/group/prefs.pl:97 ../vhffs-panel/repository/prefs.pl:102
-#: ../vhffs-panel/cvs/prefs.pl:96
+#: ../vhffs-panel/cvs/prefs.pl:97
msgid "Delete this project"
msgstr "Destruir este proyecto"
@@ -1509,7 +1499,7 @@
msgid "Delete this repository"
msgstr "Destruir esto repositorio"
-#: ../vhffs-panel/web/prefs.pl:126
+#: ../vhffs-panel/web/prefs.pl:127
msgid "Delete this web area"
msgstr "Destruir esta zona web"
@@ -1536,21 +1526,25 @@
msgid "Description of your webarea"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:292
+#: ../vhffs-panel/dns/prefs.pl:295
#, fuzzy
msgid "Destination"
msgstr "Descripcin"
-#: ../vhffs-panel/mail/prefs.pl:165
+#: ../vhffs-panel/mail/prefs.pl:166
msgid "Disable anti-spam"
msgstr ""
-#: ../vhffs-panel/mail/prefs.pl:184
+#: ../vhffs-panel/mail/prefs.pl:185
msgid "Disable anti-virus"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:144
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:119
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:383
+msgid "Dl repos"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:154
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:148
msgid "Documentation"
msgstr "Documentacin"
@@ -1569,10 +1563,10 @@
msgid "Domain Name"
msgstr "Nombre de Dominio"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:655
-#, fuzzy
-msgid "Domains for this group"
-msgstr "Modificar esto grupo"
+#: ../vhffs-panel/dns/index.pl:58
+#, perl-format
+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"
@@ -1582,11 +1576,12 @@
msgid "Download Repository"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:630
-msgid "Download repositories for this group"
+#: ../vhffs-panel/repository/index.pl:58
+#, perl-format
+msgid "Download repositories for %s"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:120
+#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:147
#, fuzzy
msgid "Download repository"
msgstr "Destruir esto repositorio"
@@ -1661,11 +1656,11 @@
msgid "Email is not correct !"
msgstr ""
-#: ../vhffs-panel/mail/prefs.pl:169
+#: ../vhffs-panel/mail/prefs.pl:170
msgid "Enable anti-spam"
msgstr ""
-#: ../vhffs-panel/mail/prefs.pl:188
+#: ../vhffs-panel/mail/prefs.pl:189
msgid "Enable anti-virus"
msgstr ""
@@ -1674,6 +1669,14 @@
msgid "Enter a mail address to catch all email for this domain"
msgstr "Entrar una direccin mail para obtener todos los mail de esto dominio"
+#: ../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 ""
+
#: ../vhffs-panel/admin/broadcast_submit.pl:95
#, fuzzy
msgid "Error !"
@@ -1768,6 +1771,20 @@
msgid "Firstname is not correct !"
msgstr ""
+#: ../vhffs-panel/svn/prefs.pl:133
+msgid "Fix permissions in this repository"
+msgstr ""
+
+#: ../vhffs-panel/svn/prefs.pl:135
+msgid "Fix them !"
+msgstr ""
+
+#: ../vhffs-panel/svn/prefs.pl:134
+msgid ""
+"Fixing permissions on a repository solve permission access on the "
+"repository. Can be helpful if you encounter problems"
+msgstr ""
+
#: ../vhffs-panel/admin/mail/delete_forward.pl:109
#, fuzzy, perl-format
msgid "Forward %s deleted"
@@ -1846,21 +1863,12 @@
msgid "Go on login page"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:458
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:482
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:508
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:534
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:560
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:587
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:613
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:639
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:664
-#, fuzzy
-msgid "Go to admin"
-msgstr "Ok, id sobre el admin ACL"
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:704
+msgid "Go to administration"
+msgstr ""
-#: ../vhffs-panel/mailinglist/prefs.pl:216 ../vhffs-panel/svn/prefs.pl:159
-#: ../vhffs-panel/dns/prefs.pl:420
+#: ../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 ""
@@ -1889,7 +1897,7 @@
msgid "Group"
msgstr "Grupo"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:441
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:457
#, fuzzy, perl-format
msgid "Group %s"
msgstr "Grupos"
@@ -1898,11 +1906,19 @@
msgid "Group Admin"
msgstr "Grupo Admin"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:436
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:454
#, fuzzy
msgid "Group error"
msgstr "Nombre del grupo"
+#: ../vhffs-panel/acl/view.pl:101
+msgid "Group not found"
+msgstr ""
+
+#: ../vhffs-panel/acl/view.pl:116
+msgid "Group or user not found"
+msgstr ""
+
#: ../vhffs-panel/cvs/create.pl:93
#, fuzzy
msgid "Group owning this CVS"
@@ -1942,7 +1958,7 @@
msgid "Group public area"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:151 ../vhffs-panel/admin/group/edit.pl:93
+#: ../vhffs-panel/acl/view.pl:176 ../vhffs-panel/admin/group/edit.pl:93
#: ../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
@@ -1950,6 +1966,10 @@
msgid "Groupname"
msgstr "Nombre del grupo"
+#: ../vhffs-panel/acl/view.pl:133
+msgid "Groupname:"
+msgstr ""
+
#: ../vhffs-panel/public/user.pl:89 ../vhffs-panel/public/lastusers.pl:84
msgid "Groups"
msgstr "Grupos"
@@ -2031,24 +2051,25 @@
#: ../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/Svn.pm:159
-#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:171
-#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:162
-#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:170
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:705
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:169
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:181
+#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:191
+#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:199
#: ../vhffs-api/src/Vhffs/Panel/Mailinglist.pm:161
#: ../vhffs-api/src/Vhffs/Panel/Mailinglist.pm:166
-#: ../vhffs-api/src/Vhffs/Panel/Web.pm:152
-#: ../vhffs-api/src/Vhffs/Panel/Web.pm:161
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:133
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:145
-#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:133
-#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:144
+#: ../vhffs-api/src/Vhffs/Panel/Web.pm:174
+#: ../vhffs-api/src/Vhffs/Panel/Web.pm:183
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:162
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:174
+#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:160
+#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:171
#: ../vhffs-api/src/Vhffs/Panel/Group.pm:178
-#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:156
-#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:165
-#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:135
-#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:144
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:171
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:178
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:187
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:145
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:154
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:184
msgid "History"
msgstr "Historia"
@@ -2068,8 +2089,8 @@
msgid "Homepage of public area"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:307 ../vhffs-panel/dns/prefs.pl:392
-#: ../vhffs-panel/dns/prefs.pl:408
+#: ../vhffs-panel/dns/prefs.pl:310 ../vhffs-panel/dns/prefs.pl:395
+#: ../vhffs-panel/dns/prefs.pl:411
msgid "Host"
msgstr ""
@@ -2091,11 +2112,11 @@
msgid "I've lost my password"
msgstr "Perdi mi cdigo de acceso"
-#: ../vhffs-panel/dns/prefs.pl:275
+#: ../vhffs-panel/dns/prefs.pl:278
msgid "IP"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:299
+#: ../vhffs-panel/dns/prefs.pl:302
msgid "IP/host of your NS"
msgstr ""
@@ -2142,30 +2163,30 @@
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:239
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:251
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:281
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:252
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:264
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:294
msgid "Invalid IP address"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:269
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:282
msgid "Invalid IP v6 address"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:339
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:352
msgid "Invalid alias"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:328
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:341
msgid "Invalid destination"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:353
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:369
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:366
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:382
msgid "Invalid destination domain name"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:340
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:353
msgid "Invalid destination host"
msgstr ""
@@ -2174,12 +2195,12 @@
msgid "Invalid domain name"
msgstr "Mail invlido"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:305
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:318
msgid "Invalid host"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:291
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:315
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:304
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:328
msgid "Invalid hostname"
msgstr ""
@@ -2188,38 +2209,38 @@
msgid "Invalid mail domain"
msgstr "Mail invlido"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:354
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:370
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:367
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:383
msgid "Invalid port"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:236
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:266
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:383
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:249
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:279
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:396
msgid "Invalid prefix"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:292
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:355
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:371
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:305
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:368
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:384
msgid "Invalid priority"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:351
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:364
msgid "Invalid protocol syntax"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:201
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:249
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:279
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:303
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:326
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:367
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:394
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:214
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:262
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:292
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:316
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:339
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:380
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:407
msgid "Invalid record"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:352
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:365
msgid "Invalid service syntax"
msgstr ""
@@ -2230,12 +2251,12 @@
"all in lowercase"
msgstr "El identificador debe contener por lo menos 3 caracteres"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:356
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:372
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:369
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:385
msgid "Invalid weight"
msgstr ""
-#: ../vhffs-panel/cvs/prefs.pl:92
+#: ../vhffs-panel/cvs/prefs.pl:93
#, fuzzy
msgid "Is this CVS repository public ??"
msgstr "Es un repositorio CVS pblico?"
@@ -2298,11 +2319,11 @@
msgid "Lastname is not correct !"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:249
+#: ../vhffs-panel/dns/prefs.pl:251
msgid "List all A reccords"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:250
+#: ../vhffs-panel/dns/prefs.pl:252
msgid "List all AAAA reccords"
msgstr ""
@@ -2324,7 +2345,7 @@
msgid "List all SVN repo"
msgstr "Listar todos los SVN repo"
-#: ../vhffs-panel/dns/prefs.pl:315
+#: ../vhffs-panel/dns/prefs.pl:318
msgid "List all TXT records"
msgstr ""
@@ -2467,15 +2488,19 @@
msgid "Logout"
msgstr "Desconexin"
-#: ../vhffs-panel/dns/prefs.pl:165
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:385
+msgid "ML"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:167
msgid "MX Record added"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:160
+#: ../vhffs-panel/dns/prefs.pl:162
msgid "MX Record deleted"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:155
+#: ../vhffs-panel/dns/prefs.pl:157
msgid "MX Record updated"
msgstr ""
@@ -2485,7 +2510,8 @@
msgstr "Admin NS"
#: ../vhffs-panel/admin/user/edit.pl:108 ../vhffs-panel/admin/user/show.pl:108
-#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:148
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:384
+#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:177
msgid "Mail"
msgstr "Mail"
@@ -2516,10 +2542,10 @@
msgid "Mail deleted"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:604
-#, fuzzy
-msgid "Mail domain for this group"
-msgstr "Modificar esto grupo"
+#: ../vhffs-panel/mail/index.pl:58
+#, perl-format
+msgid "Mail domains for %s"
+msgstr ""
#: ../vhffs-panel/mailinglist/create.pl:88
msgid "Mail for the list"
@@ -2561,6 +2587,11 @@
msgid "Mailing list address is invalid"
msgstr ""
+#: ../vhffs-panel/mailinglist/index.pl:58
+#, perl-format
+msgid "Mailing lists for %s"
+msgstr ""
+
#: ../vhffs-panel/admin/broadcast_submit.pl:91
#, fuzzy
msgid "Mailing successfully added"
@@ -2580,11 +2611,6 @@
msgid "Mailing-lists Admin"
msgstr "Admin Mailing-lists"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:578
-#, fuzzy
-msgid "Mailing-lists for this group"
-msgstr "Admin Mailing-lists"
-
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:89
#, fuzzy
msgid "Manage mailings"
@@ -2707,19 +2733,15 @@
msgstr "Modificacines bien hechas"
#: ../vhffs-panel/svn/prefs.pl:121 ../vhffs-panel/user/prefs.pl:265
-#: ../vhffs-panel/dns/prefs.pl:327 ../vhffs-panel/dns/prefs.pl:339
-#: ../vhffs-panel/dns/prefs.pl:352 ../vhffs-panel/dns/prefs.pl:363
-#: ../vhffs-panel/dns/prefs.pl:390 ../vhffs-panel/dns/prefs.pl:406
-#: ../vhffs-panel/pgsql/prefs.pl:106 ../vhffs-panel/group/prefs.pl:96
-#: ../vhffs-panel/web/prefs.pl:119 ../vhffs-panel/mysql/prefs.pl:113
-#: ../vhffs-panel/cvs/prefs.pl:95
+#: ../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/mysql/prefs.pl:114 ../vhffs-panel/cvs/prefs.pl:96
msgid "Modify"
msgstr "Modificar"
-#: ../vhffs-panel/acl/view.pl:190 ../vhffs-panel/acl/view.pl:237
-msgid "Modify this ACL"
-msgstr "Modificar esta ACL"
-
#: ../vhffs-panel/admin/cvs/list.pl:97
msgid "Modify this CVS repository"
msgstr "Modificar esto repositorio CVS"
@@ -2762,7 +2784,7 @@
msgid "Modify this user"
msgstr "Modificar esto usuario"
-#: ../vhffs-panel/dns/prefs.pl:272
+#: ../vhffs-panel/dns/prefs.pl:275
msgid "Must we redirect the DNS on our servers ?"
msgstr ""
@@ -2773,6 +2795,10 @@
msgid "My Projects"
msgstr "Mi proyectos"
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:378
+msgid "MySQL"
+msgstr ""
+
#: ../vhffs-panel/mysql/prefs.pl:97
#, fuzzy
msgid "MySQL Administration"
@@ -2782,7 +2808,12 @@
msgid "MySQL DB"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:141
+#: ../vhffs-panel/mysql/index.pl:58
+#, perl-format
+msgid "MySQL DBs for %s"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:163
#, fuzzy
msgid "MySQL Databases"
msgstr "Base de datos MySQL"
@@ -2804,24 +2835,19 @@
msgid "MySQL stats"
msgstr "Estadsticas MySQL"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:473
-#, fuzzy
-msgid "Mysql database for this group"
-msgstr "Aadir un usuario en esto grupo"
-
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:211
msgid "NS Admin"
msgstr "Admin NS"
-#: ../vhffs-panel/dns/prefs.pl:174
+#: ../vhffs-panel/dns/prefs.pl:176
msgid "NS Record added"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:170
+#: ../vhffs-panel/dns/prefs.pl:172
msgid "NS Record deleted"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:296
+#: ../vhffs-panel/dns/prefs.pl:299
msgid "NS TYPE"
msgstr ""
@@ -2831,11 +2857,11 @@
msgid "Name"
msgstr "Apellido"
-#: ../vhffs-panel/dns/prefs.pl:276
+#: ../vhffs-panel/dns/prefs.pl:279
msgid "Name for reccord"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:319
+#: ../vhffs-panel/dns/prefs.pl:322
msgid "Name for record"
msgstr ""
@@ -2843,43 +2869,38 @@
msgid "Name of the database"
msgstr "Nombre de la base de datos"
-#: ../vhffs-panel/dns/prefs.pl:283
+#: ../vhffs-panel/dns/prefs.pl:286
msgid "Name of your MX"
msgstr ""
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:706
+msgid "New"
+msgstr ""
+
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:266
#, perl-format
msgid "New language is: %s\n"
msgstr ""
-#: ../vhffs-panel/svn/prefs.pl:120 ../vhffs-panel/dns/prefs.pl:274
+#: ../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:94
+#: ../vhffs-panel/web/prefs.pl:116 ../vhffs-panel/cvs/prefs.pl:95
msgid "No"
msgstr "No"
-#: ../vhffs-panel/dns/prefs.pl:331
+#: ../vhffs-panel/dns/prefs.pl:334
msgid "No A type found"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:343
+#: ../vhffs-panel/dns/prefs.pl:346
msgid "No AAAA type found"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:370
+#: ../vhffs-panel/dns/prefs.pl:373
#, fuzzy
msgid "No CNAME available on this domain"
msgstr "Es imposible poner CNAME al da sobre esto dominio"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:542
-msgid "No CVS repository for this group"
-msgstr ""
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:672
-#, fuzzy
-msgid "No DNS domain for this group"
-msgstr "Modificar esto grupo"
-
#: ../vhffs-panel/admin/moderation.pl:207
#, fuzzy
msgid "No DNS to validate"
@@ -2889,7 +2910,7 @@
msgid "No Group to validate"
msgstr "No grupos por validar"
-#: ../vhffs-panel/dns/prefs.pl:357
+#: ../vhffs-panel/dns/prefs.pl:360
#, fuzzy
msgid "No MX reccord for this domain"
msgstr "Modificar esto dominio"
@@ -2899,35 +2920,16 @@
msgid "No Mail Area to validate"
msgstr "Zona Mail por validar"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:621
+#: ../vhffs-panel/dns/prefs.pl:386
#, fuzzy
-msgid "No Mail domain for this group"
-msgstr "Modificar esto grupo"
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:595
-#, fuzzy
-msgid "No Mailing-list for this group"
-msgstr "Mailing por personas albergadas"
-
-#: ../vhffs-panel/dns/prefs.pl:383
-#, fuzzy
msgid "No NS available on this domain"
msgstr "Es imposible poner MX al da sobre esto dominio"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:516
-#, fuzzy
-msgid "No PostgreSQL database for this group"
-msgstr "Todas las listas de bases de datos PostgreSQL"
-
-#: ../vhffs-panel/dns/prefs.pl:399
+#: ../vhffs-panel/dns/prefs.pl:402
msgid "No SRV available on this domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:568
-msgid "No SVN repository for this group"
-msgstr ""
-
-#: ../vhffs-panel/dns/prefs.pl:412
+#: ../vhffs-panel/dns/prefs.pl:415
msgid "No TXT available on this domain"
msgstr ""
@@ -2950,11 +2952,6 @@
msgid "No database to validate"
msgstr "Base de datos MySQL por validar"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:647
-#, fuzzy
-msgid "No download repository for this group"
-msgstr "Aadir un usuario en esto grupo"
-
#: ../vhffs-panel/object/upavatar.pl:105
msgid "No enough rights"
msgstr ""
@@ -2998,11 +2995,6 @@
msgstr ""
"Ninguna modificacin puede ser hechada. Por favor, verifique los campos."
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:490
-#, fuzzy
-msgid "No mysql database for this group"
-msgstr "Destruir esto usuario desde esto grupo"
-
#: ../vhffs-panel/admin/moderation.pl:251
#: ../vhffs-panel/admin/moderation.pl:339
#: ../vhffs-panel/admin/moderation.pl:511
@@ -3034,27 +3026,26 @@
msgid "No webarea"
msgstr "Modificar esta zona web"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:466
-#, fuzzy
-msgid "No webarea for this group"
-msgstr "Aadir un usuario en esto grupo"
-
#: ../vhffs-panel/public/group.pl:139
msgid "No website available for this group"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:280 ../vhffs-panel/dns/prefs.pl:267
-#: ../vhffs-panel/web/prefs.pl:130
+#: ../vhffs-panel/user/prefs.pl:280 ../vhffs-panel/dns/prefs.pl:270
+#: ../vhffs-panel/web/prefs.pl:131
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:111 ../vhffs-panel/group/prefs.pl:101
-#: ../vhffs-panel/repository/prefs.pl:106 ../vhffs-panel/mysql/prefs.pl:118
-#: ../vhffs-panel/cvs/prefs.pl:100 ../vhffs-panel/mail/prefs.pl:134
+#: ../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/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:707
+msgid "None"
+msgstr ""
+
#: ../vhffs-panel/mailinglist/add_sub.pl:95
#: ../vhffs-panel/mailinglist/change_right.pl:97
#: ../vhffs-panel/mailinglist/del_member.pl:95
@@ -3067,14 +3058,14 @@
msgid "Note successfully modified"
msgstr "ACL bien modificada"
+#: ../vhffs-panel/svn/prefs.pl:138
+msgid "Notify changes on mailing-list :"
+msgstr ""
+
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:473
msgid "November"
msgstr ""
-#: ../vhffs-panel/acl/submit.pl:89 ../vhffs-panel/acl/add_acl_user.pl:90
-msgid "Object Error"
-msgstr "Error Objecto"
-
#: ../vhffs-panel/admin/object/list.pl:87
#, fuzzy
msgid "Object ID"
@@ -3084,8 +3075,8 @@
msgid "Object id"
msgstr "Objecto id"
-#: ../vhffs-panel/mailinglist/prefs.pl:217 ../vhffs-panel/svn/prefs.pl:160
-#: ../vhffs-panel/dns/prefs.pl:421
+#: ../vhffs-panel/mailinglist/prefs.pl:218 ../vhffs-panel/svn/prefs.pl:161
+#: ../vhffs-panel/dns/prefs.pl:424
#, fuzzy
msgid "Object part"
msgstr "Objecto id"
@@ -3104,8 +3095,8 @@
msgid "October"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:259 ../vhffs-panel/web/prefs.pl:124
-#: ../vhffs-panel/mail/prefs.pl:139
+#: ../vhffs-panel/svn/prefs.pl:132 ../vhffs-panel/dns/prefs.pl:262
+#: ../vhffs-panel/web/prefs.pl:124 ../vhffs-panel/mail/prefs.pl:140
msgid "Ok, go to ACL admin"
msgstr "Ok, id sobre el admin ACL"
@@ -3134,7 +3125,7 @@
msgid "Open, no approval required"
msgstr ""
-#: ../vhffs-panel/mailinglist/prefs.pl:110
+#: ../vhffs-panel/mailinglist/prefs.pl:110 ../vhffs-panel/svn/prefs.pl:137
msgid "Options"
msgstr "Opcines"
@@ -3218,6 +3209,10 @@
msgid "Passwords don't match"
msgstr "Los cdigos de acceso no corresponden"
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:379
+msgid "PgSQL"
+msgstr ""
+
#: ../vhffs-intl/extra_strings.pl:37
msgid "PgSQL DB"
msgstr ""
@@ -3299,7 +3294,7 @@
msgid "Popboxes for"
msgstr "Bzones pop por"
-#: ../vhffs-panel/dns/prefs.pl:308 ../vhffs-panel/dns/prefs.pl:393
+#: ../vhffs-panel/dns/prefs.pl:311 ../vhffs-panel/dns/prefs.pl:396
msgid "Port"
msgstr ""
@@ -3307,15 +3302,15 @@
msgid "PostgreSQL Administration"
msgstr "Administracin PostgreSQL"
-#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:119
+#: ../vhffs-panel/pgsql/index.pl:58
+#, perl-format
+msgid "PostgreSQL DBs for %s"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:129
msgid "PostgreSQL Databases"
msgstr "Base de datos PostgreSQL"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:499
-#, fuzzy
-msgid "PostgreSQL database for this group"
-msgstr "Base de datos PostgreSQL"
-
#: ../vhffs-panel/pgsql/create.pl:65
msgid "PostgreSQL database name"
msgstr "Nombre de la base de datos PostgreSQL"
@@ -3337,8 +3332,12 @@
msgid "Posting control:"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:237
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:267
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:469
+msgid "Preferences"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:250
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:280
msgid "Prefix already exists"
msgstr ""
@@ -3346,15 +3345,15 @@
msgid "Prefix on subject"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:309 ../vhffs-panel/dns/prefs.pl:394
+#: ../vhffs-panel/dns/prefs.pl:312 ../vhffs-panel/dns/prefs.pl:397
msgid "Priority"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:284
+#: ../vhffs-panel/dns/prefs.pl:287
msgid "Priority of your MX"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:353
+#: ../vhffs-panel/dns/prefs.pl:356
#, fuzzy
msgid "Priority: "
msgstr "Proyecto:"
@@ -3394,11 +3393,15 @@
msgid "Project Successfully modified"
msgstr "Proyecto bien creado!"
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:373
+msgid "Project home"
+msgstr ""
+
#: ../vhffs-panel/user/projects.pl:57
msgid "Projects you contribute to"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:305
+#: ../vhffs-panel/dns/prefs.pl:308
msgid "Protocol"
msgstr ""
@@ -3428,7 +3431,7 @@
#: ../vhffs-panel/repository/prefs.pl:100
#: ../vhffs-panel/admin/group/edit.pl:110
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:444
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:461
#, perl-format
msgid "Quota (used/total) : %s/%s"
msgstr ""
@@ -3464,17 +3467,17 @@
msgid "Recopy the code"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:203
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:250
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:280
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:304
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:327
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:368
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:395
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:216
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:263
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:293
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:317
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:340
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:381
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:408
msgid "Record does not exists"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:202
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:215
msgid "Record type doesn't exists"
msgstr ""
@@ -3515,30 +3518,34 @@
msgid "Rights successfully changed"
msgstr "MX bien cambiada"
-#: ../vhffs-panel/dns/prefs.pl:211
+#: ../vhffs-panel/dns/prefs.pl:213
msgid "SRV Record added"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:200
+#: ../vhffs-panel/dns/prefs.pl:202
msgid "SRV Record deleted"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:196
+#: ../vhffs-panel/dns/prefs.pl:198
msgid "SRV Record updated"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:302
+#: ../vhffs-panel/dns/prefs.pl:305
msgid "SRV TYPE"
msgstr ""
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:381
+msgid "SVN"
+msgstr ""
+
#: ../vhffs-intl/extra_strings.pl:39
msgid "SVN Repository"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:551
-#, fuzzy
-msgid "SVN repositories for this group"
-msgstr "Aadir un usuario en esto grupo"
+#: ../vhffs-panel/svn/index.pl:58
+#, perl-format
+msgid "SVN repositories for %s"
+msgstr ""
#: ../vhffs-panel/public/group.pl:174
#, fuzzy
@@ -3553,7 +3560,7 @@
msgid "SVN stats"
msgstr "Estadsticas SVN"
-#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:161
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:171
msgid "SVNweb"
msgstr ""
@@ -3715,7 +3722,7 @@
msgid "Send an email with the subject \"help\" to the following address: \n"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:170
+#: ../vhffs-panel/acl/view.pl:150
msgid "Send it"
msgstr "Envia lo"
@@ -3745,7 +3752,7 @@
msgstr ""
"Error de nombre de servidor. Escribe un nombre de servidor vlido por favor"
-#: ../vhffs-panel/dns/prefs.pl:306
+#: ../vhffs-panel/dns/prefs.pl:309
msgid "Service"
msgstr ""
@@ -3868,15 +3875,14 @@
msgid "Signature"
msgstr ""
-#: ../vhffs-panel/acl/submit.pl:115 ../vhffs-panel/acl/add_acl_group.pl:102
-#: ../vhffs-panel/acl/add_acl_user.pl:102
+#: ../vhffs-panel/acl/view.pl:90 ../vhffs-panel/acl/view.pl:105
#, fuzzy
msgid "Sorry, can't add ACL"
msgstr "Lo sentimos mucho, imposible aadir un ACL"
-#: ../vhffs-panel/acl/submit.pl:104
-msgid "Sorry, can't delete this ACL"
-msgstr "Lo sentimos mucho, imposible de destruire esta ACL"
+#: ../vhffs-panel/acl/view.pl:120
+msgid "Sorry, can't update ACL"
+msgstr ""
#: ../vhffs-panel/mail/spambox.pl:101
msgid "Spam protection is not allowed"
@@ -3917,7 +3923,7 @@
msgid "Su !"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:293
+#: ../vhffs-panel/dns/prefs.pl:296
#, fuzzy
msgid "Subdomain name"
msgstr "Nombre de Dominio"
@@ -3932,8 +3938,8 @@
msgid "Subject: "
msgstr "Tema"
-#: ../vhffs-panel/dns/prefs.pl:285 ../vhffs-panel/dns/prefs.pl:291
-#: ../vhffs-panel/dns/prefs.pl:312
+#: ../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"
@@ -3974,7 +3980,7 @@
msgid "Subversion Admin"
msgstr "Admin Subversion"
-#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:143
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:153
#, fuzzy
msgid "Subversion repository"
msgstr "Admin repositorio Subversion"
@@ -4027,15 +4033,15 @@
msgid "Suspended before deletion"
msgstr "Suspendido antes destruccin"
-#: ../vhffs-panel/dns/prefs.pl:216
+#: ../vhffs-panel/dns/prefs.pl:218
msgid "TXT Record added"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:227
+#: ../vhffs-panel/dns/prefs.pl:229
msgid "TXT Record deleted"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:222
+#: ../vhffs-panel/dns/prefs.pl:224
msgid "TXT Record updated"
msgstr ""
@@ -4051,12 +4057,12 @@
msgid "Tell us what the use of this web space will be"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:318
+#: ../vhffs-panel/dns/prefs.pl:321
msgid "Text"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:384
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:396
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:397
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:409
msgid "Text can't be empty"
msgstr ""
@@ -4135,11 +4141,6 @@
msgid "The following address %s is not on the list %s\n"
msgstr ""
-#: ../vhffs-panel/acl/add_acl_group.pl:90
-#, fuzzy
-msgid "The group does not exist"
-msgstr "El grupo no existe"
-
#: ../vhffs-panel/group/project_submit.pl:78
msgid "The groupname can have no more than 12 caracters."
msgstr ""
@@ -4240,10 +4241,10 @@
msgstr "Esto grupo ser destruido"
#: ../vhffs-panel/mailinglist/prefs.pl:202 ../vhffs-panel/svn/prefs.pl:123
-#: ../vhffs-panel/dns/prefs.pl:264 ../vhffs-panel/pgsql/prefs.pl:108
+#: ../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:127 ../vhffs-panel/mysql/prefs.pl:115
-#: ../vhffs-panel/cvs/prefs.pl:97 ../vhffs-panel/mail/prefs.pl:131
+#: ../vhffs-panel/web/prefs.pl:128 ../vhffs-panel/mysql/prefs.pl:116
+#: ../vhffs-panel/cvs/prefs.pl:98 ../vhffs-panel/mail/prefs.pl:131
#, fuzzy
msgid ""
"This action is non-reversible. All services associated to this project will "
@@ -4301,7 +4302,7 @@
msgid "This group will be deleted"
msgstr "Esto grupo ser destruido"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:357
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:370
msgid "This host is already registered for this service"
msgstr ""
@@ -4358,7 +4359,7 @@
#: ../vhffs-panel/mailinglist/save_options.pl:89
#: ../vhffs-panel/mailinglist/change_right.pl:89
#: ../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:98
+#: ../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
@@ -4432,10 +4433,6 @@
msgid "This subversion repository will NOT be deleted"
msgstr "Esto objecto no ser destruido"
-#: ../vhffs-panel/acl/view.pl:124
-msgid "This type of object is not treated in the panel."
-msgstr "Esto tipo de objecto es no tratado en el panel."
-
#: ../vhffs-panel/group/remove_user_from_group.pl:79
#, fuzzy
msgid "This user does not exists "
@@ -4598,41 +4595,41 @@
msgid "UID of owner"
msgstr "La UID del poseedor"
-#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:135
+#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:162
msgid "URL"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:148
+#: ../vhffs-panel/dns/prefs.pl:150
#, perl-format
msgid "Unable to add A record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:143
+#: ../vhffs-panel/dns/prefs.pl:145
#, perl-format
msgid "Unable to add AAAA record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:187
+#: ../vhffs-panel/dns/prefs.pl:189
#, perl-format
msgid "Unable to add CNAME record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:164
+#: ../vhffs-panel/dns/prefs.pl:166
#, perl-format
msgid "Unable to add MX record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:173
+#: ../vhffs-panel/dns/prefs.pl:175
#, perl-format
msgid "Unable to add NS record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:210
+#: ../vhffs-panel/dns/prefs.pl:212
#, perl-format
msgid "Unable to add SRV record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:215
+#: ../vhffs-panel/dns/prefs.pl:217
#, perl-format
msgid "Unable to add TXT record: %s"
msgstr ""
@@ -4657,37 +4654,37 @@
msgid "Unable to change virus protection status for %s"
msgstr "Es imposible grabar cambios sobre esto dominio"
-#: ../vhffs-panel/dns/prefs.pl:125
+#: ../vhffs-panel/dns/prefs.pl:127
#, perl-format
msgid "Unable to delete A record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:137
+#: ../vhffs-panel/dns/prefs.pl:139
#, perl-format
msgid "Unable to delete AAAA record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:182
+#: ../vhffs-panel/dns/prefs.pl:184
#, perl-format
msgid "Unable to delete CNAME record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:159
+#: ../vhffs-panel/dns/prefs.pl:161
#, perl-format
msgid "Unable to delete MX record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:169
+#: ../vhffs-panel/dns/prefs.pl:171
#, perl-format
msgid "Unable to delete NS record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:199
+#: ../vhffs-panel/dns/prefs.pl:201
#, perl-format
msgid "Unable to delete SRV record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:226
+#: ../vhffs-panel/dns/prefs.pl:228
#, perl-format
msgid "Unable to delete TXT record: %s"
msgstr ""
@@ -4706,12 +4703,32 @@
msgid "Unable to delete this domain"
msgstr "Es imposible destruir esto dominio"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:238
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:268
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:251
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:281
msgid ""
"Unable to find default redirection address, please contact administrators"
msgstr ""
+#: ../vhffs-panel/cvs/index.pl:61
+msgid "Unable to get CVS repositories"
+msgstr ""
+
+#: ../vhffs-panel/dns/index.pl:61
+msgid "Unable to get DNS"
+msgstr ""
+
+#: ../vhffs-panel/mysql/index.pl:61
+msgid "Unable to get MySQL databases."
+msgstr ""
+
+#: ../vhffs-panel/pgsql/index.pl:61
+msgid "Unable to get PgSQL databases"
+msgstr ""
+
+#: ../vhffs-panel/svn/index.pl:61
+msgid "Unable to get SVN repositories"
+msgstr ""
+
#: ../vhffs-panel/admin/mail/delete_box.pl:76
#: ../vhffs-panel/admin/mail/password_box.pl:77
#: ../vhffs-panel/admin/mail/delete_forward.pl:77
@@ -4725,32 +4742,48 @@
msgid "Unable to get information on mail domain %s"
msgstr "Es imposible grabar cambios sobre esto dominio"
-#: ../vhffs-panel/dns/prefs.pl:120
+#: ../vhffs-panel/mail/index.pl:61
+msgid "Unable to get mail domains"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/index.pl:61
+msgid "Unable to get mailing lists"
+msgstr ""
+
+#: ../vhffs-panel/repository/index.pl:61
+msgid "Unable to get repositories"
+msgstr ""
+
+#: ../vhffs-panel/web/index.pl:61
+msgid "Unable to get webareas"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:122
#, perl-format
msgid "Unable to modify A record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:132
+#: ../vhffs-panel/dns/prefs.pl:134
#, perl-format
msgid "Unable to modify AAAA record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:178
+#: ../vhffs-panel/dns/prefs.pl:180
#, perl-format
msgid "Unable to modify CNAME record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:154
+#: ../vhffs-panel/dns/prefs.pl:156
#, perl-format
msgid "Unable to modify MX record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:195
+#: ../vhffs-panel/dns/prefs.pl:197
#, perl-format
msgid "Unable to modify SRV record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:221
+#: ../vhffs-panel/dns/prefs.pl:223
#, perl-format
msgid "Unable to modify TXT record: %s"
msgstr ""
@@ -4785,20 +4818,20 @@
msgid "Unknown"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:205
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:241
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:253
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:271
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:283
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:295
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:307
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:318
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:330
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:218
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:254
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:266
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:284
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:296
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:308
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:320
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:331
#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:343
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:359
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:374
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:386
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:398
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:356
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:372
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:387
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:399
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:411
msgid "Unknown error"
msgstr ""
@@ -4826,7 +4859,7 @@
msgid "Update signature"
msgstr "Puesto al da!"
-#: ../vhffs-panel/dns/prefs.pl:253
+#: ../vhffs-panel/dns/prefs.pl:255
#, perl-format
msgid "Use @ for origin (%s)"
msgstr ""
@@ -4893,12 +4926,16 @@
msgid "User is not active yet"
msgstr ""
+#: ../vhffs-panel/acl/view.pl:86
+msgid "User not found"
+msgstr ""
+
#: ../vhffs-panel/public/index.pl:65
msgid "User public area"
msgstr ""
#: ../vhffs-panel/subscribe.pl:198 ../vhffs-panel/user/prefs.pl:253
-#: ../vhffs-panel/acl/view.pl:150 ../vhffs-panel/group/prefs.pl:104
+#: ../vhffs-panel/acl/view.pl:171 ../vhffs-panel/group/prefs.pl:104
#: ../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
@@ -4909,7 +4946,8 @@
msgid "Username for this database"
msgstr "Identificador por esta base de datos"
-#: ../vhffs-panel/admin/user/edit.pl:95 ../vhffs-panel/admin/user/show.pl:96
+#: ../vhffs-panel/acl/view.pl:132 ../vhffs-panel/admin/user/edit.pl:95
+#: ../vhffs-panel/admin/user/show.pl:96
msgid "Username:"
msgstr "Identificador:"
@@ -4963,19 +5001,6 @@
msgid "View archives"
msgstr "Abrir los archivos"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:459
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:483
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:509
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:535
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:561
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:588
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:614
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:640
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:665
-#, fuzzy
-msgid "View history"
-msgstr "Historia"
-
#: ../vhffs-panel/admin/broadcast_view.pl:84
msgid "View mailing"
msgstr ""
@@ -5049,6 +5074,10 @@
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"
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:377
+msgid "Web"
+msgstr ""
+
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:117
msgid "Web Admin"
msgstr "Admin Web"
@@ -5063,7 +5092,7 @@
msgid "Web Area awaiting validation"
msgstr "Zona Web por validar"
-#: ../vhffs-api/src/Vhffs/Panel/Web.pm:137
+#: ../vhffs-api/src/Vhffs/Panel/Web.pm:159
msgid "Web Areas"
msgstr "Zonas Web"
@@ -5076,10 +5105,10 @@
msgid "Webarea"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:449
-#, fuzzy
-msgid "Webarea for this group"
-msgstr "Bsqueda sobre un grupo"
+#: ../vhffs-panel/web/index.pl:58
+#, perl-format
+msgid "Webareas for %s"
+msgstr ""
#: ../vhffs-panel/public/group.pl:124
#, fuzzy
@@ -5091,11 +5120,11 @@
msgid "Websites area"
msgstr "Zonas Web"
-#: ../vhffs-panel/dns/prefs.pl:310 ../vhffs-panel/dns/prefs.pl:395
+#: ../vhffs-panel/dns/prefs.pl:313 ../vhffs-panel/dns/prefs.pl:398
msgid "Weight"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:413
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:430
msgid "Welcome"
msgstr "Bienvenido"
@@ -5124,17 +5153,17 @@
msgid "Woah, %s users and %s groups already trust %s"
msgstr ""
-#: ../vhffs-panel/svn/prefs.pl:119 ../vhffs-panel/dns/prefs.pl:273
+#: ../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:93
+#: ../vhffs-panel/web/prefs.pl:115 ../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:266
-#: ../vhffs-panel/pgsql/prefs.pl:110 ../vhffs-panel/group/prefs.pl:100
-#: ../vhffs-panel/repository/prefs.pl:105 ../vhffs-panel/web/prefs.pl:129
-#: ../vhffs-panel/mysql/prefs.pl:117 ../vhffs-panel/cvs/prefs.pl:99
+#: ../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/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)"
@@ -5199,8 +5228,8 @@
"\n"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:258 ../vhffs-panel/web/prefs.pl:123
-#: ../vhffs-panel/mail/prefs.pl:138
+#: ../vhffs-panel/svn/prefs.pl:131 ../vhffs-panel/dns/prefs.pl:261
+#: ../vhffs-panel/web/prefs.pl:123 ../vhffs-panel/mail/prefs.pl:139
#, fuzzy
msgid ""
"You can Manage rights on this service for each user in the VHFFS database. "
@@ -5250,6 +5279,14 @@
msgid "You have been successfully subscribed to the list %s\n"
msgstr "Esto bzon es bien aadido a esto dominio"
+#: ../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 ""
+
#: ../vhffs-panel/logout.pl:59
#, fuzzy
msgid "You left your VHFFS session!"
@@ -5333,7 +5370,7 @@
#: ../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:91 ../vhffs-panel/dns/prefs.pl:108
+#: ../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
@@ -5368,9 +5405,12 @@
msgid "You're not allowed to do this (ACL rights) "
msgstr "Vous n'tes pas autoris faire ceci (Droits ACL)"
-#: ../vhffs-panel/history.pl:98 ../vhffs-panel/acl/view.pl:141
-#: ../vhffs-panel/acl/submit.pl:95 ../vhffs-panel/acl/add_acl_group.pl:96
-#: ../vhffs-panel/acl/add_acl_user.pl:96
+#: ../vhffs-panel/acl/view.pl:88 ../vhffs-panel/acl/view.pl:103
+#: ../vhffs-panel/acl/view.pl:118
+msgid "You're not allowed to manage this object's ACL"
+msgstr ""
+
+#: ../vhffs-panel/history.pl:98 ../vhffs-panel/acl/view.pl:76
#, fuzzy
msgid "You're not allowed to view this object's ACL"
msgstr "No esta autorizado a ver el ACL de esto objecto"
@@ -5646,7 +5686,7 @@
msgid "mail"
msgstr "mail"
-#: ../vhffs-panel/svn/prefs.pl:143 ../vhffs-panel/svn/prefs_save.pl:115
+#: ../vhffs-panel/svn/prefs.pl:144 ../vhffs-panel/svn/prefs_save.pl:115
msgid "ml adress here..."
msgstr ""
@@ -5730,6 +5770,106 @@
msgstr "Mail por la lista"
#, fuzzy
+#~ msgid "CVS repositories for this group"
+#~ msgstr "Todas las listas de repositorios CVS"
+
+#, fuzzy
+#~ msgid "Domains for this group"
+#~ msgstr "Modificar esto grupo"
+
+#, fuzzy
+#~ msgid "Go to admin"
+#~ msgstr "Ok, id sobre el admin ACL"
+
+#, fuzzy
+#~ msgid "Mail domain for this group"
+#~ msgstr "Modificar esto grupo"
+
+#, fuzzy
+#~ msgid "Mailing-lists for this group"
+#~ msgstr "Admin Mailing-lists"
+
+#, fuzzy
+#~ msgid "Mysql database for this group"
+#~ msgstr "Aadir un usuario en esto grupo"
+
+#, fuzzy
+#~ msgid "No DNS domain for this group"
+#~ msgstr "Modificar esto grupo"
+
+#, fuzzy
+#~ msgid "No Mail domain for this group"
+#~ msgstr "Modificar esto grupo"
+
+#, fuzzy
+#~ msgid "No Mailing-list for this group"
+#~ msgstr "Mailing por personas albergadas"
+
+#, fuzzy
+#~ msgid "No PostgreSQL database for this group"
+#~ msgstr "Todas las listas de bases de datos PostgreSQL"
+
+#, fuzzy
+#~ msgid "No download repository for this group"
+#~ msgstr "Aadir un usuario en esto grupo"
+
+#, fuzzy
+#~ msgid "No mysql database for this group"
+#~ msgstr "Destruir esto usuario desde esto grupo"
+
+#, fuzzy
+#~ msgid "PostgreSQL database for this group"
+#~ msgstr "Base de datos PostgreSQL"
+
+#, fuzzy
+#~ msgid "SVN repositories for this group"
+#~ msgstr "Aadir un usuario en esto grupo"
+
+#, fuzzy
+#~ msgid "View history"
+#~ msgstr "Historia"
+
+#~ msgid "ACL successfully added"
+#~ msgstr "ACL bien aadida"
+
+#~ msgid "ACL successfully deleted"
+#~ msgstr "ACL bien destruida"
+
+#~ msgid "ACL successfully modified"
+#~ msgstr "ACL bien modificada"
+
+#, fuzzy
+#~ msgid "CGI Error "
+#~ msgstr "Error CGI"
+
+#~ msgid "Cannot get informations on this object %s %s"
+#~ msgstr "No se ha podido obtener informacines sobre esto objecto %s %s"
+
+#~ msgid "Modify this ACL"
+#~ msgstr "Modificar esta ACL"
+
+#, fuzzy
+#~ msgid "No webarea for this group"
+#~ msgstr "Aadir un usuario en esto grupo"
+
+#~ msgid "Object Error"
+#~ msgstr "Error Objecto"
+
+#~ msgid "Sorry, can't delete this ACL"
+#~ msgstr "Lo sentimos mucho, imposible de destruire esta ACL"
+
+#, fuzzy
+#~ msgid "The group does not exist"
+#~ msgstr "El grupo no existe"
+
+#~ msgid "This type of object is not treated in the panel."
+#~ msgstr "Esto tipo de objecto es no tratado en el panel."
+
+#, fuzzy
+#~ msgid "Webarea for this group"
+#~ msgstr "Bsqueda sobre un grupo"
+
+#, fuzzy
#~ msgid "ACL Administration for : "
#~ msgstr "Administracin PostgreSQL"
Modified: branches/vhffs-design/vhffs-intl/src/fr.po
===================================================================
--- branches/vhffs-design/vhffs-intl/src/fr.po 2007-05-22 11:38:50 UTC (rev 622)
+++ branches/vhffs-design/vhffs-intl/src/fr.po 2007-05-23 06:15:23 UTC (rev 623)
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: VHFFS 4.1 French strings\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-17 21:20+0200\n"
+"POT-Creation-Date: 2007-05-23 08:06+0200\n"
"PO-Revision-Date: 2006-04-26 11:41+0200\n"
"Last-Translator: Christophe Benz <christophebenz@xxxxxxxx>\n"
"Language-Team: <fr@xxxxxxxxx>\n"
@@ -74,21 +74,23 @@
msgid "<new site>."
msgstr "<nom de votre nouveau site>."
-#: ../vhffs-panel/dns/prefs.pl:324
+#: ../vhffs-panel/dns/prefs.pl:327
#, perl-format
msgid "@ represents the origin (%s)"
msgstr "@ représente l'origine (%s)"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:341
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:354
msgid ""
"A CNAME, A or AAAA record with the same name already exists for this domain"
-msgstr "Un enregistrement CNAME, A ou AAAA avec le même nom existe déjà pour ce domaine"
+msgstr ""
+"Un enregistrement CNAME, A ou AAAA avec le même nom existe déjà pour ce "
+"domaine"
-#: ../vhffs-panel/dns/prefs.pl:126
+#: ../vhffs-panel/dns/prefs.pl:128
msgid "A Record deleted"
msgstr "Enregistrement A supprimé"
-#: ../vhffs-panel/dns/prefs.pl:121
+#: ../vhffs-panel/dns/prefs.pl:123
msgid "A Record updated"
msgstr "Enregistrement A mis à jour"
@@ -105,48 +107,44 @@
"%s\n"
"\n"
msgstr ""
-"Une nouvelle personne désire s'inscrire à la liste de diffusion suivante :\n"
+"Une nouvelle personne désire s'inscrire à la liste de diffusion "
+"suivante :\n"
"\n"
"%s\n"
"\n"
-#: ../vhffs-panel/dns/prefs.pl:149
+#: ../vhffs-panel/dns/prefs.pl:151
msgid "A record added"
msgstr "Enregistrement A ajouté"
-#: ../vhffs-panel/dns/prefs.pl:138
+#: ../vhffs-panel/dns/prefs.pl:140
msgid "AAAA Record deleted"
msgstr "Enregistrement AAAA supprimé"
-#: ../vhffs-panel/dns/prefs.pl:133
+#: ../vhffs-panel/dns/prefs.pl:135
msgid "AAAA Record updated"
msgstr "Enregistrement AAAA mis à jour"
-#: ../vhffs-panel/dns/prefs.pl:144
+#: ../vhffs-panel/dns/prefs.pl:146
msgid "AAAA record added"
msgstr "Enregistrement AAAA ajouté"
-#: ../vhffs-panel/acl/view.pl:148
+#: ../vhffs-panel/acl/view.pl:127
msgid "ACL Administration"
msgstr "Administration des ACL"
-#: ../vhffs-panel/acl/view.pl:167
+#: ../vhffs-panel/acl/view.pl:147
msgid "ACL level"
msgstr "Niveau d'accès"
-#: ../vhffs-panel/acl/add_acl_group.pl:106
-#: ../vhffs-panel/acl/add_acl_user.pl:106
-msgid "ACL successfully added"
-msgstr "ACL ajoutée avec succès"
+#: ../vhffs-panel/acl/view.pl:92 ../vhffs-panel/acl/view.pl:107
+msgid "ACL sucessfuly added"
+msgstr ""
-#: ../vhffs-panel/acl/submit.pl:108
-msgid "ACL successfully deleted"
-msgstr "ACL supprimée"
+#: ../vhffs-panel/acl/view.pl:122
+msgid "ACL updated"
+msgstr ""
-#: ../vhffs-panel/acl/submit.pl:119
-msgid "ACL successfully modified"
-msgstr "ACL modifiée"
-
#: ../vhffs-panel/admin/moderation.pl:115
#: ../vhffs-panel/admin/moderation.pl:157
#: ../vhffs-panel/admin/moderation.pl:198
@@ -188,27 +186,27 @@
msgid "Activated"
msgstr "Activé"
-#: ../vhffs-panel/mailinglist/prefs.pl:156 ../vhffs-panel/dns/prefs.pl:277
+#: ../vhffs-panel/mailinglist/prefs.pl:156 ../vhffs-panel/dns/prefs.pl:280
msgid "Add !"
msgstr "Ajouter !"
-#: ../vhffs-panel/dns/prefs.pl:290
+#: ../vhffs-panel/dns/prefs.pl:293
msgid "Add a CNAME field to your domain"
msgstr "Ajouter un champ CNAME à votre domaine"
-#: ../vhffs-panel/dns/prefs.pl:282
+#: ../vhffs-panel/dns/prefs.pl:285
msgid "Add a MX field to your domain"
msgstr "Ajouter un champ MX à votre domaine"
-#: ../vhffs-panel/dns/prefs.pl:298
+#: ../vhffs-panel/dns/prefs.pl:301
msgid "Add a NS field to your domain"
msgstr "Ajouter un champ NS à votre domaine"
-#: ../vhffs-panel/dns/prefs.pl:304
+#: ../vhffs-panel/dns/prefs.pl:307
msgid "Add a SRV record to your domain"
msgstr "Ajouter un enregistrement SRV à votre domaine"
-#: ../vhffs-panel/dns/prefs.pl:316
+#: ../vhffs-panel/dns/prefs.pl:319
msgid "Add a TXT record"
msgstr "Ajouter un enregistrement TXT"
@@ -228,11 +226,11 @@
msgid "Add a user in this group"
msgstr "Ajouter un utilisateur dans ce groupe"
-#: ../vhffs-panel/dns/prefs.pl:251
+#: ../vhffs-panel/dns/prefs.pl:253
msgid "Add an A record"
msgstr "Ajouter un enregistrement de type A"
-#: ../vhffs-panel/dns/prefs.pl:252
+#: ../vhffs-panel/dns/prefs.pl:254
msgid "Add an AAAA record"
msgstr "Ajouter un enregistrement AAAA"
@@ -275,8 +273,8 @@
msgid "Admin Download repository"
msgstr "Administration des espaces de téléchargement"
-#: ../vhffs-panel/dns/prefs.pl:257 ../vhffs-panel/web/prefs.pl:122
-#: ../vhffs-panel/mail/prefs.pl:137
+#: ../vhffs-panel/svn/prefs.pl:130 ../vhffs-panel/dns/prefs.pl:260
+#: ../vhffs-panel/web/prefs.pl:122 ../vhffs-panel/mail/prefs.pl:138
msgid "Admin Rights on this object (ACL)"
msgstr "Droits d'admin sur cet objet (ACL)"
@@ -327,31 +325,31 @@
msgid "All"
msgstr "Tous"
-#: ../vhffs-panel/dns/prefs.pl:245
+#: ../vhffs-panel/dns/prefs.pl:247
msgid "All A TYPE for your domain name"
msgstr "Enregistrements A pour votre domaine"
-#: ../vhffs-panel/dns/prefs.pl:246
+#: ../vhffs-panel/dns/prefs.pl:248
msgid "All AAAA TYPE for your domain name"
msgstr "Enregistrement AAAA pour votre domaine"
-#: ../vhffs-panel/dns/prefs.pl:289
+#: ../vhffs-panel/dns/prefs.pl:292
msgid "All CNAME TYPE for your domain name"
msgstr "Enregistrements CNAME pour votre domaine"
-#: ../vhffs-panel/dns/prefs.pl:248
+#: ../vhffs-panel/dns/prefs.pl:250
msgid "All CNAME for your domain name"
msgstr "Enregistrements CNAME pour votre domaine"
-#: ../vhffs-panel/dns/prefs.pl:247 ../vhffs-panel/dns/prefs.pl:281
+#: ../vhffs-panel/dns/prefs.pl:249 ../vhffs-panel/dns/prefs.pl:284
msgid "All MX TYPE for your domain name"
msgstr "Tous les champs MX pour votre domaine"
-#: ../vhffs-panel/dns/prefs.pl:297
+#: ../vhffs-panel/dns/prefs.pl:300
msgid "All NS TYPE for your domain name"
msgstr "Tous les enregistrements NS pour votre domaine"
-#: ../vhffs-panel/dns/prefs.pl:303
+#: ../vhffs-panel/dns/prefs.pl:306
msgid "All SRV records for your domain name"
msgstr "Enregistrements SRV pour votre domaine"
@@ -359,7 +357,7 @@
msgid "All Subversion repositories lists"
msgstr "Liste de tous les dépôts Subversion"
-#: ../vhffs-panel/dns/prefs.pl:317
+#: ../vhffs-panel/dns/prefs.pl:320
msgid "All TXT records for your domain name"
msgstr "Enregistrements TXT pour votre domaine"
@@ -379,7 +377,9 @@
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:47
msgid ""
"All mails with commands must be sent on YOURLIST-request@xxxxxxxxxx list.\n"
-msgstr "Tous les mails contenant des commandes doivent être envoyés à l'adresse VOTRELISTE-request@xxxxxxxxxx.\n"
+msgstr ""
+"Tous les mails contenant des commandes doivent être envoyés à l'adresse "
+"VOTRELISTE-request@xxxxxxxxxx.\n"
#: ../vhffs-panel/admin/object/list.pl:84
msgid "All objects List"
@@ -402,11 +402,11 @@
"Existe déjà sur ce domaine ou paramètres incorrects. Vérifiez votre "
"domaine"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:293
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:306
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:316
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:329
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."
@@ -417,7 +417,8 @@
"\n"
"%s\n"
"\n"
-msgstr "Une erreur est survenue lors de votre inscription à la liste suivante :\n"
+msgstr ""
+"Une erreur est survenue lors de votre inscription à la liste suivante :\n"
"\n"
"%s\n"
"\n"
@@ -609,23 +610,23 @@
msgid "Are you SURE you want DELETE this Mail Area ?"
msgstr "Êtes-vous SÛR de vouloir détruire ce domaine mail ?"
-#: ../vhffs-panel/mysql/prefs.pl:116
+#: ../vhffs-panel/mysql/prefs.pl:117
msgid "Are you SURE you want DELETE this MySQL database ?"
msgstr "Êtes-vous SÛR de vouloir supprimer cette base de données MySQL ?"
-#: ../vhffs-panel/pgsql/prefs.pl:109
+#: ../vhffs-panel/pgsql/prefs.pl:110
msgid "Are you SURE you want DELETE this PostgreSQL database ?"
msgstr "Êtes-vous SÛR de vouloir supprimer cette base de données PostgreSQL ?"
-#: ../vhffs-panel/web/prefs.pl:128
+#: ../vhffs-panel/web/prefs.pl:129
msgid "Are you SURE you want DELETE this Web Area ?"
msgstr "Êtes-vous SÛR de vouloir supprimer cette zone web ?"
-#: ../vhffs-panel/cvs/prefs.pl:98
+#: ../vhffs-panel/cvs/prefs.pl:99
msgid "Are you SURE you want DELETE this cvs repository ?"
msgstr "Êtes-vous SÛR de vouloir supprimer ce dépôt CVS ?"
-#: ../vhffs-panel/dns/prefs.pl:265
+#: ../vhffs-panel/dns/prefs.pl:268
msgid "Are you SURE you want DELETE this domain ?"
msgstr "Êtes-vous SÛR de vouloir supprimer ce domaine ?"
@@ -778,17 +779,13 @@
msgstr "Erreur CGI"
#: ../vhffs-panel/mailinglist/submit.pl:96 ../vhffs-panel/svn/prefs.pl:82
-#: ../vhffs-panel/svn/create.pl:64 ../vhffs-panel/acl/submit.pl:85
+#: ../vhffs-panel/svn/create.pl:64 ../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 "Erreur CGI"
-#: ../vhffs-panel/acl/add_acl_group.pl:86
-#: ../vhffs-panel/acl/add_acl_user.pl:86
-msgid "CGI Error "
-msgstr "Erreur 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
@@ -816,7 +813,7 @@
#: ../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/dns/delete.pl:79 ../vhffs-panel/dns/prefs.pl:77
+#: ../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 "Erreur CGI"
@@ -829,18 +826,22 @@
msgid "CGI problem"
msgstr "Problème CGI"
-#: ../vhffs-panel/dns/prefs.pl:188
+#: ../vhffs-panel/dns/prefs.pl:190
msgid "CNAME Record added"
msgstr "Enregistrement CNAME ajouté"
-#: ../vhffs-panel/dns/prefs.pl:183
+#: ../vhffs-panel/dns/prefs.pl:185
msgid "CNAME Record deleted"
msgstr "Enregistrement CNAME supprimé"
-#: ../vhffs-panel/dns/prefs.pl:179
+#: ../vhffs-panel/dns/prefs.pl:181
msgid "CNAME Record updated"
msgstr "Enregistrement CNAME mis à jour"
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:380
+msgid "CVS"
+msgstr ""
+
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:145
msgid "CVS Admin"
msgstr "Administration des dépôts CVS"
@@ -857,11 +858,12 @@
msgid "CVS Search"
msgstr "Recherche de dépôts CVS"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:525
-msgid "CVS repositories for this group"
-msgstr "Dépôts CVS pour ce groupe"
+#: ../vhffs-panel/cvs/index.pl:58
+#, perl-format
+msgid "CVS repositories for %s"
+msgstr "Dépôts CVS pour %s"
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:118
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:147
msgid "CVS repository"
msgstr "Dépôt CVS"
@@ -881,32 +883,27 @@
msgid "CVS stats"
msgstr "Statistiques CVS"
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:136
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:165
msgid "CVSweb"
msgstr "CVS par le web"
-#: ../vhffs-panel/acl/view.pl:165 ../vhffs-panel/acl/view.pl:189
-#: ../vhffs-panel/acl/view.pl:236
+#: ../vhffs-panel/acl/view.pl:139 ../vhffs-panel/acl/view.pl:165
msgid "Can destroy this service"
msgstr "Peut détruire ce service"
-#: ../vhffs-panel/acl/view.pl:164 ../vhffs-panel/acl/view.pl:188
-#: ../vhffs-panel/acl/view.pl:235
+#: ../vhffs-panel/acl/view.pl:138 ../vhffs-panel/acl/view.pl:164
msgid "Can manage ACL for this service"
msgstr "Peut gérer les ACL pour ce service"
-#: ../vhffs-panel/acl/view.pl:163 ../vhffs-panel/acl/view.pl:187
-#: ../vhffs-panel/acl/view.pl:234
+#: ../vhffs-panel/acl/view.pl:137 ../vhffs-panel/acl/view.pl:163
msgid "Can modify this service"
msgstr "Peut modifier ce service"
-#: ../vhffs-panel/acl/view.pl:162 ../vhffs-panel/acl/view.pl:186
-#: ../vhffs-panel/acl/view.pl:233
+#: ../vhffs-panel/acl/view.pl:136 ../vhffs-panel/acl/view.pl:162
msgid "Can view this service"
msgstr "Peut voir ce service"
-#: ../vhffs-panel/acl/view.pl:161 ../vhffs-panel/acl/view.pl:185
-#: ../vhffs-panel/acl/view.pl:232
+#: ../vhffs-panel/acl/view.pl:135 ../vhffs-panel/acl/view.pl:161
msgid "Can't access"
msgstr "Ne peut pas accéder"
@@ -990,6 +987,11 @@
msgid "Cannot get information on this object"
msgstr "Impossible d'obtenir des informations sur cet objet"
+#: ../vhffs-panel/acl/view.pl:71
+#, perl-format
+msgid "Cannot get informations on object #%d"
+msgstr ""
+
#: ../vhffs-panel/mailinglist/delete.pl:82
#: ../vhffs-panel/mailinglist/save_sig.pl:81
#: ../vhffs-panel/mailinglist/add_sub.pl:83
@@ -997,7 +999,7 @@
#: ../vhffs-panel/mailinglist/save_options.pl:85
#: ../vhffs-panel/mailinglist/change_right.pl:85
#: ../vhffs-panel/mailinglist/del_member.pl:83 ../vhffs-panel/svn/prefs.pl:93
-#: ../vhffs-panel/dns/delete.pl:84 ../vhffs-panel/dns/prefs.pl:84
+#: ../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
@@ -1006,11 +1008,6 @@
msgid "Cannot get informations on this object"
msgstr "Impossible d'obtenir des informations sur cet objet"
-#: ../vhffs-panel/acl/view.pl:134
-#, perl-format
-msgid "Cannot get informations on this object %s %s"
-msgstr "Impossible d'obtenir des informations sur cet objet %s %s"
-
#: ../vhffs-panel/admin/stats.pl:73
msgid "Cannot get statistics"
msgstr "Impossible d'obtenir les statistiques"
@@ -1066,11 +1063,11 @@
msgid "Cc: "
msgstr "Cc : "
-#: ../vhffs-panel/mail/prefs.pl:210
+#: ../vhffs-panel/mail/prefs.pl:211
msgid "Change Forward"
msgstr "Modifier la redirection"
-#: ../vhffs-panel/admin/mail/edit.pl:142 ../vhffs-panel/mail/prefs.pl:151
+#: ../vhffs-panel/admin/mail/edit.pl:142 ../vhffs-panel/mail/prefs.pl:152
msgid "Change Password"
msgstr "Modifier le mot de passe"
@@ -1160,7 +1157,9 @@
#: ../vhffs-panel/subscribe.pl:215
msgid "Confirmation code, contact administrator team if you can't read it"
-msgstr "Code de validation, contactez l'équipe d'administration si vous ne pouvez pas le lire."
+msgstr ""
+"Code de validation, contactez l'équipe d'administration si vous ne pouvez "
+"pas le lire."
#: ../vhffs-panel/subscribe.pl:204 ../vhffs-panel/user/prefs.pl:260
#: ../vhffs-panel/admin/user/edit.pl:107 ../vhffs-panel/admin/user/show.pl:107
@@ -1175,16 +1174,16 @@
msgid "Crawl"
msgstr "Crawl"
-#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:142
-#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:147
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:152
+#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:176
#: ../vhffs-api/src/Vhffs/Panel/Mailinglist.pm:146
-#: ../vhffs-api/src/Vhffs/Panel/Web.pm:136
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:117
-#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:119
+#: ../vhffs-api/src/Vhffs/Panel/Web.pm:158
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:146
+#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:146
#: ../vhffs-api/src/Vhffs/Panel/Group.pm:163
-#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:140
-#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:118
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:151
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:162
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:128
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:164
msgid "Create"
msgstr "Créer"
@@ -1261,7 +1260,7 @@
msgid "Current avatar"
msgstr "Avatar utilisé"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:370
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:372
msgid "Current group:"
msgstr "Groupe actuel :"
@@ -1277,11 +1276,12 @@
msgid "DB Search"
msgstr "Recherche de base de données"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:152
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:382
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:165
msgid "DNS"
msgstr "Nom de domaine"
-#: ../vhffs-panel/dns/prefs.pl:240
+#: ../vhffs-panel/dns/prefs.pl:242
#, perl-format
msgid "DNS Administration - %s"
msgstr "Administration DNS - %s"
@@ -1298,8 +1298,8 @@
msgid "DNS stats"
msgstr "Statistiques DNS"
-#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:142
-#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:120
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:164
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:130
msgid "Database Access"
msgstr "Accès aux bases de données"
@@ -1307,20 +1307,20 @@
msgid "Database Name"
msgstr "Nom de la base de données"
-#: ../vhffs-panel/ajax/help.pl:46 ../vhffs-api/src/Vhffs/Panel/DNS.pm:204
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:240
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:252
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:270
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:282
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:294
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:306
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:317
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:329
+#: ../vhffs-panel/ajax/help.pl:46 ../vhffs-api/src/Vhffs/Panel/DNS.pm:217
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:253
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:265
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:283
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:295
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:307
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:319
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:330
#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:342
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:358
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:373
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:385
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:397
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:355
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:371
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:386
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:398
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:410
msgid "Database error"
msgstr "Erreur de base de données"
@@ -1358,14 +1358,14 @@
msgstr "Décembre"
#: ../vhffs-panel/mailinglist/prefs.pl:206 ../vhffs-panel/svn/prefs.pl:127
-#: ../vhffs-panel/user/prefs.pl:281 ../vhffs-panel/dns/prefs.pl:268
-#: ../vhffs-panel/dns/prefs.pl:325 ../vhffs-panel/dns/prefs.pl:337
-#: ../vhffs-panel/dns/prefs.pl:350 ../vhffs-panel/dns/prefs.pl:362
-#: ../vhffs-panel/dns/prefs.pl:378 ../vhffs-panel/dns/prefs.pl:389
-#: ../vhffs-panel/dns/prefs.pl:405 ../vhffs-panel/pgsql/prefs.pl:112
+#: ../vhffs-panel/user/prefs.pl:281 ../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:131 ../vhffs-panel/mysql/prefs.pl:119
-#: ../vhffs-panel/cvs/prefs.pl:101 ../vhffs-panel/mail/prefs.pl:135
+#: ../vhffs-panel/web/prefs.pl:132 ../vhffs-panel/mysql/prefs.pl:120
+#: ../vhffs-panel/cvs/prefs.pl:102 ../vhffs-panel/mail/prefs.pl:135
msgid "Delete"
msgstr "Supprimer"
@@ -1381,19 +1381,19 @@
msgid "Delete from list"
msgstr "Supprimer de la liste"
-#: ../vhffs-panel/pgsql/prefs.pl:107
+#: ../vhffs-panel/pgsql/prefs.pl:108
msgid "Delete this PostgreSQL database"
msgstr "Supprimer cette base de données PostgreSQL"
-#: ../vhffs-panel/mysql/prefs.pl:114
+#: ../vhffs-panel/mysql/prefs.pl:115
msgid "Delete this database"
msgstr "Supprimer cette base de données"
-#: ../vhffs-panel/dns/prefs.pl:263
+#: ../vhffs-panel/dns/prefs.pl:266
msgid "Delete this domain name from the VHFFS platform"
msgstr "Supprimer ce nom de domaine"
-#: ../vhffs-panel/admin/mail/edit.pl:144 ../vhffs-panel/mail/prefs.pl:211
+#: ../vhffs-panel/admin/mail/edit.pl:144 ../vhffs-panel/mail/prefs.pl:212
msgid "Delete this forward"
msgstr "Supprimer cette redirection"
@@ -1401,7 +1401,7 @@
msgid "Delete this list"
msgstr "Supprimer cette liste"
-#: ../vhffs-panel/admin/mail/edit.pl:129 ../vhffs-panel/mail/prefs.pl:152
+#: ../vhffs-panel/admin/mail/edit.pl:129 ../vhffs-panel/mail/prefs.pl:153
msgid "Delete this mail account"
msgstr "Supprimer ce compte mail"
@@ -1414,7 +1414,7 @@
msgstr "Supprimer cet envoi en masse"
#: ../vhffs-panel/group/prefs.pl:97 ../vhffs-panel/repository/prefs.pl:102
-#: ../vhffs-panel/cvs/prefs.pl:96
+#: ../vhffs-panel/cvs/prefs.pl:97
msgid "Delete this project"
msgstr "Supprimer ce groupe/projet"
@@ -1422,7 +1422,7 @@
msgid "Delete this repository"
msgstr "Supprimer ce dépôt"
-#: ../vhffs-panel/web/prefs.pl:126
+#: ../vhffs-panel/web/prefs.pl:127
msgid "Delete this web area"
msgstr "Supprimer ce site web"
@@ -1449,20 +1449,24 @@
msgid "Description of your webarea"
msgstr "Description de votre site web"
-#: ../vhffs-panel/dns/prefs.pl:292
+#: ../vhffs-panel/dns/prefs.pl:295
msgid "Destination"
msgstr "Destination"
-#: ../vhffs-panel/mail/prefs.pl:165
+#: ../vhffs-panel/mail/prefs.pl:166
msgid "Disable anti-spam"
msgstr "Désactiver l'anti-spam"
-#: ../vhffs-panel/mail/prefs.pl:184
+#: ../vhffs-panel/mail/prefs.pl:185
msgid "Disable anti-virus"
msgstr "Désactiver l'anti-virus"
-#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:144
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:119
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:383
+msgid "Dl repos"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:154
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:148
msgid "Documentation"
msgstr "Documentation"
@@ -1480,9 +1484,10 @@
msgid "Domain Name"
msgstr "Nom de domaine"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:655
-msgid "Domains for this group"
-msgstr "Domaines pour ce groupe"
+#: ../vhffs-panel/dns/index.pl:58
+#, perl-format
+msgid "Domain names for %s"
+msgstr "Noms de domaine pour %s"
#: ../vhffs-panel/admin/web/edit.pl:103 ../vhffs-panel/admin/web/show.pl:117
msgid "Don't use Crawl"
@@ -1492,11 +1497,12 @@
msgid "Download Repository"
msgstr "Espace de téléchargement"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:630
-msgid "Download repositories for this group"
-msgstr "Espaces de téléchargement pour ce groupe"
+#: ../vhffs-panel/repository/index.pl:58
+#, perl-format
+msgid "Download repositories for %s"
+msgstr "Espaces de téléchargement pour %s"
-#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:120
+#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:147
msgid "Download repository"
msgstr "Espace de téléchargement"
@@ -1564,11 +1570,11 @@
msgid "Email is not correct !"
msgstr "Courriel invalide !"
-#: ../vhffs-panel/mail/prefs.pl:169
+#: ../vhffs-panel/mail/prefs.pl:170
msgid "Enable anti-spam"
msgstr "Activer l'anti-spam"
-#: ../vhffs-panel/mail/prefs.pl:188
+#: ../vhffs-panel/mail/prefs.pl:189
msgid "Enable anti-virus"
msgstr "Activer l'anti-virus"
@@ -1577,6 +1583,14 @@
msgstr ""
"Entrez une adresse mail valide qui recevra tous les emails pour ce domaine"
+#: ../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 ""
+
#: ../vhffs-panel/admin/broadcast_submit.pl:95
msgid "Error !"
msgstr "Erreur"
@@ -1675,6 +1689,20 @@
msgid "Firstname is not correct !"
msgstr "Prénom incorrect !"
+#: ../vhffs-panel/svn/prefs.pl:133
+msgid "Fix permissions in this repository"
+msgstr ""
+
+#: ../vhffs-panel/svn/prefs.pl:135
+msgid "Fix them !"
+msgstr ""
+
+#: ../vhffs-panel/svn/prefs.pl:134
+msgid ""
+"Fixing permissions on a repository solve permission access on the "
+"repository. Can be helpful if you encounter problems"
+msgstr ""
+
#: ../vhffs-panel/admin/mail/delete_forward.pl:109
#, perl-format
msgid "Forward %s deleted"
@@ -1750,20 +1778,12 @@
msgid "Go on login page"
msgstr "Aller à la page d'authentification"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:458
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:482
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:508
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:534
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:560
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:587
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:613
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:639
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:664
-msgid "Go to admin"
-msgstr "Aller à l'administration"
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:704
+msgid "Go to administration"
+msgstr ""
-#: ../vhffs-panel/mailinglist/prefs.pl:216 ../vhffs-panel/svn/prefs.pl:159
-#: ../vhffs-panel/dns/prefs.pl:420
+#: ../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"
@@ -1791,7 +1811,7 @@
msgid "Group"
msgstr "Groupe"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:441
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:457
#, perl-format
msgid "Group %s"
msgstr "Groupe %s"
@@ -1800,10 +1820,18 @@
msgid "Group Admin"
msgstr "Administration des groupes"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:436
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:454
msgid "Group error"
msgstr "Erreur sur le groupe"
+#: ../vhffs-panel/acl/view.pl:101
+msgid "Group not found"
+msgstr ""
+
+#: ../vhffs-panel/acl/view.pl:116
+msgid "Group or user not found"
+msgstr ""
+
#: ../vhffs-panel/cvs/create.pl:93
msgid "Group owning this CVS"
msgstr "Groupe propriétaire de ce dépôt CVS"
@@ -1836,13 +1864,17 @@
msgid "Group public area"
msgstr "Zone publique des groupes"
-#: ../vhffs-panel/acl/view.pl:151 ../vhffs-panel/admin/group/edit.pl:93
+#: ../vhffs-panel/acl/view.pl:176 ../vhffs-panel/admin/group/edit.pl:93
#: ../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"
+#: ../vhffs-panel/acl/view.pl:133
+msgid "Groupname:"
+msgstr ""
+
#: ../vhffs-panel/public/user.pl:89 ../vhffs-panel/public/lastusers.pl:84
msgid "Groups"
msgstr "Groupes"
@@ -1903,7 +1935,9 @@
msgid ""
"His email address is:\n"
" %s\n"
-msgstr "Son adresse email est :\n %s\n"
+msgstr ""
+"Son adresse email est :\n"
+" %s\n"
#: ../vhffs-panel/history.pl:105 ../vhffs-panel/admin/user/edit.pl:110
#: ../vhffs-panel/admin/user/show.pl:111
@@ -1919,24 +1953,25 @@
#: ../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/Svn.pm:159
-#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:171
-#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:162
-#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:170
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:705
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:169
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:181
+#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:191
+#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:199
#: ../vhffs-api/src/Vhffs/Panel/Mailinglist.pm:161
#: ../vhffs-api/src/Vhffs/Panel/Mailinglist.pm:166
-#: ../vhffs-api/src/Vhffs/Panel/Web.pm:152
-#: ../vhffs-api/src/Vhffs/Panel/Web.pm:161
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:133
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:145
-#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:133
-#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:144
+#: ../vhffs-api/src/Vhffs/Panel/Web.pm:174
+#: ../vhffs-api/src/Vhffs/Panel/Web.pm:183
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:162
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:174
+#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:160
+#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:171
#: ../vhffs-api/src/Vhffs/Panel/Group.pm:178
-#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:156
-#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:165
-#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:135
-#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:144
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:171
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:178
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:187
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:145
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:154
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:184
msgid "History"
msgstr "Historique"
@@ -1956,8 +1991,8 @@
msgid "Homepage of public area"
msgstr "Aller à la page d'accueil de la zone publique"
-#: ../vhffs-panel/dns/prefs.pl:307 ../vhffs-panel/dns/prefs.pl:392
-#: ../vhffs-panel/dns/prefs.pl:408
+#: ../vhffs-panel/dns/prefs.pl:310 ../vhffs-panel/dns/prefs.pl:395
+#: ../vhffs-panel/dns/prefs.pl:411
msgid "Host"
msgstr "Hôte"
@@ -1967,7 +2002,8 @@
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:160
msgid "However this list require approval for new subscribers.\n"
-msgstr "Cependant, cette liste nécessite une validation des nouveaux inscrits.\n"
+msgstr ""
+"Cependant, cette liste nécessite une validation des nouveaux inscrits.\n"
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:115
#, perl-format
@@ -1978,11 +2014,11 @@
msgid "I've lost my password"
msgstr "J'ai perdu mon mot de passe"
-#: ../vhffs-panel/dns/prefs.pl:275
+#: ../vhffs-panel/dns/prefs.pl:278
msgid "IP"
msgstr "Adresse IP"
-#: ../vhffs-panel/dns/prefs.pl:299
+#: ../vhffs-panel/dns/prefs.pl:302
msgid "IP/host of your NS"
msgstr "IP/machine de votre nom de domaine"
@@ -2031,30 +2067,30 @@
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:239
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:251
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:281
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:252
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:264
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:294
msgid "Invalid IP address"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:269
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:282
msgid "Invalid IP v6 address"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:339
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:352
msgid "Invalid alias"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:328
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:341
msgid "Invalid destination"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:353
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:369
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:366
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:382
msgid "Invalid destination domain name"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:340
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:353
msgid "Invalid destination host"
msgstr ""
@@ -2062,12 +2098,12 @@
msgid "Invalid domain name"
msgstr "Nom de domaine invalide"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:305
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:318
msgid "Invalid host"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:291
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:315
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:304
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:328
msgid "Invalid hostname"
msgstr ""
@@ -2075,38 +2111,38 @@
msgid "Invalid mail domain"
msgstr "Nom de domaine mail invalide"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:354
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:370
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:367
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:383
msgid "Invalid port"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:236
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:266
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:383
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:249
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:279
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:396
msgid "Invalid prefix"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:292
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:355
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:371
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:305
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:368
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:384
msgid "Invalid priority"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:351
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:364
msgid "Invalid protocol syntax"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:201
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:249
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:279
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:303
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:326
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:367
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:394
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:214
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:262
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:292
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:316
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:339
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:380
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:407
msgid "Invalid record"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:352
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:365
msgid "Invalid service syntax"
msgstr ""
@@ -2118,12 +2154,12 @@
"Le nom d'utilisateur doit contenir entre 3 et 12 caractères, tous en "
"minuscules"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:356
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:372
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:369
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:385
msgid "Invalid weight"
msgstr ""
-#: ../vhffs-panel/cvs/prefs.pl:92
+#: ../vhffs-panel/cvs/prefs.pl:93
msgid "Is this CVS repository public ??"
msgstr "Ce dépôt CVS doit-il être public ?"
@@ -2181,11 +2217,11 @@
msgid "Lastname is not correct !"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:249
+#: ../vhffs-panel/dns/prefs.pl:251
msgid "List all A reccords"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:250
+#: ../vhffs-panel/dns/prefs.pl:252
msgid "List all AAAA reccords"
msgstr ""
@@ -2205,7 +2241,7 @@
msgid "List all SVN repo"
msgstr "Lister tous les dépôts Subversion"
-#: ../vhffs-panel/dns/prefs.pl:315
+#: ../vhffs-panel/dns/prefs.pl:318
msgid "List all TXT records"
msgstr ""
@@ -2334,15 +2370,19 @@
msgid "Logout"
msgstr "Se déconnecter"
-#: ../vhffs-panel/dns/prefs.pl:165
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:385
+msgid "ML"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:167
msgid "MX Record added"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:160
+#: ../vhffs-panel/dns/prefs.pl:162
msgid "MX Record deleted"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:155
+#: ../vhffs-panel/dns/prefs.pl:157
msgid "MX Record updated"
msgstr ""
@@ -2351,7 +2391,8 @@
msgstr "Administration des bases de données MySQL"
#: ../vhffs-panel/admin/user/edit.pl:108 ../vhffs-panel/admin/user/show.pl:108
-#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:148
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:384
+#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:177
msgid "Mail"
msgstr "Mail"
@@ -2369,7 +2410,7 @@
#: ../vhffs-intl/extra_strings.pl:41
msgid "Mail Domain"
-msgstr ""
+msgstr "Domaine mail"
#: ../vhffs-panel/mail/submit.pl:82
msgid "Mail area successfully created !"
@@ -2377,11 +2418,12 @@
#: ../vhffs-panel/user/prefs.pl:227
msgid "Mail deleted"
-msgstr ""
+msgstr "Email supprimé"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:604
-msgid "Mail domain for this group"
-msgstr "Domaines mail pour ce groupe"
+#: ../vhffs-panel/mail/index.pl:58
+#, perl-format
+msgid "Mail domains for %s"
+msgstr "Domaines mail pour %s"
#: ../vhffs-panel/mailinglist/create.pl:88
msgid "Mail for the list"
@@ -2419,8 +2461,13 @@
#: ../vhffs-panel/svn/prefs_save.pl:124
msgid "Mailing list address is invalid"
-msgstr ""
+msgstr "L'adresse de la liste de diffusion est invalide"
+#: ../vhffs-panel/mailinglist/index.pl:58
+#, perl-format
+msgid "Mailing lists for %s"
+msgstr "Listes de diffusion pour %s"
+
#: ../vhffs-panel/admin/broadcast_submit.pl:91
msgid "Mailing successfully added"
msgstr "Envoi ajouté avec succès"
@@ -2437,10 +2484,6 @@
msgid "Mailing-lists Admin"
msgstr "Administrer les listes de diffusion"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:578
-msgid "Mailing-lists for this group"
-msgstr "Listes de diffusion pour ce groupe"
-
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:89
msgid "Manage mailings"
msgstr "Gérer les envois de masse"
@@ -2559,19 +2602,15 @@
msgstr "Modifications appliquées avec succès"
#: ../vhffs-panel/svn/prefs.pl:121 ../vhffs-panel/user/prefs.pl:265
-#: ../vhffs-panel/dns/prefs.pl:327 ../vhffs-panel/dns/prefs.pl:339
-#: ../vhffs-panel/dns/prefs.pl:352 ../vhffs-panel/dns/prefs.pl:363
-#: ../vhffs-panel/dns/prefs.pl:390 ../vhffs-panel/dns/prefs.pl:406
-#: ../vhffs-panel/pgsql/prefs.pl:106 ../vhffs-panel/group/prefs.pl:96
-#: ../vhffs-panel/web/prefs.pl:119 ../vhffs-panel/mysql/prefs.pl:113
-#: ../vhffs-panel/cvs/prefs.pl:95
+#: ../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/mysql/prefs.pl:114 ../vhffs-panel/cvs/prefs.pl:96
msgid "Modify"
msgstr "Modifier"
-#: ../vhffs-panel/acl/view.pl:190 ../vhffs-panel/acl/view.pl:237
-msgid "Modify this ACL"
-msgstr "Modifier cette ACL"
-
#: ../vhffs-panel/admin/cvs/list.pl:97
msgid "Modify this CVS repository"
msgstr "Modifier ce dépôt CVS"
@@ -2612,7 +2651,7 @@
msgid "Modify this user"
msgstr "Modifier cet utilisateur"
-#: ../vhffs-panel/dns/prefs.pl:272
+#: ../vhffs-panel/dns/prefs.pl:275
msgid "Must we redirect the DNS on our servers ?"
msgstr "Les DNS doivent-ils être redirigés sur nos serveurs ?"
@@ -2622,15 +2661,24 @@
msgid "My Projects"
msgstr "Mes groupes/projets"
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:378
+msgid "MySQL"
+msgstr ""
+
#: ../vhffs-panel/mysql/prefs.pl:97
msgid "MySQL Administration"
msgstr "Administration MySQL"
#: ../vhffs-intl/extra_strings.pl:36
msgid "MySQL DB"
-msgstr ""
+msgstr "Base MySQL"
-#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:141
+#: ../vhffs-panel/mysql/index.pl:58
+#, perl-format
+msgid "MySQL DBs for %s"
+msgstr "Bases MySQL pour %s"
+
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:163
msgid "MySQL Databases"
msgstr "Bases de données MySQL"
@@ -2650,23 +2698,19 @@
msgid "MySQL stats"
msgstr "Statistiques MySQL"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:473
-msgid "Mysql database for this group"
-msgstr "Bases de données MySQL pour ce groupe"
-
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:211
msgid "NS Admin"
msgstr "Administration des noms de domaine"
-#: ../vhffs-panel/dns/prefs.pl:174
+#: ../vhffs-panel/dns/prefs.pl:176
msgid "NS Record added"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:170
+#: ../vhffs-panel/dns/prefs.pl:172
msgid "NS Record deleted"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:296
+#: ../vhffs-panel/dns/prefs.pl:299
msgid "NS TYPE"
msgstr "Type NS"
@@ -2675,11 +2719,11 @@
msgid "Name"
msgstr "Nom"
-#: ../vhffs-panel/dns/prefs.pl:276
+#: ../vhffs-panel/dns/prefs.pl:279
msgid "Name for reccord"
msgstr "Nom de l'enregistrement"
-#: ../vhffs-panel/dns/prefs.pl:319
+#: ../vhffs-panel/dns/prefs.pl:322
msgid "Name for record"
msgstr ""
@@ -2687,41 +2731,37 @@
msgid "Name of the database"
msgstr "Nom de la base de données"
-#: ../vhffs-panel/dns/prefs.pl:283
+#: ../vhffs-panel/dns/prefs.pl:286
msgid "Name of your MX"
msgstr "Nom de votre MX"
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:706
+msgid "New"
+msgstr ""
+
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:266
#, perl-format
msgid "New language is: %s\n"
msgstr "La nouvelle langue est : %s\n"
-#: ../vhffs-panel/svn/prefs.pl:120 ../vhffs-panel/dns/prefs.pl:274
+#: ../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:94
+#: ../vhffs-panel/web/prefs.pl:116 ../vhffs-panel/cvs/prefs.pl:95
msgid "No"
msgstr "Non"
-#: ../vhffs-panel/dns/prefs.pl:331
+#: ../vhffs-panel/dns/prefs.pl:334
msgid "No A type found"
msgstr "Aucun champ A trouvé"
-#: ../vhffs-panel/dns/prefs.pl:343
+#: ../vhffs-panel/dns/prefs.pl:346
msgid "No AAAA type found"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:370
+#: ../vhffs-panel/dns/prefs.pl:373
msgid "No CNAME available on this domain"
msgstr "Aucun champ CNAME trouvé pour ce domaine"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:542
-msgid "No CVS repository for this group"
-msgstr "Aucun dépôt CVS pour ce groupe"
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:672
-msgid "No DNS domain for this group"
-msgstr "Aucun nom de domaine pour ce groupe"
-
#: ../vhffs-panel/admin/moderation.pl:207
msgid "No DNS to validate"
msgstr "Aucun nom de domaine à valider"
@@ -2730,7 +2770,7 @@
msgid "No Group to validate"
msgstr "Aucun groupe à valider"
-#: ../vhffs-panel/dns/prefs.pl:357
+#: ../vhffs-panel/dns/prefs.pl:360
msgid "No MX reccord for this domain"
msgstr "Aucun champ MX trouvé pour ce domaine"
@@ -2738,31 +2778,15 @@
msgid "No Mail Area to validate"
msgstr "Aucun domaine mail à valider"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:621
-msgid "No Mail domain for this group"
-msgstr "Aucun domaine mail pour ce groupe"
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:595
-msgid "No Mailing-list for this group"
-msgstr "Aucune liste de diffusion pour ce groupe"
-
-#: ../vhffs-panel/dns/prefs.pl:383
+#: ../vhffs-panel/dns/prefs.pl:386
msgid "No NS available on this domain"
msgstr "Aucun NS disponible pour ce domaine"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:516
-msgid "No PostgreSQL database for this group"
-msgstr "Aucune base de données PostgreSQL pour ce groupe"
-
-#: ../vhffs-panel/dns/prefs.pl:399
+#: ../vhffs-panel/dns/prefs.pl:402
msgid "No SRV available on this domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:568
-msgid "No SVN repository for this group"
-msgstr "Aucun dépôt Subversion pour ce groupe"
-
-#: ../vhffs-panel/dns/prefs.pl:412
+#: ../vhffs-panel/dns/prefs.pl:415
msgid "No TXT available on this domain"
msgstr ""
@@ -2785,10 +2809,6 @@
msgid "No database to validate"
msgstr "Aucune base de données à valider"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:647
-msgid "No download repository for this group"
-msgstr "Aucun espace de téléchargement pour ce groupe"
-
#: ../vhffs-panel/object/upavatar.pl:105
msgid "No enough rights"
msgstr "Pas assez de droits"
@@ -2827,10 +2847,6 @@
msgstr ""
"Aucune modification ne peut être appliquée. Merci de vérifier les champs."
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:490
-msgid "No mysql database for this group"
-msgstr "Aucune base de données MySQL pour ce groupe"
-
#: ../vhffs-panel/admin/moderation.pl:251
#: ../vhffs-panel/admin/moderation.pl:339
#: ../vhffs-panel/admin/moderation.pl:511
@@ -2857,26 +2873,26 @@
msgid "No webarea"
msgstr "Aucune zone web"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:466
-msgid "No webarea for this group"
-msgstr "Aucun site web pour ce groupe"
-
#: ../vhffs-panel/public/group.pl:139
msgid "No website available for this group"
msgstr "Aucun site web pour ce groupe"
-#: ../vhffs-panel/user/prefs.pl:280 ../vhffs-panel/dns/prefs.pl:267
-#: ../vhffs-panel/web/prefs.pl:130
+#: ../vhffs-panel/user/prefs.pl:280 ../vhffs-panel/dns/prefs.pl:270
+#: ../vhffs-panel/web/prefs.pl:131
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/mailinglist/prefs.pl:205 ../vhffs-panel/svn/prefs.pl:126
-#: ../vhffs-panel/pgsql/prefs.pl:111 ../vhffs-panel/group/prefs.pl:101
-#: ../vhffs-panel/repository/prefs.pl:106 ../vhffs-panel/mysql/prefs.pl:118
-#: ../vhffs-panel/cvs/prefs.pl:100 ../vhffs-panel/mail/prefs.pl:134
+#: ../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/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"
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:707
+msgid "None"
+msgstr ""
+
#: ../vhffs-panel/mailinglist/add_sub.pl:95
#: ../vhffs-panel/mailinglist/change_right.pl:97
#: ../vhffs-panel/mailinglist/del_member.pl:95
@@ -2887,14 +2903,14 @@
msgid "Note successfully modified"
msgstr "Note ajoutée avec succès"
+#: ../vhffs-panel/svn/prefs.pl:138
+msgid "Notify changes on mailing-list :"
+msgstr ""
+
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:473
msgid "November"
msgstr "Novembre"
-#: ../vhffs-panel/acl/submit.pl:89 ../vhffs-panel/acl/add_acl_user.pl:90
-msgid "Object Error"
-msgstr "Erreur de l'objet"
-
#: ../vhffs-panel/admin/object/list.pl:87
msgid "Object ID"
msgstr "Identifiant de l'objet"
@@ -2903,8 +2919,8 @@
msgid "Object id"
msgstr "Identifiant de l'objet"
-#: ../vhffs-panel/mailinglist/prefs.pl:217 ../vhffs-panel/svn/prefs.pl:160
-#: ../vhffs-panel/dns/prefs.pl:421
+#: ../vhffs-panel/mailinglist/prefs.pl:218 ../vhffs-panel/svn/prefs.pl:161
+#: ../vhffs-panel/dns/prefs.pl:424
msgid "Object part"
msgstr "Partie objet"
@@ -2920,8 +2936,8 @@
msgid "October"
msgstr "Octobre"
-#: ../vhffs-panel/dns/prefs.pl:259 ../vhffs-panel/web/prefs.pl:124
-#: ../vhffs-panel/mail/prefs.pl:139
+#: ../vhffs-panel/svn/prefs.pl:132 ../vhffs-panel/dns/prefs.pl:262
+#: ../vhffs-panel/web/prefs.pl:124 ../vhffs-panel/mail/prefs.pl:140
msgid "Ok, go to ACL admin"
msgstr "Aller à l'administration des ACL"
@@ -2949,7 +2965,7 @@
msgid "Open, no approval required"
msgstr ""
-#: ../vhffs-panel/mailinglist/prefs.pl:110
+#: ../vhffs-panel/mailinglist/prefs.pl:110 ../vhffs-panel/svn/prefs.pl:137
msgid "Options"
msgstr "Options"
@@ -3027,6 +3043,10 @@
msgid "Passwords don't match"
msgstr "Les mots de passe ne correspondent pas"
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:379
+msgid "PgSQL"
+msgstr ""
+
#: ../vhffs-intl/extra_strings.pl:37
msgid "PgSQL DB"
msgstr ""
@@ -3110,7 +3130,7 @@
msgid "Popboxes for"
msgstr "Boîtes mail pour"
-#: ../vhffs-panel/dns/prefs.pl:308 ../vhffs-panel/dns/prefs.pl:393
+#: ../vhffs-panel/dns/prefs.pl:311 ../vhffs-panel/dns/prefs.pl:396
msgid "Port"
msgstr ""
@@ -3118,14 +3138,15 @@
msgid "PostgreSQL Administration"
msgstr "Administration des bases PostgreSQL"
-#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:119
+#: ../vhffs-panel/pgsql/index.pl:58
+#, perl-format
+msgid "PostgreSQL DBs for %s"
+msgstr "Bases PostgreSQL pour %s"
+
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:129
msgid "PostgreSQL Databases"
msgstr "Bases de données PostgreSQL"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:499
-msgid "PostgreSQL database for this group"
-msgstr "Bases de données PostgreSQL pour ce groupe"
-
#: ../vhffs-panel/pgsql/create.pl:65
msgid "PostgreSQL database name"
msgstr "Nom de la base de données"
@@ -3146,8 +3167,12 @@
msgid "Posting control:"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:237
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:267
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:469
+msgid "Preferences"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:250
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:280
msgid "Prefix already exists"
msgstr ""
@@ -3155,15 +3180,15 @@
msgid "Prefix on subject"
msgstr "Préfixe devant le sujet du mail"
-#: ../vhffs-panel/dns/prefs.pl:309 ../vhffs-panel/dns/prefs.pl:394
+#: ../vhffs-panel/dns/prefs.pl:312 ../vhffs-panel/dns/prefs.pl:397
msgid "Priority"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:284
+#: ../vhffs-panel/dns/prefs.pl:287
msgid "Priority of your MX"
msgstr "Priorité de votre MX"
-#: ../vhffs-panel/dns/prefs.pl:353
+#: ../vhffs-panel/dns/prefs.pl:356
msgid "Priority: "
msgstr "Priorité : "
@@ -3199,11 +3224,15 @@
msgid "Project Successfully modified"
msgstr "Projet modifié avec succès"
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:373
+msgid "Project home"
+msgstr ""
+
#: ../vhffs-panel/user/projects.pl:57
msgid "Projects you contribute to"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:305
+#: ../vhffs-panel/dns/prefs.pl:308
msgid "Protocol"
msgstr ""
@@ -3233,7 +3262,7 @@
#: ../vhffs-panel/repository/prefs.pl:100
#: ../vhffs-panel/admin/group/edit.pl:110
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:444
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:461
#, perl-format
msgid "Quota (used/total) : %s/%s"
msgstr "Quota (utilisé/total) : %s/%s"
@@ -3268,17 +3297,17 @@
msgid "Recopy the code"
msgstr "Recopier le code"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:203
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:250
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:280
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:304
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:327
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:368
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:395
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:216
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:263
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:293
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:317
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:340
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:381
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:408
msgid "Record does not exists"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:202
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:215
msgid "Record type doesn't exists"
msgstr ""
@@ -3316,29 +3345,34 @@
msgid "Rights successfully changed"
msgstr "Droits modifiés avec succès"
-#: ../vhffs-panel/dns/prefs.pl:211
+#: ../vhffs-panel/dns/prefs.pl:213
msgid "SRV Record added"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:200
+#: ../vhffs-panel/dns/prefs.pl:202
msgid "SRV Record deleted"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:196
+#: ../vhffs-panel/dns/prefs.pl:198
msgid "SRV Record updated"
-msgstr ""
+msgstr "Enregistrement SRV mis à jour"
-#: ../vhffs-panel/dns/prefs.pl:302
+#: ../vhffs-panel/dns/prefs.pl:305
msgid "SRV TYPE"
msgstr ""
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:381
+msgid "SVN"
+msgstr ""
+
#: ../vhffs-intl/extra_strings.pl:39
msgid "SVN Repository"
-msgstr ""
+msgstr "Dépôt subversion"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:551
-msgid "SVN repositories for this group"
-msgstr "Dépôts Subversion pour ce groupe"
+#: ../vhffs-panel/svn/index.pl:58
+#, perl-format
+msgid "SVN repositories for %s"
+msgstr "Dépôt subversion pour %s"
#: ../vhffs-panel/public/group.pl:174
msgid "SVN repository for this group"
@@ -3352,7 +3386,7 @@
msgid "SVN stats"
msgstr "Statistiques Subversion"
-#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:161
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:171
msgid "SVNweb"
msgstr "Subversion par le web"
@@ -3496,7 +3530,7 @@
msgid "Send an email with the subject \"help\" to the following address: \n"
msgstr "Envoyez un mail ayant pour sujet \"help\" à l'adresse suivante : \n"
-#: ../vhffs-panel/acl/view.pl:170
+#: ../vhffs-panel/acl/view.pl:150
msgid "Send it"
msgstr "Envoyer"
@@ -3522,7 +3556,7 @@
msgid "Servername error. Please enter a valid servername"
msgstr "Erreur de ServerName. Veuillez entrer un ServerName valide"
-#: ../vhffs-panel/dns/prefs.pl:306
+#: ../vhffs-panel/dns/prefs.pl:309
msgid "Service"
msgstr ""
@@ -3629,14 +3663,13 @@
msgid "Signature"
msgstr ""
-#: ../vhffs-panel/acl/submit.pl:115 ../vhffs-panel/acl/add_acl_group.pl:102
-#: ../vhffs-panel/acl/add_acl_user.pl:102
+#: ../vhffs-panel/acl/view.pl:90 ../vhffs-panel/acl/view.pl:105
msgid "Sorry, can't add ACL"
msgstr "Désolé, je ne peux ajouter l'ACL"
-#: ../vhffs-panel/acl/submit.pl:104
-msgid "Sorry, can't delete this ACL"
-msgstr "Désolé, je ne peux pas supprimer cette ACL"
+#: ../vhffs-panel/acl/view.pl:120
+msgid "Sorry, can't update ACL"
+msgstr ""
#: ../vhffs-panel/mail/spambox.pl:101
msgid "Spam protection is not allowed"
@@ -3676,7 +3709,7 @@
msgid "Su !"
msgstr "Changer d'identité"
-#: ../vhffs-panel/dns/prefs.pl:293
+#: ../vhffs-panel/dns/prefs.pl:296
msgid "Subdomain name"
msgstr "Nom de sous-domaine"
@@ -3689,8 +3722,8 @@
msgid "Subject: "
msgstr "Sujet : "
-#: ../vhffs-panel/dns/prefs.pl:285 ../vhffs-panel/dns/prefs.pl:291
-#: ../vhffs-panel/dns/prefs.pl:312
+#: ../vhffs-panel/dns/prefs.pl:288 ../vhffs-panel/dns/prefs.pl:294
+#: ../vhffs-panel/dns/prefs.pl:315
msgid "Submit"
msgstr "Envoyer"
@@ -3730,7 +3763,7 @@
msgid "Subversion Admin"
msgstr "Administration des dépôts Subversion"
-#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:143
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:153
msgid "Subversion repository"
msgstr "Dépôt Subversion"
@@ -3778,15 +3811,15 @@
msgid "Suspended before deletion"
msgstr "Suspendu avant suppression"
-#: ../vhffs-panel/dns/prefs.pl:216
+#: ../vhffs-panel/dns/prefs.pl:218
msgid "TXT Record added"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:227
+#: ../vhffs-panel/dns/prefs.pl:229
msgid "TXT Record deleted"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:222
+#: ../vhffs-panel/dns/prefs.pl:224
msgid "TXT Record updated"
msgstr ""
@@ -3802,12 +3835,12 @@
msgid "Tell us what the use of this web space will be"
msgstr "Expliquez quel sera l'usage de ce site web"
-#: ../vhffs-panel/dns/prefs.pl:318
+#: ../vhffs-panel/dns/prefs.pl:321
msgid "Text"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:384
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:396
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:397
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:409
msgid "Text can't be empty"
msgstr ""
@@ -3885,10 +3918,6 @@
msgid "The following address %s is not on the list %s\n"
msgstr "L'adresse suivante %s n'est pas sur la liste %s\n"
-#: ../vhffs-panel/acl/add_acl_group.pl:90
-msgid "The group does not exist"
-msgstr "Le groupe n'existe pas"
-
#: ../vhffs-panel/group/project_submit.pl:78
msgid "The groupname can have no more than 12 caracters."
msgstr "Le nom du groupe ne peut pas avoir plus de douze caractères"
@@ -3982,10 +4011,10 @@
msgstr "Cet espace de téléchargement sera détruit"
#: ../vhffs-panel/mailinglist/prefs.pl:202 ../vhffs-panel/svn/prefs.pl:123
-#: ../vhffs-panel/dns/prefs.pl:264 ../vhffs-panel/pgsql/prefs.pl:108
+#: ../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:127 ../vhffs-panel/mysql/prefs.pl:115
-#: ../vhffs-panel/cvs/prefs.pl:97 ../vhffs-panel/mail/prefs.pl:131
+#: ../vhffs-panel/web/prefs.pl:128 ../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."
@@ -4043,7 +4072,7 @@
msgid "This group will be deleted"
msgstr "Ce groupe sera détruit"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:357
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:370
msgid "This host is already registered for this service"
msgstr ""
@@ -4096,7 +4125,7 @@
#: ../vhffs-panel/mailinglist/save_options.pl:89
#: ../vhffs-panel/mailinglist/change_right.pl:89
#: ../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:98
+#: ../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
@@ -4176,10 +4205,6 @@
msgid "This subversion repository will NOT be deleted"
msgstr "Ce dépôt Subversion NE sera PAS détruit"
-#: ../vhffs-panel/acl/view.pl:124
-msgid "This type of object is not treated in the panel."
-msgstr "Ce type de service n'est pas traité dans le panel."
-
#: ../vhffs-panel/group/remove_user_from_group.pl:79
msgid "This user does not exists "
msgstr "Cet utilisateur n'existe pas "
@@ -4332,41 +4357,41 @@
msgid "UID of owner"
msgstr "Identifiant utilisateur du propriétaire"
-#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:135
+#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:162
msgid "URL"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:148
+#: ../vhffs-panel/dns/prefs.pl:150
#, perl-format
msgid "Unable to add A record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:143
+#: ../vhffs-panel/dns/prefs.pl:145
#, perl-format
msgid "Unable to add AAAA record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:187
+#: ../vhffs-panel/dns/prefs.pl:189
#, perl-format
msgid "Unable to add CNAME record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:164
+#: ../vhffs-panel/dns/prefs.pl:166
#, perl-format
msgid "Unable to add MX record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:173
+#: ../vhffs-panel/dns/prefs.pl:175
#, perl-format
msgid "Unable to add NS record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:210
+#: ../vhffs-panel/dns/prefs.pl:212
#, perl-format
msgid "Unable to add SRV record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:215
+#: ../vhffs-panel/dns/prefs.pl:217
#, perl-format
msgid "Unable to add TXT record: %s"
msgstr ""
@@ -4390,37 +4415,37 @@
msgid "Unable to change virus protection status for %s"
msgstr "Impossible de modifier les paramètres anti-virus pour la boîte %s"
-#: ../vhffs-panel/dns/prefs.pl:125
+#: ../vhffs-panel/dns/prefs.pl:127
#, perl-format
msgid "Unable to delete A record: %s"
-msgstr ""
+msgstr "Impossible de supprimer l'enregistrement A : %s"
-#: ../vhffs-panel/dns/prefs.pl:137
+#: ../vhffs-panel/dns/prefs.pl:139
#, perl-format
msgid "Unable to delete AAAA record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:182
+#: ../vhffs-panel/dns/prefs.pl:184
#, perl-format
msgid "Unable to delete CNAME record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:159
+#: ../vhffs-panel/dns/prefs.pl:161
#, perl-format
msgid "Unable to delete MX record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:169
+#: ../vhffs-panel/dns/prefs.pl:171
#, perl-format
msgid "Unable to delete NS record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:199
+#: ../vhffs-panel/dns/prefs.pl:201
#, perl-format
msgid "Unable to delete SRV record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:226
+#: ../vhffs-panel/dns/prefs.pl:228
#, perl-format
msgid "Unable to delete TXT record: %s"
msgstr ""
@@ -4439,12 +4464,32 @@
msgid "Unable to delete this domain"
msgstr "Impossible de détruire ce domaine mail"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:238
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:268
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:251
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:281
msgid ""
"Unable to find default redirection address, please contact administrators"
msgstr ""
+#: ../vhffs-panel/cvs/index.pl:61
+msgid "Unable to get CVS repositories"
+msgstr ""
+
+#: ../vhffs-panel/dns/index.pl:61
+msgid "Unable to get DNS"
+msgstr ""
+
+#: ../vhffs-panel/mysql/index.pl:61
+msgid "Unable to get MySQL databases."
+msgstr ""
+
+#: ../vhffs-panel/pgsql/index.pl:61
+msgid "Unable to get PgSQL databases"
+msgstr ""
+
+#: ../vhffs-panel/svn/index.pl:61
+msgid "Unable to get SVN repositories"
+msgstr ""
+
#: ../vhffs-panel/admin/mail/delete_box.pl:76
#: ../vhffs-panel/admin/mail/password_box.pl:77
#: ../vhffs-panel/admin/mail/delete_forward.pl:77
@@ -4458,32 +4503,48 @@
msgid "Unable to get information on mail domain %s"
msgstr "Impossible d'obtenir des information sur le domain mail %s"
-#: ../vhffs-panel/dns/prefs.pl:120
+#: ../vhffs-panel/mail/index.pl:61
+msgid "Unable to get mail domains"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/index.pl:61
+msgid "Unable to get mailing lists"
+msgstr ""
+
+#: ../vhffs-panel/repository/index.pl:61
+msgid "Unable to get repositories"
+msgstr ""
+
+#: ../vhffs-panel/web/index.pl:61
+msgid "Unable to get webareas"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:122
#, perl-format
msgid "Unable to modify A record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:132
+#: ../vhffs-panel/dns/prefs.pl:134
#, perl-format
msgid "Unable to modify AAAA record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:178
+#: ../vhffs-panel/dns/prefs.pl:180
#, perl-format
msgid "Unable to modify CNAME record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:154
+#: ../vhffs-panel/dns/prefs.pl:156
#, perl-format
msgid "Unable to modify MX record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:195
+#: ../vhffs-panel/dns/prefs.pl:197
#, perl-format
msgid "Unable to modify SRV record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:221
+#: ../vhffs-panel/dns/prefs.pl:223
#, perl-format
msgid "Unable to modify TXT record: %s"
msgstr ""
@@ -4517,20 +4578,20 @@
msgid "Unknown"
msgstr "Inconnu"
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:205
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:241
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:253
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:271
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:283
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:295
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:307
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:318
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:330
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:218
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:254
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:266
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:284
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:296
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:308
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:320
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:331
#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:343
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:359
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:374
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:386
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:398
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:356
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:372
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:387
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:399
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:411
msgid "Unknown error"
msgstr ""
@@ -4556,7 +4617,7 @@
msgid "Update signature"
msgstr "Mettre à jour la signature"
-#: ../vhffs-panel/dns/prefs.pl:253
+#: ../vhffs-panel/dns/prefs.pl:255
#, perl-format
msgid "Use @ for origin (%s)"
msgstr ""
@@ -4623,12 +4684,16 @@
msgid "User is not active yet"
msgstr ""
+#: ../vhffs-panel/acl/view.pl:86
+msgid "User not found"
+msgstr ""
+
#: ../vhffs-panel/public/index.pl:65
msgid "User public area"
msgstr "Zone publique des utilisateurs"
#: ../vhffs-panel/subscribe.pl:198 ../vhffs-panel/user/prefs.pl:253
-#: ../vhffs-panel/acl/view.pl:150 ../vhffs-panel/group/prefs.pl:104
+#: ../vhffs-panel/acl/view.pl:171 ../vhffs-panel/group/prefs.pl:104
#: ../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
@@ -4639,7 +4704,8 @@
msgid "Username for this database"
msgstr "Nom d'utilisateur pour cette base de données"
-#: ../vhffs-panel/admin/user/edit.pl:95 ../vhffs-panel/admin/user/show.pl:96
+#: ../vhffs-panel/acl/view.pl:132 ../vhffs-panel/admin/user/edit.pl:95
+#: ../vhffs-panel/admin/user/show.pl:96
msgid "Username:"
msgstr "Nom d'utilisateur :"
@@ -4692,18 +4758,6 @@
msgid "View archives"
msgstr "Allez aux archives de cette liste"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:459
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:483
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:509
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:535
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:561
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:588
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:614
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:640
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:665
-msgid "View history"
-msgstr "Voir l'historique"
-
#: ../vhffs-panel/admin/broadcast_view.pl:84
msgid "View mailing"
msgstr "Voir l'envoi de masse"
@@ -4779,6 +4833,10 @@
"Nous vous offrons la possibilité de bénéficier d'un compte mail sur le "
"domaine %s"
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:377
+msgid "Web"
+msgstr ""
+
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:117
msgid "Web Admin"
msgstr "Administration web"
@@ -4791,7 +4849,7 @@
msgid "Web Area awaiting validation"
msgstr "Sites web en attente de validation"
-#: ../vhffs-api/src/Vhffs/Panel/Web.pm:137
+#: ../vhffs-api/src/Vhffs/Panel/Web.pm:159
msgid "Web Areas"
msgstr "Sites web"
@@ -4801,11 +4859,12 @@
#: ../vhffs-intl/extra_strings.pl:34
msgid "Webarea"
-msgstr ""
+msgstr "Espace web"
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:449
-msgid "Webarea for this group"
-msgstr "Sites web pour ce groupe"
+#: ../vhffs-panel/web/index.pl:58
+#, perl-format
+msgid "Webareas for %s"
+msgstr "Espaces web pour %s"
#: ../vhffs-panel/public/group.pl:124
msgid "Website for this group"
@@ -4815,11 +4874,11 @@
msgid "Websites area"
msgstr "Zone des sites web"
-#: ../vhffs-panel/dns/prefs.pl:310 ../vhffs-panel/dns/prefs.pl:395
+#: ../vhffs-panel/dns/prefs.pl:313 ../vhffs-panel/dns/prefs.pl:398
msgid "Weight"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:413
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:430
msgid "Welcome"
msgstr "Bienvenue"
@@ -4848,17 +4907,17 @@
msgid "Woah, %s users and %s groups already trust %s"
msgstr "Youhou, %s utilisateurs et %s groupes font déjà confiance à %s"
-#: ../vhffs-panel/svn/prefs.pl:119 ../vhffs-panel/dns/prefs.pl:273
+#: ../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:93
+#: ../vhffs-panel/web/prefs.pl:115 ../vhffs-panel/cvs/prefs.pl:94
msgid "Yes"
msgstr "Oui"
#: ../vhffs-panel/mailinglist/prefs.pl:204 ../vhffs-panel/svn/prefs.pl:125
-#: ../vhffs-panel/user/prefs.pl:279 ../vhffs-panel/dns/prefs.pl:266
-#: ../vhffs-panel/pgsql/prefs.pl:110 ../vhffs-panel/group/prefs.pl:100
-#: ../vhffs-panel/repository/prefs.pl:105 ../vhffs-panel/web/prefs.pl:129
-#: ../vhffs-panel/mysql/prefs.pl:117 ../vhffs-panel/cvs/prefs.pl:99
+#: ../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/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"
@@ -4921,8 +4980,8 @@
"\n"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:258 ../vhffs-panel/web/prefs.pl:123
-#: ../vhffs-panel/mail/prefs.pl:138
+#: ../vhffs-panel/svn/prefs.pl:131 ../vhffs-panel/dns/prefs.pl:261
+#: ../vhffs-panel/web/prefs.pl:123 ../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."
@@ -4972,6 +5031,14 @@
msgid "You have been successfully subscribed to the list %s\n"
msgstr "Vous avez été inscrit sur la liste %s avec succès\n"
+#: ../vhffs-panel/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 ""
+
#: ../vhffs-panel/logout.pl:59
msgid "You left your VHFFS session!"
msgstr "Vous avez quitté votre session"
@@ -5052,7 +5119,7 @@
#: ../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:91 ../vhffs-panel/dns/prefs.pl:108
+#: ../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
@@ -5087,9 +5154,12 @@
msgid "You're not allowed to do this (ACL rights) "
msgstr "Vous n'êtes pas autorisé à faire ceci (droits ACL insuffisants)"
-#: ../vhffs-panel/history.pl:98 ../vhffs-panel/acl/view.pl:141
-#: ../vhffs-panel/acl/submit.pl:95 ../vhffs-panel/acl/add_acl_group.pl:96
-#: ../vhffs-panel/acl/add_acl_user.pl:96
+#: ../vhffs-panel/acl/view.pl:88 ../vhffs-panel/acl/view.pl:103
+#: ../vhffs-panel/acl/view.pl:118
+msgid "You're not allowed to manage this object's ACL"
+msgstr ""
+
+#: ../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"
@@ -5306,9 +5376,10 @@
#: ../vhffs-intl/extra_strings.pl:13
msgid "help_user_project"
-msgstr "<h2>Accueil du projet</h2><p>Accédez aux fonctionnalités de gestion de "
-"votre projet.</p><p>Vous pourrez créer de nouveau objets ou encore "
-"gérer les droits d'accès de vos collaborateurs.</p>"
+msgstr ""
+"<h2>Accueil du projet</h2><p>Accédez aux fonctionnalités de gestion de "
+"votre projet.</p><p>Vous pourrez créer de nouveau objets ou encore gérer "
+"les droits d'accès de vos collaborateurs.</p>"
#: ../vhffs-intl/extra_strings.pl:12
msgid "help_user_projects"
@@ -5357,7 +5428,7 @@
msgid "mail"
msgstr "adresse mail"
-#: ../vhffs-panel/svn/prefs.pl:143 ../vhffs-panel/svn/prefs_save.pl:115
+#: ../vhffs-panel/svn/prefs.pl:144 ../vhffs-panel/svn/prefs_save.pl:115
msgid "ml adress here..."
msgstr ""
@@ -5449,8 +5520,99 @@
msgid "was sent on the list.\n"
msgstr "a été envoyé sur la liste\n"
-#~ msgid "help_user_current_proj"
-#~ msgstr ""
+#~ msgid "CVS repositories for this group"
+#~ msgstr "Dépôts CVS pour ce groupe"
+
+#~ msgid "Domains for this group"
+#~ msgstr "Domaines pour ce groupe"
+
+#~ msgid "Download repositories for this group"
+#~ msgstr "Espaces de téléchargement pour ce groupe"
+
+#~ msgid "Go to admin"
+#~ msgstr "Aller à l'administration"
+
+#~ msgid "Mail domain for this group"
+#~ msgstr "Domaines mail pour ce groupe"
+
+#~ msgid "Mailing-lists for this group"
+#~ msgstr "Listes de diffusion pour ce groupe"
+
+#~ msgid "Mysql database for this group"
+#~ msgstr "Bases de données MySQL pour ce groupe"
+
+#~ msgid "No CVS repository for this group"
+#~ msgstr "Aucun dépôt CVS pour ce groupe"
+
+#~ msgid "No DNS domain for this group"
+#~ msgstr "Aucun nom de domaine pour ce groupe"
+
+#~ msgid "No Mail domain for this group"
+#~ msgstr "Aucun domaine mail pour ce groupe"
+
+#~ msgid "No Mailing-list for this group"
+#~ msgstr "Aucune liste de diffusion pour ce groupe"
+
+#~ msgid "No PostgreSQL database for this group"
+#~ msgstr "Aucune base de données PostgreSQL pour ce groupe"
+
+#~ msgid "No SVN repository for this group"
+#~ msgstr "Aucun dépôt Subversion pour ce groupe"
+
+#~ msgid "No download repository for this group"
+#~ msgstr "Aucun espace de téléchargement pour ce groupe"
+
+#~ msgid "No mysql database for this group"
+#~ msgstr "Aucune base de données MySQL pour ce groupe"
+
+#~ msgid "No webareas for %s"
+#~ msgstr "Pas de zone web pour %s"
+
+#~ msgid "PostgreSQL database for this group"
+#~ msgstr "Bases de données PostgreSQL pour ce groupe"
+
+#~ msgid "SVN repositories for this group"
+#~ msgstr "Dépôts Subversion pour ce groupe"
+
+#~ msgid "View history"
+#~ msgstr "Voir l'historique"
+
+#~ msgid "ACL successfully added"
+#~ msgstr "ACL ajoutée avec succès"
+
+#~ msgid "ACL successfully deleted"
+#~ msgstr "ACL supprimée"
+
+#~ msgid "ACL successfully modified"
+#~ msgstr "ACL modifiée"
+
+#~ msgid "CGI Error "
+#~ msgstr "Erreur CGI"
+
+#~ msgid "Cannot get informations on this object %s %s"
+#~ msgstr "Impossible d'obtenir des informations sur cet objet %s %s"
+
+#~ msgid "Modify this ACL"
+#~ msgstr "Modifier cette ACL"
+
+#~ msgid "No webarea for this group"
+#~ msgstr "Aucun site web pour ce groupe"
+
+#~ msgid "Object Error"
+#~ msgstr "Erreur de l'objet"
+
+#~ msgid "Sorry, can't delete this ACL"
+#~ msgstr "Désolé, je ne peux pas supprimer cette ACL"
+
+#~ msgid "The group does not exist"
+#~ msgstr "Le groupe n'existe pas"
+
+#~ msgid "This type of object is not treated in the panel."
+#~ msgstr "Ce type de service n'est pas traité dans le panel."
+
+#~ msgid "Webarea for this group"
+#~ msgstr "Sites web pour ce groupe"
+
#~ msgid "Current group: %s"
#~ msgstr "Groupe en cours d'utilisation : %s"
Modified: branches/vhffs-design/vhffs-intl/src/vhffs.pot
===================================================================
--- branches/vhffs-design/vhffs-intl/src/vhffs.pot 2007-05-22 11:38:50 UTC (rev 622)
+++ branches/vhffs-design/vhffs-intl/src/vhffs.pot 2007-05-23 06:15:23 UTC (rev 623)
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-17 21:20+0200\n"
+"POT-Creation-Date: 2007-05-23 08:06+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"
@@ -68,21 +68,21 @@
msgid "<new site>."
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:324
+#: ../vhffs-panel/dns/prefs.pl:327
#, perl-format
msgid "@ represents the origin (%s)"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:341
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:354
msgid ""
"A CNAME, A or AAAA record with the same name already exists for this domain"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:126
+#: ../vhffs-panel/dns/prefs.pl:128
msgid "A Record deleted"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:121
+#: ../vhffs-panel/dns/prefs.pl:123
msgid "A Record updated"
msgstr ""
@@ -100,43 +100,38 @@
"\n"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:149
+#: ../vhffs-panel/dns/prefs.pl:151
msgid "A record added"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:138
+#: ../vhffs-panel/dns/prefs.pl:140
msgid "AAAA Record deleted"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:133
+#: ../vhffs-panel/dns/prefs.pl:135
msgid "AAAA Record updated"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:144
+#: ../vhffs-panel/dns/prefs.pl:146
msgid "AAAA record added"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:148
+#: ../vhffs-panel/acl/view.pl:127
msgid "ACL Administration"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:167
+#: ../vhffs-panel/acl/view.pl:147
msgid "ACL level"
msgstr ""
-#: ../vhffs-panel/acl/add_acl_group.pl:106
-#: ../vhffs-panel/acl/add_acl_user.pl:106
-msgid "ACL successfully added"
+#: ../vhffs-panel/acl/view.pl:92 ../vhffs-panel/acl/view.pl:107
+msgid "ACL sucessfuly added"
msgstr ""
-#: ../vhffs-panel/acl/submit.pl:108
-msgid "ACL successfully deleted"
+#: ../vhffs-panel/acl/view.pl:122
+msgid "ACL updated"
msgstr ""
-#: ../vhffs-panel/acl/submit.pl:119
-msgid "ACL successfully modified"
-msgstr ""
-
#: ../vhffs-panel/admin/moderation.pl:115
#: ../vhffs-panel/admin/moderation.pl:157
#: ../vhffs-panel/admin/moderation.pl:198
@@ -178,27 +173,27 @@
msgid "Activated"
msgstr ""
-#: ../vhffs-panel/mailinglist/prefs.pl:156 ../vhffs-panel/dns/prefs.pl:277
+#: ../vhffs-panel/mailinglist/prefs.pl:156 ../vhffs-panel/dns/prefs.pl:280
msgid "Add !"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:290
+#: ../vhffs-panel/dns/prefs.pl:293
msgid "Add a CNAME field to your domain"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:282
+#: ../vhffs-panel/dns/prefs.pl:285
msgid "Add a MX field to your domain"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:298
+#: ../vhffs-panel/dns/prefs.pl:301
msgid "Add a NS field to your domain"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:304
+#: ../vhffs-panel/dns/prefs.pl:307
msgid "Add a SRV record to your domain"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:316
+#: ../vhffs-panel/dns/prefs.pl:319
msgid "Add a TXT record"
msgstr ""
@@ -218,11 +213,11 @@
msgid "Add a user in this group"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:251
+#: ../vhffs-panel/dns/prefs.pl:253
msgid "Add an A record"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:252
+#: ../vhffs-panel/dns/prefs.pl:254
msgid "Add an AAAA record"
msgstr ""
@@ -265,8 +260,8 @@
msgid "Admin Download repository"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:257 ../vhffs-panel/web/prefs.pl:122
-#: ../vhffs-panel/mail/prefs.pl:137
+#: ../vhffs-panel/svn/prefs.pl:130 ../vhffs-panel/dns/prefs.pl:260
+#: ../vhffs-panel/web/prefs.pl:122 ../vhffs-panel/mail/prefs.pl:138
msgid "Admin Rights on this object (ACL)"
msgstr ""
@@ -317,31 +312,31 @@
msgid "All"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:245
+#: ../vhffs-panel/dns/prefs.pl:247
msgid "All A TYPE for your domain name"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:246
+#: ../vhffs-panel/dns/prefs.pl:248
msgid "All AAAA TYPE for your domain name"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:289
+#: ../vhffs-panel/dns/prefs.pl:292
msgid "All CNAME TYPE for your domain name"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:248
+#: ../vhffs-panel/dns/prefs.pl:250
msgid "All CNAME for your domain name"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:247 ../vhffs-panel/dns/prefs.pl:281
+#: ../vhffs-panel/dns/prefs.pl:249 ../vhffs-panel/dns/prefs.pl:284
msgid "All MX TYPE for your domain name"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:297
+#: ../vhffs-panel/dns/prefs.pl:300
msgid "All NS TYPE for your domain name"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:303
+#: ../vhffs-panel/dns/prefs.pl:306
msgid "All SRV records for your domain name"
msgstr ""
@@ -349,7 +344,7 @@
msgid "All Subversion repositories lists"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:317
+#: ../vhffs-panel/dns/prefs.pl:320
msgid "All TXT records for your domain name"
msgstr ""
@@ -390,11 +385,11 @@
msgid "Already exists for this domain or bad parameters. Check your domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:293
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:306
msgid "An MX record with the same name already exists for this domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:316
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:329
msgid "An NS record with the same name already exists for this domain"
msgstr ""
@@ -578,23 +573,23 @@
msgid "Are you SURE you want DELETE this Mail Area ?"
msgstr ""
-#: ../vhffs-panel/mysql/prefs.pl:116
+#: ../vhffs-panel/mysql/prefs.pl:117
msgid "Are you SURE you want DELETE this MySQL database ?"
msgstr ""
-#: ../vhffs-panel/pgsql/prefs.pl:109
+#: ../vhffs-panel/pgsql/prefs.pl:110
msgid "Are you SURE you want DELETE this PostgreSQL database ?"
msgstr ""
-#: ../vhffs-panel/web/prefs.pl:128
+#: ../vhffs-panel/web/prefs.pl:129
msgid "Are you SURE you want DELETE this Web Area ?"
msgstr ""
-#: ../vhffs-panel/cvs/prefs.pl:98
+#: ../vhffs-panel/cvs/prefs.pl:99
msgid "Are you SURE you want DELETE this cvs repository ?"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:265
+#: ../vhffs-panel/dns/prefs.pl:268
msgid "Are you SURE you want DELETE this domain ?"
msgstr ""
@@ -738,17 +733,13 @@
msgstr ""
#: ../vhffs-panel/mailinglist/submit.pl:96 ../vhffs-panel/svn/prefs.pl:82
-#: ../vhffs-panel/svn/create.pl:64 ../vhffs-panel/acl/submit.pl:85
+#: ../vhffs-panel/svn/create.pl:64 ../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/acl/add_acl_group.pl:86
-#: ../vhffs-panel/acl/add_acl_user.pl:86
-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
@@ -776,7 +767,7 @@
#: ../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/dns/delete.pl:79 ../vhffs-panel/dns/prefs.pl:77
+#: ../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 ""
@@ -789,18 +780,22 @@
msgid "CGI problem"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:188
+#: ../vhffs-panel/dns/prefs.pl:190
msgid "CNAME Record added"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:183
+#: ../vhffs-panel/dns/prefs.pl:185
msgid "CNAME Record deleted"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:179
+#: ../vhffs-panel/dns/prefs.pl:181
msgid "CNAME Record updated"
msgstr ""
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:380
+msgid "CVS"
+msgstr ""
+
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:145
msgid "CVS Admin"
msgstr ""
@@ -817,11 +812,12 @@
msgid "CVS Search"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:525
-msgid "CVS repositories for this group"
+#: ../vhffs-panel/cvs/index.pl:58
+#, perl-format
+msgid "CVS repositories for %s"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:118
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:147
msgid "CVS repository"
msgstr ""
@@ -841,32 +837,27 @@
msgid "CVS stats"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:136
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:165
msgid "CVSweb"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:165 ../vhffs-panel/acl/view.pl:189
-#: ../vhffs-panel/acl/view.pl:236
+#: ../vhffs-panel/acl/view.pl:139 ../vhffs-panel/acl/view.pl:165
msgid "Can destroy this service"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:164 ../vhffs-panel/acl/view.pl:188
-#: ../vhffs-panel/acl/view.pl:235
+#: ../vhffs-panel/acl/view.pl:138 ../vhffs-panel/acl/view.pl:164
msgid "Can manage ACL for this service"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:163 ../vhffs-panel/acl/view.pl:187
-#: ../vhffs-panel/acl/view.pl:234
+#: ../vhffs-panel/acl/view.pl:137 ../vhffs-panel/acl/view.pl:163
msgid "Can modify this service"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:162 ../vhffs-panel/acl/view.pl:186
-#: ../vhffs-panel/acl/view.pl:233
+#: ../vhffs-panel/acl/view.pl:136 ../vhffs-panel/acl/view.pl:162
msgid "Can view this service"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:161 ../vhffs-panel/acl/view.pl:185
-#: ../vhffs-panel/acl/view.pl:232
+#: ../vhffs-panel/acl/view.pl:135 ../vhffs-panel/acl/view.pl:161
msgid "Can't access"
msgstr ""
@@ -948,6 +939,11 @@
msgid "Cannot get information on this object"
msgstr ""
+#: ../vhffs-panel/acl/view.pl:71
+#, perl-format
+msgid "Cannot get informations on object #%d"
+msgstr ""
+
#: ../vhffs-panel/mailinglist/delete.pl:82
#: ../vhffs-panel/mailinglist/save_sig.pl:81
#: ../vhffs-panel/mailinglist/add_sub.pl:83
@@ -955,7 +951,7 @@
#: ../vhffs-panel/mailinglist/save_options.pl:85
#: ../vhffs-panel/mailinglist/change_right.pl:85
#: ../vhffs-panel/mailinglist/del_member.pl:83 ../vhffs-panel/svn/prefs.pl:93
-#: ../vhffs-panel/dns/delete.pl:84 ../vhffs-panel/dns/prefs.pl:84
+#: ../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
@@ -964,11 +960,6 @@
msgid "Cannot get informations on this object"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:134
-#, perl-format
-msgid "Cannot get informations on this object %s %s"
-msgstr ""
-
#: ../vhffs-panel/admin/stats.pl:73
msgid "Cannot get statistics"
msgstr ""
@@ -1023,11 +1014,11 @@
msgid "Cc: "
msgstr ""
-#: ../vhffs-panel/mail/prefs.pl:210
+#: ../vhffs-panel/mail/prefs.pl:211
msgid "Change Forward"
msgstr ""
-#: ../vhffs-panel/admin/mail/edit.pl:142 ../vhffs-panel/mail/prefs.pl:151
+#: ../vhffs-panel/admin/mail/edit.pl:142 ../vhffs-panel/mail/prefs.pl:152
msgid "Change Password"
msgstr ""
@@ -1130,16 +1121,16 @@
msgid "Crawl"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:142
-#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:147
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:152
+#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:176
#: ../vhffs-api/src/Vhffs/Panel/Mailinglist.pm:146
-#: ../vhffs-api/src/Vhffs/Panel/Web.pm:136
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:117
-#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:119
+#: ../vhffs-api/src/Vhffs/Panel/Web.pm:158
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:146
+#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:146
#: ../vhffs-api/src/Vhffs/Panel/Group.pm:163
-#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:140
-#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:118
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:151
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:162
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:128
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:164
msgid "Create"
msgstr ""
@@ -1216,7 +1207,7 @@
msgid "Current avatar"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:370
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:372
msgid "Current group:"
msgstr ""
@@ -1232,11 +1223,12 @@
msgid "DB Search"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:152
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:382
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:165
msgid "DNS"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:240
+#: ../vhffs-panel/dns/prefs.pl:242
#, perl-format
msgid "DNS Administration - %s"
msgstr ""
@@ -1253,8 +1245,8 @@
msgid "DNS stats"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:142
-#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:120
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:164
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:130
msgid "Database Access"
msgstr ""
@@ -1262,20 +1254,20 @@
msgid "Database Name"
msgstr ""
-#: ../vhffs-panel/ajax/help.pl:46 ../vhffs-api/src/Vhffs/Panel/DNS.pm:204
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:240
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:252
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:270
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:282
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:294
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:306
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:317
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:329
+#: ../vhffs-panel/ajax/help.pl:46 ../vhffs-api/src/Vhffs/Panel/DNS.pm:217
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:253
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:265
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:283
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:295
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:307
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:319
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:330
#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:342
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:358
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:373
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:385
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:397
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:355
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:371
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:386
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:398
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:410
msgid "Database error"
msgstr ""
@@ -1312,14 +1304,14 @@
msgstr ""
#: ../vhffs-panel/mailinglist/prefs.pl:206 ../vhffs-panel/svn/prefs.pl:127
-#: ../vhffs-panel/user/prefs.pl:281 ../vhffs-panel/dns/prefs.pl:268
-#: ../vhffs-panel/dns/prefs.pl:325 ../vhffs-panel/dns/prefs.pl:337
-#: ../vhffs-panel/dns/prefs.pl:350 ../vhffs-panel/dns/prefs.pl:362
-#: ../vhffs-panel/dns/prefs.pl:378 ../vhffs-panel/dns/prefs.pl:389
-#: ../vhffs-panel/dns/prefs.pl:405 ../vhffs-panel/pgsql/prefs.pl:112
+#: ../vhffs-panel/user/prefs.pl:281 ../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:131 ../vhffs-panel/mysql/prefs.pl:119
-#: ../vhffs-panel/cvs/prefs.pl:101 ../vhffs-panel/mail/prefs.pl:135
+#: ../vhffs-panel/web/prefs.pl:132 ../vhffs-panel/mysql/prefs.pl:120
+#: ../vhffs-panel/cvs/prefs.pl:102 ../vhffs-panel/mail/prefs.pl:135
msgid "Delete"
msgstr ""
@@ -1335,19 +1327,19 @@
msgid "Delete from list"
msgstr ""
-#: ../vhffs-panel/pgsql/prefs.pl:107
+#: ../vhffs-panel/pgsql/prefs.pl:108
msgid "Delete this PostgreSQL database"
msgstr ""
-#: ../vhffs-panel/mysql/prefs.pl:114
+#: ../vhffs-panel/mysql/prefs.pl:115
msgid "Delete this database"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:263
+#: ../vhffs-panel/dns/prefs.pl:266
msgid "Delete this domain name from the VHFFS platform"
msgstr ""
-#: ../vhffs-panel/admin/mail/edit.pl:144 ../vhffs-panel/mail/prefs.pl:211
+#: ../vhffs-panel/admin/mail/edit.pl:144 ../vhffs-panel/mail/prefs.pl:212
msgid "Delete this forward"
msgstr ""
@@ -1355,7 +1347,7 @@
msgid "Delete this list"
msgstr ""
-#: ../vhffs-panel/admin/mail/edit.pl:129 ../vhffs-panel/mail/prefs.pl:152
+#: ../vhffs-panel/admin/mail/edit.pl:129 ../vhffs-panel/mail/prefs.pl:153
msgid "Delete this mail account"
msgstr ""
@@ -1368,7 +1360,7 @@
msgstr ""
#: ../vhffs-panel/group/prefs.pl:97 ../vhffs-panel/repository/prefs.pl:102
-#: ../vhffs-panel/cvs/prefs.pl:96
+#: ../vhffs-panel/cvs/prefs.pl:97
msgid "Delete this project"
msgstr ""
@@ -1376,7 +1368,7 @@
msgid "Delete this repository"
msgstr ""
-#: ../vhffs-panel/web/prefs.pl:126
+#: ../vhffs-panel/web/prefs.pl:127
msgid "Delete this web area"
msgstr ""
@@ -1403,20 +1395,24 @@
msgid "Description of your webarea"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:292
+#: ../vhffs-panel/dns/prefs.pl:295
msgid "Destination"
msgstr ""
-#: ../vhffs-panel/mail/prefs.pl:165
+#: ../vhffs-panel/mail/prefs.pl:166
msgid "Disable anti-spam"
msgstr ""
-#: ../vhffs-panel/mail/prefs.pl:184
+#: ../vhffs-panel/mail/prefs.pl:185
msgid "Disable anti-virus"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:144
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:119
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:383
+msgid "Dl repos"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:154
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:148
msgid "Documentation"
msgstr ""
@@ -1434,8 +1430,9 @@
msgid "Domain Name"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:655
-msgid "Domains for this group"
+#: ../vhffs-panel/dns/index.pl:58
+#, perl-format
+msgid "Domain names for %s"
msgstr ""
#: ../vhffs-panel/admin/web/edit.pl:103 ../vhffs-panel/admin/web/show.pl:117
@@ -1446,11 +1443,12 @@
msgid "Download Repository"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:630
-msgid "Download repositories for this group"
+#: ../vhffs-panel/repository/index.pl:58
+#, perl-format
+msgid "Download repositories for %s"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:120
+#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:147
msgid "Download repository"
msgstr ""
@@ -1518,11 +1516,11 @@
msgid "Email is not correct !"
msgstr ""
-#: ../vhffs-panel/mail/prefs.pl:169
+#: ../vhffs-panel/mail/prefs.pl:170
msgid "Enable anti-spam"
msgstr ""
-#: ../vhffs-panel/mail/prefs.pl:188
+#: ../vhffs-panel/mail/prefs.pl:189
msgid "Enable anti-virus"
msgstr ""
@@ -1530,6 +1528,14 @@
msgid "Enter a mail address to catch all email for this domain"
msgstr ""
+#: ../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 ""
+
#: ../vhffs-panel/admin/broadcast_submit.pl:95
msgid "Error !"
msgstr ""
@@ -1617,6 +1623,20 @@
msgid "Firstname is not correct !"
msgstr ""
+#: ../vhffs-panel/svn/prefs.pl:133
+msgid "Fix permissions in this repository"
+msgstr ""
+
+#: ../vhffs-panel/svn/prefs.pl:135
+msgid "Fix them !"
+msgstr ""
+
+#: ../vhffs-panel/svn/prefs.pl:134
+msgid ""
+"Fixing permissions on a repository solve permission access on the "
+"repository. Can be helpful if you encounter problems"
+msgstr ""
+
#: ../vhffs-panel/admin/mail/delete_forward.pl:109
#, perl-format
msgid "Forward %s deleted"
@@ -1692,20 +1712,12 @@
msgid "Go on login page"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:458
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:482
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:508
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:534
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:560
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:587
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:613
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:639
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:664
-msgid "Go to admin"
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:704
+msgid "Go to administration"
msgstr ""
-#: ../vhffs-panel/mailinglist/prefs.pl:216 ../vhffs-panel/svn/prefs.pl:159
-#: ../vhffs-panel/dns/prefs.pl:420
+#: ../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 ""
@@ -1733,7 +1745,7 @@
msgid "Group"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:441
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:457
#, perl-format
msgid "Group %s"
msgstr ""
@@ -1742,10 +1754,18 @@
msgid "Group Admin"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:436
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:454
msgid "Group error"
msgstr ""
+#: ../vhffs-panel/acl/view.pl:101
+msgid "Group not found"
+msgstr ""
+
+#: ../vhffs-panel/acl/view.pl:116
+msgid "Group or user not found"
+msgstr ""
+
#: ../vhffs-panel/cvs/create.pl:93
msgid "Group owning this CVS"
msgstr ""
@@ -1778,13 +1798,17 @@
msgid "Group public area"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:151 ../vhffs-panel/admin/group/edit.pl:93
+#: ../vhffs-panel/acl/view.pl:176 ../vhffs-panel/admin/group/edit.pl:93
#: ../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/acl/view.pl:133
+msgid "Groupname:"
+msgstr ""
+
#: ../vhffs-panel/public/user.pl:89 ../vhffs-panel/public/lastusers.pl:84
msgid "Groups"
msgstr ""
@@ -1853,24 +1877,25 @@
#: ../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/Svn.pm:159
-#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:171
-#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:162
-#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:170
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:705
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:169
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:181
+#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:191
+#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:199
#: ../vhffs-api/src/Vhffs/Panel/Mailinglist.pm:161
#: ../vhffs-api/src/Vhffs/Panel/Mailinglist.pm:166
-#: ../vhffs-api/src/Vhffs/Panel/Web.pm:152
-#: ../vhffs-api/src/Vhffs/Panel/Web.pm:161
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:133
-#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:145
-#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:133
-#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:144
+#: ../vhffs-api/src/Vhffs/Panel/Web.pm:174
+#: ../vhffs-api/src/Vhffs/Panel/Web.pm:183
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:162
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:174
+#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:160
+#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:171
#: ../vhffs-api/src/Vhffs/Panel/Group.pm:178
-#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:156
-#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:165
-#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:135
-#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:144
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:171
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:178
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:187
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:145
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:154
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:184
msgid "History"
msgstr ""
@@ -1890,8 +1915,8 @@
msgid "Homepage of public area"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:307 ../vhffs-panel/dns/prefs.pl:392
-#: ../vhffs-panel/dns/prefs.pl:408
+#: ../vhffs-panel/dns/prefs.pl:310 ../vhffs-panel/dns/prefs.pl:395
+#: ../vhffs-panel/dns/prefs.pl:411
msgid "Host"
msgstr ""
@@ -1912,11 +1937,11 @@
msgid "I've lost my password"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:275
+#: ../vhffs-panel/dns/prefs.pl:278
msgid "IP"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:299
+#: ../vhffs-panel/dns/prefs.pl:302
msgid "IP/host of your NS"
msgstr ""
@@ -1962,30 +1987,30 @@
msgid "In hope to keep you in our hosting service"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:239
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:251
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:281
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:252
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:264
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:294
msgid "Invalid IP address"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:269
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:282
msgid "Invalid IP v6 address"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:339
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:352
msgid "Invalid alias"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:328
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:341
msgid "Invalid destination"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:353
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:369
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:366
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:382
msgid "Invalid destination domain name"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:340
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:353
msgid "Invalid destination host"
msgstr ""
@@ -1993,12 +2018,12 @@
msgid "Invalid domain name"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:305
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:318
msgid "Invalid host"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:291
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:315
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:304
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:328
msgid "Invalid hostname"
msgstr ""
@@ -2006,38 +2031,38 @@
msgid "Invalid mail domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:354
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:370
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:367
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:383
msgid "Invalid port"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:236
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:266
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:383
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:249
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:279
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:396
msgid "Invalid prefix"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:292
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:355
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:371
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:305
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:368
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:384
msgid "Invalid priority"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:351
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:364
msgid "Invalid protocol syntax"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:201
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:249
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:279
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:303
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:326
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:367
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:394
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:214
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:262
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:292
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:316
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:339
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:380
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:407
msgid "Invalid record"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:352
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:365
msgid "Invalid service syntax"
msgstr ""
@@ -2047,12 +2072,12 @@
"all in lowercase"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:356
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:372
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:369
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:385
msgid "Invalid weight"
msgstr ""
-#: ../vhffs-panel/cvs/prefs.pl:92
+#: ../vhffs-panel/cvs/prefs.pl:93
msgid "Is this CVS repository public ??"
msgstr ""
@@ -2110,11 +2135,11 @@
msgid "Lastname is not correct !"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:249
+#: ../vhffs-panel/dns/prefs.pl:251
msgid "List all A reccords"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:250
+#: ../vhffs-panel/dns/prefs.pl:252
msgid "List all AAAA reccords"
msgstr ""
@@ -2134,7 +2159,7 @@
msgid "List all SVN repo"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:315
+#: ../vhffs-panel/dns/prefs.pl:318
msgid "List all TXT records"
msgstr ""
@@ -2263,15 +2288,19 @@
msgid "Logout"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:165
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:385
+msgid "ML"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:167
msgid "MX Record added"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:160
+#: ../vhffs-panel/dns/prefs.pl:162
msgid "MX Record deleted"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:155
+#: ../vhffs-panel/dns/prefs.pl:157
msgid "MX Record updated"
msgstr ""
@@ -2280,7 +2309,8 @@
msgstr ""
#: ../vhffs-panel/admin/user/edit.pl:108 ../vhffs-panel/admin/user/show.pl:108
-#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:148
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:384
+#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:177
msgid "Mail"
msgstr ""
@@ -2308,8 +2338,9 @@
msgid "Mail deleted"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:604
-msgid "Mail domain for this group"
+#: ../vhffs-panel/mail/index.pl:58
+#, perl-format
+msgid "Mail domains for %s"
msgstr ""
#: ../vhffs-panel/mailinglist/create.pl:88
@@ -2350,6 +2381,11 @@
msgid "Mailing list address is invalid"
msgstr ""
+#: ../vhffs-panel/mailinglist/index.pl:58
+#, perl-format
+msgid "Mailing lists for %s"
+msgstr ""
+
#: ../vhffs-panel/admin/broadcast_submit.pl:91
msgid "Mailing successfully added"
msgstr ""
@@ -2366,10 +2402,6 @@
msgid "Mailing-lists Admin"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:578
-msgid "Mailing-lists for this group"
-msgstr ""
-
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:89
msgid "Manage mailings"
msgstr ""
@@ -2487,19 +2519,15 @@
msgstr ""
#: ../vhffs-panel/svn/prefs.pl:121 ../vhffs-panel/user/prefs.pl:265
-#: ../vhffs-panel/dns/prefs.pl:327 ../vhffs-panel/dns/prefs.pl:339
-#: ../vhffs-panel/dns/prefs.pl:352 ../vhffs-panel/dns/prefs.pl:363
-#: ../vhffs-panel/dns/prefs.pl:390 ../vhffs-panel/dns/prefs.pl:406
-#: ../vhffs-panel/pgsql/prefs.pl:106 ../vhffs-panel/group/prefs.pl:96
-#: ../vhffs-panel/web/prefs.pl:119 ../vhffs-panel/mysql/prefs.pl:113
-#: ../vhffs-panel/cvs/prefs.pl:95
+#: ../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/mysql/prefs.pl:114 ../vhffs-panel/cvs/prefs.pl:96
msgid "Modify"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:190 ../vhffs-panel/acl/view.pl:237
-msgid "Modify this ACL"
-msgstr ""
-
#: ../vhffs-panel/admin/cvs/list.pl:97
msgid "Modify this CVS repository"
msgstr ""
@@ -2540,7 +2568,7 @@
msgid "Modify this user"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:272
+#: ../vhffs-panel/dns/prefs.pl:275
msgid "Must we redirect the DNS on our servers ?"
msgstr ""
@@ -2550,6 +2578,10 @@
msgid "My Projects"
msgstr ""
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:378
+msgid "MySQL"
+msgstr ""
+
#: ../vhffs-panel/mysql/prefs.pl:97
msgid "MySQL Administration"
msgstr ""
@@ -2558,7 +2590,12 @@
msgid "MySQL DB"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:141
+#: ../vhffs-panel/mysql/index.pl:58
+#, perl-format
+msgid "MySQL DBs for %s"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:163
msgid "MySQL Databases"
msgstr ""
@@ -2578,23 +2615,19 @@
msgid "MySQL stats"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:473
-msgid "Mysql database for this group"
-msgstr ""
-
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:211
msgid "NS Admin"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:174
+#: ../vhffs-panel/dns/prefs.pl:176
msgid "NS Record added"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:170
+#: ../vhffs-panel/dns/prefs.pl:172
msgid "NS Record deleted"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:296
+#: ../vhffs-panel/dns/prefs.pl:299
msgid "NS TYPE"
msgstr ""
@@ -2603,11 +2636,11 @@
msgid "Name"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:276
+#: ../vhffs-panel/dns/prefs.pl:279
msgid "Name for reccord"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:319
+#: ../vhffs-panel/dns/prefs.pl:322
msgid "Name for record"
msgstr ""
@@ -2615,41 +2648,37 @@
msgid "Name of the database"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:283
+#: ../vhffs-panel/dns/prefs.pl:286
msgid "Name of your MX"
msgstr ""
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:706
+msgid "New"
+msgstr ""
+
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:266
#, perl-format
msgid "New language is: %s\n"
msgstr ""
-#: ../vhffs-panel/svn/prefs.pl:120 ../vhffs-panel/dns/prefs.pl:274
+#: ../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:94
+#: ../vhffs-panel/web/prefs.pl:116 ../vhffs-panel/cvs/prefs.pl:95
msgid "No"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:331
+#: ../vhffs-panel/dns/prefs.pl:334
msgid "No A type found"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:343
+#: ../vhffs-panel/dns/prefs.pl:346
msgid "No AAAA type found"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:370
+#: ../vhffs-panel/dns/prefs.pl:373
msgid "No CNAME available on this domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:542
-msgid "No CVS repository for this group"
-msgstr ""
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:672
-msgid "No DNS domain for this group"
-msgstr ""
-
#: ../vhffs-panel/admin/moderation.pl:207
msgid "No DNS to validate"
msgstr ""
@@ -2658,7 +2687,7 @@
msgid "No Group to validate"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:357
+#: ../vhffs-panel/dns/prefs.pl:360
msgid "No MX reccord for this domain"
msgstr ""
@@ -2666,31 +2695,15 @@
msgid "No Mail Area to validate"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:621
-msgid "No Mail domain for this group"
-msgstr ""
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:595
-msgid "No Mailing-list for this group"
-msgstr ""
-
-#: ../vhffs-panel/dns/prefs.pl:383
+#: ../vhffs-panel/dns/prefs.pl:386
msgid "No NS available on this domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:516
-msgid "No PostgreSQL database for this group"
-msgstr ""
-
-#: ../vhffs-panel/dns/prefs.pl:399
+#: ../vhffs-panel/dns/prefs.pl:402
msgid "No SRV available on this domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:568
-msgid "No SVN repository for this group"
-msgstr ""
-
-#: ../vhffs-panel/dns/prefs.pl:412
+#: ../vhffs-panel/dns/prefs.pl:415
msgid "No TXT available on this domain"
msgstr ""
@@ -2711,10 +2724,6 @@
msgid "No database to validate"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:647
-msgid "No download repository for this group"
-msgstr ""
-
#: ../vhffs-panel/object/upavatar.pl:105
msgid "No enough rights"
msgstr ""
@@ -2752,10 +2761,6 @@
msgid "No modification can be applied. Please check your fields."
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:490
-msgid "No mysql database for this group"
-msgstr ""
-
#: ../vhffs-panel/admin/moderation.pl:251
#: ../vhffs-panel/admin/moderation.pl:339
#: ../vhffs-panel/admin/moderation.pl:511
@@ -2782,26 +2787,26 @@
msgid "No webarea"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:466
-msgid "No webarea for this group"
-msgstr ""
-
#: ../vhffs-panel/public/group.pl:139
msgid "No website available for this group"
msgstr ""
-#: ../vhffs-panel/user/prefs.pl:280 ../vhffs-panel/dns/prefs.pl:267
-#: ../vhffs-panel/web/prefs.pl:130
+#: ../vhffs-panel/user/prefs.pl:280 ../vhffs-panel/dns/prefs.pl:270
+#: ../vhffs-panel/web/prefs.pl:131
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:111 ../vhffs-panel/group/prefs.pl:101
-#: ../vhffs-panel/repository/prefs.pl:106 ../vhffs-panel/mysql/prefs.pl:118
-#: ../vhffs-panel/cvs/prefs.pl:100 ../vhffs-panel/mail/prefs.pl:134
+#: ../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/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:707
+msgid "None"
+msgstr ""
+
#: ../vhffs-panel/mailinglist/add_sub.pl:95
#: ../vhffs-panel/mailinglist/change_right.pl:97
#: ../vhffs-panel/mailinglist/del_member.pl:95
@@ -2812,14 +2817,14 @@
msgid "Note successfully modified"
msgstr ""
+#: ../vhffs-panel/svn/prefs.pl:138
+msgid "Notify changes on mailing-list :"
+msgstr ""
+
#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:473
msgid "November"
msgstr ""
-#: ../vhffs-panel/acl/submit.pl:89 ../vhffs-panel/acl/add_acl_user.pl:90
-msgid "Object Error"
-msgstr ""
-
#: ../vhffs-panel/admin/object/list.pl:87
msgid "Object ID"
msgstr ""
@@ -2828,8 +2833,8 @@
msgid "Object id"
msgstr ""
-#: ../vhffs-panel/mailinglist/prefs.pl:217 ../vhffs-panel/svn/prefs.pl:160
-#: ../vhffs-panel/dns/prefs.pl:421
+#: ../vhffs-panel/mailinglist/prefs.pl:218 ../vhffs-panel/svn/prefs.pl:161
+#: ../vhffs-panel/dns/prefs.pl:424
msgid "Object part"
msgstr ""
@@ -2845,8 +2850,8 @@
msgid "October"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:259 ../vhffs-panel/web/prefs.pl:124
-#: ../vhffs-panel/mail/prefs.pl:139
+#: ../vhffs-panel/svn/prefs.pl:132 ../vhffs-panel/dns/prefs.pl:262
+#: ../vhffs-panel/web/prefs.pl:124 ../vhffs-panel/mail/prefs.pl:140
msgid "Ok, go to ACL admin"
msgstr ""
@@ -2874,7 +2879,7 @@
msgid "Open, no approval required"
msgstr ""
-#: ../vhffs-panel/mailinglist/prefs.pl:110
+#: ../vhffs-panel/mailinglist/prefs.pl:110 ../vhffs-panel/svn/prefs.pl:137
msgid "Options"
msgstr ""
@@ -2951,6 +2956,10 @@
msgid "Passwords don't match"
msgstr ""
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:379
+msgid "PgSQL"
+msgstr ""
+
#: ../vhffs-intl/extra_strings.pl:37
msgid "PgSQL DB"
msgstr ""
@@ -3028,7 +3037,7 @@
msgid "Popboxes for"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:308 ../vhffs-panel/dns/prefs.pl:393
+#: ../vhffs-panel/dns/prefs.pl:311 ../vhffs-panel/dns/prefs.pl:396
msgid "Port"
msgstr ""
@@ -3036,12 +3045,13 @@
msgid "PostgreSQL Administration"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:119
-msgid "PostgreSQL Databases"
+#: ../vhffs-panel/pgsql/index.pl:58
+#, perl-format
+msgid "PostgreSQL DBs for %s"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:499
-msgid "PostgreSQL database for this group"
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:129
+msgid "PostgreSQL Databases"
msgstr ""
#: ../vhffs-panel/pgsql/create.pl:65
@@ -3064,8 +3074,12 @@
msgid "Posting control:"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:237
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:267
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:469
+msgid "Preferences"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:250
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:280
msgid "Prefix already exists"
msgstr ""
@@ -3073,15 +3087,15 @@
msgid "Prefix on subject"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:309 ../vhffs-panel/dns/prefs.pl:394
+#: ../vhffs-panel/dns/prefs.pl:312 ../vhffs-panel/dns/prefs.pl:397
msgid "Priority"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:284
+#: ../vhffs-panel/dns/prefs.pl:287
msgid "Priority of your MX"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:353
+#: ../vhffs-panel/dns/prefs.pl:356
msgid "Priority: "
msgstr ""
@@ -3117,11 +3131,15 @@
msgid "Project Successfully modified"
msgstr ""
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:373
+msgid "Project home"
+msgstr ""
+
#: ../vhffs-panel/user/projects.pl:57
msgid "Projects you contribute to"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:305
+#: ../vhffs-panel/dns/prefs.pl:308
msgid "Protocol"
msgstr ""
@@ -3151,7 +3169,7 @@
#: ../vhffs-panel/repository/prefs.pl:100
#: ../vhffs-panel/admin/group/edit.pl:110
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:444
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:461
#, perl-format
msgid "Quota (used/total) : %s/%s"
msgstr ""
@@ -3186,17 +3204,17 @@
msgid "Recopy the code"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:203
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:250
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:280
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:304
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:327
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:368
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:395
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:216
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:263
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:293
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:317
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:340
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:381
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:408
msgid "Record does not exists"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:202
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:215
msgid "Record type doesn't exists"
msgstr ""
@@ -3234,28 +3252,33 @@
msgid "Rights successfully changed"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:211
+#: ../vhffs-panel/dns/prefs.pl:213
msgid "SRV Record added"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:200
+#: ../vhffs-panel/dns/prefs.pl:202
msgid "SRV Record deleted"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:196
+#: ../vhffs-panel/dns/prefs.pl:198
msgid "SRV Record updated"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:302
+#: ../vhffs-panel/dns/prefs.pl:305
msgid "SRV TYPE"
msgstr ""
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:381
+msgid "SVN"
+msgstr ""
+
#: ../vhffs-intl/extra_strings.pl:39
msgid "SVN Repository"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:551
-msgid "SVN repositories for this group"
+#: ../vhffs-panel/svn/index.pl:58
+#, perl-format
+msgid "SVN repositories for %s"
msgstr ""
#: ../vhffs-panel/public/group.pl:174
@@ -3270,7 +3293,7 @@
msgid "SVN stats"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:161
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:171
msgid "SVNweb"
msgstr ""
@@ -3414,7 +3437,7 @@
msgid "Send an email with the subject \"help\" to the following address: \n"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:170
+#: ../vhffs-panel/acl/view.pl:150
msgid "Send it"
msgstr ""
@@ -3440,7 +3463,7 @@
msgid "Servername error. Please enter a valid servername"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:306
+#: ../vhffs-panel/dns/prefs.pl:309
msgid "Service"
msgstr ""
@@ -3547,13 +3570,12 @@
msgid "Signature"
msgstr ""
-#: ../vhffs-panel/acl/submit.pl:115 ../vhffs-panel/acl/add_acl_group.pl:102
-#: ../vhffs-panel/acl/add_acl_user.pl:102
+#: ../vhffs-panel/acl/view.pl:90 ../vhffs-panel/acl/view.pl:105
msgid "Sorry, can't add ACL"
msgstr ""
-#: ../vhffs-panel/acl/submit.pl:104
-msgid "Sorry, can't delete this ACL"
+#: ../vhffs-panel/acl/view.pl:120
+msgid "Sorry, can't update ACL"
msgstr ""
#: ../vhffs-panel/mail/spambox.pl:101
@@ -3594,7 +3616,7 @@
msgid "Su !"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:293
+#: ../vhffs-panel/dns/prefs.pl:296
msgid "Subdomain name"
msgstr ""
@@ -3607,8 +3629,8 @@
msgid "Subject: "
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:285 ../vhffs-panel/dns/prefs.pl:291
-#: ../vhffs-panel/dns/prefs.pl:312
+#: ../vhffs-panel/dns/prefs.pl:288 ../vhffs-panel/dns/prefs.pl:294
+#: ../vhffs-panel/dns/prefs.pl:315
msgid "Submit"
msgstr ""
@@ -3648,7 +3670,7 @@
msgid "Subversion Admin"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:143
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:153
msgid "Subversion repository"
msgstr ""
@@ -3694,15 +3716,15 @@
msgid "Suspended before deletion"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:216
+#: ../vhffs-panel/dns/prefs.pl:218
msgid "TXT Record added"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:227
+#: ../vhffs-panel/dns/prefs.pl:229
msgid "TXT Record deleted"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:222
+#: ../vhffs-panel/dns/prefs.pl:224
msgid "TXT Record updated"
msgstr ""
@@ -3718,12 +3740,12 @@
msgid "Tell us what the use of this web space will be"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:318
+#: ../vhffs-panel/dns/prefs.pl:321
msgid "Text"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:384
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:396
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:397
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:409
msgid "Text can't be empty"
msgstr ""
@@ -3795,10 +3817,6 @@
msgid "The following address %s is not on the list %s\n"
msgstr ""
-#: ../vhffs-panel/acl/add_acl_group.pl:90
-msgid "The group does not exist"
-msgstr ""
-
#: ../vhffs-panel/group/project_submit.pl:78
msgid "The groupname can have no more than 12 caracters."
msgstr ""
@@ -3883,10 +3901,10 @@
msgstr ""
#: ../vhffs-panel/mailinglist/prefs.pl:202 ../vhffs-panel/svn/prefs.pl:123
-#: ../vhffs-panel/dns/prefs.pl:264 ../vhffs-panel/pgsql/prefs.pl:108
+#: ../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:127 ../vhffs-panel/mysql/prefs.pl:115
-#: ../vhffs-panel/cvs/prefs.pl:97 ../vhffs-panel/mail/prefs.pl:131
+#: ../vhffs-panel/web/prefs.pl:128 ../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."
@@ -3938,7 +3956,7 @@
msgid "This group will be deleted"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:357
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:370
msgid "This host is already registered for this service"
msgstr ""
@@ -3989,7 +4007,7 @@
#: ../vhffs-panel/mailinglist/save_options.pl:89
#: ../vhffs-panel/mailinglist/change_right.pl:89
#: ../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:98
+#: ../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
@@ -4058,10 +4076,6 @@
msgid "This subversion repository will NOT be deleted"
msgstr ""
-#: ../vhffs-panel/acl/view.pl:124
-msgid "This type of object is not treated in the panel."
-msgstr ""
-
#: ../vhffs-panel/group/remove_user_from_group.pl:79
msgid "This user does not exists "
msgstr ""
@@ -4214,41 +4228,41 @@
msgid "UID of owner"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:135
+#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:162
msgid "URL"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:148
+#: ../vhffs-panel/dns/prefs.pl:150
#, perl-format
msgid "Unable to add A record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:143
+#: ../vhffs-panel/dns/prefs.pl:145
#, perl-format
msgid "Unable to add AAAA record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:187
+#: ../vhffs-panel/dns/prefs.pl:189
#, perl-format
msgid "Unable to add CNAME record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:164
+#: ../vhffs-panel/dns/prefs.pl:166
#, perl-format
msgid "Unable to add MX record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:173
+#: ../vhffs-panel/dns/prefs.pl:175
#, perl-format
msgid "Unable to add NS record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:210
+#: ../vhffs-panel/dns/prefs.pl:212
#, perl-format
msgid "Unable to add SRV record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:215
+#: ../vhffs-panel/dns/prefs.pl:217
#, perl-format
msgid "Unable to add TXT record: %s"
msgstr ""
@@ -4272,37 +4286,37 @@
msgid "Unable to change virus protection status for %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:125
+#: ../vhffs-panel/dns/prefs.pl:127
#, perl-format
msgid "Unable to delete A record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:137
+#: ../vhffs-panel/dns/prefs.pl:139
#, perl-format
msgid "Unable to delete AAAA record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:182
+#: ../vhffs-panel/dns/prefs.pl:184
#, perl-format
msgid "Unable to delete CNAME record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:159
+#: ../vhffs-panel/dns/prefs.pl:161
#, perl-format
msgid "Unable to delete MX record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:169
+#: ../vhffs-panel/dns/prefs.pl:171
#, perl-format
msgid "Unable to delete NS record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:199
+#: ../vhffs-panel/dns/prefs.pl:201
#, perl-format
msgid "Unable to delete SRV record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:226
+#: ../vhffs-panel/dns/prefs.pl:228
#, perl-format
msgid "Unable to delete TXT record: %s"
msgstr ""
@@ -4321,12 +4335,32 @@
msgid "Unable to delete this domain"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:238
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:268
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:251
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:281
msgid ""
"Unable to find default redirection address, please contact administrators"
msgstr ""
+#: ../vhffs-panel/cvs/index.pl:61
+msgid "Unable to get CVS repositories"
+msgstr ""
+
+#: ../vhffs-panel/dns/index.pl:61
+msgid "Unable to get DNS"
+msgstr ""
+
+#: ../vhffs-panel/mysql/index.pl:61
+msgid "Unable to get MySQL databases."
+msgstr ""
+
+#: ../vhffs-panel/pgsql/index.pl:61
+msgid "Unable to get PgSQL databases"
+msgstr ""
+
+#: ../vhffs-panel/svn/index.pl:61
+msgid "Unable to get SVN repositories"
+msgstr ""
+
#: ../vhffs-panel/admin/mail/delete_box.pl:76
#: ../vhffs-panel/admin/mail/password_box.pl:77
#: ../vhffs-panel/admin/mail/delete_forward.pl:77
@@ -4340,32 +4374,48 @@
msgid "Unable to get information on mail domain %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:120
+#: ../vhffs-panel/mail/index.pl:61
+msgid "Unable to get mail domains"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/index.pl:61
+msgid "Unable to get mailing lists"
+msgstr ""
+
+#: ../vhffs-panel/repository/index.pl:61
+msgid "Unable to get repositories"
+msgstr ""
+
+#: ../vhffs-panel/web/index.pl:61
+msgid "Unable to get webareas"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:122
#, perl-format
msgid "Unable to modify A record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:132
+#: ../vhffs-panel/dns/prefs.pl:134
#, perl-format
msgid "Unable to modify AAAA record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:178
+#: ../vhffs-panel/dns/prefs.pl:180
#, perl-format
msgid "Unable to modify CNAME record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:154
+#: ../vhffs-panel/dns/prefs.pl:156
#, perl-format
msgid "Unable to modify MX record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:195
+#: ../vhffs-panel/dns/prefs.pl:197
#, perl-format
msgid "Unable to modify SRV record: %s"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:221
+#: ../vhffs-panel/dns/prefs.pl:223
#, perl-format
msgid "Unable to modify TXT record: %s"
msgstr ""
@@ -4399,20 +4449,20 @@
msgid "Unknown"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:205
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:241
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:253
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:271
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:283
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:295
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:307
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:318
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:330
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:218
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:254
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:266
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:284
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:296
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:308
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:320
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:331
#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:343
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:359
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:374
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:386
-#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:398
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:356
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:372
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:387
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:399
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:411
msgid "Unknown error"
msgstr ""
@@ -4438,7 +4488,7 @@
msgid "Update signature"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:253
+#: ../vhffs-panel/dns/prefs.pl:255
#, perl-format
msgid "Use @ for origin (%s)"
msgstr ""
@@ -4503,12 +4553,16 @@
msgid "User is not active yet"
msgstr ""
+#: ../vhffs-panel/acl/view.pl:86
+msgid "User not found"
+msgstr ""
+
#: ../vhffs-panel/public/index.pl:65
msgid "User public area"
msgstr ""
#: ../vhffs-panel/subscribe.pl:198 ../vhffs-panel/user/prefs.pl:253
-#: ../vhffs-panel/acl/view.pl:150 ../vhffs-panel/group/prefs.pl:104
+#: ../vhffs-panel/acl/view.pl:171 ../vhffs-panel/group/prefs.pl:104
#: ../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
@@ -4519,7 +4573,8 @@
msgid "Username for this database"
msgstr ""
-#: ../vhffs-panel/admin/user/edit.pl:95 ../vhffs-panel/admin/user/show.pl:96
+#: ../vhffs-panel/acl/view.pl:132 ../vhffs-panel/admin/user/edit.pl:95
+#: ../vhffs-panel/admin/user/show.pl:96
msgid "Username:"
msgstr ""
@@ -4572,18 +4627,6 @@
msgid "View archives"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:459
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:483
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:509
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:535
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:561
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:588
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:614
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:640
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:665
-msgid "View history"
-msgstr ""
-
#: ../vhffs-panel/admin/broadcast_view.pl:84
msgid "View mailing"
msgstr ""
@@ -4656,6 +4699,10 @@
msgid "We offer you the possibility to have one email box on the domain %s"
msgstr ""
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:377
+msgid "Web"
+msgstr ""
+
#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:117
msgid "Web Admin"
msgstr ""
@@ -4668,7 +4715,7 @@
msgid "Web Area awaiting validation"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Web.pm:137
+#: ../vhffs-api/src/Vhffs/Panel/Web.pm:159
msgid "Web Areas"
msgstr ""
@@ -4680,8 +4727,9 @@
msgid "Webarea"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:449
-msgid "Webarea for this group"
+#: ../vhffs-panel/web/index.pl:58
+#, perl-format
+msgid "Webareas for %s"
msgstr ""
#: ../vhffs-panel/public/group.pl:124
@@ -4692,11 +4740,11 @@
msgid "Websites area"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:310 ../vhffs-panel/dns/prefs.pl:395
+#: ../vhffs-panel/dns/prefs.pl:313 ../vhffs-panel/dns/prefs.pl:398
msgid "Weight"
msgstr ""
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:413
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:430
msgid "Welcome"
msgstr ""
@@ -4725,17 +4773,17 @@
msgid "Woah, %s users and %s groups already trust %s"
msgstr ""
-#: ../vhffs-panel/svn/prefs.pl:119 ../vhffs-panel/dns/prefs.pl:273
+#: ../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:93
+#: ../vhffs-panel/web/prefs.pl:115 ../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:266
-#: ../vhffs-panel/pgsql/prefs.pl:110 ../vhffs-panel/group/prefs.pl:100
-#: ../vhffs-panel/repository/prefs.pl:105 ../vhffs-panel/web/prefs.pl:129
-#: ../vhffs-panel/mysql/prefs.pl:117 ../vhffs-panel/cvs/prefs.pl:99
+#: ../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/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 ""
@@ -4798,8 +4846,8 @@
"\n"
msgstr ""
-#: ../vhffs-panel/dns/prefs.pl:258 ../vhffs-panel/web/prefs.pl:123
-#: ../vhffs-panel/mail/prefs.pl:138
+#: ../vhffs-panel/svn/prefs.pl:131 ../vhffs-panel/dns/prefs.pl:261
+#: ../vhffs-panel/web/prefs.pl:123 ../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."
@@ -4845,6 +4893,14 @@
msgid "You have been successfully subscribed to the list %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
+#: ../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 ""
+
#: ../vhffs-panel/logout.pl:59
msgid "You left your VHFFS session!"
msgstr ""
@@ -4924,7 +4980,7 @@
#: ../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:91 ../vhffs-panel/dns/prefs.pl:108
+#: ../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
@@ -4959,9 +5015,12 @@
msgid "You're not allowed to do this (ACL rights) "
msgstr ""
-#: ../vhffs-panel/history.pl:98 ../vhffs-panel/acl/view.pl:141
-#: ../vhffs-panel/acl/submit.pl:95 ../vhffs-panel/acl/add_acl_group.pl:96
-#: ../vhffs-panel/acl/add_acl_user.pl:96
+#: ../vhffs-panel/acl/view.pl:88 ../vhffs-panel/acl/view.pl:103
+#: ../vhffs-panel/acl/view.pl:118
+msgid "You're not allowed to manage this object's ACL"
+msgstr ""
+
+#: ../vhffs-panel/history.pl:98 ../vhffs-panel/acl/view.pl:76
msgid "You're not allowed to view this object's ACL"
msgstr ""
@@ -5212,7 +5271,7 @@
msgid "mail"
msgstr ""
-#: ../vhffs-panel/svn/prefs.pl:143 ../vhffs-panel/svn/prefs_save.pl:115
+#: ../vhffs-panel/svn/prefs.pl:144 ../vhffs-panel/svn/prefs_save.pl:115
msgid "ml adress here..."
msgstr ""
Modified: branches/vhffs-design/vhffs-panel/cvs/index.pl
===================================================================
--- branches/vhffs-design/vhffs-panel/cvs/index.pl 2007-05-22 11:38:50 UTC (rev 622)
+++ branches/vhffs-design/vhffs-panel/cvs/index.pl 2007-05-23 06:15:23 UTC (rev 623)
@@ -55,6 +55,7 @@
} else {
# Group is in session => access is granted for user and group is activated
# no need to check
+ $panel->set_title( sprintf(gettext('CVS repositories for %s'), $group->get_groupname) );
my $cvs = Vhffs::Panel::Cvs::getall_per_group( $vhffs, $group->get_gid );
if($cvs < 0) {
$panel->add_error( gettext('Unable to get CVS repositories') );
Modified: branches/vhffs-design/vhffs-panel/dns/index.pl
===================================================================
--- branches/vhffs-design/vhffs-panel/dns/index.pl 2007-05-22 11:38:50 UTC (rev 622)
+++ branches/vhffs-design/vhffs-panel/dns/index.pl 2007-05-23 06:15:23 UTC (rev 623)
@@ -55,6 +55,7 @@
} else {
# Group is in session => access is granted for user and group is activated
# no need to check
+ $panel->set_title( sprintf(gettext('Domain names for %s'), $group->get_groupname) );
my $dns = Vhffs::Panel::DNS::getall_per_group( $vhffs, $group->get_gid );
if($dns < 0) {
$panel->add_error( gettext('Unable to get DNS') );
Modified: branches/vhffs-design/vhffs-panel/mail/index.pl
===================================================================
--- branches/vhffs-design/vhffs-panel/mail/index.pl 2007-05-22 11:38:50 UTC (rev 622)
+++ branches/vhffs-design/vhffs-panel/mail/index.pl 2007-05-23 06:15:23 UTC (rev 623)
@@ -55,6 +55,7 @@
} else {
# Group is in session => access is granted for user and group is activated
# no need to check
+ $panel->set_title( sprintf(gettext('Mail domains for %s'), $group->get_groupname) );
my $mails = Vhffs::Panel::Mail::getall_per_group( $vhffs, $group->get_gid );
if($mails < 0) {
$panel->add_error( gettext('Unable to get mail domains') );
Modified: branches/vhffs-design/vhffs-panel/mailinglist/index.pl
===================================================================
--- branches/vhffs-design/vhffs-panel/mailinglist/index.pl 2007-05-22 11:38:50 UTC (rev 622)
+++ branches/vhffs-design/vhffs-panel/mailinglist/index.pl 2007-05-23 06:15:23 UTC (rev 623)
@@ -55,6 +55,7 @@
} else {
# Group is in session => access is granted for user and group is activated
# no need to check
+ $panel->set_title( sprintf(gettext('Mailing lists for %s'), $group->get_groupname) );
my $mls = Vhffs::Panel::Mailinglist::getall_per_group( $vhffs, $group->get_gid );
if($mls < 0) {
$panel->add_error( gettext('Unable to get mailing lists') );
Modified: branches/vhffs-design/vhffs-panel/mysql/index.pl
===================================================================
--- branches/vhffs-design/vhffs-panel/mysql/index.pl 2007-05-22 11:38:50 UTC (rev 622)
+++ branches/vhffs-design/vhffs-panel/mysql/index.pl 2007-05-23 06:15:23 UTC (rev 623)
@@ -55,6 +55,7 @@
} else {
# Group is in session => access is granted for user and group is activated
# no need to check
+ $panel->set_title( sprintf(gettext('MySQL DBs for %s'), $group->get_groupname) );
my $mysql = Vhffs::Panel::Mysql::getall_per_group( $vhffs, $group->get_gid );
if($mysql < 0) {
$panel->add_error( gettext('Unable to get MySQL databases.') );
Modified: branches/vhffs-design/vhffs-panel/pgsql/index.pl
===================================================================
--- branches/vhffs-design/vhffs-panel/pgsql/index.pl 2007-05-22 11:38:50 UTC (rev 622)
+++ branches/vhffs-design/vhffs-panel/pgsql/index.pl 2007-05-23 06:15:23 UTC (rev 623)
@@ -55,6 +55,7 @@
} else {
# Group is in session => access is granted for user and group is activated
# no need to check
+ $panel->set_title( sprintf(gettext('PostgreSQL DBs for %s'), $group->get_groupname) );
my $pgsql = Vhffs::Panel::Pgsql::getall_per_group( $vhffs, $group->get_gid );
if($pgsql < 0) {
$panel->add_error( gettext('Unable to get PgSQL databases') );
Modified: branches/vhffs-design/vhffs-panel/repository/index.pl
===================================================================
--- branches/vhffs-design/vhffs-panel/repository/index.pl 2007-05-22 11:38:50 UTC (rev 622)
+++ branches/vhffs-design/vhffs-panel/repository/index.pl 2007-05-23 06:15:23 UTC (rev 623)
@@ -55,6 +55,7 @@
} else {
# Group is in session => access is granted for user and group is activated
# no need to check
+ $panel->set_title( sprintf(gettext('Download repositories for %s'), $group->get_groupname) );
my $repos = Vhffs::Panel::Repository::getall_per_group( $vhffs, $group->get_gid );
if($repos < 0) {
$panel->add_error( gettext('Unable to get repositories') );
Modified: branches/vhffs-design/vhffs-panel/svn/index.pl
===================================================================
--- branches/vhffs-design/vhffs-panel/svn/index.pl 2007-05-22 11:38:50 UTC (rev 622)
+++ branches/vhffs-design/vhffs-panel/svn/index.pl 2007-05-23 06:15:23 UTC (rev 623)
@@ -55,6 +55,7 @@
} else {
# Group is in session => access is granted for user and group is activated
# no need to check
+ $panel->set_title( sprintf(gettext('SVN repositories for %s'), $group->get_groupname) );
my $svn = Vhffs::Panel::Svn::getall_per_group( $vhffs, $group->get_gid );
if($svn < 0) {
$panel->add_error( gettext('Unable to get SVN repositories') );
Modified: branches/vhffs-design/vhffs-panel/templates/group/info.tmpl
===================================================================
--- branches/vhffs-design/vhffs-panel/templates/group/info.tmpl 2007-05-22 11:38:50 UTC (rev 622)
+++ branches/vhffs-design/vhffs-panel/templates/group/info.tmpl 2007-05-23 06:15:23 UTC (rev 623)
@@ -12,93 +12,4 @@
<p><a href="/group/prefs.pl"><tmpl_var name="TEXT_PREFS"></a></p>
- <tmpl_if name="WEBAREA">
- <fieldset>
- <legend><tmpl_var name="WEBAREA"></legend>
- <ul>
- <tmpl_var name="WEBAREA_VALUES">
- <li><a href="/web/create.pl"><tmpl_var name="NEW"></a></li>
- </ul>
- </fieldset>
- </tmpl_if>
-
- <tmpl_if name="MYSQL">
- <fieldset>
- <legend><tmpl_var name="MYSQL"></legend>
- <ul>
- <tmpl_var name="MYSQL_VALUES">
- <li><a href="/mysql/create.pl"><tmpl_var name="NEW"></a></li>
- </ul>
- </fieldset>
- </tmpl_if>
-
- <tmpl_if name="PGSQL">
- <fieldset>
- <legend><tmpl_var name="PGSQL"></legend>
- <ul>
- <tmpl_var name="PGSQL_VALUES">
- <li><a href="/pgsql/create.pl"><tmpl_var name="NEW"></a></li>
- </ul>
- </fieldset>
- </tmpl_if>
-
- <tmpl_if name="REPOSITORY">
- <fieldset>
- <legend><tmpl_var name="REPOSITORY"></legend>
- <ul>
- <tmpl_var name="REPOSITORY_VALUES">
- <li><a href="/repository/create.pl"><tmpl_var name="NEW"></a></li>
- </ul>
- </fieldset>
- </tmpl_if>
-
- <tmpl_if name="CVS">
- <fieldset>
- <legend><tmpl_var name="CVS"></legend>
- <ul>
- <tmpl_var name="CVS_VALUES">
- <li><a href="/cvs/create.pl"><tmpl_var name="NEW"></a></li>
- </ul>
- </fieldset>
- </tmpl_if>
-
- <tmpl_if name="SVN">
- <fieldset>
- <legend><tmpl_var name="SVN"></legend>
- <ul>
- <tmpl_var name="SVN_VALUES">
- <li><a href="/svn/create.pl"><tmpl_var name="NEW"></a></li>
- </ul>
- </fieldset>
- </tmpl_if>
-
- <tmpl_if name="DNS">
- <fieldset>
- <legend><tmpl_var name="DNS"></legend>
- <ul>
- <tmpl_var name="DNS_VALUES">
- <li><a href="/dns/create.pl"><tmpl_var name="NEW"></a></li>
- </ul>
- </fieldset>
- </tmpl_if>
-
- <tmpl_if name="MAILS">
- <fieldset>
- <legend><tmpl_var name="MAILS"></legend>
- <ul>
- <tmpl_var name="MAILS_VALUES">
- <li><a href="/mail/create.pl"><tmpl_var name="NEW"></a></li>
- </ul>
- </fieldset>
- </tmpl_if>
-
- <tmpl_if name="MLS">
- <fieldset>
- <legend><tmpl_var name="MLS"></legend>
- <ul>
- <tmpl_var name="MLS_VALUES">
- <li><a href="/mailinglist/create.pl"><tmpl_var name="NEW"></a></li>
- </ul>
- </fieldset>
- </tmpl_if>
-
+ <tmpl_var name="SERVICES">
Modified: branches/vhffs-design/vhffs-panel/templates/misc/service_index.tmpl
===================================================================
--- branches/vhffs-design/vhffs-panel/templates/misc/service_index.tmpl 2007-05-22 11:38:50 UTC (rev 622)
+++ branches/vhffs-design/vhffs-panel/templates/misc/service_index.tmpl 2007-05-23 06:15:23 UTC (rev 623)
@@ -1,6 +1,7 @@
<fieldset>
<legend><tmpl_var name="TEXT_TITLE"></legend>
<ul class="<tmpl_var name="SERVICE">List">
+<tmpl_if name="SERVICES">
<tmpl_loop name="SERVICES">
<li><tmpl_var name="DISPLAYNAME">
<tmpl_if name="active">
@@ -10,6 +11,9 @@
</tmpl_if>
</li>
</tmpl_loop>
+<tmpl_else>
+ <li><tmpl_var name="NO_SERVICE_TEXT"></li>
+</tmpl_if>
<li><a href="/<tmpl_var name="SERVICE">/create.pl"><tmpl_var name="NEW"></a></li>
</ul>
</fieldset>
Modified: branches/vhffs-design/vhffs-panel/web/index.pl
===================================================================
--- branches/vhffs-design/vhffs-panel/web/index.pl 2007-05-22 11:38:50 UTC (rev 622)
+++ branches/vhffs-design/vhffs-panel/web/index.pl 2007-05-23 06:15:23 UTC (rev 623)
@@ -55,6 +55,7 @@
} else {
# Group is in session => access is granted for user and group is activated
# no need to check
+ $panel->set_title( sprintf(gettext('Webareas for %s'), $group->get_groupname) );
my $web = Vhffs::Panel::Web::getall_per_group( $vhffs, $group->get_gid );
if($web < 0) {
$panel->add_error( gettext('Unable to get webareas') );