[vhffs-dev] [611] Modified i18n directories so they can be handled "the right way" by autotools.

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


Revision: 611
Author:   beuss
Date:     2007-05-17 11:10:10 +0000 (Thu, 17 May 2007)

Log Message:
-----------
Modified i18n directories so they can be handled "the right way" by autotools.

Modified Paths:
--------------
    branches/vhffs-design/vhffs-intl/Makefile.am
    branches/vhffs-design/vhffs-intl/compile_po.sh
    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-intl/update_po.sh

Added Paths:
-----------
    branches/vhffs-design/vhffs-intl/extra_strings.pl
    branches/vhffs-design/vhffs-intl/result/Makefile.am
    branches/vhffs-design/vhffs-intl/result/en_US/LC_MESSAGES/
    branches/vhffs-design/vhffs-intl/result/en_US/LC_MESSAGES/vhffs.mo
    branches/vhffs-design/vhffs-intl/result/es_ES/LC_MESSAGES/
    branches/vhffs-design/vhffs-intl/result/es_ES/LC_MESSAGES/vhffs.mo
    branches/vhffs-design/vhffs-intl/result/fr_FR/LC_MESSAGES/
    branches/vhffs-design/vhffs-intl/result/fr_FR/LC_MESSAGES/vhffs.mo
    branches/vhffs-design/vhffs-intl/src/en.po

Removed Paths:
-------------
    branches/vhffs-design/vhffs-intl/result/es_ES/vhffs.mo
    branches/vhffs-design/vhffs-intl/result/fr_FR/vhffs.mo

Property Changed:
----------------
    branches/vhffs-design/vhffs-intl/src/


Modified: branches/vhffs-design/vhffs-intl/Makefile.am
===================================================================
--- branches/vhffs-design/vhffs-intl/Makefile.am	2007-05-17 11:04:33 UTC (rev 610)
+++ branches/vhffs-design/vhffs-intl/Makefile.am	2007-05-17 11:10:10 UTC (rev 611)
@@ -1,14 +1 @@
-intldir = @INTLDIR@
-
-languages = es_ES \
-	fr_FR
-
-install-data-hook:
-	for lang in $(languages) ; do \
-		if ! test -e $(intldir)/$$lang/LC_MESSAGES ; then \
-			mkdir -p $(intldir)/$$lang/LC_MESSAGES ; \
-		fi; \
-		echo "$(INSTALL_DATA) result/$$lang/vhffs.mo $(intldir)/$$lang/LC_MESSAGES/" ; \
-		$(INSTALL_DATA) result/$$lang/vhffs.mo $(intldir)/$$lang/LC_MESSAGES/ ; \
-	done
-
+SUBDIRS = result

Modified: branches/vhffs-design/vhffs-intl/compile_po.sh
===================================================================
--- branches/vhffs-design/vhffs-intl/compile_po.sh	2007-05-17 11:04:33 UTC (rev 610)
+++ branches/vhffs-design/vhffs-intl/compile_po.sh	2007-05-17 11:10:10 UTC (rev 611)
@@ -4,6 +4,7 @@
 # with variables so we can easily add translation
 # do it...
 
-msgfmt -c -v -o result/fr_FR/vhffs.mo src/fr.po
-msgfmt -c -v -o result/es_ES/vhffs.mo src/es.po
+msgfmt --check --verbose --output-file result/fr_FR/LC_MESSAGES/vhffs.mo src/fr.po
+msgfmt --check --verbose --output-file result/es_ES/LC_MESSAGES/vhffs.mo src/es.po
+msgfmt --check --verbose --output-file result/en_US/LC_MESSAGES/vhffs.mo src/en.po
 

Added: branches/vhffs-design/vhffs-intl/extra_strings.pl
===================================================================
--- branches/vhffs-design/vhffs-intl/extra_strings.pl	2007-05-17 11:04:33 UTC (rev 610)
+++ branches/vhffs-design/vhffs-intl/extra_strings.pl	2007-05-17 11:10:10 UTC (rev 611)
@@ -0,0 +1,41 @@
+# This is a dummy perl file use feed xgettext with
+# string ids that can't be passed directly to gettext
+# (arrays, generation).
+
+die('Don\'t execute me, vi me');
+
+# Help topics
+gettext_noop('help_user_preferences');
+gettext_noop('help_user_help');
+gettext_noop('help_user_bug');
+gettext_noop('help_user_logout');
+gettext_noop('help_user_projects');
+
+# Object status
+gettext_noop('Waiting for validation');
+gettext_noop('Validation refused');
+gettext_noop('Waiting for creation');
+gettext_noop('Creation error');
+gettext_noop('Created');
+gettext_noop('Activated');
+gettext_noop('Suspended');
+gettext_noop('Suspended before deletion');
+gettext_noop('Waiting for modification');
+gettext_noop('Modification error');
+gettext_noop('Modification applied');
+gettext_noop('Will be deleted');
+
+
+# Object types
+gettext_noop('User');
+gettext_noop('Group');
+gettext_noop('Webarea');
+gettext_noop('Download Repository');
+gettext_noop('MySQL DB');
+gettext_noop('PgSQL DB');
+gettext_noop('CVS Repository');
+gettext_noop('SVN Repository');
+gettext_noop('Domain Name');
+gettext_noop('Mail Domain');
+gettext_noop('Mailing List');
+

Added: branches/vhffs-design/vhffs-intl/result/Makefile.am
===================================================================
--- branches/vhffs-design/vhffs-intl/result/Makefile.am	2007-05-17 11:04:33 UTC (rev 610)
+++ branches/vhffs-design/vhffs-intl/result/Makefile.am	2007-05-17 11:10:10 UTC (rev 611)
@@ -0,0 +1,5 @@
+intldir=@INTLDIR@
+nobase_intl_DATA = \
+	en_US/LC_MESSAGES/vhffs.mo \
+	es_ES/LC_MESSAGES/vhffs.mo \
+	fr_FR/LC_MESSAGES/vhffs.mo

Added: branches/vhffs-design/vhffs-intl/result/en_US/LC_MESSAGES/vhffs.mo
===================================================================
(Binary files differ)


Property changes on: branches/vhffs-design/vhffs-intl/result/en_US/LC_MESSAGES/vhffs.mo
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: branches/vhffs-design/vhffs-intl/result/es_ES/LC_MESSAGES/vhffs.mo
===================================================================
(Binary files differ)


Property changes on: branches/vhffs-design/vhffs-intl/result/es_ES/LC_MESSAGES/vhffs.mo
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Deleted: branches/vhffs-design/vhffs-intl/result/es_ES/vhffs.mo
===================================================================
(Binary files differ)

Added: branches/vhffs-design/vhffs-intl/result/fr_FR/LC_MESSAGES/vhffs.mo
===================================================================
(Binary files differ)


Property changes on: branches/vhffs-design/vhffs-intl/result/fr_FR/LC_MESSAGES/vhffs.mo
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Deleted: branches/vhffs-design/vhffs-intl/result/fr_FR/vhffs.mo
===================================================================
(Binary files differ)


Property changes on: branches/vhffs-design/vhffs-intl/src
___________________________________________________________________
Name: svn:ignore
   - fr.po.old
es.po.old

   + fr.po.old
es.po.old
en.po.old


Added: branches/vhffs-design/vhffs-intl/src/en.po
===================================================================
--- branches/vhffs-design/vhffs-intl/src/en.po	2007-05-17 11:04:33 UTC (rev 610)
+++ branches/vhffs-design/vhffs-intl/src/en.po	2007-05-17 11:10:10 UTC (rev 611)
@@ -0,0 +1,5270 @@
+# English PO file for VHFFS project. Should contain only
+# help string and fixes.
+# Copyright (C) 2007 - VHFFS Project team
+# This file is distributed under the same license as the VHFFS package.
+# FIRST AUTHOR <beuss@xxxxxxxxxxxxx> 05/2007.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: VHFFS 4.1 English strings\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-05-17 10:35+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"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-1\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:63
+msgid "\t\t\t\t   RIGHT can be subscriber or admin\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:143
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:159
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:162
+msgid "\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:417
+#, perl-format
+msgid ""
+"  %s-request@%s\n"
+"with the following subject :\n"
+"  \"accept %s\" \n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:420
+#, perl-format
+msgid ""
+"  %s-request@%s\n"
+"with the following subject :\n"
+"  \"refuse %s\" \n"
+msgstr ""
+
+#: ../vhffs-panel/admin/moderation_submit.pl:105 ../vhffs-irc/modobot.pl:397
+msgid ""
+" was accepted\n"
+"Please wait while we are creating your object\n"
+msgstr ""
+
+#: ../vhffs-panel/public/index.pl:63
+#, perl-format
+msgid "%s public area"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:303
+#, perl-format
+msgid "%s's Panel"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:145
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:164
+#, perl-format
+msgid "%s-request@%s with subject \"help\"\n"
+msgstr ""
+
+#: ../vhffs-panel/web/create.pl:69
+msgid "<new site>."
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:324
+#, perl-format
+msgid "@ represents the origin (%s)"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:341
+msgid ""
+"A CNAME, A or AAAA record with the same name already exists for this domain"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:126
+msgid "A Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:121
+msgid "A Record updated"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:394
+#, perl-format
+msgid "A mail to moderate is on the list %s.\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:412
+#, perl-format
+msgid ""
+"A new person wants to subscribe to the following mailing list:\n"
+"\n"
+"%s\n"
+"\n"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:149
+msgid "A record added"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:138
+msgid "AAAA Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:133
+msgid "AAAA Record updated"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:144
+msgid "AAAA record added"
+msgstr ""
+
+#: ../vhffs-panel/acl/view.pl:148
+msgid "ACL Administration"
+msgstr ""
+
+#: ../vhffs-panel/acl/view.pl:167
+msgid "ACL level"
+msgstr ""
+
+#: ../vhffs-panel/acl/add_acl_group.pl:106
+#: ../vhffs-panel/acl/add_acl_user.pl:106
+msgid "ACL successfully added"
+msgstr ""
+
+#: ../vhffs-panel/acl/submit.pl:108
+msgid "ACL successfully deleted"
+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
+#: ../vhffs-panel/admin/moderation.pl:242
+#: ../vhffs-panel/admin/moderation.pl:285
+#: ../vhffs-panel/admin/moderation.pl:330
+#: ../vhffs-panel/admin/moderation.pl:375
+#: ../vhffs-panel/admin/moderation.pl:418
+#: ../vhffs-panel/admin/moderation.pl:460
+#: ../vhffs-panel/admin/moderation.pl:502
+msgid "Accept"
+msgstr ""
+
+#: ../vhffs-panel/logout.pl:60 ../vhffs-api/src/Vhffs/Panel/Commons.pm:57
+msgid "Access to panel"
+msgstr ""
+
+#: ../vhffs-panel/mail/delete_box.pl:105
+msgid "Account successfully deleted"
+msgstr ""
+
+#: ../vhffs-panel/mail/prefs.pl:106
+msgid "Accounts"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:346
+#, perl-format
+msgid "Activate %s@%s email"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit.pl:143
+#: ../vhffs-panel/admin/pgsql/edit.pl:119
+#: ../vhffs-panel/admin/group/edit.pl:119
+#: ../vhffs-panel/admin/repository/edit.pl:119
+#: ../vhffs-panel/admin/object/edit.pl:119
+#: ../vhffs-panel/admin/web/edit.pl:132 ../vhffs-panel/admin/mysql/edit.pl:120
+#: ../vhffs-panel/admin/cvs/edit.pl:128 ../vhffs-panel/admin/mail/edit.pl:160
+#: ../vhffs-intl/extra_strings.pl:20
+msgid "Activated"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:156 ../vhffs-panel/dns/prefs.pl:277
+msgid "Add !"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:290
+msgid "Add a CNAME field to your domain"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:282
+msgid "Add a MX field to your domain"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:298
+msgid "Add a NS field to your domain"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:304
+msgid "Add a SRV record to your domain"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:316
+msgid "Add a TXT record"
+msgstr ""
+
+#: ../vhffs-panel/mail/prefs.pl:117 ../vhffs-panel/mail/prefs.pl:127
+msgid "Add a forward on this domain"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:154
+msgid "Add a member"
+msgstr ""
+
+#: ../vhffs-panel/mail/prefs.pl:126
+msgid "Add a popbox to this domain"
+msgstr ""
+
+#: ../vhffs-panel/group/prefs.pl:105
+msgid "Add a user in this group"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:251
+msgid "Add an A record"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:252
+msgid "Add an AAAA record"
+msgstr ""
+
+#: ../vhffs-panel/mail/prefs.pl:108
+msgid "Add an account"
+msgstr ""
+
+#: ../vhffs-panel/group/prefs.pl:106
+msgid "Add this user !"
+msgstr ""
+
+#: ../vhffs-panel/group/join_group.pl:110
+msgid "Add this user to this group"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:205 ../vhffs-panel/user/prefs.pl:259
+#: ../vhffs-panel/admin/user/edit.pl:104 ../vhffs-panel/admin/user/show.pl:104
+msgid "Address"
+msgstr ""
+
+#: ../vhffs-panel/web/prefs.pl:95
+msgid "Address (Servername)"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:108
+msgid "Address is not correct !"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:182
+#: ../vhffs-panel/admin/user/edit.pl:101 ../vhffs-panel/admin/user/edit.pl:131
+#: ../vhffs-panel/admin/user/show.pl:101 ../vhffs-panel/admin/user/show.pl:136
+msgid "Admin"
+msgstr ""
+
+#: ../vhffs-panel/cvs/prefs.pl:89
+msgid "Admin CVS Repository"
+msgstr ""
+
+#: ../vhffs-panel/repository/prefs.pl:96
+msgid "Admin Download repository"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:257 ../vhffs-panel/web/prefs.pl:122
+#: ../vhffs-panel/mail/prefs.pl:137
+msgid "Admin Rights on this object (ACL)"
+msgstr ""
+
+#: ../vhffs-panel/svn/prefs.pl:113
+msgid "Admin Subversion Repository"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:72
+msgid "Admin account"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:105
+msgid "Administration for list "
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:68
+msgid "Administrator Menu"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:121
+msgid "Admins only"
+msgstr ""
+
+#: ../vhffs-panel/web/create.pl:74
+msgid "Adress (ServerName directive)"
+msgstr ""
+
+#: ../vhffs-panel/admin/web/edit.pl:97 ../vhffs-panel/admin/web/show.pl:96
+msgid "Alert Limit"
+msgstr ""
+
+#: ../vhffs-panel/alert_submit.pl:73
+msgid "Alert on Vhffs platform"
+msgstr ""
+
+#: ../vhffs-panel/admin/web/edit.pl:98 ../vhffs-panel/admin/web/show.pl:97
+msgid "Alert state"
+msgstr ""
+
+#: ../vhffs-panel/public/allwebsites.pl:73
+#: ../vhffs-panel/public/allgroups.pl:69
+msgid "All"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:245
+msgid "All A TYPE for your domain name"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:246
+msgid "All AAAA TYPE for your domain name"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:289
+msgid "All CNAME TYPE for your domain name"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:248
+msgid "All CNAME for your domain name"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:247 ../vhffs-panel/dns/prefs.pl:281
+msgid "All MX TYPE for your domain name"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:297
+msgid "All NS TYPE for your domain name"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:303
+msgid "All SRV records for your domain name"
+msgstr ""
+
+#: ../vhffs-panel/admin/svn/list.pl:73
+msgid "All Subversion repositories lists"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:317
+msgid "All TXT records for your domain name"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:45
+msgid "All commands can be sent as mail subject.\n"
+msgstr ""
+
+#: ../vhffs-panel/public/allgroups.pl:67
+#, perl-format
+msgid "All groups on %s"
+msgstr ""
+
+#: ../vhffs-panel/admin/broadcast_list.pl:76
+msgid "All mailings sent to hosted"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:47
+msgid ""
+"All mails with commands must be sent on YOURLIST-request@xxxxxxxxxx list.\n"
+msgstr ""
+
+#: ../vhffs-panel/admin/object/list.pl:84
+msgid "All objects List"
+msgstr ""
+
+#: ../vhffs-panel/group/prefs.pl:126
+msgid "All users in this group"
+msgstr ""
+
+#: ../vhffs-panel/public/allwebsites.pl:71
+#: ../vhffs-panel/public/websearch.pl:76
+#, perl-format
+msgid "All websites on %s"
+msgstr ""
+
+#: ../vhffs-panel/mail/add_forward.pl:95
+#, perl-format
+msgid "Already exists for this domain or bad parameters. Check your domain"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:293
+msgid "An MX record with the same name already exists for this domain"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:316
+msgid "An NS record with the same name already exists for this domain"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:189
+#, perl-format
+msgid ""
+"An error occured during your subscription to the following list:\n"
+"\n"
+"%s\n"
+"\n"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/submit.pl:114
+msgid "An error occured while adding an ACL for the group"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:169
+msgid "An error occured while adding the box"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:171
+msgid "An error occured while adding the box (anti-spam adding)"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:173
+msgid "An error occured while adding the box (anti-virus adding)"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:213
+msgid "An error occured while adding the forwarding"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/submit.pl:112
+msgid "An error occured while adding yourself to the ACL"
+msgstr ""
+
+#: ../vhffs-panel/user/delete.pl:83
+msgid "An error occured while applying changes. This user will NOT be deleted"
+msgstr ""
+
+#: ../vhffs-panel/web/delete.pl:92
+msgid ""
+"An error occured while applying changes. This web area will NOT be deleted"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/submit.pl:110
+msgid "An error occured while creating the list"
+msgstr ""
+
+#: ../vhffs-panel/mail/submit.pl:86
+msgid "An error occured while creating the mail area"
+msgstr ""
+
+#: ../vhffs-panel/admin/mailing/mailing_submit.pl:84
+msgid "An error occured while creating the message in the database"
+msgstr ""
+
+#: ../vhffs-panel/svn/svn_submit.pl:80 ../vhffs-panel/mysql/submit.pl:103
+msgid "An error occured while creating the object"
+msgstr ""
+
+#: ../vhffs-panel/pgsql/pgsql_submit.pl:99
+#, perl-format
+msgid "An error occured while creating the object %s %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/create.pl:50
+msgid ""
+"An error occured while creating the object. The domain is not correct or "
+"aleady exists in Vhffs database"
+msgstr ""
+
+#: ../vhffs-panel/repository/repository_submit.pl:93
+#: ../vhffs-panel/cvs/create.pl:81
+msgid "An error occured while creating the object.It probably already exists"
+msgstr ""
+
+#: ../vhffs-panel/cvs/delete.pl:99
+msgid "An error occured while deleting the CVS repository"
+msgstr ""
+
+#: ../vhffs-panel/repository/delete.pl:99
+msgid "An error occured while deleting the Download repository"
+msgstr ""
+
+#: ../vhffs-panel/svn/delete.pl:98
+msgid "An error occured while deleting the Subversion repository"
+msgstr ""
+
+#: ../vhffs-panel/admin/broadcast_delete.pl:95
+msgid "An error occured while deleting this mailing"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Robots/Mysql.pm:108
+msgid "An error occured while granting privileges to an admin user"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/change_right.pl:107
+msgid "An error occured while modifying the rights"
+msgstr ""
+
+#: ../vhffs-panel/svn/svn_submit.pl:78
+msgid "An error occured while setting up the ACL"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:220
+msgid "An error occured while the forwarding"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/del_member.pl:101
+msgid "An error occured while unsubscribing the user"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit_submit.pl:131
+msgid "An error occured while updating"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:280
+#, perl-format
+msgid ""
+"An error occured while updating language for the following address: %s.\n"
+msgstr ""
+
+#: ../vhffs-panel/cvs/prefs_save.pl:112
+msgid "An error occured while updating the CVS repository"
+msgstr ""
+
+#: ../vhffs-panel/repository/prefs_save.pl:96
+msgid "An error occured while updating the Download repository"
+msgstr ""
+
+#: ../vhffs-panel/svn/prefs_save.pl:107 ../vhffs-panel/svn/prefs_save.pl:119
+msgid "An error occured while updating the Subversion repository"
+msgstr ""
+
+#: ../vhffs-panel/mail/save_catchall.pl:96
+msgid "An error occured while updating the mail domain"
+msgstr ""
+
+#: ../vhffs-panel/admin/object/edit_submit.pl:89
+msgid "An error occured while updating the object"
+msgstr ""
+
+#: ../vhffs-panel/group/delete.pl:89 ../vhffs-panel/group/prefs_save.pl:91
+msgid "An error occured while updating the project"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:140
+msgid "An error occured while updating the user account"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:445
+msgid "April"
+msgstr ""
+
+#: ../vhffs-listengine/src/archives/archives.pl:147
+#: ../vhffs-listengine/src/archives/show_msg.pl:93
+msgid "Archive are not open for this list"
+msgstr ""
+
+#: ../vhffs-listengine/src/archives/archives.pl:160
+#: ../vhffs-listengine/src/archives/archives.pl:197
+#: ../vhffs-listengine/src/archives/archives.pl:219
+#: ../vhffs-listengine/src/archives/archives.pl:243
+msgid "Archives"
+msgstr ""
+
+#: ../vhffs-listengine/src/archives/archives.pl:231
+msgid "Archives for "
+msgstr ""
+
+#: ../vhffs-listengine/src/archives/archives.pl:255
+msgid "Archives for year"
+msgstr ""
+
+#: ../vhffs-panel/svn/prefs.pl:124
+msgid "Are you SURE you want DELETE this  subversion repository ?"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:203 ../vhffs-panel/mail/prefs.pl:132
+msgid "Are you SURE you want DELETE this Mail Area ?"
+msgstr ""
+
+#: ../vhffs-panel/mysql/prefs.pl:116
+msgid "Are you SURE you want DELETE this MySQL database ?"
+msgstr ""
+
+#: ../vhffs-panel/pgsql/prefs.pl:109
+msgid "Are you SURE you want DELETE this PostgreSQL database ?"
+msgstr ""
+
+#: ../vhffs-panel/web/prefs.pl:128
+msgid "Are you SURE you want DELETE this Web Area ?"
+msgstr ""
+
+#: ../vhffs-panel/cvs/prefs.pl:98
+msgid "Are you SURE you want DELETE this cvs repository ?"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:265
+msgid "Are you SURE you want DELETE this domain ?"
+msgstr ""
+
+#: ../vhffs-panel/repository/prefs.pl:104
+msgid "Are you SURE you want DELETE this download repository ?"
+msgstr ""
+
+#: ../vhffs-panel/group/prefs.pl:99
+msgid "Are you SURE you want DELETE this project ?"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:278
+msgid "Are you SURE you want DELETE this user?"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:461
+msgid "August"
+msgstr ""
+
+#: ../vhffs-panel/admin/object/delete_avatar.pl:99
+msgid "Avatar deleted"
+msgstr ""
+
+#: ../vhffs-panel/admin/object/edit.pl:194
+msgid "Avatar management"
+msgstr ""
+
+#: ../vhffs-panel/admin/broadcast_list.pl:95
+#: ../vhffs-panel/admin/broadcast_view.pl:96
+msgid "Awaiting sending"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:169 ../vhffs-panel/subscribe.pl:207
+msgid "Back to Login"
+msgstr ""
+
+#: ../vhffs-listengine/src/archives/archives.pl:191
+#, perl-format
+msgid "Back to archives by month ( %s )"
+msgstr ""
+
+#: ../vhffs-listengine/src/archives/archives.pl:220
+#, perl-format
+msgid "Back to archives by year ( %s )"
+msgstr ""
+
+#: ../vhffs-listengine/src/archives/archives.pl:161
+msgid "Back to list by day"
+msgstr ""
+
+#: ../vhffs-panel/lost.pl:56
+msgid "Back to login page"
+msgstr ""
+
+#: ../vhffs-listengine/src/archives/show_msg.pl:71
+msgid "Bad listname"
+msgstr ""
+
+#: ../vhffs-listengine/src/archives/archives.pl:131
+#, perl-format
+msgid "Bad listname %s"
+msgstr ""
+
+#: ../vhffs-listengine/src/archives/show_msg.pl:87
+msgid "Bad message-id"
+msgstr ""
+
+#: ../vhffs-panel/mysql/prefs.pl:98
+msgid ""
+"Be careful ! If you click on modify, VHFFS will stop the database and set a "
+"new password for this database."
+msgstr ""
+
+#: ../vhffs-panel/dns/create.pl:63
+msgid ""
+"Be careful ! You must give the reason why you want to host this domain on "
+"our servers."
+msgstr ""
+
+#: ../vhffs-panel/web/create.pl:75
+msgid ""
+"Be careful, if you want create www.domain.tld, you should create a webspace "
+"with servername as domain.tld. VHFFS redirect all request from www.domain."
+"tld to domain.tld"
+msgstr ""
+
+#: ../vhffs-panel/admin/broadcast_view.pl:88
+msgid "Body"
+msgstr ""
+
+#: ../vhffs-panel/lost.pl:53
+msgid ""
+"But fortunately we're smart, so just type your login here<br/>and a new "
+"password will be sent to you by email!"
+msgstr ""
+
+#: ../vhffs-panel/admin/mail/delete_box.pl:82
+#: ../vhffs-panel/admin/mail/password_box.pl:83
+#: ../vhffs-panel/admin/mail/delete_forward.pl:83
+#: ../vhffs-panel/admin/mail/change_forward.pl:83
+#: ../vhffs-panel/mail/delete.pl:74 ../vhffs-panel/mail/delete_box.pl:79
+#: ../vhffs-panel/mail/add_account.pl:82
+#: ../vhffs-panel/mail/password_box.pl:82
+#: ../vhffs-panel/mail/delete_forward.pl:79
+#: ../vhffs-panel/mail/add_forward.pl:78
+#: ../vhffs-panel/mail/change_forward.pl:82
+#: ../vhffs-panel/mail/spamvirus.pl:82 ../vhffs-panel/mail/spambox.pl:82
+msgid "CGI ERROR"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit_submit.pl:91
+#: ../vhffs-panel/admin/user/edit.pl:79 ../vhffs-panel/admin/user/show.pl:81
+#: ../vhffs-panel/admin/user/edit_note.pl:81
+#: ../vhffs-panel/admin/pgsql/edit_submit.pl:79
+#: ../vhffs-panel/admin/pgsql/edit.pl:79 ../vhffs-panel/admin/pgsql/show.pl:79
+#: ../vhffs-panel/admin/group/edit_submit.pl:83
+#: ../vhffs-panel/admin/group/edit.pl:77
+#: ../vhffs-panel/admin/repository/edit_submit.pl:81
+#: ../vhffs-panel/admin/repository/edit.pl:79
+#: ../vhffs-panel/admin/repository/show.pl:79
+#: ../vhffs-panel/admin/object/edit_submit.pl:77
+#: ../vhffs-panel/admin/object/delete_avatar.pl:81
+#: ../vhffs-panel/admin/object/edit.pl:79
+#: ../vhffs-panel/admin/web/edit_submit.pl:79
+#: ../vhffs-panel/admin/web/edit.pl:79 ../vhffs-panel/admin/web/show.pl:79
+#: ../vhffs-panel/admin/mysql/edit_submit.pl:78
+#: ../vhffs-panel/admin/mysql/edit.pl:79 ../vhffs-panel/admin/mysql/show.pl:78
+#: ../vhffs-panel/admin/cvs/edit_submit.pl:81
+#: ../vhffs-panel/admin/cvs/edit.pl:79 ../vhffs-panel/admin/cvs/show.pl:79
+#: ../vhffs-panel/admin/mail/edit.pl:81 ../vhffs-panel/admin/mail/show.pl:81
+msgid "CGI ERROR !"
+msgstr ""
+
+#: ../vhffs-panel/admin/group/show.pl:78
+#, perl-format
+msgid "CGI ERROR ! %s"
+msgstr ""
+
+#: ../vhffs-panel/public/user.pl:68 ../vhffs-panel/public/group.pl:72
+msgid "CGI ERROR!"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/submit.pl:96 ../vhffs-panel/svn/prefs.pl:82
+#: ../vhffs-panel/svn/create.pl:64 ../vhffs-panel/acl/submit.pl:85
+#: ../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
+#: ../vhffs-panel/admin/mailing/mailing_submit.pl:78
+#: ../vhffs-panel/admin/broadcast_submit.pl:83
+#: ../vhffs-panel/admin/broadcast_delete.pl:83
+#: ../vhffs-panel/admin/group/edit_submit.pl:95
+#: ../vhffs-panel/admin/broadcast_view.pl:78 ../vhffs-panel/mysql/delete.pl:76
+#: ../vhffs-panel/mysql/prefs.pl:71 ../vhffs-panel/mysql/submit.pl:75
+#: ../vhffs-panel/mysql/prefs_save.pl:79 ../vhffs-panel/cvs/prefs.pl:72
+msgid "CGI Error !"
+msgstr ""
+
+#: ../vhffs-panel/svn/prefs_save.pl:76 ../vhffs-panel/repository/delete.pl:74
+#: ../vhffs-panel/repository/prefs_save.pl:74 ../vhffs-panel/cvs/delete.pl:74
+#: ../vhffs-panel/cvs/prefs_save.pl:74
+#, perl-format
+msgid "CGI Error ! %s"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/delete.pl:78
+#: ../vhffs-panel/mailinglist/save_sig.pl:77
+#: ../vhffs-panel/mailinglist/add_sub.pl:79
+#: ../vhffs-panel/mailinglist/save_options.pl:81
+#: ../vhffs-panel/mailinglist/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/pgsql/pgsql_submit.pl:73 ../vhffs-panel/web/web_submit.pl:72
+msgid "CGI Error!"
+msgstr ""
+
+#: ../vhffs-panel/group/project_submit.pl:70
+msgid "CGI Errror!"
+msgstr ""
+
+#: ../vhffs-panel/admin/moderation_submit.pl:90
+msgid "CGI problem"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:188
+msgid "CNAME Record added"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:183
+msgid "CNAME Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:179
+msgid "CNAME Record updated"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:145
+msgid "CVS Admin"
+msgstr ""
+
+#: ../vhffs-intl/extra_strings.pl:36
+msgid "CVS Repository"
+msgstr ""
+
+#: ../vhffs-panel/admin/cvs/list.pl:89
+msgid "CVS Root"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:147
+msgid "CVS Search"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:485
+msgid "CVS repositories for this group"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:118
+msgid "CVS repository"
+msgstr ""
+
+#: ../vhffs-panel/admin/moderation.pl:217
+msgid "CVS repository awaiting validation"
+msgstr ""
+
+#: ../vhffs-panel/public/group.pl:148
+msgid "CVS repository for this group"
+msgstr ""
+
+#: ../vhffs-panel/cvs/prefs_save.pl:116
+msgid "CVS repository updated"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:119
+msgid "CVS stats"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:136
+msgid "CVSweb"
+msgstr ""
+
+#: ../vhffs-panel/acl/view.pl:165 ../vhffs-panel/acl/view.pl:189
+#: ../vhffs-panel/acl/view.pl:236
+msgid "Can destroy this service"
+msgstr ""
+
+#: ../vhffs-panel/acl/view.pl:164 ../vhffs-panel/acl/view.pl:188
+#: ../vhffs-panel/acl/view.pl:235
+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
+msgid "Can modify this service"
+msgstr ""
+
+#: ../vhffs-panel/acl/view.pl:162 ../vhffs-panel/acl/view.pl:186
+#: ../vhffs-panel/acl/view.pl:233
+msgid "Can view this service"
+msgstr ""
+
+#: ../vhffs-panel/acl/view.pl:161 ../vhffs-panel/acl/view.pl:185
+#: ../vhffs-panel/acl/view.pl:232
+msgid "Can't access"
+msgstr ""
+
+#: ../vhffs-panel/mail/password_box.pl:104
+msgid "Can't change password"
+msgstr ""
+
+#: ../vhffs-panel/mail/delete_box.pl:101
+#, perl-format
+msgid "Can't delete box %s"
+msgstr ""
+
+#: ../vhffs-panel/admin/web/edit_submit.pl:100
+msgid "Can't modify object ..."
+msgstr ""
+
+#: ../vhffs-panel/admin/group/edit_submit.pl:110
+#: ../vhffs-panel/admin/repository/edit_submit.pl:101
+#: ../vhffs-panel/admin/cvs/edit_submit.pl:100
+msgid "Can't modify object..."
+msgstr ""
+
+#: ../vhffs-panel/group/join_group.pl:82
+msgid "Cannot add this user in this group"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:162
+msgid "Cannot apply changes to the user"
+msgstr ""
+
+#: ../vhffs-panel/admin/moderation_submit.pl:136
+msgid "Cannot apply modifications"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/delete.pl:102
+msgid "Cannot commit changes on this object, will NOT be deleted"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:152
+msgid "Cannot create user, the username you entered already exists"
+msgstr ""
+
+#: ../vhffs-panel/admin/object/delete_avatar.pl:95
+msgid "Cannot delete this avatar"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit_submit.pl:96
+#: ../vhffs-panel/admin/user/edit.pl:85 ../vhffs-panel/admin/user/show.pl:87
+#: ../vhffs-panel/admin/user/edit_note.pl:86
+#: ../vhffs-panel/admin/pgsql/edit.pl:85 ../vhffs-panel/admin/pgsql/show.pl:85
+#: ../vhffs-panel/admin/group/edit_submit.pl:89
+#: ../vhffs-panel/admin/group/edit.pl:83 ../vhffs-panel/admin/group/show.pl:84
+#: ../vhffs-panel/admin/repository/edit.pl:85
+#: ../vhffs-panel/admin/repository/show.pl:85
+#: ../vhffs-panel/admin/object/edit_submit.pl:81
+#: ../vhffs-panel/admin/object/delete_avatar.pl:85
+#: ../vhffs-panel/admin/object/edit.pl:84
+#: ../vhffs-panel/admin/web/edit_submit.pl:85
+#: ../vhffs-panel/admin/web/edit.pl:85 ../vhffs-panel/admin/web/show.pl:85
+#: ../vhffs-panel/admin/mysql/edit.pl:85 ../vhffs-panel/admin/mysql/show.pl:84
+#: ../vhffs-panel/admin/cvs/edit.pl:85 ../vhffs-panel/admin/cvs/show.pl:85
+#: ../vhffs-panel/admin/mail/edit.pl:87 ../vhffs-panel/admin/mail/show.pl:87
+msgid "Cannot fetch object"
+msgstr ""
+
+#: ../vhffs-panel/admin/pgsql/edit_submit.pl:85
+#: ../vhffs-panel/admin/repository/edit_submit.pl:87
+#: ../vhffs-panel/admin/mysql/edit_submit.pl:84
+#: ../vhffs-panel/admin/cvs/edit_submit.pl:87
+#, perl-format
+msgid "Cannot fetch object %s"
+msgstr ""
+
+#: ../vhffs-panel/object/upavatar.pl:101
+msgid "Cannot find object"
+msgstr ""
+
+#: ../vhffs-panel/history.pl:91
+msgid "Cannot get information on this object"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/delete.pl:82
+#: ../vhffs-panel/mailinglist/save_sig.pl:81
+#: ../vhffs-panel/mailinglist/add_sub.pl:83
+#: ../vhffs-panel/mailinglist/prefs.pl:84
+#: ../vhffs-panel/mailinglist/save_options.pl:85
+#: ../vhffs-panel/mailinglist/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/pgsql/prefs.pl:71 ../vhffs-panel/repository/prefs.pl:76
+#: ../vhffs-panel/web/prefs.pl:72 ../vhffs-panel/mysql/prefs.pl:77
+#: ../vhffs-panel/cvs/prefs.pl:76 ../vhffs-panel/mail/add_account.pl:75
+#: ../vhffs-panel/mail/save_catchall.pl:74
+#: ../vhffs-panel/mail/add_forward.pl:73
+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 ""
+
+#: ../vhffs-panel/group/remove_user_from_group.pl:83
+msgid "Cannot remove the owner from a group"
+msgstr ""
+
+#: ../vhffs-panel/cvs/delete.pl:78 ../vhffs-panel/cvs/prefs_save.pl:77
+msgid "Cannot retrieve informations about this CVS repository"
+msgstr ""
+
+#: ../vhffs-panel/repository/delete.pl:78
+#: ../vhffs-panel/repository/prefs_save.pl:78
+msgid "Cannot retrieve informations about this Download repository"
+msgstr ""
+
+#: ../vhffs-panel/svn/prefs_save.pl:80
+msgid "Cannot retrieve informations about this Subversion repository"
+msgstr ""
+
+#: ../vhffs-panel/svn/delete.pl:77
+msgid "Cannot retrieve informations about this repository"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/save_sig.pl:95
+#: ../vhffs-panel/mailinglist/save_options.pl:124
+msgid "Cannot save"
+msgstr ""
+
+#: ../vhffs-panel/alert_submit.pl:84
+msgid "Cannot send message, CGI error..."
+msgstr ""
+
+#: ../vhffs-panel/admin/mail/edit.pl:98 ../vhffs-panel/admin/mail/show.pl:98
+msgid "Catchall"
+msgstr ""
+
+#: ../vhffs-panel/mail/prefs.pl:101
+msgid "Catchall address"
+msgstr ""
+
+#: ../vhffs-panel/mail/save_catchall.pl:100
+msgid "Catchall address successfully changed"
+msgstr ""
+
+#: ../vhffs-panel/mail/prefs.pl:104
+msgid "Catchall mail"
+msgstr ""
+
+#: ../vhffs-listengine/src/archives/show_msg.pl:108
+msgid "Cc: "
+msgstr ""
+
+#: ../vhffs-panel/mail/prefs.pl:210
+msgid "Change Forward"
+msgstr ""
+
+#: ../vhffs-panel/admin/mail/edit.pl:142 ../vhffs-panel/mail/prefs.pl:151
+msgid "Change Password"
+msgstr ""
+
+#: ../vhffs-panel/mail/prefs.pl:125
+msgid "Change catchall forward"
+msgstr ""
+
+#: ../vhffs-panel/admin/mail/edit.pl:128
+msgid "Change forward"
+msgstr ""
+
+#: ../vhffs-listengine/src/archives/archives.pl:119
+msgid "Change language"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:168
+msgid "Change rights\n"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:188
+msgid "Change spam protection status for your account\n"
+msgstr ""
+
+#: ../vhffs-listengine/src/archives/archives.pl:118
+msgid "Change theme"
+msgstr ""
+
+#: ../vhffs-panel/admin/web/list.pl:91
+msgid "Change this Website"
+msgstr ""
+
+#: ../vhffs-panel/admin/su.pl:76 ../vhffs-api/src/Vhffs/Panel/Admin.pm:87
+msgid "Change user-id"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:199
+msgid "Changed anti-virus status for your account\n"
+msgstr ""
+
+#: ../vhffs-robots/src/refused_ml.pl:77 ../vhffs-robots/src/refused_mail.pl:79
+#: ../vhffs-robots/src/refused_postgres.pl:80
+#: ../vhffs-robots/src/refused_cvs.pl:76 ../vhffs-robots/src/refused_web.pl:75
+#: ../vhffs-robots/src/refused_mysql.pl:50
+#: ../vhffs-robots/src/refused_svn.pl:46
+#: ../vhffs-robots/src/refused_groups.pl:75
+#: ../vhffs-robots/src/refused_repository.pl:80
+#: ../vhffs-robots/src/refused_dns.pl:79
+msgid "Cheers,"
+msgstr ""
+
+#: ../vhffs-panel/admin/moderation_submit.pl:106 ../vhffs-irc/modobot.pl:398
+msgid ""
+"Cheers,\n"
+"The Moderator and Admin team\n"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:203 ../vhffs-panel/user/prefs.pl:258
+#: ../vhffs-panel/admin/user/edit.pl:105 ../vhffs-panel/admin/user/show.pl:105
+msgid "City"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:96
+msgid "City is not correct !"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:114
+msgid "Closed"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:213
+msgid "Code confirmation"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:85
+msgid "Codes do not match"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:262
+msgid "Confirm Password"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:236
+msgid "Confirmation code was wrong.\n"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:215
+msgid "Confirmation code, contact administrator team if you can't read it"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:204 ../vhffs-panel/user/prefs.pl:260
+#: ../vhffs-panel/admin/user/edit.pl:107 ../vhffs-panel/admin/user/show.pl:107
+msgid "Country"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:105
+msgid "Country is not correct !"
+msgstr ""
+
+#: ../vhffs-panel/admin/web/edit.pl:96 ../vhffs-panel/admin/web/show.pl:95
+msgid "Crawl"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:142
+#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:147
+#: ../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/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
+msgid "Create"
+msgstr ""
+
+#: ../vhffs-panel/cvs/create.pl:89
+msgid "Create a CVS Repository"
+msgstr ""
+
+#: ../vhffs-panel/dns/create.pl:58
+msgid "Create a DNS"
+msgstr ""
+
+#: ../vhffs-panel/repository/create.pl:64
+msgid "Create a Download Repository"
+msgstr ""
+
+#: ../vhffs-panel/mysql/create.pl:64
+msgid "Create a MySQL database"
+msgstr ""
+
+#: ../vhffs-panel/pgsql/create.pl:64
+msgid "Create a Postgres database"
+msgstr ""
+
+#: ../vhffs-panel/group/create.pl:61
+msgid "Create a Project"
+msgstr ""
+
+#: ../vhffs-panel/svn/create.pl:70
+msgid "Create a Subversion Repository"
+msgstr ""
+
+#: ../vhffs-panel/mail/create.pl:64
+msgid "Create a mail space"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/create.pl:87
+msgid "Create a new mailing list"
+msgstr ""
+
+#: ../vhffs-panel/web/create.pl:73
+msgid "Create a web space"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit.pl:144
+#: ../vhffs-panel/admin/pgsql/edit.pl:120
+#: ../vhffs-panel/admin/group/edit.pl:120
+#: ../vhffs-panel/admin/repository/edit.pl:120
+#: ../vhffs-panel/admin/object/edit.pl:120
+#: ../vhffs-panel/admin/web/edit.pl:133 ../vhffs-panel/admin/mysql/edit.pl:121
+#: ../vhffs-panel/admin/cvs/edit.pl:129 ../vhffs-panel/admin/mail/edit.pl:161
+#: ../vhffs-intl/extra_strings.pl:19
+msgid "Created"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit.pl:142
+#: ../vhffs-panel/admin/pgsql/edit.pl:118
+#: ../vhffs-panel/admin/group/edit.pl:118
+#: ../vhffs-panel/admin/repository/edit.pl:118
+#: ../vhffs-panel/admin/object/edit.pl:118
+#: ../vhffs-panel/admin/web/edit.pl:131 ../vhffs-panel/admin/mysql/edit.pl:119
+#: ../vhffs-panel/admin/cvs/edit.pl:127 ../vhffs-panel/admin/mail/edit.pl:159
+msgid "Creating error"
+msgstr ""
+
+#: ../vhffs-intl/extra_strings.pl:18
+msgid "Creation error"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:288 ../vhffs-panel/group/prefs.pl:111
+msgid "Current avatar"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:682
+#, perl-format
+msgid "Current group: %s"
+msgstr ""
+
+#: ../vhffs-panel/admin/cvs/edit.pl:95 ../vhffs-panel/admin/cvs/show.pl:94
+msgid "Cvsroot"
+msgstr ""
+
+#: ../vhffs-panel/admin/pgsql/list.pl:87 ../vhffs-panel/admin/mysql/list.pl:88
+msgid "DB Name"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:160
+msgid "DB Search"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:152
+msgid "DNS"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:240
+#, perl-format
+msgid "DNS Administration - %s"
+msgstr ""
+
+#: ../vhffs-panel/admin/moderation.pl:175
+msgid "DNS awaiting validation"
+msgstr ""
+
+#: ../vhffs-panel/dns/create.pl:64
+msgid "DNS servers:"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:111
+msgid "DNS stats"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:142
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:120
+msgid "Database Access"
+msgstr ""
+
+#: ../vhffs-panel/admin/pgsql/edit.pl:95 ../vhffs-panel/admin/pgsql/show.pl:94
+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-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
+msgid "Database error"
+msgstr ""
+
+#: ../vhffs-panel/mysql/submit.pl:83
+msgid "Database name must contain at least 3 caracters"
+msgstr ""
+
+#: ../vhffs-panel/pgsql/pgsql_submit.pl:85
+msgid "Database name must contain between 3 and 16 characters"
+msgstr ""
+
+#: ../vhffs-panel/pgsql/pgsql_submit.pl:77
+msgid "Database password must contains at least 3 characters"
+msgstr ""
+
+#: ../vhffs-panel/pgsql/delete.pl:85
+msgid "Database will NOT be deleted !"
+msgstr ""
+
+#: ../vhffs-panel/pgsql/delete.pl:97
+msgid "Database will be DELETE"
+msgstr ""
+
+#: ../vhffs-panel/admin/broadcast_view.pl:85
+msgid "Date"
+msgstr ""
+
+#: ../vhffs-panel/admin/object/edit.pl:95
+msgid "Date of creation"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:477
+msgid "December"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:206 ../vhffs-panel/svn/prefs.pl:127
+#: ../vhffs-panel/user/prefs.pl:281 ../vhffs-panel/dns/prefs.pl: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/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
+msgid "Delete"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:276
+msgid "Delete YOUR user"
+msgstr ""
+
+#: ../vhffs-panel/admin/object/edit.pl:195
+msgid "Delete avatar for this object"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:167
+msgid "Delete from list"
+msgstr ""
+
+#: ../vhffs-panel/pgsql/prefs.pl:107
+msgid "Delete this PostgreSQL database"
+msgstr ""
+
+#: ../vhffs-panel/mysql/prefs.pl:114
+msgid "Delete this database"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:263
+msgid "Delete this domain name from the VHFFS platform"
+msgstr ""
+
+#: ../vhffs-panel/admin/mail/edit.pl:144 ../vhffs-panel/mail/prefs.pl:211
+msgid "Delete this forward"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:201
+msgid "Delete this list"
+msgstr ""
+
+#: ../vhffs-panel/admin/mail/edit.pl:129 ../vhffs-panel/mail/prefs.pl:152
+msgid "Delete this mail account"
+msgstr ""
+
+#: ../vhffs-panel/mail/prefs.pl:130
+msgid "Delete this mail domain"
+msgstr ""
+
+#: ../vhffs-panel/admin/broadcast_list.pl:88
+msgid "Delete this mailing"
+msgstr ""
+
+#: ../vhffs-panel/group/prefs.pl:97 ../vhffs-panel/repository/prefs.pl:102
+#: ../vhffs-panel/cvs/prefs.pl:96
+msgid "Delete this project"
+msgstr ""
+
+#: ../vhffs-panel/svn/prefs.pl:122
+msgid "Delete this repository"
+msgstr ""
+
+#: ../vhffs-panel/web/prefs.pl:126
+msgid "Delete this web area"
+msgstr ""
+
+#: ../vhffs-panel/svn/create.pl:77 ../vhffs-panel/dns/create.pl:69
+#: ../vhffs-panel/pgsql/create.pl:74 ../vhffs-panel/group/create.pl:66
+#: ../vhffs-panel/repository/create.pl:72
+#: ../vhffs-panel/admin/pgsql/edit.pl:101
+#: ../vhffs-panel/admin/pgsql/show.pl:99 ../vhffs-panel/admin/group/edit.pl:99
+#: ../vhffs-panel/admin/group/show.pl:99
+#: ../vhffs-panel/admin/repository/edit.pl:99
+#: ../vhffs-panel/admin/repository/show.pl:98
+#: ../vhffs-panel/admin/object/edit.pl:97 ../vhffs-panel/admin/web/edit.pl:104
+#: ../vhffs-panel/admin/web/show.pl:101 ../vhffs-panel/admin/mysql/edit.pl:102
+#: ../vhffs-panel/admin/mysql/show.pl:98 ../vhffs-panel/admin/cvs/edit.pl:100
+#: ../vhffs-panel/admin/cvs/show.pl:99 ../vhffs-panel/admin/mail/edit.pl:102
+#: ../vhffs-panel/admin/mail/show.pl:102
+#: ../vhffs-panel/public/lastgroups.pl:77 ../vhffs-panel/public/group.pl:91
+#: ../vhffs-panel/public/allgroups.pl:84 ../vhffs-panel/mysql/create.pl:72
+#: ../vhffs-panel/cvs/create.pl:97
+msgid "Description"
+msgstr ""
+
+#: ../vhffs-panel/web/prefs.pl:99
+msgid "Description of your webarea"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:292
+msgid "Destination"
+msgstr ""
+
+#: ../vhffs-panel/mail/prefs.pl:165
+msgid "Disable anti-spam"
+msgstr ""
+
+#: ../vhffs-panel/mail/prefs.pl:184
+msgid "Disable anti-virus"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:144
+#: ../vhffs-api/src/Vhffs/Panel/Cvs.pm:119
+msgid "Documentation"
+msgstr ""
+
+#: ../vhffs-panel/group/join_group.pl:119
+msgid "Doe not exist in the VHFFS database"
+msgstr ""
+
+#: ../vhffs-panel/admin/mail/edit.pl:97 ../vhffs-panel/admin/mail/show.pl:97
+#: ../vhffs-panel/mail/create.pl:65
+msgid "Domain"
+msgstr ""
+
+#: ../vhffs-panel/dns/create.pl:60 ../vhffs-panel/admin/dns/list.pl:87
+#: ../vhffs-panel/admin/mail/list.pl:87 ../vhffs-intl/extra_strings.pl:38
+msgid "Domain Name"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:615
+msgid "Domains for this group"
+msgstr ""
+
+#: ../vhffs-panel/admin/web/edit.pl:103 ../vhffs-panel/admin/web/show.pl:117
+msgid "Don't use Crawl"
+msgstr ""
+
+#: ../vhffs-intl/extra_strings.pl:33
+msgid "Download Repository"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:590
+msgid "Download repositories for this group"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:120
+msgid "Download repository"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:224
+msgid "Download repository admin"
+msgstr ""
+
+#: ../vhffs-panel/admin/moderation.pl:477
+msgid "Download repository awaiting validation"
+msgstr ""
+
+#: ../vhffs-panel/repository/prefs_save.pl:100
+msgid "Download repository updated"
+msgstr ""
+
+#: ../vhffs-panel/admin/cvs/edit.pl:92
+msgid "Edit CVS"
+msgstr ""
+
+#: ../vhffs-panel/admin/repository/edit.pl:92
+msgid "Edit Download repository"
+msgstr ""
+
+#: ../vhffs-panel/admin/group/edit.pl:90
+msgid "Edit Group"
+msgstr ""
+
+#: ../vhffs-panel/admin/mail/edit.pl:94
+msgid "Edit Mail Domain"
+msgstr ""
+
+#: ../vhffs-panel/admin/mysql/edit.pl:92
+msgid "Edit MySQL database"
+msgstr ""
+
+#: ../vhffs-panel/admin/object/edit.pl:90
+msgid "Edit Object"
+msgstr ""
+
+#: ../vhffs-panel/admin/pgsql/edit.pl:92
+msgid "Edit PostgreSQL database"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit.pl:92
+msgid "Edit User"
+msgstr ""
+
+#: ../vhffs-panel/admin/web/edit.pl:92
+msgid "Edit Web Area"
+msgstr ""
+
+#: ../vhffs-panel/admin/object/list.pl:96
+msgid "Edit this object"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:135
+msgid "Email address changed"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:155
+msgid "Email adress"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:99
+msgid "Email is not correct !"
+msgstr ""
+
+#: ../vhffs-panel/mail/prefs.pl:169
+msgid "Enable anti-spam"
+msgstr ""
+
+#: ../vhffs-panel/mail/prefs.pl:188
+msgid "Enable anti-virus"
+msgstr ""
+
+#: ../vhffs-panel/mail/prefs.pl:103
+msgid "Enter a mail address to catch all email for this domain"
+msgstr ""
+
+#: ../vhffs-panel/admin/broadcast_submit.pl:95
+msgid "Error !"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:167
+msgid ""
+"Error ! You MUST provide a password in your account when you create your "
+"popable account"
+msgstr ""
+
+#: ../vhffs-panel/group/project_submit.pl:83
+msgid "Error creating group (maybe a group with the same name already exists)"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:190
+msgid "Error for spam protection\n"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:201
+msgid "Error for virus protection\n"
+msgstr ""
+
+#: ../vhffs-listengine/src/archives/archives.pl:136
+#: ../vhffs-listengine/src/archives/show_msg.pl:76
+msgid "Error in listname"
+msgstr ""
+
+#: ../vhffs-panel/object/upavatar.pl:130
+msgid "Error when upload avatar for this object"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/submit.pl:116
+msgid "Error while creating list (unknow problem)"
+msgstr ""
+
+#: ../vhffs-panel/web/web_submit.pl:90
+msgid "Error while creating the webarea, it probably already exists !"
+msgstr ""
+
+#: ../vhffs-panel/dns/delete.pl:102
+msgid "Error while switching state. DNS will NOT be deleted"
+msgstr ""
+
+#: ../vhffs-panel/mysql/prefs_save.pl:83
+msgid "Error, password can be only alphanumeric caracters"
+msgstr ""
+
+#: ../vhffs-panel/group/delete.pl:82
+msgid ""
+"Error, your group is not empty. Please remove all objects from this group "
+"and try again"
+msgstr ""
+
+#: ../vhffs-panel/group/prefs.pl:70
+msgid "Error. This group doesn't exists"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:272
+msgid "Expired session ! Please login again"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit_note.pl:101
+msgid "Failed to modify note"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:437
+msgid "February"
+msgstr ""
+
+#: ../vhffs-panel/object/upavatar.pl:118
+msgid "File to big. Max size if 5000 bytes for an avatar"
+msgstr ""
+
+#: ../vhffs-panel/object/upavatar.pl:114
+msgid "Filetype not supported"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:200 ../vhffs-panel/user/prefs.pl:255
+#: ../vhffs-panel/admin/user/edit.pl:96 ../vhffs-panel/admin/user/show.pl:97
+#: ../vhffs-panel/public/user.pl:85 ../vhffs-panel/public/lastusers.pl:80
+msgid "Firstname"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:90
+msgid "Firstname is not correct !"
+msgstr ""
+
+#: ../vhffs-panel/admin/mail/delete_forward.pl:109
+#, perl-format
+msgid "Forward %s deleted"
+msgstr ""
+
+#: ../vhffs-panel/admin/mail/change_forward.pl:109
+#, perl-format
+msgid "Forward %s successfully added"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:215
+msgid "Forward added"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:350
+#, perl-format
+msgid "Forward emails from %s@%s to %s"
+msgstr ""
+
+#: ../vhffs-panel/admin/mail/edit.pl:115 ../vhffs-panel/admin/mail/show.pl:115
+msgid "Forward for"
+msgstr ""
+
+#: ../vhffs-panel/mail/prefs.pl:120
+msgid "Forward mail"
+msgstr ""
+
+#: ../vhffs-panel/mail/change_forward.pl:108
+msgid "Forward successfully added"
+msgstr ""
+
+#: ../vhffs-panel/mail/delete_forward.pl:100
+msgid "Forward successfully deleted"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:222
+msgid "Forward updated"
+msgstr ""
+
+#: ../vhffs-panel/mail/prefs.pl:115
+msgid "Forwards"
+msgstr ""
+
+#: ../vhffs-listengine/src/archives/show_msg.pl:106
+msgid "From: "
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit.pl:103 ../vhffs-panel/admin/user/show.pl:103
+#: ../vhffs-panel/admin/group/edit.pl:94 ../vhffs-panel/admin/group/show.pl:94
+msgid "GID"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit.pl:109 ../vhffs-panel/admin/user/show.pl:109
+msgid "GPG key"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:82
+msgid "General"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:83
+msgid "Get Statistics"
+msgstr ""
+
+#: ../vhffs-panel/lost.pl:55
+msgid "Give me a new password"
+msgstr ""
+
+#: ../vhffs-panel/public/user.pl:116 ../vhffs-panel/public/lastgroups.pl:104
+#: ../vhffs-panel/public/lastusers.pl:113
+#: ../vhffs-panel/public/allwebsites.pl:100 ../vhffs-panel/public/index.pl:82
+#: ../vhffs-panel/public/group.pl:224 ../vhffs-panel/public/allgroups.pl:112
+msgid "Go on login page"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:418
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:442
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:468
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:494
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:520
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:547
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:573
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:599
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:624
+msgid "Go to admin"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:216 ../vhffs-panel/svn/prefs.pl:159
+#: ../vhffs-panel/dns/prefs.pl:420
+msgid "Go to object-part admin"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:74
+msgid "Go to public area"
+msgstr ""
+
+#: ../vhffs-panel/svn/prefs.pl:88
+msgid "Grant an user access to this repository"
+msgstr ""
+
+#: ../vhffs-panel/admin/svn/list.pl:77 ../vhffs-panel/admin/mailing/list.pl:87
+#: ../vhffs-panel/admin/dns/list.pl:88 ../vhffs-panel/admin/pgsql/edit.pl:98
+#: ../vhffs-panel/admin/pgsql/show.pl:96 ../vhffs-panel/admin/pgsql/list.pl:88
+#: ../vhffs-panel/admin/repository/edit.pl:96
+#: ../vhffs-panel/admin/repository/show.pl:95
+#: ../vhffs-panel/admin/repository/list.pl:89
+#: ../vhffs-panel/admin/web/edit.pl:99 ../vhffs-panel/admin/web/show.pl:98
+#: ../vhffs-panel/admin/web/list.pl:79 ../vhffs-panel/admin/mysql/edit.pl:99
+#: ../vhffs-panel/admin/mysql/show.pl:95 ../vhffs-panel/admin/mysql/list.pl:89
+#: ../vhffs-panel/admin/cvs/edit.pl:97 ../vhffs-panel/admin/cvs/show.pl:96
+#: ../vhffs-panel/admin/cvs/list.pl:90 ../vhffs-panel/admin/mail/edit.pl:99
+#: ../vhffs-panel/admin/mail/show.pl:99 ../vhffs-panel/admin/mail/list.pl:88
+#: ../vhffs-intl/extra_strings.pl:31
+msgid "Group"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:401
+#, perl-format
+msgid "Group %s"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:107
+msgid "Group Admin"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:396
+msgid "Group error"
+msgstr ""
+
+#: ../vhffs-panel/cvs/create.pl:93
+msgid "Group owning this CVS"
+msgstr ""
+
+#: ../vhffs-panel/dns/create.pl:65
+msgid "Group owning this DNS"
+msgstr ""
+
+#: ../vhffs-panel/svn/create.pl:72
+msgid "Group owning this Subversion repository"
+msgstr ""
+
+#: ../vhffs-panel/pgsql/create.pl:67 ../vhffs-panel/mysql/create.pl:66
+msgid "Group owning this database"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/create.pl:89
+msgid "Group owning this mailing list"
+msgstr ""
+
+#: ../vhffs-panel/repository/create.pl:66
+msgid "Group owning this repository"
+msgstr ""
+
+#: ../vhffs-panel/web/create.pl:76 ../vhffs-panel/mail/create.pl:66
+msgid "Group owning this web space"
+msgstr ""
+
+#: ../vhffs-panel/public/index.pl:72
+msgid "Group public area"
+msgstr ""
+
+#: ../vhffs-panel/acl/view.pl:151 ../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/public/user.pl:89 ../vhffs-panel/public/lastusers.pl:84
+msgid "Groups"
+msgstr ""
+
+#: ../vhffs-panel/admin/moderation.pl:88
+msgid "Groups awaiting validation"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit.pl:233
+msgid "Groups of this user"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:98
+msgid "Groups stats"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:133
+#, perl-format
+msgid ""
+"Hello %s %s,\n"
+"\n"
+"You changed your email, here are your new personal information :\n"
+"\n"
+"User: %s\n"
+"Mail: %s\n"
+"\n"
+"VHFFS administrators\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:43
+msgid "Hello and welcome on listengine help\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:320
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:81
+msgid "Help"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:49
+msgid "Here are the basic listengine commands:\n"
+msgstr ""
+
+#: ../vhffs-panel/alert.pl:68
+msgid "Here, you can report a bug to the admin team"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:413
+#, perl-format
+msgid ""
+"His email address is:\n"
+"  %s\n"
+msgstr ""
+
+#: ../vhffs-panel/history.pl:105 ../vhffs-panel/admin/user/edit.pl:110
+#: ../vhffs-panel/admin/user/show.pl:111
+#: ../vhffs-panel/admin/pgsql/edit.pl:103
+#: ../vhffs-panel/admin/pgsql/show.pl:100
+#: ../vhffs-panel/admin/group/edit.pl:101
+#: ../vhffs-panel/admin/group/show.pl:100
+#: ../vhffs-panel/admin/repository/edit.pl:101
+#: ../vhffs-panel/admin/repository/show.pl:99
+#: ../vhffs-panel/admin/object/list.pl:90
+#: ../vhffs-panel/admin/object/list.pl:97 ../vhffs-panel/admin/web/edit.pl:106
+#: ../vhffs-panel/admin/web/show.pl:102 ../vhffs-panel/admin/mysql/edit.pl:104
+#: ../vhffs-panel/admin/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/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/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
+msgid "History"
+msgstr ""
+
+#: ../vhffs-panel/admin/object/edit.pl:197
+msgid "History of this object"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:208 ../vhffs-panel/admin/user/edit.pl:100
+#: ../vhffs-panel/admin/user/show.pl:100
+msgid "Home"
+msgstr ""
+
+#: ../vhffs-panel/public/user.pl:115 ../vhffs-panel/public/lastgroups.pl:103
+#: ../vhffs-panel/public/lastusers.pl:112
+#: ../vhffs-panel/public/allwebsites.pl:99 ../vhffs-panel/public/index.pl:81
+#: ../vhffs-panel/public/group.pl:223 ../vhffs-panel/public/allgroups.pl:111
+msgid "Homepage of public area"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:307 ../vhffs-panel/dns/prefs.pl:392
+#: ../vhffs-panel/dns/prefs.pl:408
+msgid "Host"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit.pl:132 ../vhffs-panel/admin/user/show.pl:140
+msgid "Hosted"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:160
+msgid "However this list require approval for new subscribers.\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:115
+#, perl-format
+msgid "However you are (%s) already subscribed to this list.\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:58
+msgid "I've lost my password"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:275
+msgid "IP"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:299
+msgid "IP/host of your NS"
+msgstr ""
+
+#: ../vhffs-robots/src/refused_ml.pl:76 ../vhffs-robots/src/refused_mail.pl:78
+#: ../vhffs-robots/src/refused_postgres.pl:79
+#: ../vhffs-robots/src/refused_cvs.pl:75 ../vhffs-robots/src/refused_web.pl:74
+#: ../vhffs-robots/src/refused_mysql.pl:49
+#: ../vhffs-robots/src/refused_svn.pl:45
+#: ../vhffs-robots/src/refused_groups.pl:74
+#: ../vhffs-robots/src/refused_repository.pl:79
+#: ../vhffs-robots/src/refused_dns.pl:78
+#, perl-format
+msgid "If you encounters problem, please mail: %s\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:83
+msgid ""
+"If you haven't asked to be subscribed to this list,\n"
+"please don't answer to this mail\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:101
+msgid ""
+"If you haven't asked to be unsubscribed from this list,\n"
+"please don't answer to this mail\n"
+msgstr ""
+
+#: ../vhffs-panel/group/prefs.pl:89
+msgid ""
+"If you want more disk space for your project, you must fill a form in the "
+"bug report section, in the menu. Don't forget to mention the name of the "
+"group."
+msgstr ""
+
+#: ../vhffs-robots/src/refused_ml.pl:70 ../vhffs-robots/src/refused_mail.pl:72
+#: ../vhffs-robots/src/refused_postgres.pl:73
+#: ../vhffs-robots/src/refused_cvs.pl:70 ../vhffs-robots/src/refused_web.pl:69
+#: ../vhffs-robots/src/refused_mysql.pl:43
+#: ../vhffs-robots/src/refused_svn.pl:40
+#: ../vhffs-robots/src/refused_groups.pl:69
+#: ../vhffs-robots/src/refused_repository.pl:73
+#: ../vhffs-robots/src/refused_dns.pl:72
+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
+msgid "Invalid IP address"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:269
+msgid "Invalid IP v6 address"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:339
+msgid "Invalid alias"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:328
+msgid "Invalid destination"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:353
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:369
+msgid "Invalid destination domain name"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:340
+msgid "Invalid destination host"
+msgstr ""
+
+#: ../vhffs-panel/dns/create.pl:41
+msgid "Invalid domain name"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:305
+msgid "Invalid host"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:291
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:315
+msgid "Invalid hostname"
+msgstr ""
+
+#: ../vhffs-panel/mail/submit.pl:78
+msgid "Invalid mail domain"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:354
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:370
+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
+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
+msgid "Invalid priority"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:351
+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
+msgid "Invalid record"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:352
+msgid "Invalid service syntax"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:93
+msgid ""
+"Invalid username, it must contain between 3 and 12 alphanumeric characters, "
+"all in lowercase"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:356
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:372
+msgid "Invalid weight"
+msgstr ""
+
+#: ../vhffs-panel/cvs/prefs.pl:92
+msgid "Is this CVS repository public ??"
+msgstr ""
+
+#: ../vhffs-panel/svn/prefs.pl:118
+msgid "Is this a public repository ?"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:433
+msgid "January"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:457
+msgid "July"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:453
+msgid "June"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:263
+msgid "Language"
+msgstr ""
+
+#: ../vhffs-panel/public/user.pl:118 ../vhffs-panel/public/lastgroups.pl:106
+#: ../vhffs-panel/public/lastusers.pl:115
+#: ../vhffs-panel/public/allwebsites.pl:102 ../vhffs-panel/public/index.pl:84
+#: ../vhffs-panel/public/group.pl:226 ../vhffs-panel/public/allgroups.pl:114
+msgid "Last groups"
+msgstr ""
+
+#: ../vhffs-panel/public/lastgroups.pl:64
+#, perl-format
+msgid "Last groups on %s"
+msgstr ""
+
+#: ../vhffs-panel/public/user.pl:119 ../vhffs-panel/public/lastgroups.pl:107
+#: ../vhffs-panel/public/lastusers.pl:116
+#: ../vhffs-panel/public/allwebsites.pl:103 ../vhffs-panel/public/index.pl:85
+#: ../vhffs-panel/public/group.pl:227 ../vhffs-panel/public/allgroups.pl:115
+msgid "Last users"
+msgstr ""
+
+#: ../vhffs-panel/public/lastusers.pl:70
+#, perl-format
+msgid "Last users on %s"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:201 ../vhffs-panel/user/prefs.pl:256
+#: ../vhffs-panel/admin/user/edit.pl:97 ../vhffs-panel/admin/user/show.pl:98
+#: ../vhffs-panel/public/user.pl:87 ../vhffs-panel/public/lastusers.pl:82
+msgid "Lastname"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:93
+msgid "Lastname is not correct !"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:249
+msgid "List all A reccords"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:250
+msgid "List all AAAA reccords"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:146
+msgid "List all CVS"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:159
+msgid "List all DBs"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:199
+msgid "List all Postgres DB"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:132
+msgid "List all SVN repo"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:315
+msgid "List all TXT records"
+msgstr ""
+
+#: ../vhffs-panel/mail/prefs.pl:107
+msgid "List all accounts"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:173
+msgid "List all domain names"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:212
+msgid "List all domains"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:225
+msgid "List all download repositories"
+msgstr ""
+
+#: ../vhffs-panel/mail/prefs.pl:116
+msgid "List all forwardings for this domain"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:108
+msgid "List all groups"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:186
+msgid "List all lists"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:153
+msgid "List all members"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:90
+msgid "List all objects"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:100
+msgid "List all users"
+msgstr ""
+
+#: ../vhffs-panel/admin/moderation.pl:261
+msgid "List awaiting validation"
+msgstr ""
+
+#: ../vhffs-panel/admin/cvs/list.pl:86
+msgid "List of all CVS repositories"
+msgstr ""
+
+#: ../vhffs-panel/admin/repository/list.pl:85
+msgid "List of all Download repositories"
+msgstr ""
+
+#: ../vhffs-panel/admin/mysql/list.pl:85
+msgid "List of all MySQL databases"
+msgstr ""
+
+#: ../vhffs-panel/admin/pgsql/list.pl:84
+msgid "List of all PostgreSQL databases"
+msgstr ""
+
+#: ../vhffs-panel/admin/dns/list.pl:84
+msgid "List of all domains"
+msgstr ""
+
+#: ../vhffs-panel/admin/group/list.pl:81
+msgid "List of all groups"
+msgstr ""
+
+#: ../vhffs-panel/admin/mail/list.pl:84
+msgid "List of all mail-domain"
+msgstr ""
+
+#: ../vhffs-panel/admin/mailing/list.pl:83
+msgid "List of all mailing-list"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/list.pl:76
+msgid "List of all users"
+msgstr ""
+
+#: ../vhffs-panel/admin/web/list.pl:75 ../vhffs-panel/public/user.pl:117
+#: ../vhffs-panel/public/lastgroups.pl:105
+#: ../vhffs-panel/public/lastusers.pl:114
+#: ../vhffs-panel/public/allwebsites.pl:101 ../vhffs-panel/public/index.pl:83
+#: ../vhffs-panel/public/group.pl:225 ../vhffs-panel/public/allgroups.pl:113
+msgid "List of all websites"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:118
+msgid "List websites"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/delete.pl:94
+msgid "List will NOT be deleted"
+msgstr ""
+
+#: ../vhffs-panel/public/group.pl:201
+msgid "List(s) for this group"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:160
+msgid "Listengine stats"
+msgstr ""
+
+#: ../vhffs-panel/mail/prefs.pl:119
+msgid "Local Part"
+msgstr ""
+
+#: ../vhffs-panel/mail/prefs.pl:110
+msgid "Local Part for this account"
+msgstr ""
+
+#: ../vhffs-panel/lost_ack.pl:80 ../vhffs-panel/lost_ack.pl:91
+msgid "Login"
+msgstr ""
+
+#: ../vhffs-panel/auth.pl:69
+msgid "Login failed !"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:83
+msgid "Logout"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:165
+msgid "MX Record added"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:160
+msgid "MX Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:155
+msgid "MX Record updated"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:158
+msgid "MYSQL Admin"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit.pl:108 ../vhffs-panel/admin/user/show.pl:108
+#: ../vhffs-api/src/Vhffs/Panel/Mail.pm:148
+msgid "Mail"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:172
+msgid "Mail Admin"
+msgstr ""
+
+#: ../vhffs-panel/mail/prefs.pl:98
+msgid "Mail Administration for domain "
+msgstr ""
+
+#: ../vhffs-panel/admin/moderation.pl:350
+msgid "Mail Area awaiting validation"
+msgstr ""
+
+#: ../vhffs-intl/extra_strings.pl:39
+msgid "Mail Domain"
+msgstr ""
+
+#: ../vhffs-panel/mail/submit.pl:82
+msgid "Mail area successfully created !"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:227
+msgid "Mail deleted"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:564
+msgid "Mail domain for this group"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/create.pl:88
+msgid "Mail for the list"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:133
+msgid "Mail stats"
+msgstr ""
+
+#: ../vhffs-panel/admin/mailing/mailing_submit.pl:88
+msgid "Mail successfully sent"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:88
+msgid "Mail to all hosted people"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:361
+#, perl-format
+msgid "Mail with id %s"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:132
+msgid "Mailbox modified"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:175
+msgid "Mailbox successfully added"
+msgstr ""
+
+#: ../vhffs-panel/admin/mailing/list.pl:86 ../vhffs-intl/extra_strings.pl:40
+#: ../vhffs-api/src/Vhffs/Panel/Mailinglist.pm:147
+msgid "Mailing List"
+msgstr ""
+
+#: ../vhffs-panel/svn/prefs_save.pl:124
+msgid "Mailing list address is invalid"
+msgstr ""
+
+#: ../vhffs-panel/admin/broadcast_submit.pl:91
+msgid "Mailing successfully added"
+msgstr ""
+
+#: ../vhffs-panel/admin/broadcast_delete.pl:91
+msgid "Mailing successfully deleted"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/submit.pl:108
+msgid "Mailing-list successfully created !"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:185
+msgid "Mailing-lists Admin"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:538
+msgid "Mailing-lists for this group"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:89
+msgid "Manage mailings"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:152
+msgid "Manage members"
+msgstr ""
+
+#: ../vhffs-panel/group/join_group.pl:101
+msgid "Many users matched your query. Please choose between them"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:441
+msgid "March"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:449
+msgid "May"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:119
+msgid "Members only"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:120
+msgid "Members only and moderated"
+msgstr ""
+
+#: ../vhffs-panel/admin/broadcast.pl:79
+msgid "Message"
+msgstr ""
+
+#: ../vhffs-listengine/src/archives/show_msg.pl:120
+#, perl-format
+msgid "Message from list %s"
+msgstr ""
+
+#: ../vhffs-panel/alert_submit.pl:74
+msgid "Message sent by the following account"
+msgstr ""
+
+#: ../vhffs-panel/alert_submit.pl:80
+msgid "Message sent successfully"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:329
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:345
+#, perl-format
+msgid "Message with id: %s"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:117
+msgid "Moderated for everyone"
+msgstr ""
+
+#: ../vhffs-panel/admin/moderation.pl:84
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:84
+msgid "Moderation"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit.pl:130 ../vhffs-panel/admin/user/show.pl:132
+msgid "Moderator"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:74
+msgid "Moderator account"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit.pl:149
+#: ../vhffs-panel/admin/pgsql/edit.pl:125
+#: ../vhffs-panel/admin/group/edit.pl:125
+#: ../vhffs-panel/admin/repository/edit.pl:125
+#: ../vhffs-panel/admin/object/edit.pl:125
+#: ../vhffs-panel/admin/web/edit.pl:138 ../vhffs-panel/admin/mysql/edit.pl:126
+#: ../vhffs-panel/admin/cvs/edit.pl:134 ../vhffs-panel/admin/mail/edit.pl:166
+#: ../vhffs-intl/extra_strings.pl:25
+msgid "Modification applied"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit.pl:148
+#: ../vhffs-panel/admin/pgsql/edit.pl:124
+#: ../vhffs-panel/admin/group/edit.pl:124
+#: ../vhffs-panel/admin/repository/edit.pl:124
+#: ../vhffs-panel/admin/object/edit.pl:124
+#: ../vhffs-panel/admin/web/edit.pl:137 ../vhffs-panel/admin/mysql/edit.pl:125
+#: ../vhffs-panel/admin/cvs/edit.pl:133 ../vhffs-panel/admin/mail/edit.pl:165
+#: ../vhffs-intl/extra_strings.pl:24
+msgid "Modification error"
+msgstr ""
+
+#: ../vhffs-panel/admin/moderation_submit.pl:140
+msgid "Modifications applied successfully"
+msgstr ""
+
+#: ../vhffs-panel/pgsql/prefs_save.pl:100
+msgid "Modifications applied to your database"
+msgstr ""
+
+#: ../vhffs-panel/web/prefs_save.pl:95
+msgid "Modifications applied to your webarea"
+msgstr ""
+
+#: ../vhffs-panel/admin/pgsql/edit_submit.pl:102
+#: ../vhffs-panel/admin/group/edit_submit.pl:114
+#: ../vhffs-panel/admin/repository/edit_submit.pl:105
+#: ../vhffs-panel/admin/mysql/edit_submit.pl:106
+#: ../vhffs-panel/admin/cvs/edit_submit.pl:104
+msgid "Modifications successfully added"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit_submit.pl:135
+#: ../vhffs-panel/admin/web/edit_submit.pl:104
+msgid "Modifications successfully applied"
+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
+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 ""
+
+#: ../vhffs-panel/admin/repository/list.pl:101
+msgid "Modify this Download repository"
+msgstr ""
+
+#: ../vhffs-panel/admin/mysql/list.pl:100
+msgid "Modify this MySQL area"
+msgstr ""
+
+#: ../vhffs-panel/admin/pgsql/list.pl:101
+msgid "Modify this PostgreSQL database"
+msgstr ""
+
+#: ../vhffs-panel/admin/svn/list.pl:87
+msgid "Modify this Subversion repository"
+msgstr ""
+
+#: ../vhffs-panel/admin/dns/list.pl:100
+msgid "Modify this domain"
+msgstr ""
+
+#: ../vhffs-panel/admin/group/list.pl:101
+msgid "Modify this group"
+msgstr ""
+
+#: ../vhffs-panel/admin/mailing/list.pl:97
+msgid "Modify this list"
+msgstr ""
+
+#: ../vhffs-panel/admin/mail/list.pl:103
+msgid "Modify this mail domain"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/list.pl:91
+msgid "Modify this user"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:272
+msgid "Must we redirect the DNS on our servers ?"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:79
+#: ../vhffs-api/src/Vhffs/Panel/Group.pm:162
+msgid "My Projects"
+msgstr ""
+
+#: ../vhffs-panel/mysql/prefs.pl:97
+msgid "MySQL Administration"
+msgstr ""
+
+#: ../vhffs-intl/extra_strings.pl:34
+msgid "MySQL DB"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:141
+msgid "MySQL Databases"
+msgstr ""
+
+#: ../vhffs-panel/admin/moderation.pl:393
+msgid "MySQL database awaiting validation"
+msgstr ""
+
+#: ../vhffs-panel/mysql/create.pl:68
+msgid "MySQL database name "
+msgstr ""
+
+#: ../vhffs-panel/mysql/create.pl:69
+msgid "MySQL password for this database "
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:145
+msgid "MySQL stats"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:433
+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
+msgid "NS Record added"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:170
+msgid "NS Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:296
+msgid "NS TYPE"
+msgstr ""
+
+#: ../vhffs-panel/admin/repository/edit.pl:95
+#: ../vhffs-panel/admin/repository/show.pl:94
+msgid "Name"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:276
+msgid "Name for reccord"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:319
+msgid "Name for record"
+msgstr ""
+
+#: ../vhffs-panel/pgsql/prefs.pl:93 ../vhffs-panel/mysql/prefs.pl:100
+msgid "Name of the database"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:283
+msgid "Name of your MX"
+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/admin/cvs/edit.pl:104 ../vhffs-panel/admin/cvs/show.pl:108
+#: ../vhffs-panel/web/prefs.pl:116 ../vhffs-panel/cvs/prefs.pl:94
+msgid "No"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:331
+msgid "No A type found"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:343
+msgid "No AAAA type found"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:370
+msgid "No CNAME available on this domain"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:502
+msgid "No CVS repository for this group"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:632
+msgid "No DNS domain for this group"
+msgstr ""
+
+#: ../vhffs-panel/admin/moderation.pl:207
+msgid "No DNS to validate"
+msgstr ""
+
+#: ../vhffs-panel/admin/moderation.pl:124
+msgid "No Group to validate"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:357
+msgid "No MX reccord for this domain"
+msgstr ""
+
+#: ../vhffs-panel/admin/moderation.pl:384
+msgid "No Mail Area to validate"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:581
+msgid "No Mail domain for this group"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:555
+msgid "No Mailing-list for this group"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:383
+msgid "No NS available on this domain"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:476
+msgid "No PostgreSQL database for this group"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:399
+msgid "No SRV available on this domain"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:528
+msgid "No SVN repository for this group"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:412
+msgid "No TXT available on this domain"
+msgstr ""
+
+#: ../vhffs-panel/admin/moderation.pl:166
+msgid "No Web Area to validate"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:265
+msgid "No cookie found, please accept the cookie and then please login again !"
+msgstr ""
+
+#: ../vhffs-panel/public/group.pl:163
+msgid "No cvs repository available for this group"
+msgstr ""
+
+#: ../vhffs-panel/admin/moderation.pl:427
+#: ../vhffs-panel/admin/moderation.pl:469
+msgid "No database to validate"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:607
+msgid "No download repository for this group"
+msgstr ""
+
+#: ../vhffs-panel/object/upavatar.pl:105
+msgid "No enough rights"
+msgstr ""
+
+#: ../vhffs-panel/history.pl:115 ../vhffs-panel/admin/object/edit.pl:203
+msgid "No event about this object"
+msgstr ""
+
+#: ../vhffs-panel/public/allgroups.pl:72
+msgid "No group"
+msgstr ""
+
+#: ../vhffs-panel/public/user.pl:100 ../vhffs-panel/public/lastgroups.pl:86
+#: ../vhffs-panel/public/lastusers.pl:94 ../vhffs-panel/public/allgroups.pl:94
+msgid "No group for this user"
+msgstr ""
+
+#: ../vhffs-panel/public/group.pl:216
+msgid "No list available for this group"
+msgstr ""
+
+#: ../vhffs-panel/admin/moderation.pl:294
+msgid "No list to validate"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:197
+msgid "No member on this list"
+msgstr ""
+
+#: ../vhffs-listengine/src/listengine.pl:592
+msgid "No message to moderate"
+msgstr ""
+
+#: ../vhffs-panel/pgsql/prefs_save.pl:96
+msgid "No modification can be applied. Please check your fields."
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:450
+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
+msgid "No repository to validate"
+msgstr ""
+
+#: ../vhffs-panel/public/group.pl:190
+msgid "No subversion repository available for this group"
+msgstr ""
+
+#: ../vhffs-panel/public/group.pl:79
+msgid "No such group"
+msgstr ""
+
+#: ../vhffs-panel/public/user.pl:75
+msgid "No such user"
+msgstr ""
+
+#: ../vhffs-panel/public/group.pl:103
+msgid "No user for this group"
+msgstr ""
+
+#: ../vhffs-panel/public/allwebsites.pl:76
+msgid "No webarea"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:426
+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
+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
+msgid "No, I'm not sure, I prefer to keep this project."
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/add_sub.pl:95
+#: ../vhffs-panel/mailinglist/change_right.pl:97
+#: ../vhffs-panel/mailinglist/del_member.pl:95
+msgid "Not valid mail"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit_note.pl:97
+msgid "Note successfully modified"
+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 ""
+
+#: ../vhffs-panel/admin/object/edit.pl:93
+msgid "Object id"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:217 ../vhffs-panel/svn/prefs.pl:160
+#: ../vhffs-panel/dns/prefs.pl:421
+msgid "Object part"
+msgstr ""
+
+#: ../vhffs-panel/admin/object/edit_submit.pl:93
+msgid "Object successfully updated"
+msgstr ""
+
+#: ../vhffs-panel/object/upavatar.pl:97
+msgid "Object-ID error"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:469
+msgid "October"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:259 ../vhffs-panel/web/prefs.pl:124
+#: ../vhffs-panel/mail/prefs.pl:139
+msgid "Ok, go to ACL admin"
+msgstr ""
+
+#: ../vhffs-panel/admin/broadcast.pl:80
+msgid "Ok, send it !"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:55
+msgid "Only this list administrators can use the following commands.\n"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:116
+msgid "Open for everyone"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:118
+msgid "Open for members, moderated for non-members"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:113
+msgid "Open, approval required"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:112
+msgid "Open, no approval required"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:110
+msgid "Options"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/save_sig.pl:97
+#: ../vhffs-panel/mailinglist/save_options.pl:128
+msgid "Options successfully modified"
+msgstr ""
+
+#: ../vhffs-panel/public/allwebsites.pl:87
+msgid "Owned by"
+msgstr ""
+
+#: ../vhffs-panel/group/create.pl:63 ../vhffs-panel/admin/pgsql/edit.pl:99
+#: ../vhffs-panel/admin/pgsql/show.pl:97 ../vhffs-panel/admin/group/edit.pl:95
+#: ../vhffs-panel/admin/group/show.pl:95
+#: ../vhffs-panel/admin/repository/edit.pl:97
+#: ../vhffs-panel/admin/repository/show.pl:96
+#: ../vhffs-panel/admin/object/list.pl:88 ../vhffs-panel/admin/web/edit.pl:100
+#: ../vhffs-panel/admin/web/show.pl:99 ../vhffs-panel/admin/mysql/edit.pl:100
+#: ../vhffs-panel/admin/mysql/show.pl:96 ../vhffs-panel/admin/cvs/edit.pl:98
+#: ../vhffs-panel/admin/cvs/show.pl:97 ../vhffs-panel/admin/mail/edit.pl:100
+#: ../vhffs-panel/admin/mail/show.pl:100
+msgid "Owner"
+msgstr ""
+
+#: ../vhffs-panel/admin/group/list.pl:90
+msgid "Owner name"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit.pl:226
+msgid "Owner of this group"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:261 ../vhffs-panel/admin/user/edit.pl:99
+#: ../vhffs-panel/admin/pgsql/edit.pl:97 ../vhffs-panel/admin/mysql/edit.pl:97
+#: ../vhffs-panel/mail/prefs.pl:111 ../vhffs-api/src/Vhffs/Panel/Commons.pm:56
+msgid "Password"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:125
+msgid "Password changed"
+msgstr ""
+
+#: ../vhffs-panel/admin/mail/password_box.pl:109
+#, perl-format
+msgid "Password changed for box %s"
+msgstr ""
+
+#: ../vhffs-panel/pgsql/prefs.pl:99 ../vhffs-panel/mysql/prefs.pl:106
+msgid "Password for this database"
+msgstr ""
+
+#: ../vhffs-panel/mysql/submit.pl:87
+msgid "Password must contain at least 3 caracters"
+msgstr ""
+
+#: ../vhffs-panel/pgsql/pgsql_submit.pl:81
+msgid "Password must contains only alphanum caracters"
+msgstr ""
+
+#: ../vhffs-panel/lost_ack.pl:90
+msgid "Password recovery failed!"
+msgstr ""
+
+#: ../vhffs-panel/mail/password_box.pl:108
+msgid "Password successfully changed"
+msgstr ""
+
+#: ../vhffs-panel/admin/mysql/edit.pl:98
+msgid "Password will not be modified if it is set to 'blanked' or empty"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:112
+msgid "Passwords don't match"
+msgstr ""
+
+#: ../vhffs-intl/extra_strings.pl:35
+msgid "PgSQL DB"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:152
+msgid "PgSQL stats"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:48
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:59
+msgid "Platform temporary closed"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:60
+msgid "Platform temporary closed."
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:49
+msgid "Platform temporary closed<br/>database error"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:137
+msgid "Please enter a correct city"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:141
+msgid "Please enter a correct country"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:129
+msgid "Please enter a correct firstname"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:133
+msgid "Please enter a correct lastname"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:53
+msgid "Please enter your username and password"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:197
+msgid ""
+"Please fill in all fields, a mail containing your password will be sent to "
+"you"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:294
+msgid "Please read help of listengine\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:191
+msgid "Please try again !\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:237
+msgid "Please try again.\n"
+msgstr ""
+
+#: ../vhffs-panel/lost_ack.pl:79
+#, perl-format
+msgid "Please wait %s, a new password will be sent to you in a few minutes..."
+msgstr ""
+
+#: ../vhffs-panel/pgsql/prefs.pl:84 ../vhffs-panel/pgsql/prefs_save.pl:81
+msgid "Please wait modification, creation or deletion"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:167
+msgid ""
+"Please wait while we are creating the account, it will take some minutes"
+msgstr ""
+
+#: ../vhffs-panel/admin/mail/edit.pl:116 ../vhffs-panel/admin/mail/show.pl:116
+msgid "Popboxes for"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:308 ../vhffs-panel/dns/prefs.pl:393
+msgid "Port"
+msgstr ""
+
+#: ../vhffs-panel/pgsql/prefs.pl:91
+msgid "PostgreSQL Administration"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Pgsql.pm:119
+msgid "PostgreSQL Databases"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:459
+msgid "PostgreSQL database for this group"
+msgstr ""
+
+#: ../vhffs-panel/pgsql/create.pl:65
+msgid "PostgreSQL database name"
+msgstr ""
+
+#: ../vhffs-panel/pgsql/create.pl:66
+msgid "PostgreSQL password for this database"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:198
+msgid "Postgres Admin"
+msgstr ""
+
+#: ../vhffs-panel/admin/moderation.pl:435
+msgid "Postgres database awaiting validation"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:115
+msgid "Posting control:"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:237
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:267
+msgid "Prefix already exists"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:143
+msgid "Prefix on subject"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:309 ../vhffs-panel/dns/prefs.pl:394
+msgid "Priority"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:284
+msgid "Priority of your MX"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:353
+msgid "Priority: "
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:112
+msgid "Project : "
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:113
+msgid "Project Configuration"
+msgstr ""
+
+#: ../vhffs-panel/group/prefs.pl:93
+msgid "Project Description"
+msgstr ""
+
+#: ../vhffs-panel/group/create.pl:62
+msgid "Project Name"
+msgstr ""
+
+#: ../vhffs-panel/group/prefs.pl:91
+msgid "Project Owner"
+msgstr ""
+
+#: ../vhffs-panel/group/prefs.pl:88
+msgid "Project Preferences"
+msgstr ""
+
+#: ../vhffs-panel/group/project_submit.pl:85
+msgid "Project Successfully created !"
+msgstr ""
+
+#: ../vhffs-panel/group/prefs_save.pl:93
+msgid "Project Successfully modified"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:305
+msgid "Protocol"
+msgstr ""
+
+#: ../vhffs-panel/svn/prefs.pl:117 ../vhffs-panel/admin/cvs/edit.pl:96
+#: ../vhffs-panel/admin/cvs/show.pl:95
+msgid "Public"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:141
+msgid "Public archives"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:79
+msgid "Public area is not available on this platform."
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:77
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:78
+msgid "Public area not available"
+msgstr ""
+
+#: ../vhffs-panel/admin/group/edit.pl:96 ../vhffs-panel/admin/group/show.pl:96
+#: ../vhffs-panel/admin/repository/edit.pl:102
+#: ../vhffs-panel/admin/repository/show.pl:100
+msgid "Quota"
+msgstr ""
+
+#: ../vhffs-panel/repository/prefs.pl:100
+#: ../vhffs-panel/admin/group/edit.pl:110
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:404
+#, perl-format
+msgid "Quota (used/total) : %s/%s"
+msgstr ""
+
+#: ../vhffs-panel/admin/group/edit.pl:97 ../vhffs-panel/admin/group/show.pl:97
+#: ../vhffs-panel/admin/repository/edit.pl:103
+#: ../vhffs-panel/admin/repository/show.pl:101
+msgid "Quota used"
+msgstr ""
+
+#: ../vhffs-panel/public/rss/lastgroups.pl:108
+#: ../vhffs-panel/public/rss/lastusers.pl:106
+msgid "RSS infos are not published"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/list.pl:80
+msgid "Real Name"
+msgstr ""
+
+#: ../vhffs-robots/src/refused_ml.pl:73 ../vhffs-robots/src/refused_mail.pl:75
+#: ../vhffs-robots/src/refused_postgres.pl:76
+#: ../vhffs-robots/src/refused_cvs.pl:72 ../vhffs-robots/src/refused_web.pl:71
+#: ../vhffs-robots/src/refused_mysql.pl:46
+#: ../vhffs-robots/src/refused_svn.pl:42
+#: ../vhffs-robots/src/refused_groups.pl:71
+#: ../vhffs-robots/src/refused_repository.pl:76
+#: ../vhffs-robots/src/refused_dns.pl:75
+msgid "Reason given : "
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:214
+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
+msgid "Record does not exists"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:202
+msgid "Record type doesn't exists"
+msgstr ""
+
+#: ../vhffs-panel/admin/moderation.pl:116
+#: ../vhffs-panel/admin/moderation.pl:158
+#: ../vhffs-panel/admin/moderation.pl:199
+#: ../vhffs-panel/admin/moderation.pl:243
+#: ../vhffs-panel/admin/moderation.pl:286
+#: ../vhffs-panel/admin/moderation.pl:331
+#: ../vhffs-panel/admin/moderation.pl:376
+#: ../vhffs-panel/admin/moderation.pl:419
+#: ../vhffs-panel/admin/moderation.pl:461
+#: ../vhffs-panel/admin/moderation.pl:503
+msgid "Refuse"
+msgstr ""
+
+#: ../vhffs-panel/group/prefs.pl:121
+msgid "Remove this user from this group"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:142
+msgid "Reply to: on list"
+msgstr ""
+
+#: ../vhffs-panel/svn/create.pl:71 ../vhffs-panel/repository/create.pl:65
+#: ../vhffs-panel/admin/repository/list.pl:88 ../vhffs-panel/cvs/create.pl:91
+msgid "Repository Name"
+msgstr ""
+
+#: ../vhffs-panel/svn/prefs_save.pl:111 ../vhffs-panel/svn/prefs_save.pl:121
+msgid "Repository updated"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/change_right.pl:111
+msgid "Rights successfully changed"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:211
+msgid "SRV Record added"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:200
+msgid "SRV Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:196
+msgid "SRV Record updated"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:302
+msgid "SRV TYPE"
+msgstr ""
+
+#: ../vhffs-intl/extra_strings.pl:37
+msgid "SVN Repository"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:511
+msgid "SVN repositories for this group"
+msgstr ""
+
+#: ../vhffs-panel/public/group.pl:174
+msgid "SVN repository for this group"
+msgstr ""
+
+#: ../vhffs-panel/admin/svn/list.pl:76
+msgid "SVN root"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:126
+msgid "SVN stats"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:161
+msgid "SVNweb"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:146
+msgid "Save options"
+msgstr ""
+
+#: ../vhffs-panel/admin/object/search.pl:76
+msgid "Search an object (give object_id)"
+msgstr ""
+
+#: ../vhffs-panel/admin/cvs/search.pl:77
+msgid "Search for a CVS repository"
+msgstr ""
+
+#: ../vhffs-panel/admin/repository/search.pl:77
+msgid "Search for a Download repository"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:200
+msgid "Search for a PostgreSQL database"
+msgstr ""
+
+#: ../vhffs-panel/admin/svn/search.pl:79
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:133
+msgid "Search for a SVN repository"
+msgstr ""
+
+#: ../vhffs-panel/admin/pgsql/search.pl:78
+#: ../vhffs-panel/admin/mysql/search.pl:78
+msgid "Search for a database"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:213
+msgid "Search for a domain"
+msgstr ""
+
+#: ../vhffs-panel/admin/dns/search.pl:78
+msgid "Search for a domain name"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:226
+msgid "Search for a download repository"
+msgstr ""
+
+#: ../vhffs-panel/admin/group/search.pl:78
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:109
+msgid "Search for a group"
+msgstr ""
+
+#: ../vhffs-panel/admin/mailing/search.pl:77
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:187
+msgid "Search for a list"
+msgstr ""
+
+#: ../vhffs-panel/admin/mail/search.pl:78
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:174
+msgid "Search for a mail domain"
+msgstr ""
+
+#: ../vhffs-panel/admin/web/search.pl:78
+msgid "Search for a web area"
+msgstr ""
+
+#: ../vhffs-panel/public/index.pl:77 ../vhffs-api/src/Vhffs/Panel/Admin.pm:119
+msgid "Search for a website"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:91
+msgid "Search for an object"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/search.pl:78
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:101
+msgid "Search for an user"
+msgstr ""
+
+#: ../vhffs-panel/admin/group/list.pl:85
+msgid "Search result"
+msgstr ""
+
+#: ../vhffs-panel/admin/object/list.pl:80
+msgid "Search result "
+msgstr ""
+
+#: ../vhffs-panel/admin/mailing/list.pl:79
+#: ../vhffs-panel/admin/user/list.pl:72 ../vhffs-panel/admin/web/list.pl:71
+#: ../vhffs-panel/admin/mail/list.pl:80
+msgid "Search result for"
+msgstr ""
+
+#: ../vhffs-panel/admin/cvs/list.pl:82
+msgid "Search result for CVS repository"
+msgstr ""
+
+#: ../vhffs-panel/admin/repository/list.pl:81
+msgid "Search result for Download repository"
+msgstr ""
+
+#: ../vhffs-panel/admin/svn/list.pl:69
+msgid "Search result for Subversion repository"
+msgstr ""
+
+#: ../vhffs-panel/admin/pgsql/list.pl:80 ../vhffs-panel/admin/mysql/list.pl:81
+msgid "Search result for database"
+msgstr ""
+
+#: ../vhffs-panel/admin/dns/list.pl:80
+msgid "Search result for domain"
+msgstr ""
+
+#: ../vhffs-panel/public/user.pl:120 ../vhffs-panel/public/lastgroups.pl:108
+#: ../vhffs-panel/public/lastusers.pl:117
+#: ../vhffs-panel/public/allwebsites.pl:104 ../vhffs-panel/public/index.pl:86
+#: ../vhffs-panel/public/group.pl:228 ../vhffs-panel/public/allgroups.pl:116
+msgid "Search:"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/create.pl:101 ../vhffs-panel/svn/create.pl:76
+#: ../vhffs-panel/dns/create.pl:68 ../vhffs-panel/pgsql/create.pl:73
+#: ../vhffs-panel/group/create.pl:65 ../vhffs-panel/repository/create.pl:71
+#: ../vhffs-panel/alert.pl:71 ../vhffs-panel/admin/user/edit.pl:111
+#: ../vhffs-panel/admin/pgsql/edit.pl:102
+#: ../vhffs-panel/admin/group/edit.pl:100
+#: ../vhffs-panel/admin/broadcast_list.pl:99
+#: ../vhffs-panel/admin/repository/edit.pl:100
+#: ../vhffs-panel/admin/object/edit.pl:98
+#: ../vhffs-panel/admin/broadcast_view.pl:100
+#: ../vhffs-panel/admin/web/edit.pl:105 ../vhffs-panel/admin/mysql/edit.pl:103
+#: ../vhffs-panel/admin/cvs/edit.pl:101 ../vhffs-panel/admin/mail/edit.pl:103
+#: ../vhffs-panel/web/create.pl:80 ../vhffs-panel/mysql/create.pl:71
+#: ../vhffs-panel/cvs/create.pl:96 ../vhffs-panel/mail/create.pl:70
+msgid "Send"
+msgstr ""
+
+#: ../vhffs-panel/admin/broadcast.pl:76
+msgid "Send an email to all hosted people"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:295
+msgid "Send an email with the subject \"help\" to the following address: \n"
+msgstr ""
+
+#: ../vhffs-panel/acl/view.pl:170
+msgid "Send it"
+msgstr ""
+
+#: ../vhffs-panel/group/prefs.pl:108 ../vhffs-panel/group/prefs.pl:109
+msgid "Send logo"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:287 ../vhffs-panel/user/prefs.pl:289
+msgid "Send my avatar"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:465
+msgid "September"
+msgstr ""
+
+#: ../vhffs-panel/admin/web/edit.pl:95 ../vhffs-panel/admin/web/show.pl:94
+#: ../vhffs-panel/admin/web/list.pl:78 ../vhffs-panel/admin/mysql/edit.pl:95
+#: ../vhffs-panel/admin/mysql/show.pl:93
+msgid "Servername"
+msgstr ""
+
+#: ../vhffs-panel/web/web_submit.pl:77
+msgid "Servername error. Please enter a valid servername"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:306
+msgid "Service"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit.pl:98 ../vhffs-panel/admin/user/show.pl:99
+msgid "Shell"
+msgstr ""
+
+#: ../vhffs-panel/admin/cvs/show.pl:92
+msgid "Show CVS"
+msgstr ""
+
+#: ../vhffs-panel/admin/repository/show.pl:92
+msgid "Show Download repository"
+msgstr ""
+
+#: ../vhffs-panel/admin/group/show.pl:91
+msgid "Show Group"
+msgstr ""
+
+#: ../vhffs-panel/admin/mail/show.pl:94
+msgid "Show Mail Domain"
+msgstr ""
+
+#: ../vhffs-panel/admin/mysql/show.pl:91
+msgid "Show MySQL database"
+msgstr ""
+
+#: ../vhffs-panel/admin/pgsql/show.pl:92
+msgid "Show PostgreSQL database"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/show.pl:94
+msgid "Show User"
+msgstr ""
+
+#: ../vhffs-panel/admin/web/show.pl:92
+msgid "Show Web Area"
+msgstr ""
+
+#: ../vhffs-panel/public/index.pl:71
+#, perl-format
+msgid "Show me all groups on %s"
+msgstr ""
+
+#: ../vhffs-panel/public/index.pl:75
+msgid "Show me all websites"
+msgstr ""
+
+#: ../vhffs-panel/public/index.pl:70
+#, perl-format
+msgid "Show me last groups on %s"
+msgstr ""
+
+#: ../vhffs-panel/public/index.pl:64
+#, perl-format
+msgid "Show me last users on %s"
+msgstr ""
+
+#: ../vhffs-panel/public/index.pl:73
+msgid "Show me this group according to this username"
+msgstr ""
+
+#: ../vhffs-panel/public/index.pl:66
+msgid "Show me this user according to this username"
+msgstr ""
+
+#: ../vhffs-panel/admin/cvs/list.pl:102
+msgid "Show this CVS repository"
+msgstr ""
+
+#: ../vhffs-panel/admin/repository/list.pl:104
+msgid "Show this Download repository"
+msgstr ""
+
+#: ../vhffs-panel/admin/mysql/list.pl:103
+msgid "Show this MySQL area"
+msgstr ""
+
+#: ../vhffs-panel/admin/pgsql/list.pl:104
+msgid "Show this PostgreSQL database"
+msgstr ""
+
+#: ../vhffs-panel/admin/web/list.pl:94
+msgid "Show this Website"
+msgstr ""
+
+#: ../vhffs-panel/admin/group/list.pl:104
+msgid "Show this group"
+msgstr ""
+
+#: ../vhffs-panel/admin/mailing/list.pl:99
+msgid "Show this list"
+msgstr ""
+
+#: ../vhffs-panel/admin/mail/list.pl:106
+msgid "Show this mail domain"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/list.pl:94
+msgid "Show this user"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:148
+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
+msgid "Sorry, can't add ACL"
+msgstr ""
+
+#: ../vhffs-panel/acl/submit.pl:104
+msgid "Sorry, can't delete this ACL"
+msgstr ""
+
+#: ../vhffs-panel/mail/spambox.pl:101
+msgid "Spam protection is not allowed"
+msgstr ""
+
+#: ../vhffs-panel/mail/spambox.pl:114
+#, perl-format
+msgid "Spam status updated for box %s"
+msgstr ""
+
+#: ../vhffs-panel/admin/svn/list.pl:78 ../vhffs-panel/admin/mailing/list.pl:88
+#: ../vhffs-panel/admin/user/list.pl:81 ../vhffs-panel/admin/dns/list.pl:89
+#: ../vhffs-panel/admin/pgsql/list.pl:89 ../vhffs-panel/admin/group/list.pl:91
+#: ../vhffs-panel/admin/repository/list.pl:90
+#: ../vhffs-panel/admin/object/list.pl:89
+#: ../vhffs-panel/admin/broadcast_view.pl:87
+#: ../vhffs-panel/admin/web/list.pl:80 ../vhffs-panel/admin/mysql/list.pl:90
+#: ../vhffs-panel/admin/cvs/list.pl:91 ../vhffs-panel/admin/mail/list.pl:89
+msgid "State"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit.pl:137 ../vhffs-panel/admin/user/show.pl:110
+#: ../vhffs-panel/admin/pgsql/edit.pl:100
+#: ../vhffs-panel/admin/pgsql/show.pl:98 ../vhffs-panel/admin/group/edit.pl:98
+#: ../vhffs-panel/admin/group/show.pl:98
+#: ../vhffs-panel/admin/repository/edit.pl:98
+#: ../vhffs-panel/admin/repository/show.pl:97
+#: ../vhffs-panel/admin/object/edit.pl:96 ../vhffs-panel/admin/web/edit.pl:101
+#: ../vhffs-panel/admin/web/show.pl:100 ../vhffs-panel/admin/mysql/edit.pl:101
+#: ../vhffs-panel/admin/mysql/show.pl:97 ../vhffs-panel/admin/mysql/show.pl:99
+#: ../vhffs-panel/admin/cvs/edit.pl:99 ../vhffs-panel/admin/cvs/show.pl:98
+#: ../vhffs-panel/admin/mail/edit.pl:101 ../vhffs-panel/admin/mail/show.pl:101
+msgid "Status"
+msgstr ""
+
+#: ../vhffs-panel/admin/su.pl:79
+msgid "Su !"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:293
+msgid "Subdomain name"
+msgstr ""
+
+#: ../vhffs-panel/admin/broadcast.pl:78
+#: ../vhffs-panel/admin/broadcast_view.pl:86
+msgid "Subject"
+msgstr ""
+
+#: ../vhffs-listengine/src/archives/show_msg.pl:109
+msgid "Subject: "
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:285 ../vhffs-panel/dns/prefs.pl:291
+#: ../vhffs-panel/dns/prefs.pl:312
+msgid "Submit"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:82
+msgid "Submit a bug"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:206 ../vhffs-panel/subscribe.pl:220
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:59
+msgid "Subscribe"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:111
+msgid "Subscribe control:"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:178
+msgid "Subscribed"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:196
+msgid "Subscription"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:130
+#, perl-format
+msgid ""
+"Subscription to the following list is forbidden:\n"
+"\n"
+"%s\n"
+"\n"
+"Have a nice day.\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:131
+msgid "Subversion Admin"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Svn.pm:143
+msgid "Subversion repository"
+msgstr ""
+
+#: ../vhffs-panel/admin/moderation.pl:305
+msgid "Subversion repository awaiting validation"
+msgstr ""
+
+#: ../vhffs-panel/object/upavatar.pl:126
+msgid "Successfull create or replace avatar"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/add_sub.pl:105
+msgid "Successfully added"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/del_member.pl:105
+msgid "Successfully deleted"
+msgstr ""
+
+#: ../vhffs-panel/group/join_group.pl:86
+msgid ""
+"Sucessfully added this user to this group. Please wait while robots add him"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit.pl:145
+#: ../vhffs-panel/admin/pgsql/edit.pl:121
+#: ../vhffs-panel/admin/pgsql/edit.pl:122
+#: ../vhffs-panel/admin/group/edit.pl:121
+#: ../vhffs-panel/admin/group/edit.pl:122
+#: ../vhffs-panel/admin/repository/edit.pl:121
+#: ../vhffs-panel/admin/repository/edit.pl:122
+#: ../vhffs-panel/admin/object/edit.pl:121
+#: ../vhffs-panel/admin/object/edit.pl:122
+#: ../vhffs-panel/admin/web/edit.pl:134 ../vhffs-panel/admin/web/edit.pl:135
+#: ../vhffs-panel/admin/mysql/edit.pl:122
+#: ../vhffs-panel/admin/mysql/edit.pl:123 ../vhffs-panel/admin/cvs/edit.pl:130
+#: ../vhffs-panel/admin/cvs/edit.pl:131 ../vhffs-panel/admin/mail/edit.pl:162
+#: ../vhffs-panel/admin/mail/edit.pl:163 ../vhffs-intl/extra_strings.pl:21
+msgid "Suspended"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit.pl:146 ../vhffs-intl/extra_strings.pl:22
+msgid "Suspended before deletion"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:216
+msgid "TXT Record added"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:227
+msgid "TXT Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:222
+msgid "TXT Record updated"
+msgstr ""
+
+#: ../vhffs-panel/mail/create.pl:71
+msgid "Tell us what the use of this mail space will be"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/create.pl:102
+msgid "Tell us what the use of this mailing list will be"
+msgstr ""
+
+#: ../vhffs-panel/web/create.pl:81
+msgid "Tell us what the use of this web space will be"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:318
+msgid "Text"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:384
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:396
+msgid "Text can't be empty"
+msgstr ""
+
+#: ../vhffs-panel/cvs/create.pl:78
+msgid "The CVS object was successfully created !"
+msgstr ""
+
+#: ../vhffs-panel/dns/create.pl:47
+msgid "The DNS object was successfully created !"
+msgstr ""
+
+#: ../vhffs-panel/repository/repository_submit.pl:89
+msgid "The Download repository object was successfully created !"
+msgstr ""
+
+#: ../vhffs-robots/src/refused_ml.pl:78 ../vhffs-robots/src/refused_mail.pl:80
+#: ../vhffs-robots/src/refused_postgres.pl:81
+#: ../vhffs-robots/src/refused_cvs.pl:77 ../vhffs-robots/src/refused_web.pl:76
+#: ../vhffs-robots/src/refused_mysql.pl:51
+#: ../vhffs-robots/src/refused_svn.pl:47
+#: ../vhffs-robots/src/refused_groups.pl:76
+#: ../vhffs-robots/src/refused_repository.pl:81
+#: ../vhffs-robots/src/refused_dns.pl:80
+msgid "The Moderator and Admin team"
+msgstr ""
+
+#: ../vhffs-panel/mysql/submit.pl:99
+msgid "The MySQL object was successfully created !"
+msgstr ""
+
+#: ../vhffs-panel/pgsql/pgsql_submit.pl:95
+msgid "The PostgreSQL object was successfully created !"
+msgstr ""
+
+#: ../vhffs-panel/svn/svn_submit.pl:83
+msgid "The Subversion object was successfully created !"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:290
+msgid ""
+"The avatar is a pictures that describes you. You can upload an PNG image and "
+"use it as avatar. This image will then appear in the public section."
+msgstr ""
+
+#: ../vhffs-panel/group/prefs.pl:110
+msgid "The avatar is an image to describe the group"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:190
+msgid "The confirmation code was wrong\n"
+msgstr ""
+
+#: ../vhffs-panel/mysql/submit.pl:91
+msgid "The database name is not valid"
+msgstr ""
+
+#: ../vhffs-panel/mysql/submit.pl:79
+msgid "The database name is too long. There is a 32 character limit"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:379
+#, perl-format
+msgid ""
+"The following address %s is not allowed to execute commands on the list %s\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:205
+#, perl-format
+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 ""
+
+#: ../vhffs-panel/group/project_submit.pl:74
+msgid ""
+"The groupname should contain at least 3 caracters and must contain only "
+"letters or numbers in lower case"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:265
+#, perl-format
+msgid ""
+"The listengine language preference was changed for the following address %"
+"s.\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:314
+msgid "The message does not exists or was moderated before you.\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:311
+#, perl-format
+msgid "The message with the following id %s"
+msgstr ""
+
+#: ../vhffs-panel/mysql/submit.pl:95
+msgid "The password is not valid"
+msgstr ""
+
+#: ../vhffs-panel/pgsql/create.pl:70 ../vhffs-panel/mysql/create.pl:65
+#, perl-format
+msgid ""
+"The prefix of your databases is constant, so the names of your databases "
+"will be %s_DBNAME<br>. One user will be created, which will be called %"
+"s_DBNAME"
+msgstr ""
+
+#: ../vhffs-panel/svn/svn_submit.pl:73
+msgid ""
+"The repository name is too short. It must contains at least 3 caracters, and "
+"must only contain letters and numbers"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:117
+msgid ""
+"The state of you subscription was not changed, you are still subscribed\n"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:264
+msgid "Theme"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:211
+msgid ""
+"There is a problem with the address you filled in your profile, unable to "
+"add forwarding"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:348
+msgid "There is two possible usages :"
+msgstr ""
+
+#: ../vhffs-panel/cvs/delete.pl:90
+msgid "This CVS repository will NOT be deleted"
+msgstr ""
+
+#: ../vhffs-panel/cvs/delete.pl:103
+msgid "This CVS will be delete"
+msgstr ""
+
+#: ../vhffs-panel/pgsql/delete.pl:73 ../vhffs-panel/pgsql/prefs_save.pl:77
+msgid "This DB doesn't exist in VHFFS database"
+msgstr ""
+
+#: ../vhffs-panel/repository/delete.pl:90
+msgid "This Download repository will NOT be deleted"
+msgstr ""
+
+#: ../vhffs-panel/repository/delete.pl:103
+msgid "This Download repository will be deleted"
+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/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
+msgid ""
+"This action is non-reversible. All services associated to this project will "
+"be DESTROYED."
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:277
+msgid "This action is non-reversible. WHEN YOU DELETE IT, YOU CANNOT CANCEL."
+msgstr ""
+
+#: ../vhffs-panel/mail/add_account.pl:104
+msgid ""
+"This box already exists for this domain or parameters are not valid. Check "
+"your domain."
+msgstr ""
+
+#: ../vhffs-panel/mail/add_account.pl:108
+msgid "This box has been successfully added to this domain"
+msgstr ""
+
+#: ../vhffs-panel/pgsql/delete.pl:93
+msgid "This database cannot be deleted"
+msgstr ""
+
+#: ../vhffs-panel/mysql/delete.pl:72
+msgid "This database doesn't exist in VHFFS database"
+msgstr ""
+
+#: ../vhffs-panel/mysql/prefs_save.pl:75
+msgid "This database doesn't exist on VHFFS"
+msgstr ""
+
+#: ../vhffs-panel/mysql/delete.pl:84
+msgid "This database will NOT be deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/delete.pl:111
+msgid "This domain will NOT be DELETED from Vhffs platform"
+msgstr ""
+
+#: ../vhffs-panel/dns/delete.pl:106
+msgid "This domain will be DELETED from Vhffs platform"
+msgstr ""
+
+#: ../vhffs-panel/group/prefs_save.pl:82
+msgid "This group is not activated yet"
+msgstr ""
+
+#: ../vhffs-panel/group/delete.pl:91
+msgid "This group will be deleted"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:357
+msgid "This host is already registered for this service"
+msgstr ""
+
+#: ../vhffs-panel/mail/save_catchall.pl:90
+msgid "This is not a correct mail address"
+msgstr ""
+
+#: ../vhffs-panel/mail/delete.pl:102
+msgid "This mail domain WILL BE DELETED"
+msgstr ""
+
+#: ../vhffs-panel/mail/delete.pl:90
+msgid "This mail domain will NOT be DELETED"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:99
+#, perl-format
+msgid ""
+"This mail must contains the following subject : \"confirm unsubscribe %s\"\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:81
+#, perl-format
+msgid "This mail must have the following subject : \"confirm subscribe %s\"\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:395
+#, perl-format
+msgid "This mail was sent by  %s with the following subject: \n"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/add_sub.pl:101
+msgid "This member already exists on this list !"
+msgstr ""
+
+#: ../vhffs-panel/admin/object/delete_avatar.pl:104
+msgid "This object does not have an avatar"
+msgstr ""
+
+#: ../vhffs-panel/group/prefs.pl:75
+msgid "This object is not functional yet. Please wait creation or moderation."
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/delete.pl:86
+#: ../vhffs-panel/mailinglist/save_sig.pl:85
+#: ../vhffs-panel/mailinglist/add_sub.pl:87
+#: ../vhffs-panel/mailinglist/prefs.pl:92
+#: ../vhffs-panel/mailinglist/save_options.pl:89
+#: ../vhffs-panel/mailinglist/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/group/delete.pl:74 ../vhffs-panel/repository/delete.pl:86
+#: ../vhffs-panel/repository/prefs_save.pl:86
+#: ../vhffs-panel/admin/mail/delete_box.pl:89
+#: ../vhffs-panel/admin/mail/password_box.pl:90
+#: ../vhffs-panel/admin/mail/delete_forward.pl:90
+#: ../vhffs-panel/admin/mail/change_forward.pl:90
+#: ../vhffs-panel/web/prefs.pl:80 ../vhffs-panel/web/prefs_save.pl:82
+#: ../vhffs-panel/mysql/prefs.pl:90 ../vhffs-panel/mysql/prefs_save.pl:91
+#: ../vhffs-panel/cvs/delete.pl:86 ../vhffs-panel/cvs/prefs_save.pl:85
+#: ../vhffs-panel/mail/delete.pl:82 ../vhffs-panel/mail/delete_box.pl:86
+#: ../vhffs-panel/mail/add_account.pl:89 ../vhffs-panel/mail/prefs.pl:85
+#: ../vhffs-panel/mail/save_catchall.pl:80
+#: ../vhffs-panel/mail/password_box.pl:89
+#: ../vhffs-panel/mail/delete_forward.pl:84
+#: ../vhffs-panel/mail/add_forward.pl:83
+#: ../vhffs-panel/mail/change_forward.pl:89
+#: ../vhffs-panel/mail/spamvirus.pl:89 ../vhffs-panel/mail/spambox.pl:89
+msgid "This object is not functionnal yet. Please wait creation or moderation."
+msgstr ""
+
+#: ../vhffs-panel/svn/prefs.pl:106 ../vhffs-panel/repository/prefs.pl:89
+#: ../vhffs-panel/cvs/prefs.pl:84
+msgid ""
+"This object is not functionnal yet. Please wait creation, moderation or "
+"modification."
+msgstr ""
+
+#: ../vhffs-panel/web/delete.pl:96
+msgid "This object will BE DELETED"
+msgstr ""
+
+#: ../vhffs-panel/group/delete.pl:78 ../vhffs-panel/web/delete.pl:101
+msgid "This object will NOT be DELETED"
+msgstr ""
+
+#: ../vhffs-panel/object/upavatar.pl:93
+msgid "This platform does not provide avatar support"
+msgstr ""
+
+#: ../vhffs-panel/admin/object/delete_avatar.pl:73
+msgid "This platform does not support avatar"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:50
+msgid ""
+"This platform is temporary closed. Administrators are performing some "
+"maintenances tasks or system has database errors. Please come back in a few "
+"minutes to log in."
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:61
+msgid ""
+"This platform is temporary closed. Administrators are performing some "
+"maintenances tasks. Please come back in a few minutes to log in."
+msgstr ""
+
+#: ../vhffs-panel/svn/svn_submit.pl:76
+msgid "This repository name already exists"
+msgstr ""
+
+#: ../vhffs-panel/svn/delete.pl:102
+msgid "This repository will be deleted"
+msgstr ""
+
+#: ../vhffs-panel/svn/delete.pl:89
+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 ""
+
+#: ../vhffs-panel/user/delete.pl:76
+msgid "This user is always in a group"
+msgstr ""
+
+#: ../vhffs-panel/group/remove_user_from_group.pl:88
+msgid "This user is not in this group "
+msgstr ""
+
+#: ../vhffs-panel/user/delete.pl:87
+msgid "This user will BE DELETED"
+msgstr ""
+
+#: ../vhffs-panel/user/delete.pl:93
+msgid "This user will NOT be DELETED"
+msgstr ""
+
+#: ../vhffs-panel/group/remove_user_from_group.pl:92
+msgid "This user will be removed from this group as soon as possible"
+msgstr ""
+
+#: ../vhffs-panel/web/delete.pl:79 ../vhffs-panel/web/prefs_save.pl:78
+msgid "This web area doesn't exist in VHFFS database"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:416
+msgid "To accept this subscriber, send a message to\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:398
+msgid "To put this post on the list, send a message  \n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:419
+msgid "To refuse this subscriber, send a message to\n"
+msgstr ""
+
+#: ../vhffs-listengine/src/archives/show_msg.pl:107
+msgid "To: "
+msgstr ""
+
+#: ../vhffs-panel/ajax/help.pl:54 ../vhffs-panel/ajax/help.pl:59
+msgid "Topic not found"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:93
+msgid "Total Admin Users in VHFFS database"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:120
+msgid "Total CVS in moderation"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:112
+msgid "Total DNS in moderation"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:134
+msgid "Total Mail domains in moderation"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:95
+msgid "Total Moderator Users in VHFFS database"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:146
+msgid "Total MySQL in moderation"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:153
+msgid "Total PostgreSQL in moderation"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:127
+msgid "Total SVN in moderation"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:91
+msgid "Total Users in VHFFS database"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:105
+msgid "Total Web Areas in moderation"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:122
+msgid "Total activated CVS"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:114
+msgid "Total activated DNS"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:136
+msgid "Total activated Mail domains"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:148
+msgid "Total activated MySQL"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:155
+msgid "Total activated PostgreSQL"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:129
+msgid "Total activated SVN"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:107
+msgid "Total activated Web Areas"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:101
+msgid "Total activated groups"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:163
+msgid "Total activated lists"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:99
+msgid "Total groups in database"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:140
+msgid "Total hosted boxes"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:138
+msgid "Total hosted forwards"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:161
+msgid "Total lists in moderation"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:165
+msgid "Total subscribtion for lists"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit.pl:102 ../vhffs-panel/admin/user/show.pl:102
+msgid "UID"
+msgstr ""
+
+#: ../vhffs-panel/admin/object/edit.pl:94
+msgid "UID of owner"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Repository.pm:135
+msgid "URL"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:148
+#, perl-format
+msgid "Unable to add A record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:143
+#, perl-format
+msgid "Unable to add AAAA record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:187
+#, perl-format
+msgid "Unable to add CNAME record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:164
+#, perl-format
+msgid "Unable to add MX record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:173
+#, perl-format
+msgid "Unable to add NS record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:210
+#, perl-format
+msgid "Unable to add SRV record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:215
+#, perl-format
+msgid "Unable to add TXT record: %s"
+msgstr ""
+
+#: ../vhffs-panel/admin/mail/password_box.pl:105
+#, perl-format
+msgid "Unable to change password for box %s (%d)"
+msgstr ""
+
+#: ../vhffs-panel/mail/spambox.pl:110
+#, perl-format
+msgid "Unable to change spam status for %s"
+msgstr ""
+
+#: ../vhffs-panel/mysql/prefs_save.pl:95
+msgid "Unable to change this database's password"
+msgstr ""
+
+#: ../vhffs-panel/mail/spamvirus.pl:110
+#, perl-format
+msgid "Unable to change virus protection status for %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:125
+#, perl-format
+msgid "Unable to delete A record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:137
+#, perl-format
+msgid "Unable to delete AAAA record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:182
+#, perl-format
+msgid "Unable to delete CNAME record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:159
+#, perl-format
+msgid "Unable to delete MX record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:169
+#, perl-format
+msgid "Unable to delete NS record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:199
+#, perl-format
+msgid "Unable to delete SRV record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:226
+#, perl-format
+msgid "Unable to delete TXT record: %s"
+msgstr ""
+
+#: ../vhffs-panel/mail/delete_forward.pl:96
+#, perl-format
+msgid "Unable to delete forward %s"
+msgstr ""
+
+#: ../vhffs-panel/admin/mail/delete_forward.pl:105
+#, perl-format
+msgid "Unable to delete forward %s (%d)"
+msgstr ""
+
+#: ../vhffs-panel/mail/delete.pl:98
+msgid "Unable to delete this domain"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:238
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:268
+msgid ""
+"Unable to find default redirection address, please contact administrators"
+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
+#: ../vhffs-panel/admin/mail/change_forward.pl:77
+#: ../vhffs-panel/mail/delete.pl:78 ../vhffs-panel/mail/delete_box.pl:73
+#: ../vhffs-panel/mail/prefs.pl:77 ../vhffs-panel/mail/password_box.pl:76
+#: ../vhffs-panel/mail/delete_forward.pl:74
+#: ../vhffs-panel/mail/change_forward.pl:76
+#: ../vhffs-panel/mail/spamvirus.pl:76 ../vhffs-panel/mail/spambox.pl:76
+#, perl-format
+msgid "Unable to get information on mail domain %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:120
+#, perl-format
+msgid "Unable to modify A record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:132
+#, perl-format
+msgid "Unable to modify AAAA record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:178
+#, perl-format
+msgid "Unable to modify CNAME record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:154
+#, perl-format
+msgid "Unable to modify MX record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:195
+#, perl-format
+msgid "Unable to modify SRV record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:221
+#, perl-format
+msgid "Unable to modify TXT record: %s"
+msgstr ""
+
+#: ../vhffs-panel/admin/mail/change_forward.pl:105
+#: ../vhffs-panel/mail/change_forward.pl:104
+#, perl-format
+msgid "Unable to modify forward %s (%d)"
+msgstr ""
+
+#: ../vhffs-panel/admin/pgsql/edit_submit.pl:98
+#: ../vhffs-panel/admin/mysql/edit_submit.pl:102
+msgid "Unable to modify the object"
+msgstr ""
+
+#: ../vhffs-panel/mail/add_forward.pl:99
+msgid "Unable to record changes on this domain"
+msgstr ""
+
+#: ../vhffs-listengine/src/archives/archives.pl:141
+#: ../vhffs-listengine/src/archives/show_msg.pl:81
+msgid "Undefined list"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:293
+msgid "Unknow command\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Functions.pm:400
+#: ../vhffs-api/src/Vhffs/Functions.pm:405
+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: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
+msgid "Unknown error"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:480
+msgid "Unknown month"
+msgstr ""
+
+#: ../vhffs-panel/admin/broadcast_list.pl:103
+#: ../vhffs-panel/admin/broadcast_view.pl:104
+msgid "Unknown status"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:235
+#, perl-format
+msgid "Unsubscribe for the list %s was not complete.\n"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit.pl:260
+msgid "Update note"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:150
+msgid "Update signature"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:253
+#, perl-format
+msgid "Use @ for origin (%s)"
+msgstr ""
+
+#: ../vhffs-panel/admin/web/edit.pl:102 ../vhffs-panel/admin/web/show.pl:115
+msgid "Use Crawl"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:349
+#, perl-format
+msgid ""
+"Use VHFFS servers to manage this mail,<br>you should use use the host pop.%s "
+"or imap.%s to fetch your mails"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:355
+msgid "Use anti-spam protection"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:363
+msgid "Use anti-virus protection"
+msgstr ""
+
+#: ../vhffs-panel/web/prefs.pl:98
+msgid "Use crawl (useful for web-search engine)"
+msgstr ""
+
+#: ../vhffs-panel/admin/pgsql/edit.pl:96 ../vhffs-panel/admin/pgsql/show.pl:95
+#: ../vhffs-panel/admin/mysql/edit.pl:96 ../vhffs-panel/admin/mysql/show.pl:94
+#: ../vhffs-intl/extra_strings.pl:30
+msgid "User"
+msgstr ""
+
+#: ../vhffs-panel/panel.pl:84
+#, perl-format
+msgid "User %s does not exists"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:99
+msgid "User Admin"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:248 ../vhffs-api/src/Vhffs/Panel/Menu.pm:80
+msgid "User Preferences"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:166
+msgid "User Successfully created"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:76
+msgid "User account"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:275
+msgid "User does not exist"
+msgstr ""
+
+#: ../vhffs-panel/auth.pl:71
+msgid "User is not active yet"
+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/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
+msgid "Username"
+msgstr ""
+
+#: ../vhffs-panel/pgsql/prefs.pl:96 ../vhffs-panel/mysql/prefs.pl:103
+msgid "Username for this database"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit.pl:95 ../vhffs-panel/admin/user/show.pl:96
+msgid "Username:"
+msgstr ""
+
+#: ../vhffs-panel/public/lastgroups.pl:75 ../vhffs-panel/public/group.pl:94
+#: ../vhffs-panel/public/allgroups.pl:82
+msgid "Users"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:90
+msgid "Users stats"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:50
+msgid "VHFFS Login"
+msgstr ""
+
+#: ../vhffs-panel/logout.pl:58
+msgid "VHFFS Logout"
+msgstr ""
+
+#: ../vhffs-panel/lost_ack.pl:78
+msgid "VHFFS Password Lost OK"
+msgstr ""
+
+#: ../vhffs-panel/lost_ack.pl:89
+msgid "VHFFS Password Lost failed"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit.pl:140
+#: ../vhffs-panel/admin/pgsql/edit.pl:116
+#: ../vhffs-panel/admin/group/edit.pl:116
+#: ../vhffs-panel/admin/repository/edit.pl:116
+#: ../vhffs-panel/admin/object/edit.pl:116
+#: ../vhffs-panel/admin/web/edit.pl:129 ../vhffs-panel/admin/mysql/edit.pl:117
+#: ../vhffs-panel/admin/cvs/edit.pl:125 ../vhffs-panel/admin/mail/edit.pl:157
+#: ../vhffs-intl/extra_strings.pl:16
+msgid "Validation refused"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:88
+msgid "Vhffs Statistics"
+msgstr ""
+
+#: ../vhffs-listengine/src/archives/archives.pl:68
+#: ../vhffs-listengine/src/archives/archives.pl:175
+msgid "View"
+msgstr ""
+
+#: ../vhffs-panel/public/group.pl:209
+msgid "View archives"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:419
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:443
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:469
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:495
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:521
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:548
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:574
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:600
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:625
+msgid "View history"
+msgstr ""
+
+#: ../vhffs-panel/admin/broadcast_view.pl:84
+msgid "View mailing"
+msgstr ""
+
+#: ../vhffs-panel/admin/broadcast_list.pl:89
+msgid "View this mailing"
+msgstr ""
+
+#: ../vhffs-panel/mail/spamvirus.pl:101
+msgid "Virus protection is not allowed"
+msgstr ""
+
+#: ../vhffs-panel/mail/spamvirus.pl:114
+#, perl-format
+msgid "Virus status updated for box %s"
+msgstr ""
+
+#: ../vhffs-panel/admin/stats.pl:104
+msgid "WEB stats"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:179
+msgid "Waiting for confirmation"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit.pl:141
+#: ../vhffs-panel/admin/pgsql/edit.pl:117
+#: ../vhffs-panel/admin/group/edit.pl:117
+#: ../vhffs-panel/admin/repository/edit.pl:117
+#: ../vhffs-panel/admin/object/edit.pl:117
+#: ../vhffs-panel/admin/web/edit.pl:130 ../vhffs-panel/admin/mysql/edit.pl:118
+#: ../vhffs-panel/admin/cvs/edit.pl:126 ../vhffs-panel/admin/mail/edit.pl:158
+#: ../vhffs-intl/extra_strings.pl:17
+msgid "Waiting for creation"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:181
+msgid "Waiting for deletion"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit.pl:147
+#: ../vhffs-panel/admin/pgsql/edit.pl:123
+#: ../vhffs-panel/admin/group/edit.pl:123
+#: ../vhffs-panel/admin/repository/edit.pl:123
+#: ../vhffs-panel/admin/object/edit.pl:123
+#: ../vhffs-panel/admin/web/edit.pl:136 ../vhffs-panel/admin/mysql/edit.pl:124
+#: ../vhffs-panel/admin/cvs/edit.pl:132 ../vhffs-panel/admin/mail/edit.pl:164
+#: ../vhffs-intl/extra_strings.pl:23
+msgid "Waiting for modification"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:180
+#: ../vhffs-panel/admin/user/edit.pl:139
+#: ../vhffs-panel/admin/pgsql/edit.pl:115
+#: ../vhffs-panel/admin/group/edit.pl:115
+#: ../vhffs-panel/admin/repository/edit.pl:115
+#: ../vhffs-panel/admin/object/edit.pl:115
+#: ../vhffs-panel/admin/web/edit.pl:128 ../vhffs-panel/admin/mysql/edit.pl:116
+#: ../vhffs-panel/admin/cvs/edit.pl:124 ../vhffs-panel/admin/mail/edit.pl:156
+#: ../vhffs-intl/extra_strings.pl:15
+msgid "Waiting for validation"
+msgstr ""
+
+#: ../vhffs-panel/alert.pl:67
+msgid "Warn the admin team"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:347
+#, perl-format
+msgid "We offer you the possibility to have one email box on the domain %s"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Admin.pm:117
+msgid "Web Admin"
+msgstr ""
+
+#: ../vhffs-panel/web/prefs.pl:93
+msgid "Web Area Administration"
+msgstr ""
+
+#: ../vhffs-panel/admin/moderation.pl:131
+msgid "Web Area awaiting validation"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Web.pm:137
+msgid "Web Areas"
+msgstr ""
+
+#: ../vhffs-panel/web/web_submit.pl:86
+msgid "Web area successfully created !"
+msgstr ""
+
+#: ../vhffs-intl/extra_strings.pl:32
+msgid "Webarea"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:409
+msgid "Webarea for this group"
+msgstr ""
+
+#: ../vhffs-panel/public/group.pl:124
+msgid "Website for this group"
+msgstr ""
+
+#: ../vhffs-panel/public/index.pl:76
+msgid "Websites area"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:310 ../vhffs-panel/dns/prefs.pl:395
+msgid "Weight"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:373
+msgid "Welcome"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:51
+#, perl-format
+msgid "Welcome on %s"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/delete.pl:106
+msgid "Will be DELETED in a few minutes"
+msgstr ""
+
+#: ../vhffs-panel/admin/user/edit.pl:150
+#: ../vhffs-panel/admin/pgsql/edit.pl:126
+#: ../vhffs-panel/admin/group/edit.pl:126
+#: ../vhffs-panel/admin/repository/edit.pl:126
+#: ../vhffs-panel/admin/object/edit.pl:126
+#: ../vhffs-panel/admin/web/edit.pl:139 ../vhffs-panel/admin/mysql/edit.pl:127
+#: ../vhffs-panel/admin/cvs/edit.pl:135 ../vhffs-panel/admin/mail/edit.pl:167
+#: ../vhffs-intl/extra_strings.pl:26
+msgid "Will be deleted"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:70
+#, perl-format
+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/admin/cvs/edit.pl:105 ../vhffs-panel/admin/cvs/show.pl:104
+#: ../vhffs-panel/web/prefs.pl:115 ../vhffs-panel/cvs/prefs.pl:93
+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/mail/prefs.pl:133
+msgid "Yes I'm sure of what I do"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:222
+msgid "You are not a subscriber on this list.\n"
+msgstr ""
+
+#: ../vhffs-panel/admin/svn/search.pl:72 ../vhffs-panel/admin/svn/list.pl:61
+#: ../vhffs-panel/admin/broadcast.pl:69
+#: ../vhffs-panel/admin/mailing/mailing_submit.pl:74
+#: ../vhffs-panel/admin/mailing/search.pl:70
+#: ../vhffs-panel/admin/mailing/list.pl:70 ../vhffs-panel/admin/stats.pl:81
+#: ../vhffs-panel/admin/user/edit_submit.pl:85
+#: ../vhffs-panel/admin/user/edit.pl:73 ../vhffs-panel/admin/user/show.pl:75
+#: ../vhffs-panel/admin/user/edit_note.pl:75
+#: ../vhffs-panel/admin/user/search.pl:71 ../vhffs-panel/admin/user/list.pl:63
+#: ../vhffs-panel/admin/dns/search.pl:71 ../vhffs-panel/admin/dns/list.pl:71
+#: ../vhffs-panel/admin/pgsql/edit_submit.pl:73
+#: ../vhffs-panel/admin/pgsql/edit.pl:73 ../vhffs-panel/admin/pgsql/show.pl:73
+#: ../vhffs-panel/admin/pgsql/search.pl:71
+#: ../vhffs-panel/admin/pgsql/list.pl:71
+#: ../vhffs-panel/admin/group/edit_submit.pl:77
+#: ../vhffs-panel/admin/group/edit.pl:71 ../vhffs-panel/admin/group/show.pl:72
+#: ../vhffs-panel/admin/group/search.pl:71
+#: ../vhffs-panel/admin/group/list.pl:72
+#: ../vhffs-panel/admin/broadcast_list.pl:70
+#: ../vhffs-panel/admin/repository/edit_submit.pl:75
+#: ../vhffs-panel/admin/repository/edit.pl:73
+#: ../vhffs-panel/admin/repository/show.pl:73
+#: ../vhffs-panel/admin/repository/search.pl:70
+#: ../vhffs-panel/admin/repository/list.pl:72 ../vhffs-panel/admin/su.pl:69
+#: ../vhffs-panel/admin/object/edit_submit.pl:73
+#: ../vhffs-panel/admin/object/delete_avatar.pl:77
+#: ../vhffs-panel/admin/object/edit.pl:73
+#: ../vhffs-panel/admin/object/search.pl:70
+#: ../vhffs-panel/admin/object/list.pl:71
+#: ../vhffs-panel/admin/broadcast_view.pl:72
+#: ../vhffs-panel/admin/web/edit_submit.pl:73
+#: ../vhffs-panel/admin/web/edit.pl:73 ../vhffs-panel/admin/web/show.pl:73
+#: ../vhffs-panel/admin/web/search.pl:71 ../vhffs-panel/admin/web/list.pl:62
+#: ../vhffs-panel/admin/mysql/edit_submit.pl:72
+#: ../vhffs-panel/admin/mysql/edit.pl:73 ../vhffs-panel/admin/mysql/show.pl:72
+#: ../vhffs-panel/admin/mysql/search.pl:71
+#: ../vhffs-panel/admin/mysql/list.pl:72
+#: ../vhffs-panel/admin/cvs/edit_submit.pl:75
+#: ../vhffs-panel/admin/cvs/edit.pl:73 ../vhffs-panel/admin/cvs/show.pl:73
+#: ../vhffs-panel/admin/cvs/search.pl:70 ../vhffs-panel/admin/cvs/list.pl:73
+#: ../vhffs-panel/admin/mail/edit.pl:75 ../vhffs-panel/admin/mail/show.pl:75
+#: ../vhffs-panel/admin/mail/search.pl:71 ../vhffs-panel/admin/mail/list.pl:71
+msgid "You are not allowed to see it"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:114
+#, perl-format
+msgid ""
+"You asked to be subscribed to the following list:\n"
+"\n"
+"%s\n"
+"\n"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:258 ../vhffs-panel/web/prefs.pl:123
+#: ../vhffs-panel/mail/prefs.pl:138
+msgid ""
+"You can Manage rights on this service for each user in the VHFFS database. "
+"Please read help before manage it."
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:46
+msgid "You can also send a command list in the mail body.\n"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:80
+msgid "You cannot subscribe to VHFFS"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:221
+#, perl-format
+msgid "You cannot unsubscribe from the list %s\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:206
+msgid "You demand was refused\n"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/submit.pl:100
+msgid "You don't own this domain"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:177
+#, perl-format
+msgid ""
+"You have been successfully removed from the following list:\n"
+"\n"
+"%s\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:250
+#, perl-format
+msgid "You have been successfully removed from the list %s.\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:142
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:158
+#, perl-format
+msgid "You have been successfully subscribed to the list %s\n"
+msgstr ""
+
+#: ../vhffs-panel/logout.pl:59
+msgid "You left your VHFFS session!"
+msgstr ""
+
+#: ../vhffs-panel/lost.pl:52
+msgid "You lost your password? You're a bad guy!"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:144
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:163
+msgid "You may get some help on listengine by sending an email to\n"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:161
+msgid "You must choose a method for your mail"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:80
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:98
+msgid "You must confirm your request by sending a confirmation email\n"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:121
+msgid "You must declare a valid mail address"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:101
+msgid "You must declare your city"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:97
+msgid "You must declare your country"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:109
+msgid "You must declare your firstname"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:113
+msgid "You must declare your lastname"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:117
+msgid "You must declare your mail address"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:89
+msgid "You must declare your username"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:105
+msgid "You must declare your zipcode"
+msgstr ""
+
+#: ../vhffs-panel/dns/create.pl:43 ../vhffs-panel/cvs/create.pl:73
+msgid "You must enter a description"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/create.pl:81
+msgid "You need to manage at least a domain to host a mailing-list"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:161
+msgid "You will receive an email with the decision of administrators.\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:277
+msgid "You're are not allowed to browse panel"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/delete.pl:90
+#: ../vhffs-panel/mailinglist/save_sig.pl:89
+#: ../vhffs-panel/mailinglist/add_sub.pl:91
+#: ../vhffs-panel/mailinglist/prefs.pl:98
+#: ../vhffs-panel/mailinglist/save_options.pl:93
+#: ../vhffs-panel/mailinglist/change_right.pl:93
+#: ../vhffs-panel/mailinglist/del_member.pl:91 ../vhffs-panel/svn/delete.pl:81
+#: ../vhffs-panel/svn/prefs.pl:100 ../vhffs-panel/svn/prefs_save.pl:84
+#: ../vhffs-panel/dns/delete.pl:89 ../vhffs-panel/dns/delete.pl:93
+#: ../vhffs-panel/dns/prefs.pl:91 ../vhffs-panel/dns/prefs.pl:108
+#: ../vhffs-panel/pgsql/delete.pl:77 ../vhffs-panel/pgsql/prefs.pl:78
+#: ../vhffs-panel/pgsql/prefs_save.pl:85 ../vhffs-panel/group/delete.pl:70
+#: ../vhffs-panel/group/remove_user_from_group.pl:75
+#: ../vhffs-panel/group/prefs.pl:80 ../vhffs-panel/group/join_group.pl:74
+#: ../vhffs-panel/group/prefs_save.pl:78
+#: ../vhffs-panel/repository/delete.pl:82
+#: ../vhffs-panel/repository/prefs.pl:83
+#: ../vhffs-panel/repository/prefs_save.pl:82
+#: ../vhffs-panel/admin/moderation_submit.pl:78
+#: ../vhffs-panel/admin/moderation.pl:76
+#: ../vhffs-panel/admin/broadcast_submit.pl:78
+#: ../vhffs-panel/admin/broadcast_delete.pl:78
+#: ../vhffs-panel/admin/mail/delete_box.pl:95
+#: ../vhffs-panel/admin/mail/password_box.pl:96
+#: ../vhffs-panel/admin/mail/change_forward.pl:96
+#: ../vhffs-panel/web/delete.pl:83 ../vhffs-panel/web/prefs.pl:86
+#: ../vhffs-panel/web/prefs_save.pl:86 ../vhffs-panel/mysql/delete.pl:80
+#: ../vhffs-panel/mysql/prefs.pl:84 ../vhffs-panel/mysql/prefs_save.pl:87
+#: ../vhffs-panel/cvs/delete.pl:82 ../vhffs-panel/cvs/prefs.pl:80
+#: ../vhffs-panel/cvs/prefs_save.pl:81 ../vhffs-panel/mail/delete.pl:86
+#: ../vhffs-panel/mail/delete_box.pl:92 ../vhffs-panel/mail/add_account.pl:95
+#: ../vhffs-panel/mail/prefs.pl:91 ../vhffs-panel/mail/save_catchall.pl:85
+#: ../vhffs-panel/mail/password_box.pl:95
+#: ../vhffs-panel/mail/add_forward.pl:88
+#: ../vhffs-panel/mail/change_forward.pl:95
+#: ../vhffs-panel/mail/spamvirus.pl:95 ../vhffs-panel/mail/spambox.pl:95
+msgid "You're not allowed to do this (ACL rights)"
+msgstr ""
+
+#: ../vhffs-panel/admin/mail/delete_forward.pl:96
+#: ../vhffs-panel/mail/delete_forward.pl:89
+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
+msgid "You're not allowed to view this object's ACL"
+msgstr ""
+
+#: ../vhffs-panel/panel.pl:89
+msgid "You're not an administrator"
+msgstr ""
+
+#: ../vhffs-robots/src/refused_cvs.pl:79
+msgid "Your CVS repository request"
+msgstr ""
+
+#: ../vhffs-robots/src/refused_cvs.pl:68
+#, perl-format
+msgid "Your CVS request : %s "
+msgstr ""
+
+#: ../vhffs-robots/src/refused_dns.pl:82
+msgid "Your DNS hosting request"
+msgstr ""
+
+#: ../vhffs-robots/src/refused_dns.pl:70
+#, perl-format
+msgid "Your DNS hosting request for the domain : %s "
+msgstr ""
+
+#: ../vhffs-robots/src/refused_repository.pl:83
+msgid "Your Download repository request"
+msgstr ""
+
+#: ../vhffs-robots/src/refused_repository.pl:71
+#, perl-format
+msgid "Your Download repository request : %s "
+msgstr ""
+
+#: ../vhffs-robots/src/refused_groups.pl:78
+msgid "Your Group request"
+msgstr ""
+
+#: ../vhffs-robots/src/refused_groups.pl:67
+#, perl-format
+msgid "Your Group request : %s "
+msgstr ""
+
+#: ../vhffs-robots/src/refused_mail.pl:82
+msgid "Your Mail hosting request"
+msgstr ""
+
+#: ../vhffs-robots/src/refused_mail.pl:70
+#, perl-format
+msgid "Your Mail hosting request for the domain: %s "
+msgstr ""
+
+#: ../vhffs-robots/src/refused_ml.pl:79
+msgid "Your Mailing-list request"
+msgstr ""
+
+#: ../vhffs-robots/src/refused_ml.pl:68
+#, perl-format
+msgid "Your Mailing-list request : %s "
+msgstr ""
+
+#: ../vhffs-robots/src/refused_mysql.pl:53
+msgid "Your MySQL database request"
+msgstr ""
+
+#: ../vhffs-robots/src/refused_mysql.pl:41
+#, perl-format
+msgid "Your MySQL database request : %s "
+msgstr ""
+
+#: ../vhffs-robots/src/refused_postgres.pl:83
+msgid "Your PostgreSQL database request"
+msgstr ""
+
+#: ../vhffs-robots/src/refused_postgres.pl:71
+#, perl-format
+msgid "Your PostgreSQL database request : %s "
+msgstr ""
+
+#: ../vhffs-robots/src/refused_svn.pl:49
+msgid "Your Subversion repository request"
+msgstr ""
+
+#: ../vhffs-robots/src/refused_svn.pl:38
+#, perl-format
+msgid "Your Subversion repository request : %s"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:218
+msgid ""
+"Your email address. It will be used to contact you when needed and as a "
+"destination address if you use our email forwarding service"
+msgstr ""
+
+#: ../vhffs-robots/src/refused_web.pl:78
+msgid "Your hosting request"
+msgstr ""
+
+#: ../vhffs-panel/alert.pl:70
+msgid "Your message"
+msgstr ""
+
+#: ../vhffs-panel/pgsql/prefs_save.pl:89
+msgid "Your password is not correct. Please check it."
+msgstr ""
+
+#: ../vhffs-panel/cvs/create.pl:71
+msgid ""
+"Your repository name is not correct. It must contains at least 3 caracters"
+msgstr ""
+
+#: ../vhffs-panel/cvs/create.pl:69
+msgid ""
+"Your repository name is not correct. It must contains only caracter and "
+"numbers"
+msgstr ""
+
+#: ../vhffs-panel/admin/moderation_submit.pl:101 ../vhffs-irc/modobot.pl:393
+msgid "Your request for a "
+msgstr ""
+
+#: ../vhffs-irc/modobot.pl:404
+#, perl-format
+msgid "Your request on %s"
+msgstr ""
+
+#: ../vhffs-panel/admin/moderation_submit.pl:111
+msgid "Your request on VHFFS platform"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:217
+msgid ""
+"Your username. It must contains only alphanumeric characters in lowercase, "
+"its length must be between 3 and 12 chars"
+msgstr ""
+
+#: ../vhffs-robots/src/refused_web.pl:67
+#, perl-format
+msgid "Your web hosting request for the servername : %s "
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:125
+msgid "Your zipcode is not correct! Please enter a correct zipcode"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:202 ../vhffs-panel/user/prefs.pl:257
+#: ../vhffs-panel/admin/user/edit.pl:106 ../vhffs-panel/admin/user/show.pl:106
+msgid "Zipcode"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:102
+msgid "Zipcode is not correct !"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:347
+msgid "cannot be removed from the list\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:313
+msgid "cannot be removed.\n"
+msgstr ""
+
+#: ../vhffs-robots/src/refused_ml.pl:69 ../vhffs-robots/src/refused_mail.pl:71
+#: ../vhffs-robots/src/refused_postgres.pl:72
+#: ../vhffs-robots/src/refused_cvs.pl:69 ../vhffs-robots/src/refused_web.pl:68
+#: ../vhffs-robots/src/refused_mysql.pl:42
+#: ../vhffs-robots/src/refused_svn.pl:39
+#: ../vhffs-robots/src/refused_groups.pl:68
+#: ../vhffs-robots/src/refused_repository.pl:72
+#: ../vhffs-robots/src/refused_dns.pl:71
+msgid "has been refused by the Moderators team"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:50
+msgid "help\t\t - show this help\n"
+msgstr ""
+
+#: ../vhffs-intl/extra_strings.pl:10
+msgid "help_user_bug"
+msgstr ""
+"<h2>Report bug</h2><p>Use this to contact administration teamto report a bug "
+"or ask for an enhancement.</p><p>You can also use this button to ask for "
+"moredisk space.</p>"
+
+#: ../vhffs-intl/extra_strings.pl:9
+msgid "help_user_help"
+msgstr "<h2>Global help</h2><p>Use this to acces global help and FAQ</p>"
+
+#: ../vhffs-intl/extra_strings.pl:11
+msgid "help_user_logout"
+msgstr "<h2>Logout</h2>Don't forget to logout when you're done"
+
+#: ../vhffs-intl/extra_strings.pl:8
+msgid "help_user_preferences"
+msgstr ""
+"<h2>Preferences</h2><p>Manage your preferences. Select your language and "
+"theme.</p>"
+
+#: ../vhffs-intl/extra_strings.pl:12
+msgid "help_user_projects"
+msgstr "<h2>My projects</h2>"
+"<p>Manage your existing projects and create new ones.</p>"
+
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:362
+#, perl-format
+msgid "in the moderation queue of the list %s"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:53
+msgid "lang [fr|us|es]\t - set listengine language\n"
+msgstr ""
+
+#: ../vhffs-listengine/src/listengine.pl:781
+#, perl-format
+msgid "listengine - list of messages to moderate for %s"
+msgstr ""
+
+#: ../vhffs-listengine/src/listengine.pl:664
+#: ../vhffs-listengine/src/listengine.pl:686
+#: ../vhffs-listengine/src/listengine.pl:697
+msgid "listengine help"
+msgstr ""
+
+#: ../vhffs-listengine/src/listengine.pl:729
+#: ../vhffs-listengine/src/listengine.pl:740
+#: ../vhffs-listengine/src/listengine.pl:756
+#: ../vhffs-listengine/src/listengine.pl:768
+#: ../vhffs-listengine/src/listengine.pl:795
+#: ../vhffs-listengine/src/listengine.pl:806
+msgid "listengine moderation"
+msgstr ""
+
+#: ../vhffs-listengine/src/listengine.pl:714
+msgid "listengine result command"
+msgstr ""
+
+#: ../vhffs-listengine/src/listengine.pl:833
+msgid "listengine: unknown command"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:199 ../vhffs-panel/user/prefs.pl:254
+msgid "mail"
+msgstr ""
+
+#: ../vhffs-panel/svn/prefs.pl:143 ../vhffs-panel/svn/prefs_save.pl:115
+msgid "ml adress here..."
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:56
+msgid "moderate XXXXX\t\t\t - moderate the message with message-id XXXXX\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:59
+msgid "moderate list\t\t\t - give the message list for moderation\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:58
+msgid ""
+"moderate refused XXXXX\t\t\t - refuse the message with message-id XXXXX\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:57
+msgid ""
+"moderate validate XXXXX\t\t\t - moderate the message with message-id XXXXX\n"
+msgstr ""
+
+#: ../vhffs-panel/admin/object/edit.pl:112
+msgid "no date"
+msgstr ""
+
+#: ../vhffs-panel/history.pl:129 ../vhffs-panel/admin/object/edit.pl:218
+msgid "no information about date"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:312
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:346
+#, perl-format
+msgid "present in the moderation queue for the list %s"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:51
+msgid "subscribe\t - subscribe the shipper to the list\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:399
+#, perl-format
+msgid "to %s-request@%s with the following subject : \"moderate %s\" \n"
+msgstr ""
+
+#: ../vhffs-listengine/src/archives/show_msg.pl:99
+#, perl-format
+msgid "unknown message-id t: %s"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:52
+msgid "unsubscribe\t - unsubscribe from this list\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:64
+msgid "user info user@xxxxxxxxxx\t\t - show this user's informations\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:62
+msgid "user right RIGHT user@xxxxxxxxxx\t - change right for this user\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:61
+msgid ""
+"user subscribe user@xxxxxxxxxx\t\t - register the user user@xxxxxxxxxx on "
+"the list\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:60
+msgid ""
+"user unsubscribe user@xxxxxxxxxx\t - delete user user@xxxxxxxxxx from list\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:330
+#, perl-format
+msgid "was removed from the moderation queue from the list %s"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:363
+msgid "was sent on the list.\n"
+msgstr ""

Modified: branches/vhffs-design/vhffs-intl/src/es.po
===================================================================
--- branches/vhffs-design/vhffs-intl/src/es.po	2007-05-17 11:04:33 UTC (rev 610)
+++ branches/vhffs-design/vhffs-intl/src/es.po	2007-05-17 11:10:10 UTC (rev 611)
@@ -3,23 +3,44 @@
 # This file is distributed under the same license as the PACKAGE package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
-#, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: VHFFS 4.0\n"
+"Project-Id-Version: VHFFS 4.1 spanish\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-03-25 19:16+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"POT-Creation-Date: 2007-05-17 10:35+0200\n"
+"PO-Revision-Date: ??????\n"
 "Last-Translator: black coffee <coffeester@xxxxxxxxx>\n"
 "Language-Team: black coffee <coffeester@xxxxxxxxx>\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Type: text/plain; charset=ISO-8859-1\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:68
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:63
 msgid "\t\t\t\t   RIGHT can be subscriber or admin\n"
 msgstr ""
 
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:143
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:159
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:162
+msgid "\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:417
+#, perl-format
+msgid ""
+"  %s-request@%s\n"
+"with the following subject :\n"
+"  \"accept %s\" \n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:420
+#, perl-format
+msgid ""
+"  %s-request@%s\n"
+"with the following subject :\n"
+"  \"refuse %s\" \n"
+msgstr ""
+
 #: ../vhffs-panel/admin/moderation_submit.pl:105 ../vhffs-irc/modobot.pl:397
 #, fuzzy
 msgid ""
@@ -27,40 +48,78 @@
 "Please wait while we are creating your object\n"
 msgstr "Un error lleg durante la creacin del objecto"
 
-#: ../vhffs-panel/public/index.pl:61
+#: ../vhffs-panel/public/index.pl:63
 #, perl-format
 msgid "%s public area"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:269
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:303
 #, perl-format
 msgid "%s's Panel"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:155
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:145
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:164
 #, perl-format
-msgid "%s-request@%s with subject : \"help\"\n"
+msgid "%s-request@%s with subject \"help\"\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:151
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:153
-msgid "------\n"
-msgstr ""
-
 #: ../vhffs-panel/web/create.pl:69
 #, fuzzy
 msgid "<new site>."
 msgstr "mi_nuevo_sitio"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:386
+#: ../vhffs-panel/dns/prefs.pl:324
 #, perl-format
+msgid "@ represents the origin (%s)"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:341
+msgid ""
+"A CNAME, A or AAAA record with the same name already exists for this domain"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:126
+msgid "A Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:121
+msgid "A Record updated"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:394
+#, perl-format
 msgid "A mail to moderate is on the list %s.\n"
 msgstr ""
 
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:412
+#, perl-format
+msgid ""
+"A new person wants to subscribe to the following mailing list:\n"
+"\n"
+"%s\n"
+"\n"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:149
+msgid "A record added"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:138
+msgid "AAAA Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:133
+msgid "AAAA Record updated"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:144
+msgid "AAAA record added"
+msgstr ""
+
 #: ../vhffs-panel/acl/view.pl:148
-#, fuzzy
-msgid "ACL Administration for : "
-msgstr "Administracin PostgreSQL"
+msgid "ACL Administration"
+msgstr ""
 
 #: ../vhffs-panel/acl/view.pl:167
 msgid "ACL level"
@@ -92,7 +151,7 @@
 msgid "Accept"
 msgstr "Aceptar"
 
-#: ../vhffs-panel/logout.pl:60 ../vhffs-panel/auth.pl:60
+#: ../vhffs-panel/logout.pl:60 ../vhffs-api/src/Vhffs/Panel/Commons.pm:57
 msgid "Access to panel"
 msgstr ""
 
@@ -104,7 +163,7 @@
 msgid "Accounts"
 msgstr "Cuentas"
 
-#: ../vhffs-panel/user/prefs.pl:175
+#: ../vhffs-panel/user/prefs.pl:346
 #, perl-format
 msgid "Activate %s@%s email"
 msgstr ""
@@ -116,34 +175,43 @@
 #: ../vhffs-panel/admin/object/edit.pl:119
 #: ../vhffs-panel/admin/web/edit.pl:132 ../vhffs-panel/admin/mysql/edit.pl:120
 #: ../vhffs-panel/admin/cvs/edit.pl:128 ../vhffs-panel/admin/mail/edit.pl:160
+#: ../vhffs-intl/extra_strings.pl:20
 msgid "Activated"
 msgstr "Activado"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:131 ../vhffs-panel/dns/prefs.pl:143
+#: ../vhffs-panel/mailinglist/prefs.pl:156 ../vhffs-panel/dns/prefs.pl:277
 #, fuzzy
 msgid "Add !"
 msgstr "Aadir"
 
-#: ../vhffs-panel/dns/prefs.pl:156
+#: ../vhffs-panel/dns/prefs.pl:290
 #, fuzzy
 msgid "Add a CNAME field to your domain"
 msgstr "Aadir un reenviar hacia esto dominio"
 
-#: ../vhffs-panel/dns/prefs.pl:148
+#: ../vhffs-panel/dns/prefs.pl:282
 #, fuzzy
 msgid "Add a MX field to your domain"
 msgstr "Aadir un reenviar hacia esto dominio"
 
-#: ../vhffs-panel/dns/prefs.pl:164
+#: ../vhffs-panel/dns/prefs.pl:298
 #, fuzzy
 msgid "Add a NS field to your domain"
 msgstr "Aadir un reenviar hacia esto dominio"
 
+#: ../vhffs-panel/dns/prefs.pl:304
+msgid "Add a SRV record to your domain"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:316
+msgid "Add a TXT record"
+msgstr ""
+
 #: ../vhffs-panel/mail/prefs.pl:117 ../vhffs-panel/mail/prefs.pl:127
 msgid "Add a forward on this domain"
 msgstr "Aadir un reenviar a esto dominio"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:129
+#: ../vhffs-panel/mailinglist/prefs.pl:154
 msgid "Add a member"
 msgstr "Aadir un miembro"
 
@@ -156,11 +224,15 @@
 msgid "Add a user in this group"
 msgstr "Aadir un usuario en esto grupo"
 
-#: ../vhffs-panel/dns/prefs.pl:118
+#: ../vhffs-panel/dns/prefs.pl:251
 #, fuzzy
 msgid "Add an A record"
 msgstr "Aadir un cuenta"
 
+#: ../vhffs-panel/dns/prefs.pl:252
+msgid "Add an AAAA record"
+msgstr ""
+
 #: ../vhffs-panel/mail/prefs.pl:108
 msgid "Add an account"
 msgstr "Aadir un cuenta"
@@ -174,7 +246,7 @@
 msgid "Add this user to this group"
 msgstr "Aadir esto usuario en el grupo"
 
-#: ../vhffs-panel/subscribe.pl:205 ../vhffs-panel/user/prefs.pl:84
+#: ../vhffs-panel/subscribe.pl:205 ../vhffs-panel/user/prefs.pl:259
 #: ../vhffs-panel/admin/user/edit.pl:104 ../vhffs-panel/admin/user/show.pl:104
 msgid "Address"
 msgstr "Direccin"
@@ -184,27 +256,26 @@
 msgid "Address (Servername)"
 msgstr "Direccin (Nombre del servidor)"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:181
+#: ../vhffs-panel/user/prefs.pl:108
+msgid "Address is not correct !"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:182
 #: ../vhffs-panel/admin/user/edit.pl:101 ../vhffs-panel/admin/user/edit.pl:131
 #: ../vhffs-panel/admin/user/show.pl:101 ../vhffs-panel/admin/user/show.pl:136
 msgid "Admin"
 msgstr "Admin"
 
-#: ../vhffs-panel/cvs/prefs.pl:99
+#: ../vhffs-panel/cvs/prefs.pl:89
 msgid "Admin CVS Repository"
 msgstr "Admin Repositorio CVS"
 
-#: ../vhffs-panel/dns/prefs.pl:110
-#, fuzzy
-msgid "Admin DNS"
-msgstr "Admin"
-
 #: ../vhffs-panel/repository/prefs.pl:96
 #, fuzzy
 msgid "Admin Download repository"
 msgstr "Admin Repositorio CVS"
 
-#: ../vhffs-panel/dns/prefs.pl:123 ../vhffs-panel/web/prefs.pl:122
+#: ../vhffs-panel/dns/prefs.pl:257 ../vhffs-panel/web/prefs.pl:122
 #: ../vhffs-panel/mail/prefs.pl:137
 #, fuzzy
 msgid "Admin Rights on this object (ACL)"
@@ -214,12 +285,11 @@
 msgid "Admin Subversion Repository"
 msgstr "Admin repositorio Subversion"
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:73
-#, fuzzy
-msgid "Admin account : "
-msgstr "Cuenta Admin: "
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:72
+msgid "Admin account"
+msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:107
+#: ../vhffs-panel/mailinglist/prefs.pl:105
 msgid "Administration for list "
 msgstr ""
 
@@ -228,9 +298,8 @@
 msgid "Administrator Menu"
 msgstr "Administracin PostgreSQL"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:122
-#, perl-format
-msgid "Adress %s is already a subscriber for this list.\n"
+#: ../vhffs-panel/mailinglist/prefs.pl:121
+msgid "Admins only"
 msgstr ""
 
 #: ../vhffs-panel/web/create.pl:74
@@ -251,44 +320,52 @@
 msgid "Alert state"
 msgstr "Estadsticas usuarios"
 
-#: ../vhffs-panel/public/allwebsites.pl:71
-#: ../vhffs-panel/public/allgroups.pl:67
+#: ../vhffs-panel/public/allwebsites.pl:73
+#: ../vhffs-panel/public/allgroups.pl:69
 msgid "All"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:114
-msgid "All A TYPE for you domain name"
+#: ../vhffs-panel/dns/prefs.pl:245
+msgid "All A TYPE for your domain name"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:155
-msgid "All CNAME TYPE for your domain name"
+#: ../vhffs-panel/dns/prefs.pl:246
+msgid "All AAAA TYPE for your domain name"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:116
-msgid "All CNAME for you domain name"
+#: ../vhffs-panel/dns/prefs.pl:289
+msgid "All CNAME TYPE for your domain name"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:115
-msgid "All MX TYPE for you domain name"
+#: ../vhffs-panel/dns/prefs.pl:248
+msgid "All CNAME for your domain name"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:147
+#: ../vhffs-panel/dns/prefs.pl:247 ../vhffs-panel/dns/prefs.pl:281
 msgid "All MX TYPE for your domain name"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:163
+#: ../vhffs-panel/dns/prefs.pl:297
 msgid "All NS TYPE for your domain name"
 msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:303
+msgid "All SRV records for your domain name"
+msgstr ""
+
 #: ../vhffs-panel/admin/svn/list.pl:73
 msgid "All Subversion repositories lists"
 msgstr "Todas las listas de repositorios Subversion"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:49
+#: ../vhffs-panel/dns/prefs.pl:317
+msgid "All TXT records for your domain name"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:45
 msgid "All commands can be sent as mail subject.\n"
 msgstr ""
 
-#: ../vhffs-panel/public/allgroups.pl:65
+#: ../vhffs-panel/public/allgroups.pl:67
 #, fuzzy, perl-format
 msgid "All groups on %s"
 msgstr "Todas la listas de grupos"
@@ -297,10 +374,9 @@
 msgid "All mailings sent to hosted"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:51
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:47
 msgid ""
-"All mails with commands must be sent on \n"
-"                     YOURLIST-request@xxxxxxxxxx list.\n"
+"All mails with commands must be sent on YOURLIST-request@xxxxxxxxxx list.\n"
 msgstr ""
 
 #: ../vhffs-panel/admin/object/list.pl:84
@@ -312,8 +388,8 @@
 msgid "All users in this group"
 msgstr "Todos los usuarios en esto grupo"
 
-#: ../vhffs-panel/public/allwebsites.pl:69
-#: ../vhffs-panel/public/websearch.pl:74
+#: ../vhffs-panel/public/allwebsites.pl:71
+#: ../vhffs-panel/public/websearch.pl:76
 #, perl-format
 msgid "All websites on %s"
 msgstr ""
@@ -323,27 +399,44 @@
 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
+msgid "An MX record with the same name already exists for this domain"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:316
+msgid "An NS record with the same name already exists for this domain"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:189
+#, perl-format
+msgid ""
+"An error occured during your subscription to the following list:\n"
+"\n"
+"%s\n"
+"\n"
+msgstr ""
+
 #: ../vhffs-panel/mailinglist/submit.pl:114
 #, fuzzy
 msgid "An error occured while adding an ACL for the group"
 msgstr "Un error lleg durante el aadido ACL en esto grupo"
 
-#: ../vhffs-panel/user/prefs_save.pl:184
+#: ../vhffs-panel/user/prefs.pl:169
 #, fuzzy
 msgid "An error occured while adding the box"
 msgstr "Un error lleg durante el aadido del buzn"
 
-#: ../vhffs-panel/user/prefs_save.pl:188
+#: ../vhffs-panel/user/prefs.pl:171
 #, fuzzy
 msgid "An error occured while adding the box (anti-spam adding)"
 msgstr "Un error lleg durante el aadido del buzn"
 
-#: ../vhffs-panel/user/prefs_save.pl:192
+#: ../vhffs-panel/user/prefs.pl:173
 #, fuzzy
 msgid "An error occured while adding the box (anti-virus adding)"
 msgstr "Un error lleg durante el aadido del buzn"
 
-#: ../vhffs-panel/user/prefs_save.pl:260
+#: ../vhffs-panel/user/prefs.pl:213
 #, fuzzy
 msgid "An error occured while adding the forwarding"
 msgstr "Un error lleg durante el aadido del reenviar"
@@ -393,7 +486,7 @@
 msgid "An error occured while creating the object %s %s"
 msgstr "Un error lleg durante la creacin del objecto %s %s"
 
-#: ../vhffs-panel/dns/dns_submit.pl:78
+#: ../vhffs-panel/dns/create.pl:50
 #, fuzzy
 msgid ""
 "An error occured while creating the object. The domain is not correct or "
@@ -403,7 +496,7 @@
 "existe en la basede datos Vhffs."
 
 #: ../vhffs-panel/repository/repository_submit.pl:93
-#: ../vhffs-panel/cvs/cvs_submit.pl:92
+#: ../vhffs-panel/cvs/create.pl:81
 #, fuzzy
 msgid "An error occured while creating the object.It probably already exists"
 msgstr "Un error lleg durante la creacin del objecto %s %s"
@@ -443,7 +536,7 @@
 msgid "An error occured while setting up the ACL"
 msgstr "Un error lleg durante el aadido ACL"
 
-#: ../vhffs-panel/user/prefs_save.pl:272
+#: ../vhffs-panel/user/prefs.pl:220
 #, fuzzy
 msgid "An error occured while the forwarding"
 msgstr "Un error lleg durante el aadido del reenviar"
@@ -458,7 +551,7 @@
 msgid "An error occured while updating"
 msgstr "Un error lleg durante la actualisacin usuario"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:273
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:280
 #, perl-format
 msgid ""
 "An error occured while updating language for the following address: %s.\n"
@@ -474,7 +567,7 @@
 msgid "An error occured while updating the Download repository"
 msgstr "Un error lleg durante la actualisacin del objecto"
 
-#: ../vhffs-panel/svn/prefs_save.pl:107
+#: ../vhffs-panel/svn/prefs_save.pl:107 ../vhffs-panel/svn/prefs_save.pl:119
 #, fuzzy
 msgid "An error occured while updating the Subversion repository"
 msgstr "Un error lleg durante la actualisacin usuario"
@@ -494,17 +587,12 @@
 msgid "An error occured while updating the project"
 msgstr "Un error lleg durante la actualisacin proyecto"
 
-#: ../vhffs-panel/user/prefs_save.pl:128
+#: ../vhffs-panel/user/prefs.pl:140
 #, fuzzy
 msgid "An error occured while updating the user account"
 msgstr "Un error lleg durante la actualisacin usuario"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:181
-#, perl-format
-msgid "An error occurs while you subscribed to the list  %s \n"
-msgstr ""
-
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:415
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:445
 msgid "April"
 msgstr ""
 
@@ -537,7 +625,7 @@
 msgid "Are you SURE you want DELETE this  subversion repository ?"
 msgstr "Es SEGURO(A) que quiere DESTRUIR este Repositorio CVS?"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:202 ../vhffs-panel/mail/prefs.pl:132
+#: ../vhffs-panel/mailinglist/prefs.pl:203 ../vhffs-panel/mail/prefs.pl:132
 #, fuzzy
 msgid "Are you SURE you want DELETE this Mail Area ?"
 msgstr "Es SEGURO(A) que quiere DESTRUIR esta zona mail?"
@@ -557,12 +645,12 @@
 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:108
+#: ../vhffs-panel/cvs/prefs.pl:98
 #, 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:131
+#: ../vhffs-panel/dns/prefs.pl:265
 #, fuzzy
 msgid "Are you SURE you want DELETE this domain ?"
 msgstr "Es SEGURO(A) que quiere DESTRUIR esta zona mail?"
@@ -577,12 +665,12 @@
 msgid "Are you SURE you want DELETE this project ?"
 msgstr "Es SEGURO(A) que quiere DESTRUIR este proyecto?"
 
-#: ../vhffs-panel/user/prefs.pl:103
+#: ../vhffs-panel/user/prefs.pl:278
 #, fuzzy
 msgid "Are you SURE you want DELETE this user?"
 msgstr "Es SEGURO(A) que quiere DESTRUIR esto usuario?"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:431
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:461
 msgid "August"
 msgstr ""
 
@@ -645,7 +733,7 @@
 "new password for this database."
 msgstr ""
 
-#: ../vhffs-panel/dns/create.pl:36
+#: ../vhffs-panel/dns/create.pl:63
 msgid ""
 "Be careful ! You must give the reason why you want to host this domain on "
 "our servers."
@@ -711,7 +799,7 @@
 msgid "CGI ERROR ! %s"
 msgstr "Error CGI! %s"
 
-#: ../vhffs-panel/public/user.pl:66 ../vhffs-panel/public/group.pl:71
+#: ../vhffs-panel/public/user.pl:68 ../vhffs-panel/public/group.pl:72
 #, fuzzy
 msgid "CGI ERROR!"
 msgstr "Error CGI!"
@@ -738,12 +826,12 @@
 #: ../vhffs-panel/admin/group/edit_submit.pl:95
 #: ../vhffs-panel/admin/broadcast_view.pl:78 ../vhffs-panel/mysql/delete.pl:76
 #: ../vhffs-panel/mysql/prefs.pl:71 ../vhffs-panel/mysql/submit.pl:75
-#: ../vhffs-panel/mysql/prefs_save.pl:79 ../vhffs-panel/cvs/prefs.pl:73
+#: ../vhffs-panel/mysql/prefs_save.pl:79 ../vhffs-panel/cvs/prefs.pl:72
 #, fuzzy
 msgid "CGI Error !"
 msgstr "Error CGI!"
 
-#: ../vhffs-panel/svn/prefs_save.pl:74 ../vhffs-panel/repository/delete.pl:74
+#: ../vhffs-panel/svn/prefs_save.pl:76 ../vhffs-panel/repository/delete.pl:74
 #: ../vhffs-panel/repository/prefs_save.pl:74 ../vhffs-panel/cvs/delete.pl:74
 #: ../vhffs-panel/cvs/prefs_save.pl:74
 #, fuzzy, perl-format
@@ -753,17 +841,11 @@
 #: ../vhffs-panel/mailinglist/delete.pl:78
 #: ../vhffs-panel/mailinglist/save_sig.pl:77
 #: ../vhffs-panel/mailinglist/add_sub.pl:79
-#: ../vhffs-panel/mailinglist/save_options.pl:84
+#: ../vhffs-panel/mailinglist/save_options.pl:81
 #: ../vhffs-panel/mailinglist/change_right.pl:81
 #: ../vhffs-panel/mailinglist/change_right.pl:101
-#: ../vhffs-panel/mailinglist/del_member.pl:79
-#: ../vhffs-panel/user/prefs_save.pl:91 ../vhffs-panel/dns/delete.pl:79
-#: ../vhffs-panel/dns/add_mx.pl:80 ../vhffs-panel/dns/prefs.pl:78
-#: ../vhffs-panel/dns/modif_a.pl:80 ../vhffs-panel/dns/add_ns.pl:79
-#: ../vhffs-panel/dns/add_cname.pl:80 ../vhffs-panel/dns/delete_a.pl:50
-#: ../vhffs-panel/dns/delete_ns.pl:78 ../vhffs-panel/dns/delete_mx.pl:79
-#: ../vhffs-panel/dns/modif_cname.pl:81 ../vhffs-panel/dns/modif_mx.pl:81
-#: ../vhffs-panel/dns/add_a.pl:84 ../vhffs-panel/dns/delete_cname.pl:79
+#: ../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/pgsql/pgsql_submit.pl:73 ../vhffs-panel/web/web_submit.pl:72
 msgid "CGI Error!"
 msgstr "Error CGI!"
@@ -778,15 +860,26 @@
 msgid "CGI problem"
 msgstr "Error CGI"
 
-#: ../vhffs-panel/dns/modif_cname.pl:105
-#, fuzzy
-msgid "CNAME field successfully updated"
-msgstr "CNAME bien puesto al da"
+#: ../vhffs-panel/dns/prefs.pl:188
+msgid "CNAME Record added"
+msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:183
+msgid "CNAME Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:179
+msgid "CNAME Record updated"
+msgstr ""
+
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:145
 msgid "CVS Admin"
 msgstr "Admin CVS"
 
+#: ../vhffs-intl/extra_strings.pl:36
+msgid "CVS Repository"
+msgstr ""
+
 #: ../vhffs-panel/admin/cvs/list.pl:89
 #, fuzzy
 msgid "CVS Root"
@@ -796,7 +889,7 @@
 msgid "CVS Search"
 msgstr "Bsqueda CVS"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:425
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:485
 #, fuzzy
 msgid "CVS repositories for this group"
 msgstr "Todas las listas de repositorios CVS"
@@ -811,7 +904,7 @@
 msgid "CVS repository awaiting validation"
 msgstr "Repositorio Subversion por validar"
 
-#: ../vhffs-panel/public/group.pl:146
+#: ../vhffs-panel/public/group.pl:148
 #, fuzzy
 msgid "CVS repository for this group"
 msgstr "Aadir un usuario en esto grupo"
@@ -876,12 +969,6 @@
 msgid "Can't modify object..."
 msgstr "Es imposible modificar el objecto"
 
-#: ../vhffs-panel/dns/add_mx.pl:98 ../vhffs-panel/dns/add_ns.pl:96
-#: ../vhffs-panel/dns/add_cname.pl:100 ../vhffs-panel/dns/add_a.pl:108
-#: ../vhffs-panel/dns/add_a.pl:124
-msgid "Cannot add this ressource to this domain"
-msgstr "Es imposible aadir esto recurso en esto dominio"
-
 #: ../vhffs-panel/group/join_group.pl:82
 #, fuzzy
 msgid "Cannot add this user in this group"
@@ -906,12 +993,6 @@
 msgid "Cannot create user, the username you entered already exists"
 msgstr "No se ha podido crear el usuario, este identificador ya existe."
 
-#: ../vhffs-panel/dns/delete_a.pl:70 ../vhffs-panel/dns/delete_ns.pl:98
-#: ../vhffs-panel/dns/delete_mx.pl:99 ../vhffs-panel/dns/delete_cname.pl:97
-#, fuzzy
-msgid "Cannot delete it."
-msgstr "No se puede destruire"
-
 #: ../vhffs-panel/admin/object/delete_avatar.pl:95
 #, fuzzy
 msgid "Cannot delete this avatar"
@@ -957,20 +1038,14 @@
 #: ../vhffs-panel/mailinglist/delete.pl:82
 #: ../vhffs-panel/mailinglist/save_sig.pl:81
 #: ../vhffs-panel/mailinglist/add_sub.pl:83
-#: ../vhffs-panel/mailinglist/prefs.pl:86
-#: ../vhffs-panel/mailinglist/save_options.pl:88
+#: ../vhffs-panel/mailinglist/prefs.pl:84
+#: ../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/add_mx.pl:83
-#: ../vhffs-panel/dns/prefs.pl:85 ../vhffs-panel/dns/modif_a.pl:83
-#: ../vhffs-panel/dns/add_ns.pl:81 ../vhffs-panel/dns/add_cname.pl:85
-#: ../vhffs-panel/dns/delete_a.pl:55 ../vhffs-panel/dns/delete_ns.pl:83
-#: ../vhffs-panel/dns/delete_mx.pl:84 ../vhffs-panel/dns/modif_cname.pl:86
-#: ../vhffs-panel/dns/modif_mx.pl:86 ../vhffs-panel/dns/add_a.pl:88
-#: ../vhffs-panel/dns/delete_cname.pl:82 ../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:79
-#: ../vhffs-panel/mail/add_account.pl:75
+#: ../vhffs-panel/dns/delete.pl:84 ../vhffs-panel/dns/prefs.pl:84
+#: ../vhffs-panel/pgsql/prefs.pl:71 ../vhffs-panel/repository/prefs.pl:76
+#: ../vhffs-panel/web/prefs.pl:72 ../vhffs-panel/mysql/prefs.pl:77
+#: ../vhffs-panel/cvs/prefs.pl:76 ../vhffs-panel/mail/add_account.pl:75
 #: ../vhffs-panel/mail/save_catchall.pl:74
 #: ../vhffs-panel/mail/add_forward.pl:73
 msgid "Cannot get informations on this object"
@@ -985,10 +1060,6 @@
 msgid "Cannot get statistics"
 msgstr "Es imposible obtener estadsticas"
 
-#: ../vhffs-panel/dns/modif_a.pl:102
-msgid "Cannot modify this ressource on this domain"
-msgstr "Es imposible modificar esto recurso en esto dominio"
-
 #: ../vhffs-panel/group/remove_user_from_group.pl:83
 #, fuzzy
 msgid "Cannot remove the owner from a group"
@@ -1005,7 +1076,7 @@
 msgid "Cannot retrieve informations about this Download repository"
 msgstr "Es imposible recuperar informacines sobre esto repositorio Subversion"
 
-#: ../vhffs-panel/svn/prefs_save.pl:78
+#: ../vhffs-panel/svn/prefs_save.pl:80
 #, fuzzy
 msgid "Cannot retrieve informations about this Subversion repository"
 msgstr "Es imposible recuperar informacines sobre esto repositorio Subversion"
@@ -1016,7 +1087,7 @@
 msgstr "Es imposible recuperar informacines sobre esto repositorio Subversion"
 
 #: ../vhffs-panel/mailinglist/save_sig.pl:95
-#: ../vhffs-panel/mailinglist/save_options.pl:150
+#: ../vhffs-panel/mailinglist/save_options.pl:124
 msgid "Cannot save"
 msgstr "Es imposible salvar"
 
@@ -1024,14 +1095,6 @@
 msgid "Cannot send message, CGI error..."
 msgstr "Es imposible enviar el mensaje, error CGI"
 
-#: ../vhffs-panel/dns/modif_cname.pl:101
-msgid "Cannot update CNAME on this domain"
-msgstr "Es imposible poner CNAME al da sobre esto dominio"
-
-#: ../vhffs-panel/dns/modif_mx.pl:101
-msgid "Cannot update MX on this domain"
-msgstr "Es imposible poner MX al da sobre esto dominio"
-
 #: ../vhffs-panel/admin/mail/edit.pl:98 ../vhffs-panel/admin/mail/show.pl:98
 msgid "Catchall"
 msgstr "Catchall"
@@ -1064,10 +1127,6 @@
 msgid "Change Password"
 msgstr "Cambiar el cdigo de acceso"
 
-#: ../vhffs-panel/user/prefs_save.pl:234
-msgid "Change anti-virus status for your account\n"
-msgstr ""
-
 #: ../vhffs-panel/mail/prefs.pl:125
 #, fuzzy
 msgid "Change catchall forward"
@@ -1083,12 +1142,12 @@
 msgid "Change language"
 msgstr "Lenguaje"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:167
+#: ../vhffs-panel/mailinglist/prefs.pl:168
 #, fuzzy
 msgid "Change rights\n"
 msgstr "cambiar los derechos"
 
-#: ../vhffs-panel/user/prefs_save.pl:216
+#: ../vhffs-panel/user/prefs.pl:188
 msgid "Change spam protection status for your account\n"
 msgstr ""
 
@@ -1107,6 +1166,10 @@
 msgid "Change user-id"
 msgstr "Cambiar el cdigo de acceso"
 
+#: ../vhffs-panel/user/prefs.pl:199
+msgid "Changed anti-virus status for your account\n"
+msgstr ""
+
 #: ../vhffs-robots/src/refused_ml.pl:77 ../vhffs-robots/src/refused_mail.pl:79
 #: ../vhffs-robots/src/refused_postgres.pl:80
 #: ../vhffs-robots/src/refused_cvs.pl:76 ../vhffs-robots/src/refused_web.pl:75
@@ -1125,12 +1188,20 @@
 "The Moderator and Admin team\n"
 msgstr "El moderador y la equipa admin"
 
-#: ../vhffs-panel/subscribe.pl:203 ../vhffs-panel/user/prefs.pl:83
+#: ../vhffs-panel/subscribe.pl:203 ../vhffs-panel/user/prefs.pl:258
 #: ../vhffs-panel/admin/user/edit.pl:105 ../vhffs-panel/admin/user/show.pl:105
 msgid "City"
 msgstr "Ciudad"
 
-#: ../vhffs-panel/subscribe.pl:212
+#: ../vhffs-panel/user/prefs.pl:96
+msgid "City is not correct !"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:114
+msgid "Closed"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:213
 #, fuzzy
 msgid "Code confirmation"
 msgstr "Configuracin del proyecto"
@@ -1140,20 +1211,28 @@
 msgid "Codes do not match"
 msgstr "Los cdigos de acceso no corresponden"
 
-#: ../vhffs-panel/user/prefs.pl:87
+#: ../vhffs-panel/user/prefs.pl:262
 #, fuzzy
 msgid "Confirm Password"
 msgstr "Cdigo de acceso"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:230
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:236
 msgid "Confirmation code was wrong.\n"
 msgstr ""
 
-#: ../vhffs-panel/subscribe.pl:204 ../vhffs-panel/user/prefs.pl:85
+#: ../vhffs-panel/subscribe.pl:215
+msgid "Confirmation code, contact administrator team if you can't read it"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:204 ../vhffs-panel/user/prefs.pl:260
 #: ../vhffs-panel/admin/user/edit.pl:107 ../vhffs-panel/admin/user/show.pl:107
 msgid "Country"
 msgstr "Pas"
 
+#: ../vhffs-panel/user/prefs.pl:105
+msgid "Country is not correct !"
+msgstr ""
+
 #: ../vhffs-panel/admin/web/edit.pl:96 ../vhffs-panel/admin/web/show.pl:95
 msgid "Crawl"
 msgstr "Crawl"
@@ -1171,13 +1250,13 @@
 msgid "Create"
 msgstr "Crear"
 
-#: ../vhffs-panel/cvs/create.pl:64
+#: ../vhffs-panel/cvs/create.pl:89
 msgid "Create a CVS Repository"
 msgstr "Crear un Repositorio CVS"
 
-#: ../vhffs-panel/dns/create.pl:34
-msgid "Create a DNS "
-msgstr "Crear un DNS"
+#: ../vhffs-panel/dns/create.pl:58
+msgid "Create a DNS"
+msgstr ""
 
 #: ../vhffs-panel/repository/create.pl:64
 #, fuzzy
@@ -1220,6 +1299,7 @@
 #: ../vhffs-panel/admin/object/edit.pl:120
 #: ../vhffs-panel/admin/web/edit.pl:133 ../vhffs-panel/admin/mysql/edit.pl:121
 #: ../vhffs-panel/admin/cvs/edit.pl:129 ../vhffs-panel/admin/mail/edit.pl:161
+#: ../vhffs-intl/extra_strings.pl:19
 msgid "Created"
 msgstr "Creado"
 
@@ -1234,11 +1314,15 @@
 msgid "Creating error"
 msgstr "Fecha de creacin"
 
-#: ../vhffs-panel/user/prefs.pl:113 ../vhffs-panel/group/prefs.pl:111
+#: ../vhffs-intl/extra_strings.pl:18
+msgid "Creation error"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:288 ../vhffs-panel/group/prefs.pl:111
 msgid "Current avatar"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:612
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:682
 #, perl-format
 msgid "Current group: %s"
 msgstr ""
@@ -1262,12 +1346,17 @@
 msgid "DNS"
 msgstr "DNS"
 
+#: ../vhffs-panel/dns/prefs.pl:240
+#, perl-format
+msgid "DNS Administration - %s"
+msgstr ""
+
 #: ../vhffs-panel/admin/moderation.pl:175
 #, fuzzy
 msgid "DNS awaiting validation"
 msgstr "(Validacin en espera)"
 
-#: ../vhffs-panel/dns/create.pl:37
+#: ../vhffs-panel/dns/create.pl:64
 #, fuzzy
 msgid "DNS servers:"
 msgstr "Servidores DNS:"
@@ -1285,6 +1374,23 @@
 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-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
+msgid "Database error"
+msgstr ""
+
 #: ../vhffs-panel/mysql/submit.pl:83
 #, fuzzy
 msgid "Database name must contain at least 3 caracters"
@@ -1322,22 +1428,23 @@
 msgid "Date of creation"
 msgstr "Creacin en espera"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:447
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:477
 msgid "December"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:205 ../vhffs-panel/svn/prefs.pl:127
-#: ../vhffs-panel/user/prefs.pl:106 ../vhffs-panel/dns/prefs.pl:134
-#: ../vhffs-panel/dns/prefs.pl:184 ../vhffs-panel/dns/prefs.pl:205
-#: ../vhffs-panel/dns/prefs.pl:225 ../vhffs-panel/dns/prefs.pl:246
-#: ../vhffs-panel/pgsql/prefs.pl:112 ../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:111
-#: ../vhffs-panel/mail/prefs.pl:135
+#: ../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/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
 msgid "Delete"
 msgstr "Destruir"
 
-#: ../vhffs-panel/user/prefs.pl:101
+#: ../vhffs-panel/user/prefs.pl:276
 #, fuzzy
 msgid "Delete YOUR user"
 msgstr "Destruir SU cuenta"
@@ -1347,7 +1454,7 @@
 msgid "Delete avatar for this object"
 msgstr "Destruir este proyecto"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:166
+#: ../vhffs-panel/mailinglist/prefs.pl:167
 msgid "Delete from list"
 msgstr "Destruir de la lista"
 
@@ -1359,7 +1466,7 @@
 msgid "Delete this database"
 msgstr "Destruir esta base de datos"
 
-#: ../vhffs-panel/dns/prefs.pl:129
+#: ../vhffs-panel/dns/prefs.pl:263
 msgid "Delete this domain name from the VHFFS platform"
 msgstr ""
 
@@ -1367,7 +1474,7 @@
 msgid "Delete this forward"
 msgstr "Destruir esto reenviar"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:200
+#: ../vhffs-panel/mailinglist/prefs.pl:201
 msgid "Delete this list"
 msgstr "Destruir esta lista"
 
@@ -1385,7 +1492,7 @@
 msgstr "Destruir esto dominio mail"
 
 #: ../vhffs-panel/group/prefs.pl:97 ../vhffs-panel/repository/prefs.pl:102
-#: ../vhffs-panel/cvs/prefs.pl:106
+#: ../vhffs-panel/cvs/prefs.pl:96
 msgid "Delete this project"
 msgstr "Destruir este proyecto"
 
@@ -1397,7 +1504,7 @@
 msgid "Delete this web area"
 msgstr "Destruir esta zona web"
 
-#: ../vhffs-panel/svn/create.pl:77 ../vhffs-panel/dns/create.pl:42
+#: ../vhffs-panel/svn/create.pl:77 ../vhffs-panel/dns/create.pl:69
 #: ../vhffs-panel/pgsql/create.pl:74 ../vhffs-panel/group/create.pl:66
 #: ../vhffs-panel/repository/create.pl:72
 #: ../vhffs-panel/admin/pgsql/edit.pl:101
@@ -1410,9 +1517,9 @@
 #: ../vhffs-panel/admin/mysql/show.pl:98 ../vhffs-panel/admin/cvs/edit.pl:100
 #: ../vhffs-panel/admin/cvs/show.pl:99 ../vhffs-panel/admin/mail/edit.pl:102
 #: ../vhffs-panel/admin/mail/show.pl:102
-#: ../vhffs-panel/public/lastgroups.pl:75 ../vhffs-panel/public/group.pl:89
-#: ../vhffs-panel/public/allgroups.pl:82 ../vhffs-panel/mysql/create.pl:72
-#: ../vhffs-panel/cvs/create.pl:71
+#: ../vhffs-panel/public/lastgroups.pl:77 ../vhffs-panel/public/group.pl:91
+#: ../vhffs-panel/public/allgroups.pl:84 ../vhffs-panel/mysql/create.pl:72
+#: ../vhffs-panel/cvs/create.pl:97
 msgid "Description"
 msgstr "Descripcin"
 
@@ -1420,7 +1527,7 @@
 msgid "Description of your webarea"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:158
+#: ../vhffs-panel/dns/prefs.pl:292
 #, fuzzy
 msgid "Destination"
 msgstr "Descripcin"
@@ -1448,12 +1555,12 @@
 msgid "Domain"
 msgstr "Dominio"
 
-#: ../vhffs-panel/dns/create.pl:35 ../vhffs-panel/admin/dns/list.pl:87
-#: ../vhffs-panel/admin/mail/list.pl:87
+#: ../vhffs-panel/dns/create.pl:60 ../vhffs-panel/admin/dns/list.pl:87
+#: ../vhffs-panel/admin/mail/list.pl:87 ../vhffs-intl/extra_strings.pl:38
 msgid "Domain Name"
 msgstr "Nombre de Dominio"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:555
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:615
 #, fuzzy
 msgid "Domains for this group"
 msgstr "Modificar esto grupo"
@@ -1462,7 +1569,11 @@
 msgid "Don't use Crawl"
 msgstr "No utilizar crawl"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:530
+#: ../vhffs-intl/extra_strings.pl:33
+msgid "Download Repository"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:590
 msgid "Download repositories for this group"
 msgstr ""
 
@@ -1528,11 +1639,19 @@
 msgid "Edit this object"
 msgstr "Editar esto objecto"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:130
+#: ../vhffs-panel/user/prefs.pl:135
+msgid "Email address changed"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:155
 #, fuzzy
 msgid "Email adress"
 msgstr "Direccin Mail"
 
+#: ../vhffs-panel/user/prefs.pl:99
+msgid "Email is not correct !"
+msgstr ""
+
 #: ../vhffs-panel/mail/prefs.pl:169
 msgid "Enable anti-spam"
 msgstr ""
@@ -1551,7 +1670,7 @@
 msgid "Error !"
 msgstr "Error CGI!"
 
-#: ../vhffs-panel/user/prefs_save.pl:180
+#: ../vhffs-panel/user/prefs.pl:167
 msgid ""
 "Error ! You MUST provide a password in your account when you create your "
 "popable account"
@@ -1562,11 +1681,11 @@
 msgid "Error creating group (maybe a group with the same name already exists)"
 msgstr "No se ha podido crear el usuario, este identificador ya existe."
 
-#: ../vhffs-panel/user/prefs_save.pl:221
+#: ../vhffs-panel/user/prefs.pl:190
 msgid "Error for spam protection\n"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs_save.pl:239
+#: ../vhffs-panel/user/prefs.pl:201
 msgid "Error for virus protection\n"
 msgstr ""
 
@@ -1609,7 +1728,7 @@
 msgid "Error. This group doesn't exists"
 msgstr "El grupo no existe"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:227
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:272
 #, fuzzy
 msgid "Expired session ! Please login again"
 msgstr "Sesin vencida, por favor, logue de nuevo "
@@ -1618,7 +1737,7 @@
 msgid "Failed to modify note"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:407
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:437
 msgid "February"
 msgstr ""
 
@@ -1630,12 +1749,16 @@
 msgid "Filetype not supported"
 msgstr ""
 
-#: ../vhffs-panel/subscribe.pl:200 ../vhffs-panel/user/prefs.pl:80
+#: ../vhffs-panel/subscribe.pl:200 ../vhffs-panel/user/prefs.pl:255
 #: ../vhffs-panel/admin/user/edit.pl:96 ../vhffs-panel/admin/user/show.pl:97
-#: ../vhffs-panel/public/user.pl:83 ../vhffs-panel/public/lastusers.pl:78
+#: ../vhffs-panel/public/user.pl:85 ../vhffs-panel/public/lastusers.pl:80
 msgid "Firstname"
 msgstr "Nombre de pila"
 
+#: ../vhffs-panel/user/prefs.pl:90
+msgid "Firstname is not correct !"
+msgstr ""
+
 #: ../vhffs-panel/admin/mail/delete_forward.pl:109
 #, fuzzy, perl-format
 msgid "Forward %s deleted"
@@ -1646,7 +1769,11 @@
 msgid "Forward %s successfully added"
 msgstr "Reenviar bien cambiado"
 
-#: ../vhffs-panel/user/prefs.pl:179
+#: ../vhffs-panel/user/prefs.pl:215
+msgid "Forward added"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:350
 #, fuzzy, perl-format
 msgid "Forward emails from %s@%s to %s"
 msgstr "Redirigir los emails desde %s@%s a %s"
@@ -1669,6 +1796,10 @@
 msgid "Forward successfully deleted"
 msgstr "Reenviar bien cambiado"
 
+#: ../vhffs-panel/user/prefs.pl:222
+msgid "Forward updated"
+msgstr ""
+
 #: ../vhffs-panel/mail/prefs.pl:115
 msgid "Forwards"
 msgstr "Reenviares"
@@ -1687,7 +1818,6 @@
 msgstr "Clave GPG"
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:82
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:87
 msgid "General"
 msgstr "General"
 
@@ -1700,42 +1830,32 @@
 msgid "Give me a new password"
 msgstr "Deme un nuevo cdigo de acceso"
 
-#: ../vhffs-panel/public/user.pl:114 ../vhffs-panel/public/lastgroups.pl:102
-#: ../vhffs-panel/public/lastusers.pl:111
-#: ../vhffs-panel/public/allwebsites.pl:98 ../vhffs-panel/public/index.pl:80
-#: ../vhffs-panel/public/group.pl:222 ../vhffs-panel/public/allgroups.pl:110
+#: ../vhffs-panel/public/user.pl:116 ../vhffs-panel/public/lastgroups.pl:104
+#: ../vhffs-panel/public/lastusers.pl:113
+#: ../vhffs-panel/public/allwebsites.pl:100 ../vhffs-panel/public/index.pl:82
+#: ../vhffs-panel/public/group.pl:224 ../vhffs-panel/public/allgroups.pl:112
 msgid "Go on login page"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:247
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:418
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:442
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:468
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:494
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:520
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:547
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:573
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:599
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:624
 #, fuzzy
-msgid "Go to Login"
-msgstr "Volver al Login"
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:358
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:382
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:408
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:434
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:460
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:487
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:513
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:539
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:564
-#, fuzzy
 msgid "Go to admin"
 msgstr "Ok, id sobre el admin ACL"
 
-#: ../vhffs-panel/login.pl:88 ../vhffs-panel/login.pl:118
-#, fuzzy
-msgid "Go to login page"
-msgstr "Volver al Login"
-
-#: ../vhffs-panel/mailinglist/prefs.pl:215 ../vhffs-panel/svn/prefs.pl:152
-#: ../vhffs-panel/dns/prefs.pl:261
+#: ../vhffs-panel/mailinglist/prefs.pl:216 ../vhffs-panel/svn/prefs.pl:159
+#: ../vhffs-panel/dns/prefs.pl:420
 msgid "Go to object-part admin"
 msgstr ""
 
-#: ../vhffs-panel/auth.pl:79
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:74
 msgid "Go to public area"
 msgstr ""
 
@@ -1756,10 +1876,11 @@
 #: ../vhffs-panel/admin/cvs/edit.pl:97 ../vhffs-panel/admin/cvs/show.pl:96
 #: ../vhffs-panel/admin/cvs/list.pl:90 ../vhffs-panel/admin/mail/edit.pl:99
 #: ../vhffs-panel/admin/mail/show.pl:99 ../vhffs-panel/admin/mail/list.pl:88
+#: ../vhffs-intl/extra_strings.pl:31
 msgid "Group"
 msgstr "Grupo"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:341
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:401
 #, fuzzy, perl-format
 msgid "Group %s"
 msgstr "Grupos"
@@ -1768,17 +1889,17 @@
 msgid "Group Admin"
 msgstr "Grupo Admin"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:336
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:396
 #, fuzzy
 msgid "Group error"
 msgstr "Nombre del grupo"
 
-#: ../vhffs-panel/cvs/create.pl:66
+#: ../vhffs-panel/cvs/create.pl:93
 #, fuzzy
 msgid "Group owning this CVS"
 msgstr "Grupo responsable de esto CVS"
 
-#: ../vhffs-panel/dns/create.pl:38
+#: ../vhffs-panel/dns/create.pl:65
 #, fuzzy
 msgid "Group owning this DNS"
 msgstr "Grupo responsable de este DNS"
@@ -1808,19 +1929,19 @@
 msgid "Group owning this web space"
 msgstr "Grupo responsable de este espacio web"
 
-#: ../vhffs-panel/public/index.pl:70
+#: ../vhffs-panel/public/index.pl:72
 msgid "Group public area"
 msgstr ""
 
 #: ../vhffs-panel/acl/view.pl:151 ../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:71 ../vhffs-panel/public/group.pl:88
-#: ../vhffs-panel/public/allgroups.pl:78
+#: ../vhffs-panel/public/lastgroups.pl:73 ../vhffs-panel/public/group.pl:90
+#: ../vhffs-panel/public/allgroups.pl:80
 #, fuzzy
 msgid "Groupname"
 msgstr "Nombre del grupo"
 
-#: ../vhffs-panel/public/user.pl:87 ../vhffs-panel/public/lastusers.pl:82
+#: ../vhffs-panel/public/user.pl:89 ../vhffs-panel/public/lastusers.pl:84
 msgid "Groups"
 msgstr "Grupos"
 
@@ -1839,7 +1960,7 @@
 msgid "Groups stats"
 msgstr "Todas la listas de grupos"
 
-#: ../vhffs-panel/user/prefs_save.pl:122
+#: ../vhffs-panel/user/prefs.pl:133
 #, fuzzy, perl-format
 msgid ""
 "Hello %s %s,\n"
@@ -1860,15 +1981,16 @@
 "\n"
 "Administradores VHFFS\n"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:47
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:43
 msgid "Hello and welcome on listengine help\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:89
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:320
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:81
 msgid "Help"
 msgstr "Ayuda"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:54
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:49
 msgid "Here are the basic listengine commands:\n"
 msgstr ""
 
@@ -1878,6 +2000,13 @@
 msgstr ""
 "Aqu, se puede enviar un cambio a la equipa admin y traer un bug o problema. "
 
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:413
+#, perl-format
+msgid ""
+"His email address is:\n"
+"  %s\n"
+msgstr ""
+
 #: ../vhffs-panel/history.pl:105 ../vhffs-panel/admin/user/edit.pl:110
 #: ../vhffs-panel/admin/user/show.pl:111
 #: ../vhffs-panel/admin/pgsql/edit.pl:103
@@ -1917,41 +2046,49 @@
 msgid "History of this object"
 msgstr "Historia del objecto"
 
-#: ../vhffs-panel/admin/user/edit.pl:100 ../vhffs-panel/admin/user/show.pl:100
+#: ../vhffs-panel/subscribe.pl:208 ../vhffs-panel/admin/user/edit.pl:100
+#: ../vhffs-panel/admin/user/show.pl:100
 msgid "Home"
 msgstr "Home"
 
-#: ../vhffs-panel/public/user.pl:113 ../vhffs-panel/public/lastgroups.pl:101
-#: ../vhffs-panel/public/lastusers.pl:110
-#: ../vhffs-panel/public/allwebsites.pl:97 ../vhffs-panel/public/index.pl:79
-#: ../vhffs-panel/public/group.pl:221 ../vhffs-panel/public/allgroups.pl:109
+#: ../vhffs-panel/public/user.pl:115 ../vhffs-panel/public/lastgroups.pl:103
+#: ../vhffs-panel/public/lastusers.pl:112
+#: ../vhffs-panel/public/allwebsites.pl:99 ../vhffs-panel/public/index.pl:81
+#: ../vhffs-panel/public/group.pl:223 ../vhffs-panel/public/allgroups.pl:111
 msgid "Homepage of public area"
 msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:307 ../vhffs-panel/dns/prefs.pl:392
+#: ../vhffs-panel/dns/prefs.pl:408
+msgid "Host"
+msgstr ""
+
 #: ../vhffs-panel/admin/user/edit.pl:132 ../vhffs-panel/admin/user/show.pl:140
 msgid "Hosted"
 msgstr "Albergado"
 
-#: ../vhffs-panel/auth.pl:61
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:160
+msgid "However this list require approval for new subscribers.\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:115
+#, perl-format
+msgid "However you are (%s) already subscribed to this list.\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:58
 #, fuzzy
 msgid "I've lost my password"
 msgstr "Perdi mi cdigo de acceso"
 
-#: ../vhffs-panel/dns/prefs.pl:141
+#: ../vhffs-panel/dns/prefs.pl:275
 msgid "IP"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:165
+#: ../vhffs-panel/dns/prefs.pl:299
 msgid "IP/host of your NS"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:89
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:106
-msgid ""
-"If this mail is an error and you don't ask to be a subscriber to this list, "
-"please do not answer to this mail\n"
-msgstr ""
-
 #: ../vhffs-robots/src/refused_ml.pl:76 ../vhffs-robots/src/refused_mail.pl:78
 #: ../vhffs-robots/src/refused_postgres.pl:79
 #: ../vhffs-robots/src/refused_cvs.pl:75 ../vhffs-robots/src/refused_web.pl:74
@@ -1964,6 +2101,18 @@
 msgid "If you encounters problem, please mail: %s\n"
 msgstr ""
 
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:83
+msgid ""
+"If you haven't asked to be subscribed to this list,\n"
+"please don't answer to this mail\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:101
+msgid ""
+"If you haven't asked to be unsubscribed from this list,\n"
+"please don't answer to this mail\n"
+msgstr ""
+
 #: ../vhffs-panel/group/prefs.pl:89
 msgid ""
 "If you want more disk space for your project, you must fill a form in the "
@@ -1983,20 +2132,87 @@
 msgid "In hope to keep you in our hosting service"
 msgstr "Esperamos guardar se en nuestro servicio de hospedido."
 
-#: ../vhffs-panel/dns/modif_a.pl:98 ../vhffs-panel/dns/add_a.pl:120
-msgid "Invalid IP"
-msgstr "IP invlido"
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:239
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:251
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:281
+msgid "Invalid IP address"
+msgstr ""
 
-#: ../vhffs-panel/dns/dns_submit.pl:72
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:269
+msgid "Invalid IP v6 address"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:339
+msgid "Invalid alias"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:328
+msgid "Invalid destination"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:353
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:369
+msgid "Invalid destination domain name"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:340
+msgid "Invalid destination host"
+msgstr ""
+
+#: ../vhffs-panel/dns/create.pl:41
 #, fuzzy
 msgid "Invalid domain name"
 msgstr "Mail invlido"
 
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:305
+msgid "Invalid host"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:291
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:315
+msgid "Invalid hostname"
+msgstr ""
+
 #: ../vhffs-panel/mail/submit.pl:78
 #, fuzzy
 msgid "Invalid mail domain"
 msgstr "Mail invlido"
 
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:354
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:370
+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
+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
+msgid "Invalid priority"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:351
+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
+msgid "Invalid record"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:352
+msgid "Invalid service syntax"
+msgstr ""
+
 #: ../vhffs-panel/subscribe.pl:93
 #, fuzzy
 msgid ""
@@ -2004,7 +2220,12 @@
 "all in lowercase"
 msgstr "El identificador debe contener por lo menos 3 caracteres"
 
-#: ../vhffs-panel/cvs/prefs.pl:102
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:356
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:372
+msgid "Invalid weight"
+msgstr ""
+
+#: ../vhffs-panel/cvs/prefs.pl:92
 #, fuzzy
 msgid "Is this CVS repository public ??"
 msgstr "Es un repositorio CVS pblico?"
@@ -2014,55 +2235,67 @@
 msgid "Is this a public repository ?"
 msgstr "Modificar esto repositorio Subversion"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:403
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:433
 msgid "January"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:427
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:457
 msgid "July"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:423
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:453
 msgid "June"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs.pl:88
+#: ../vhffs-panel/user/prefs.pl:263
 msgid "Language"
 msgstr "Lenguaje"
 
-#: ../vhffs-panel/public/user.pl:116 ../vhffs-panel/public/lastgroups.pl:104
-#: ../vhffs-panel/public/lastusers.pl:113
-#: ../vhffs-panel/public/allwebsites.pl:100 ../vhffs-panel/public/index.pl:82
-#: ../vhffs-panel/public/group.pl:224 ../vhffs-panel/public/allgroups.pl:112
+#: ../vhffs-panel/public/user.pl:118 ../vhffs-panel/public/lastgroups.pl:106
+#: ../vhffs-panel/public/lastusers.pl:115
+#: ../vhffs-panel/public/allwebsites.pl:102 ../vhffs-panel/public/index.pl:84
+#: ../vhffs-panel/public/group.pl:226 ../vhffs-panel/public/allgroups.pl:114
 #, fuzzy
 msgid "Last groups"
 msgstr "Listar todos los grupos"
 
-#: ../vhffs-panel/public/lastgroups.pl:62
+#: ../vhffs-panel/public/lastgroups.pl:64
 #, fuzzy, perl-format
 msgid "Last groups on %s"
 msgstr "Listar todos los grupos"
 
-#: ../vhffs-panel/public/user.pl:117 ../vhffs-panel/public/lastgroups.pl:105
-#: ../vhffs-panel/public/lastusers.pl:114
-#: ../vhffs-panel/public/allwebsites.pl:101 ../vhffs-panel/public/index.pl:83
-#: ../vhffs-panel/public/group.pl:225 ../vhffs-panel/public/allgroups.pl:113
+#: ../vhffs-panel/public/user.pl:119 ../vhffs-panel/public/lastgroups.pl:107
+#: ../vhffs-panel/public/lastusers.pl:116
+#: ../vhffs-panel/public/allwebsites.pl:103 ../vhffs-panel/public/index.pl:85
+#: ../vhffs-panel/public/group.pl:227 ../vhffs-panel/public/allgroups.pl:115
 #, fuzzy
 msgid "Last users"
 msgstr "Listar todos los usuarios"
 
-#: ../vhffs-panel/public/lastusers.pl:68
+#: ../vhffs-panel/public/lastusers.pl:70
 #, fuzzy, perl-format
 msgid "Last users on %s"
 msgstr "Listar todos los usuarios"
 
-#: ../vhffs-panel/subscribe.pl:201 ../vhffs-panel/user/prefs.pl:81
+#: ../vhffs-panel/subscribe.pl:201 ../vhffs-panel/user/prefs.pl:256
 #: ../vhffs-panel/admin/user/edit.pl:97 ../vhffs-panel/admin/user/show.pl:98
-#: ../vhffs-panel/public/user.pl:85 ../vhffs-panel/public/lastusers.pl:80
+#: ../vhffs-panel/public/user.pl:87 ../vhffs-panel/public/lastusers.pl:82
 #, fuzzy
 msgid "Lastname"
 msgstr "Apellido"
 
+#: ../vhffs-panel/user/prefs.pl:93
+msgid "Lastname is not correct !"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:249
+msgid "List all A reccords"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:250
+msgid "List all AAAA reccords"
+msgstr ""
+
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:146
 msgid "List all CVS"
 msgstr "Listar todos los CVS"
@@ -2081,15 +2314,14 @@
 msgid "List all SVN repo"
 msgstr "Listar todos los SVN repo"
 
+#: ../vhffs-panel/dns/prefs.pl:315
+msgid "List all TXT records"
+msgstr ""
+
 #: ../vhffs-panel/mail/prefs.pl:107
 msgid "List all accounts"
 msgstr "Listar todos los cuentas"
 
-#: ../vhffs-panel/dns/prefs.pl:117
-#, fuzzy
-msgid "List all all A reccords"
-msgstr "Listar todos los cuentas"
-
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:173
 msgid "List all domain names"
 msgstr "Listar todos los nombres de dominio"
@@ -2116,7 +2348,7 @@
 msgid "List all lists"
 msgstr "Listar todas las listas"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:128
+#: ../vhffs-panel/mailinglist/prefs.pl:153
 msgid "List all members"
 msgstr "Listar todos los miembros"
 
@@ -2177,11 +2409,11 @@
 msgid "List of all users"
 msgstr "Listar todos los usuarios"
 
-#: ../vhffs-panel/admin/web/list.pl:75 ../vhffs-panel/public/user.pl:115
-#: ../vhffs-panel/public/lastgroups.pl:103
-#: ../vhffs-panel/public/lastusers.pl:112
-#: ../vhffs-panel/public/allwebsites.pl:99 ../vhffs-panel/public/index.pl:81
-#: ../vhffs-panel/public/group.pl:223 ../vhffs-panel/public/allgroups.pl:111
+#: ../vhffs-panel/admin/web/list.pl:75 ../vhffs-panel/public/user.pl:117
+#: ../vhffs-panel/public/lastgroups.pl:105
+#: ../vhffs-panel/public/lastusers.pl:114
+#: ../vhffs-panel/public/allwebsites.pl:101 ../vhffs-panel/public/index.pl:83
+#: ../vhffs-panel/public/group.pl:225 ../vhffs-panel/public/allgroups.pl:113
 #, fuzzy
 msgid "List of all websites"
 msgstr "Listar los sitios web"
@@ -2194,7 +2426,7 @@
 msgid "List will NOT be deleted"
 msgstr "La lista NO ser destruida"
 
-#: ../vhffs-panel/public/group.pl:199
+#: ../vhffs-panel/public/group.pl:201
 #, fuzzy
 msgid "List(s) for this group"
 msgstr "Modificar esto grupo"
@@ -2211,27 +2443,31 @@
 msgid "Local Part for this account"
 msgstr "Partida local de esto cuenta"
 
-#: ../vhffs-panel/lost_ack.pl:70 ../vhffs-panel/lost_ack.pl:81
+#: ../vhffs-panel/lost_ack.pl:80 ../vhffs-panel/lost_ack.pl:91
 msgid "Login"
 msgstr "Login"
 
-#: ../vhffs-panel/login.pl:107
-msgid "Login OK, please wait..."
-msgstr "Login OK, espera un momento por favor..."
-
-#: ../vhffs-panel/login.pl:87 ../vhffs-panel/login.pl:117
+#: ../vhffs-panel/auth.pl:69
 #, fuzzy
 msgid "Login failed !"
 msgstr "Fracaso del Login!"
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:91
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:83
 msgid "Logout"
 msgstr "Desconexin"
 
-#: ../vhffs-panel/dns/modif_mx.pl:105
-msgid "MX successfully changed"
-msgstr "MX bien cambiada"
+#: ../vhffs-panel/dns/prefs.pl:165
+msgid "MX Record added"
+msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:160
+msgid "MX Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:155
+msgid "MX Record updated"
+msgstr ""
+
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:158
 #, fuzzy
 msgid "MYSQL Admin"
@@ -2256,12 +2492,20 @@
 msgid "Mail Area awaiting validation"
 msgstr "Zona Mail por validar"
 
+#: ../vhffs-intl/extra_strings.pl:39
+msgid "Mail Domain"
+msgstr ""
+
 #: ../vhffs-panel/mail/submit.pl:82
 #, fuzzy
 msgid "Mail area successfully created !"
 msgstr "Zona mail bien creada"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:504
+#: ../vhffs-panel/user/prefs.pl:227
+msgid "Mail deleted"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:564
 #, fuzzy
 msgid "Mail domain for this group"
 msgstr "Modificar esto grupo"
@@ -2283,25 +2527,29 @@
 msgid "Mail to all hosted people"
 msgstr "Mailing por personas albergadas"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:352
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:361
 #, fuzzy, perl-format
 msgid "Mail with id %s"
 msgstr "Mail por la lista"
 
-#: ../vhffs-panel/user/prefs_save.pl:121
+#: ../vhffs-panel/user/prefs.pl:132
 msgid "Mailbox modified"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs_save.pl:197
+#: ../vhffs-panel/user/prefs.pl:175
 #, fuzzy
 msgid "Mailbox successfully added"
 msgstr "ACL bien aadida"
 
-#: ../vhffs-panel/admin/mailing/list.pl:86
+#: ../vhffs-panel/admin/mailing/list.pl:86 ../vhffs-intl/extra_strings.pl:40
 #: ../vhffs-api/src/Vhffs/Panel/Mailinglist.pm:147
 msgid "Mailing List"
 msgstr "Mailing list"
 
+#: ../vhffs-panel/svn/prefs_save.pl:124
+msgid "Mailing list address is invalid"
+msgstr ""
+
 #: ../vhffs-panel/admin/broadcast_submit.pl:91
 #, fuzzy
 msgid "Mailing successfully added"
@@ -2321,7 +2569,7 @@
 msgid "Mailing-lists Admin"
 msgstr "Admin Mailing-lists"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:478
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:538
 #, fuzzy
 msgid "Mailing-lists for this group"
 msgstr "Admin Mailing-lists"
@@ -2331,7 +2579,7 @@
 msgid "Manage mailings"
 msgstr "Administrar los miembros"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:127
+#: ../vhffs-panel/mailinglist/prefs.pl:152
 msgid "Manage members"
 msgstr "Administrar los miembros"
 
@@ -2340,14 +2588,22 @@
 msgid "Many users matched your query. Please choose between them"
 msgstr "Muchos usuarios tienen su seudnimo. Elige un otro."
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:411
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:441
 msgid "March"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:419
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:449
 msgid "May"
 msgstr ""
 
+#: ../vhffs-panel/mailinglist/prefs.pl:119
+msgid "Members only"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:120
+msgid "Members only and moderated"
+msgstr ""
+
 #: ../vhffs-panel/admin/broadcast.pl:79
 msgid "Message"
 msgstr "Mensaje"
@@ -2366,15 +2622,15 @@
 msgid "Message sent successfully"
 msgstr "Mensaje bien enviado"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:321
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:336
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:329
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:345
 #, perl-format
 msgid "Message with id: %s"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:113
-msgid "Moderated"
-msgstr "Moderado"
+#: ../vhffs-panel/mailinglist/prefs.pl:117
+msgid "Moderated for everyone"
+msgstr ""
 
 #: ../vhffs-panel/admin/moderation.pl:84
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:84
@@ -2385,10 +2641,9 @@
 msgid "Moderator"
 msgstr "Moderador"
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:77
-#, fuzzy
-msgid "Moderator account : "
-msgstr "Cuenta Usario:"
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:74
+msgid "Moderator account"
+msgstr ""
 
 #: ../vhffs-panel/admin/user/edit.pl:149
 #: ../vhffs-panel/admin/pgsql/edit.pl:125
@@ -2397,6 +2652,7 @@
 #: ../vhffs-panel/admin/object/edit.pl:125
 #: ../vhffs-panel/admin/web/edit.pl:138 ../vhffs-panel/admin/mysql/edit.pl:126
 #: ../vhffs-panel/admin/cvs/edit.pl:134 ../vhffs-panel/admin/mail/edit.pl:166
+#: ../vhffs-intl/extra_strings.pl:25
 msgid "Modification applied"
 msgstr "Modificacin hecha"
 
@@ -2407,6 +2663,7 @@
 #: ../vhffs-panel/admin/object/edit.pl:124
 #: ../vhffs-panel/admin/web/edit.pl:137 ../vhffs-panel/admin/mysql/edit.pl:125
 #: ../vhffs-panel/admin/cvs/edit.pl:133 ../vhffs-panel/admin/mail/edit.pl:165
+#: ../vhffs-intl/extra_strings.pl:24
 msgid "Modification error"
 msgstr "Error de modificacin"
 
@@ -2437,11 +2694,13 @@
 msgid "Modifications successfully applied"
 msgstr "Modificacines bien hechas"
 
-#: ../vhffs-panel/svn/prefs.pl:121 ../vhffs-panel/user/prefs.pl:90
-#: ../vhffs-panel/dns/prefs.pl:185 ../vhffs-panel/dns/prefs.pl:206
-#: ../vhffs-panel/dns/prefs.pl:226 ../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:105
+#: ../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
 msgid "Modify"
 msgstr "Modificar"
 
@@ -2491,10 +2750,11 @@
 msgid "Modify this user"
 msgstr "Modificar esto usuario"
 
-#: ../vhffs-panel/dns/prefs.pl:138
+#: ../vhffs-panel/dns/prefs.pl:272
 msgid "Must we redirect the DNS on our servers ?"
 msgstr ""
 
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:79
 #: ../vhffs-api/src/Vhffs/Panel/Group.pm:162
 #, fuzzy
 msgid "My Projects"
@@ -2505,6 +2765,10 @@
 msgid "MySQL Administration"
 msgstr "Administracin PostgreSQL"
 
+#: ../vhffs-intl/extra_strings.pl:34
+msgid "MySQL DB"
+msgstr ""
+
 #: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:141
 #, fuzzy
 msgid "MySQL Databases"
@@ -2527,7 +2791,7 @@
 msgid "MySQL stats"
 msgstr "Estadsticas MySQL"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:373
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:433
 #, fuzzy
 msgid "Mysql database for this group"
 msgstr "Aadir un usuario en esto grupo"
@@ -2536,7 +2800,15 @@
 msgid "NS Admin"
 msgstr "Admin NS"
 
-#: ../vhffs-panel/dns/prefs.pl:162
+#: ../vhffs-panel/dns/prefs.pl:174
+msgid "NS Record added"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:170
+msgid "NS Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:296
 msgid "NS TYPE"
 msgstr ""
 
@@ -2546,43 +2818,51 @@
 msgid "Name"
 msgstr "Apellido"
 
-#: ../vhffs-panel/dns/prefs.pl:142
+#: ../vhffs-panel/dns/prefs.pl:276
 msgid "Name for reccord"
 msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:319
+msgid "Name for record"
+msgstr ""
+
 #: ../vhffs-panel/pgsql/prefs.pl:93 ../vhffs-panel/mysql/prefs.pl:100
 msgid "Name of the database"
 msgstr "Nombre de la base de datos"
 
-#: ../vhffs-panel/dns/prefs.pl:149
+#: ../vhffs-panel/dns/prefs.pl:283
 msgid "Name of your MX"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:260
+#: ../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:140
+#: ../vhffs-panel/svn/prefs.pl:120 ../vhffs-panel/dns/prefs.pl:274
 #: ../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:104
+#: ../vhffs-panel/web/prefs.pl:116 ../vhffs-panel/cvs/prefs.pl:94
 msgid "No"
 msgstr "No"
 
-#: ../vhffs-panel/dns/prefs.pl:193
+#: ../vhffs-panel/dns/prefs.pl:331
 msgid "No A type found"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:234
+#: ../vhffs-panel/dns/prefs.pl:343
+msgid "No AAAA type found"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:370
 #, 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:442
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:502
 msgid "No CVS repository for this group"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:572
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:632
 #, fuzzy
 msgid "No DNS domain for this group"
 msgstr "Modificar esto grupo"
@@ -2596,7 +2876,7 @@
 msgid "No Group to validate"
 msgstr "No grupos por validar"
 
-#: ../vhffs-panel/dns/prefs.pl:214
+#: ../vhffs-panel/dns/prefs.pl:357
 #, fuzzy
 msgid "No MX reccord for this domain"
 msgstr "Modificar esto dominio"
@@ -2606,40 +2886,48 @@
 msgid "No Mail Area to validate"
 msgstr "Zona Mail por validar"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:521
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:581
 #, fuzzy
 msgid "No Mail domain for this group"
 msgstr "Modificar esto grupo"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:495
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:555
 #, fuzzy
 msgid "No Mailing-list for this group"
 msgstr "Mailing por personas albergadas"
 
-#: ../vhffs-panel/dns/prefs.pl:254
+#: ../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:416
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:476
 #, fuzzy
 msgid "No PostgreSQL database for this group"
 msgstr "Todas las listas de bases de datos PostgreSQL"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:468
+#: ../vhffs-panel/dns/prefs.pl:399
+msgid "No SRV available on this domain"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:528
 msgid "No SVN repository for this group"
 msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:412
+msgid "No TXT available on this domain"
+msgstr ""
+
 #: ../vhffs-panel/admin/moderation.pl:166
 #, fuzzy
 msgid "No Web Area to validate"
 msgstr "Zona Web por validar"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:217
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:265
 msgid "No cookie found, please accept the cookie and then please login again !"
 msgstr ""
 
-#: ../vhffs-panel/public/group.pl:161
+#: ../vhffs-panel/public/group.pl:163
 msgid "No cvs repository available for this group"
 msgstr ""
 
@@ -2649,7 +2937,7 @@
 msgid "No database to validate"
 msgstr "Base de datos MySQL por validar"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:547
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:607
 #, fuzzy
 msgid "No download repository for this group"
 msgstr "Aadir un usuario en esto grupo"
@@ -2662,17 +2950,17 @@
 msgid "No event about this object"
 msgstr "No sucesos sobre esto objecto"
 
-#: ../vhffs-panel/public/allgroups.pl:70
+#: ../vhffs-panel/public/allgroups.pl:72
 #, fuzzy
 msgid "No group"
 msgstr "Grupo"
 
-#: ../vhffs-panel/public/user.pl:98 ../vhffs-panel/public/lastgroups.pl:84
-#: ../vhffs-panel/public/lastusers.pl:92 ../vhffs-panel/public/allgroups.pl:92
+#: ../vhffs-panel/public/user.pl:100 ../vhffs-panel/public/lastgroups.pl:86
+#: ../vhffs-panel/public/lastusers.pl:94 ../vhffs-panel/public/allgroups.pl:94
 msgid "No group for this user"
 msgstr "No grupo por esto usuario"
 
-#: ../vhffs-panel/public/group.pl:214
+#: ../vhffs-panel/public/group.pl:216
 #, fuzzy
 msgid "No list available for this group"
 msgstr "Destruir esto usuario desde esto grupo"
@@ -2682,12 +2970,12 @@
 msgid "No list to validate"
 msgstr "Lista por validar"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:196
+#: ../vhffs-panel/mailinglist/prefs.pl:197
 #, fuzzy
 msgid "No member on this list"
 msgstr "No miembros sobre la lista"
 
-#: ../vhffs-listengine/src/listengine.pl:570
+#: ../vhffs-listengine/src/listengine.pl:592
 #, fuzzy
 msgid "No message to moderate"
 msgstr "No lista por moderar"
@@ -2697,7 +2985,7 @@
 msgstr ""
 "Ninguna modificacin puede ser hechada. Por favor, verifique los campos."
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:390
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:450
 #, fuzzy
 msgid "No mysql database for this group"
 msgstr "Destruir esto usuario desde esto grupo"
@@ -2709,48 +2997,48 @@
 msgid "No repository to validate"
 msgstr "No repositorio por moderar"
 
-#: ../vhffs-panel/public/group.pl:188
+#: ../vhffs-panel/public/group.pl:190
 #, fuzzy
 msgid "No subversion repository available for this group"
 msgstr "Repositorio Subversion por validar"
 
-#: ../vhffs-panel/public/group.pl:78
+#: ../vhffs-panel/public/group.pl:79
 #, fuzzy
 msgid "No such group"
 msgstr "El usuario no existe"
 
-#: ../vhffs-panel/public/user.pl:73
+#: ../vhffs-panel/public/user.pl:75
 msgid "No such user"
 msgstr "El usuario no existe"
 
-#: ../vhffs-panel/public/group.pl:101
+#: ../vhffs-panel/public/group.pl:103
 #, fuzzy
 msgid "No user for this group"
 msgstr "Aadir un usuario en esto grupo"
 
-#: ../vhffs-panel/public/allwebsites.pl:74
+#: ../vhffs-panel/public/allwebsites.pl:76
 #, fuzzy
 msgid "No webarea"
 msgstr "Modificar esta zona web"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:366
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:426
 #, fuzzy
 msgid "No webarea for this group"
 msgstr "Aadir un usuario en esto grupo"
 
-#: ../vhffs-panel/public/group.pl:137
+#: ../vhffs-panel/public/group.pl:139
 msgid "No website available for this group"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs.pl:105 ../vhffs-panel/dns/prefs.pl:133
+#: ../vhffs-panel/user/prefs.pl:280 ../vhffs-panel/dns/prefs.pl:267
 #: ../vhffs-panel/web/prefs.pl:130
 msgid "No, I'm not sure, I prefer to keep it."
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:204 ../vhffs-panel/svn/prefs.pl:126
+#: ../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:110 ../vhffs-panel/mail/prefs.pl:134
+#: ../vhffs-panel/cvs/prefs.pl:100 ../vhffs-panel/mail/prefs.pl:134
 msgid "No, I'm not sure, I prefer to keep this project."
 msgstr ""
 
@@ -2766,7 +3054,7 @@
 msgid "Note successfully modified"
 msgstr "ACL bien modificada"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:443
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:473
 msgid "November"
 msgstr ""
 
@@ -2783,8 +3071,8 @@
 msgid "Object id"
 msgstr "Objecto id"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:216 ../vhffs-panel/svn/prefs.pl:153
-#: ../vhffs-panel/dns/prefs.pl:262
+#: ../vhffs-panel/mailinglist/prefs.pl:217 ../vhffs-panel/svn/prefs.pl:160
+#: ../vhffs-panel/dns/prefs.pl:421
 #, fuzzy
 msgid "Object part"
 msgstr "Objecto id"
@@ -2799,11 +3087,11 @@
 msgid "Object-ID error"
 msgstr "Error Objecto"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:439
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:469
 msgid "October"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:125 ../vhffs-panel/web/prefs.pl:124
+#: ../vhffs-panel/dns/prefs.pl:259 ../vhffs-panel/web/prefs.pl:124
 #: ../vhffs-panel/mail/prefs.pl:139
 msgid "Ok, go to ACL admin"
 msgstr "Ok, id sobre el admin ACL"
@@ -2813,33 +3101,37 @@
 msgid "Ok, send it !"
 msgstr "Ok, enviad lo."
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:60
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:55
 msgid "Only this list administrators can use the following commands.\n"
 msgstr ""
 
 #: ../vhffs-panel/mailinglist/prefs.pl:116
-msgid "Open archives"
-msgstr "Abrir los archivos"
+msgid "Open for everyone"
+msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:114
-msgid "Open post"
-msgstr "Abrir el post"
+#: ../vhffs-panel/mailinglist/prefs.pl:118
+msgid "Open for members, moderated for non-members"
+msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:115
-msgid "Open subscribing"
+#: ../vhffs-panel/mailinglist/prefs.pl:113
+msgid "Open, approval required"
 msgstr ""
 
 #: ../vhffs-panel/mailinglist/prefs.pl:112
+msgid "Open, no approval required"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:110
 msgid "Options"
 msgstr "Opcines"
 
 #: ../vhffs-panel/mailinglist/save_sig.pl:97
-#: ../vhffs-panel/mailinglist/save_options.pl:154
+#: ../vhffs-panel/mailinglist/save_options.pl:128
 #, fuzzy
 msgid "Options successfully modified"
 msgstr "Opcines bien salvadas"
 
-#: ../vhffs-panel/public/allwebsites.pl:85
+#: ../vhffs-panel/public/allwebsites.pl:87
 #, fuzzy
 msgid "Owned by"
 msgstr "Poseedor"
@@ -2867,16 +3159,16 @@
 msgid "Owner of this group"
 msgstr "Aadir un usuario en esto grupo"
 
-#: ../vhffs-panel/login.pl:108
-msgid "Panel Access"
-msgstr "Acceso al Panel"
-
-#: ../vhffs-panel/user/prefs.pl:86 ../vhffs-panel/admin/user/edit.pl:99
+#: ../vhffs-panel/user/prefs.pl:261 ../vhffs-panel/admin/user/edit.pl:99
 #: ../vhffs-panel/admin/pgsql/edit.pl:97 ../vhffs-panel/admin/mysql/edit.pl:97
-#: ../vhffs-panel/auth.pl:59 ../vhffs-panel/mail/prefs.pl:111
+#: ../vhffs-panel/mail/prefs.pl:111 ../vhffs-api/src/Vhffs/Panel/Commons.pm:56
 msgid "Password"
 msgstr "Cdigo de acceso"
 
+#: ../vhffs-panel/user/prefs.pl:125
+msgid "Password changed"
+msgstr ""
+
 #: ../vhffs-panel/admin/mail/password_box.pl:109
 #, perl-format
 msgid "Password changed for box %s"
@@ -2896,7 +3188,7 @@
 msgid "Password must contains only alphanum caracters"
 msgstr "El cdigo de acceso debe contener por lo menos 3 caracteres."
 
-#: ../vhffs-panel/lost_ack.pl:80
+#: ../vhffs-panel/lost_ack.pl:90
 msgid "Password recovery failed!"
 msgstr "Fracaso de la recuperacin del cdigo de acceso!"
 
@@ -2908,25 +3200,29 @@
 msgid "Password will not be modified if it is set to 'blanked' or empty"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs_save.pl:99
+#: ../vhffs-panel/user/prefs.pl:112
 #, fuzzy
 msgid "Passwords don't match"
 msgstr "Los cdigos de acceso no corresponden"
 
+#: ../vhffs-intl/extra_strings.pl:35
+msgid "PgSQL DB"
+msgstr ""
+
 #: ../vhffs-panel/admin/stats.pl:152
 msgid "PgSQL stats"
 msgstr "Estadsticas PgSQL"
 
-#: ../vhffs-panel/login.pl:73 ../vhffs-api/src/Vhffs/Panel/Main.pm:32
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:43
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:48
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:59
 msgid "Platform temporary closed"
 msgstr ""
 
-#: ../vhffs-panel/login.pl:74 ../vhffs-api/src/Vhffs/Panel/Main.pm:44
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:60
 msgid "Platform temporary closed."
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:33
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:49
 msgid "Platform temporary closed<br/>database error"
 msgstr ""
 
@@ -2947,7 +3243,7 @@
 msgid "Please enter a correct lastname"
 msgstr "Escribe un nombre de pila vlido por favor"
 
-#: ../vhffs-panel/auth.pl:57
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:53
 msgid "Please enter your username and password"
 msgstr "Escribe su identificador y su cdigo de acceso"
 
@@ -2958,19 +3254,19 @@
 "you"
 msgstr "Llena los campos. Recibir un email con su cdigo de acceso"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:287
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:294
 msgid "Please read help of listengine\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:183
-msgid "Please try again\n"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:191
+msgid "Please try again !\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:231
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:237
 msgid "Please try again.\n"
 msgstr ""
 
-#: ../vhffs-panel/lost_ack.pl:69
+#: ../vhffs-panel/lost_ack.pl:79
 #, fuzzy, perl-format
 msgid "Please wait %s, a new password will be sent to you in a few minutes..."
 msgstr ""
@@ -2990,6 +3286,10 @@
 msgid "Popboxes for"
 msgstr "Bzones pop por"
 
+#: ../vhffs-panel/dns/prefs.pl:308 ../vhffs-panel/dns/prefs.pl:393
+msgid "Port"
+msgstr ""
+
 #: ../vhffs-panel/pgsql/prefs.pl:91
 msgid "PostgreSQL Administration"
 msgstr "Administracin PostgreSQL"
@@ -2998,7 +3298,7 @@
 msgid "PostgreSQL Databases"
 msgstr "Base de datos PostgreSQL"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:399
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:459
 #, fuzzy
 msgid "PostgreSQL database for this group"
 msgstr "Base de datos PostgreSQL"
@@ -3020,25 +3320,38 @@
 msgid "Postgres database awaiting validation"
 msgstr "Base de datos Postgres por validar"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:118
+#: ../vhffs-panel/mailinglist/prefs.pl:115
+msgid "Posting control:"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:237
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:267
+msgid "Prefix already exists"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:143
 msgid "Prefix on subject"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:150
+#: ../vhffs-panel/dns/prefs.pl:309 ../vhffs-panel/dns/prefs.pl:394
+msgid "Priority"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:284
 msgid "Priority of your MX"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:203
+#: ../vhffs-panel/dns/prefs.pl:353
 #, fuzzy
 msgid "Priority: "
 msgstr "Proyecto:"
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:123
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:112
 #, fuzzy
 msgid "Project : "
 msgstr "Proyecto:"
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:124
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:113
 msgid "Project Configuration"
 msgstr "Configuracin del proyecto"
 
@@ -3068,11 +3381,28 @@
 msgid "Project Successfully modified"
 msgstr "Proyecto bien creado!"
 
+#: ../vhffs-panel/dns/prefs.pl:305
+msgid "Protocol"
+msgstr ""
+
 #: ../vhffs-panel/svn/prefs.pl:117 ../vhffs-panel/admin/cvs/edit.pl:96
 #: ../vhffs-panel/admin/cvs/show.pl:95
 msgid "Public"
 msgstr "Pblico"
 
+#: ../vhffs-panel/mailinglist/prefs.pl:141
+msgid "Public archives"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:79
+msgid "Public area is not available on this platform."
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:77
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:78
+msgid "Public area not available"
+msgstr ""
+
 #: ../vhffs-panel/admin/group/edit.pl:96 ../vhffs-panel/admin/group/show.pl:96
 #: ../vhffs-panel/admin/repository/edit.pl:102
 #: ../vhffs-panel/admin/repository/show.pl:100
@@ -3081,7 +3411,7 @@
 
 #: ../vhffs-panel/repository/prefs.pl:100
 #: ../vhffs-panel/admin/group/edit.pl:110
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:344
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:404
 #, perl-format
 msgid "Quota (used/total) : %s/%s"
 msgstr ""
@@ -3092,7 +3422,7 @@
 msgid "Quota used"
 msgstr "Cuota utilisado"
 
-#: ../vhffs-panel/public/rss/lastgroups.pl:107
+#: ../vhffs-panel/public/rss/lastgroups.pl:108
 #: ../vhffs-panel/public/rss/lastusers.pl:106
 msgid "RSS infos are not published"
 msgstr "Las informacines RSS no sern publicadas"
@@ -3113,10 +3443,24 @@
 msgid "Reason given : "
 msgstr ""
 
-#: ../vhffs-panel/subscribe.pl:213
+#: ../vhffs-panel/subscribe.pl:214
 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
+msgid "Record does not exists"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:202
+msgid "Record type doesn't exists"
+msgstr ""
+
 #: ../vhffs-panel/admin/moderation.pl:116
 #: ../vhffs-panel/admin/moderation.pl:158
 #: ../vhffs-panel/admin/moderation.pl:199
@@ -3135,38 +3479,51 @@
 msgid "Remove this user from this group"
 msgstr "Destruir esto usuario desde esto grupo"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:117
+#: ../vhffs-panel/mailinglist/prefs.pl:142
 msgid "Reply to: on list"
 msgstr "Responder a: sobre la lista"
 
 #: ../vhffs-panel/svn/create.pl:71 ../vhffs-panel/repository/create.pl:65
-#: ../vhffs-panel/admin/repository/list.pl:88 ../vhffs-panel/cvs/create.pl:65
+#: ../vhffs-panel/admin/repository/list.pl:88 ../vhffs-panel/cvs/create.pl:91
 msgid "Repository Name"
 msgstr "Nombre del Repositorio "
 
-#: ../vhffs-panel/svn/prefs_save.pl:111
+#: ../vhffs-panel/svn/prefs_save.pl:111 ../vhffs-panel/svn/prefs_save.pl:121
 #, fuzzy
 msgid "Repository updated"
 msgstr "Nombre del Repositorio "
 
-#: ../vhffs-panel/dns/add_mx.pl:102 ../vhffs-panel/dns/add_ns.pl:100
-#: ../vhffs-panel/dns/add_cname.pl:104 ../vhffs-panel/dns/add_a.pl:112
-#: ../vhffs-panel/dns/add_a.pl:128
-#, fuzzy
-msgid "Resource successfully added to this domain"
-msgstr "Recurso bien aadido a esto dominio"
-
 #: ../vhffs-panel/mailinglist/change_right.pl:111
 #, fuzzy
 msgid "Rights successfully changed"
 msgstr "MX bien cambiada"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:451
+#: ../vhffs-panel/dns/prefs.pl:211
+msgid "SRV Record added"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:200
+msgid "SRV Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:196
+msgid "SRV Record updated"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:302
+msgid "SRV TYPE"
+msgstr ""
+
+#: ../vhffs-intl/extra_strings.pl:37
+msgid "SVN Repository"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:511
 #, fuzzy
 msgid "SVN repositories for this group"
 msgstr "Aadir un usuario en esto grupo"
 
-#: ../vhffs-panel/public/group.pl:172
+#: ../vhffs-panel/public/group.pl:174
 #, fuzzy
 msgid "SVN repository for this group"
 msgstr "Aadir un usuario en esto grupo"
@@ -3183,7 +3540,7 @@
 msgid "SVNweb"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:121
+#: ../vhffs-panel/mailinglist/prefs.pl:146
 msgid "Save options"
 msgstr "Salvar las opcines"
 
@@ -3256,7 +3613,7 @@
 msgid "Search for a web area"
 msgstr "Bsqueda sobre una zona web"
 
-#: ../vhffs-panel/public/index.pl:75 ../vhffs-api/src/Vhffs/Panel/Admin.pm:119
+#: ../vhffs-panel/public/index.pl:77 ../vhffs-api/src/Vhffs/Panel/Admin.pm:119
 #, fuzzy
 msgid "Search for a website"
 msgstr "Bsqueda sobre un sitio web"
@@ -3307,16 +3664,16 @@
 msgid "Search result for domain"
 msgstr "Buscar un resultado por el dominio"
 
-#: ../vhffs-panel/public/user.pl:118 ../vhffs-panel/public/lastgroups.pl:106
-#: ../vhffs-panel/public/lastusers.pl:115
-#: ../vhffs-panel/public/allwebsites.pl:102 ../vhffs-panel/public/index.pl:84
-#: ../vhffs-panel/public/group.pl:226 ../vhffs-panel/public/allgroups.pl:114
+#: ../vhffs-panel/public/user.pl:120 ../vhffs-panel/public/lastgroups.pl:108
+#: ../vhffs-panel/public/lastusers.pl:117
+#: ../vhffs-panel/public/allwebsites.pl:104 ../vhffs-panel/public/index.pl:86
+#: ../vhffs-panel/public/group.pl:228 ../vhffs-panel/public/allgroups.pl:116
 #, fuzzy
 msgid "Search:"
 msgstr "Bsqueda CVS"
 
 #: ../vhffs-panel/mailinglist/create.pl:101 ../vhffs-panel/svn/create.pl:76
-#: ../vhffs-panel/dns/create.pl:41 ../vhffs-panel/pgsql/create.pl:73
+#: ../vhffs-panel/dns/create.pl:68 ../vhffs-panel/pgsql/create.pl:73
 #: ../vhffs-panel/group/create.pl:65 ../vhffs-panel/repository/create.pl:71
 #: ../vhffs-panel/alert.pl:71 ../vhffs-panel/admin/user/edit.pl:111
 #: ../vhffs-panel/admin/pgsql/edit.pl:102
@@ -3328,7 +3685,7 @@
 #: ../vhffs-panel/admin/web/edit.pl:105 ../vhffs-panel/admin/mysql/edit.pl:103
 #: ../vhffs-panel/admin/cvs/edit.pl:101 ../vhffs-panel/admin/mail/edit.pl:103
 #: ../vhffs-panel/web/create.pl:80 ../vhffs-panel/mysql/create.pl:71
-#: ../vhffs-panel/cvs/create.pl:70 ../vhffs-panel/mail/create.pl:70
+#: ../vhffs-panel/cvs/create.pl:96 ../vhffs-panel/mail/create.pl:70
 msgid "Send"
 msgstr "Enviado"
 
@@ -3337,7 +3694,7 @@
 msgid "Send an email to all hosted people"
 msgstr "Enviar mailing por personas albergadas"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:288
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:295
 msgid "Send an email with the subject \"help\" to the following address: \n"
 msgstr ""
 
@@ -3350,11 +3707,11 @@
 msgid "Send logo"
 msgstr "Envia lo"
 
-#: ../vhffs-panel/user/prefs.pl:112 ../vhffs-panel/user/prefs.pl:114
+#: ../vhffs-panel/user/prefs.pl:287 ../vhffs-panel/user/prefs.pl:289
 msgid "Send my avatar"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:435
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:465
 msgid "September"
 msgstr ""
 
@@ -3371,6 +3728,10 @@
 msgstr ""
 "Error de nombre de servidor. Escribe un nombre de servidor vlido por favor"
 
+#: ../vhffs-panel/dns/prefs.pl:306
+msgid "Service"
+msgstr ""
+
 #: ../vhffs-panel/admin/user/edit.pl:98 ../vhffs-panel/admin/user/show.pl:99
 msgid "Shell"
 msgstr "Shell"
@@ -3414,30 +3775,30 @@
 msgid "Show Web Area"
 msgstr "Bsqueda sobre una zona web"
 
-#: ../vhffs-panel/public/index.pl:69
+#: ../vhffs-panel/public/index.pl:71
 #, perl-format
 msgid "Show me all groups on %s"
 msgstr ""
 
-#: ../vhffs-panel/public/index.pl:73
+#: ../vhffs-panel/public/index.pl:75
 msgid "Show me all websites"
 msgstr ""
 
-#: ../vhffs-panel/public/index.pl:68
+#: ../vhffs-panel/public/index.pl:70
 #, perl-format
 msgid "Show me last groups on %s"
 msgstr ""
 
-#: ../vhffs-panel/public/index.pl:62
+#: ../vhffs-panel/public/index.pl:64
 #, perl-format
 msgid "Show me last users on %s"
 msgstr ""
 
-#: ../vhffs-panel/public/index.pl:71
+#: ../vhffs-panel/public/index.pl:73
 msgid "Show me this group according to this username"
 msgstr ""
 
-#: ../vhffs-panel/public/index.pl:64
+#: ../vhffs-panel/public/index.pl:66
 msgid "Show me this user according to this username"
 msgstr ""
 
@@ -3486,7 +3847,7 @@
 msgid "Show this user"
 msgstr "Aadir esto usuario "
 
-#: ../vhffs-panel/mailinglist/prefs.pl:123
+#: ../vhffs-panel/mailinglist/prefs.pl:148
 msgid "Signature"
 msgstr ""
 
@@ -3539,7 +3900,7 @@
 msgid "Su !"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:159
+#: ../vhffs-panel/dns/prefs.pl:293
 #, fuzzy
 msgid "Subdomain name"
 msgstr "Nombre de Dominio"
@@ -3554,40 +3915,43 @@
 msgid "Subject: "
 msgstr "Tema"
 
-#: ../vhffs-panel/dns/prefs.pl:151 ../vhffs-panel/dns/prefs.pl:157
-#: ../vhffs-panel/dns/prefs.pl:169
+#: ../vhffs-panel/dns/prefs.pl:285 ../vhffs-panel/dns/prefs.pl:291
+#: ../vhffs-panel/dns/prefs.pl:312
 #, fuzzy
 msgid "Submit"
 msgstr "Someter un bug"
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:90
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:82
 msgid "Submit a bug"
 msgstr "Someter un bug"
 
-#: ../vhffs-panel/subscribe.pl:206 ../vhffs-panel/subscribe.pl:215
-#: ../vhffs-panel/auth.pl:62
+#: ../vhffs-panel/subscribe.pl:206 ../vhffs-panel/subscribe.pl:220
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:59
 msgid "Subscribe"
 msgstr "Suscribir"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:136
-#, perl-format
-msgid "Subscribe to the list %s is forbidden\n"
+#: ../vhffs-panel/mailinglist/prefs.pl:111
+msgid "Subscribe control:"
 msgstr ""
 
 #: ../vhffs-panel/mailinglist/prefs.pl:178
-#, fuzzy
-msgid "Subscribed. Waiting for confirmation"
-msgstr "Creacin en espera"
+msgid "Subscribed"
+msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:177
-#, fuzzy
-msgid "Subscriber"
-msgstr "Suscribir"
-
 #: ../vhffs-panel/subscribe.pl:196
 msgid "Subscription"
 msgstr "Suscripcin"
 
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:130
+#, perl-format
+msgid ""
+"Subscription to the following list is forbidden:\n"
+"\n"
+"%s\n"
+"\n"
+"Have a nice day.\n"
+msgstr ""
+
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:131
 msgid "Subversion Admin"
 msgstr "Admin Subversion"
@@ -3636,15 +4000,27 @@
 #: ../vhffs-panel/admin/mysql/edit.pl:122
 #: ../vhffs-panel/admin/mysql/edit.pl:123 ../vhffs-panel/admin/cvs/edit.pl:130
 #: ../vhffs-panel/admin/cvs/edit.pl:131 ../vhffs-panel/admin/mail/edit.pl:162
-#: ../vhffs-panel/admin/mail/edit.pl:163
+#: ../vhffs-panel/admin/mail/edit.pl:163 ../vhffs-intl/extra_strings.pl:21
 msgid "Suspended"
 msgstr "Suspendido"
 
-#: ../vhffs-panel/admin/user/edit.pl:146
+#: ../vhffs-panel/admin/user/edit.pl:146 ../vhffs-intl/extra_strings.pl:22
 #, fuzzy
 msgid "Suspended before deletion"
 msgstr "Suspendido antes destruccin"
 
+#: ../vhffs-panel/dns/prefs.pl:216
+msgid "TXT Record added"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:227
+msgid "TXT Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:222
+msgid "TXT Record updated"
+msgstr ""
+
 #: ../vhffs-panel/mail/create.pl:71
 msgid "Tell us what the use of this mail space will be"
 msgstr ""
@@ -3657,12 +4033,21 @@
 msgid "Tell us what the use of this web space will be"
 msgstr ""
 
-#: ../vhffs-panel/cvs/cvs_submit.pl:88
+#: ../vhffs-panel/dns/prefs.pl:318
+msgid "Text"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:384
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:396
+msgid "Text can't be empty"
+msgstr ""
+
+#: ../vhffs-panel/cvs/create.pl:78
 #, fuzzy
 msgid "The CVS object was successfully created !"
 msgstr "El objecto CVS esta bien creado."
 
-#: ../vhffs-panel/dns/dns_submit.pl:76
+#: ../vhffs-panel/dns/create.pl:47
 #, fuzzy
 msgid "The DNS object was successfully created !"
 msgstr "El objecto DNS esta bien creado."
@@ -3698,7 +4083,7 @@
 msgid "The Subversion object was successfully created !"
 msgstr "El objecto Subversion es bien creado."
 
-#: ../vhffs-panel/user/prefs.pl:115
+#: ../vhffs-panel/user/prefs.pl:290
 msgid ""
 "The avatar is a pictures that describes you. You can upload an PNG image and "
 "use it as avatar. This image will then appear in the public section."
@@ -3708,7 +4093,7 @@
 msgid "The avatar is an image to describe the group"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:182
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:190
 msgid "The confirmation code was wrong\n"
 msgstr ""
 
@@ -3721,13 +4106,13 @@
 msgid "The database name is too long. There is a 32 character limit"
 msgstr "El nombre de la base de datos debe contener por lo menos 3 caracteres."
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:370
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:379
 #, perl-format
 msgid ""
 "The following address %s is not allowed to execute commands on the list %s\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:198
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:205
 #, perl-format
 msgid "The following address %s is not on the list %s\n"
 msgstr ""
@@ -3750,18 +4135,18 @@
 "El nombre del grupo debe contener por lo menos 3 caracteres, solo en letras "
 "o cifras"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:259
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:265
 #, perl-format
 msgid ""
 "The listengine language preference was changed for the following address %"
 "s.\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:307
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:314
 msgid "The message does not exists or was moderated before you.\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:304
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:311
 #, fuzzy, perl-format
 msgid "The message with the following id %s"
 msgstr "Mensaje enviado hacia las direccines siguientes."
@@ -3791,22 +4176,22 @@
 "El nombre del grupo debe contener por lo menos 3 caracteres, solo en letras "
 "o cifras"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:123
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:117
 msgid ""
-"The state of you subscription was not changed, you are always a subscriber\n"
+"The state of you subscription was not changed, you are still subscribed\n"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs.pl:89
+#: ../vhffs-panel/user/prefs.pl:264
 msgid "Theme"
 msgstr "Tema"
 
-#: ../vhffs-panel/user/prefs_save.pl:254
+#: ../vhffs-panel/user/prefs.pl:211
 msgid ""
 "There is a problem with the address you filled in your profile, unable to "
 "add forwarding"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs.pl:177
+#: ../vhffs-panel/user/prefs.pl:348
 #, fuzzy
 msgid "There is two possible usages :"
 msgstr "Hay dos usos posibles:"
@@ -3836,11 +4221,11 @@
 msgid "This Download repository will be deleted"
 msgstr "Esto grupo ser destruido"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:201 ../vhffs-panel/svn/prefs.pl:123
-#: ../vhffs-panel/dns/prefs.pl:130 ../vhffs-panel/pgsql/prefs.pl:108
+#: ../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/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:107 ../vhffs-panel/mail/prefs.pl:131
+#: ../vhffs-panel/cvs/prefs.pl:97 ../vhffs-panel/mail/prefs.pl:131
 #, fuzzy
 msgid ""
 "This action is non-reversible. All services associated to this project will "
@@ -3849,7 +4234,7 @@
 "Esta accin no tiene vuelta. Todos los servicios asociados con este proyecto "
 "sern destruidos."
 
-#: ../vhffs-panel/user/prefs.pl:102
+#: ../vhffs-panel/user/prefs.pl:277
 msgid "This action is non-reversible. WHEN YOU DELETE IT, YOU CANNOT CANCEL."
 msgstr ""
 
@@ -3882,11 +4267,6 @@
 msgid "This database will NOT be deleted"
 msgstr "Esta base de datos NO ser destruido"
 
-#: ../vhffs-panel/dns/dns_type_submit.pl:74
-#, fuzzy
-msgid "This domain name doesn't exist in the VHFFS database"
-msgstr "Esto nombre de dominio DNS no existe en la base de datos de VHFFS"
-
 #: ../vhffs-panel/dns/delete.pl:111
 msgid "This domain will NOT be DELETED from Vhffs platform"
 msgstr "Esto dominio no ser destruido de la plataforma Vhffs"
@@ -3903,6 +4283,10 @@
 msgid "This group will be deleted"
 msgstr "Esto grupo ser destruido"
 
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:357
+msgid "This host is already registered for this service"
+msgstr ""
+
 #: ../vhffs-panel/mail/save_catchall.pl:90
 #, fuzzy
 msgid "This is not a correct mail address"
@@ -3917,18 +4301,18 @@
 msgid "This mail domain will NOT be DELETED"
 msgstr "Esto dominio mail no ser destruido"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:105
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:99
 #, perl-format
 msgid ""
 "This mail must contains the following subject : \"confirm unsubscribe %s\"\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:87
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:81
 #, perl-format
 msgid "This mail must have the following subject : \"confirm subscribe %s\"\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:387
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:395
 #, perl-format
 msgid "This mail was sent by  %s with the following subject: \n"
 msgstr ""
@@ -3952,11 +4336,11 @@
 #: ../vhffs-panel/mailinglist/delete.pl:86
 #: ../vhffs-panel/mailinglist/save_sig.pl:85
 #: ../vhffs-panel/mailinglist/add_sub.pl:87
-#: ../vhffs-panel/mailinglist/prefs.pl:94
-#: ../vhffs-panel/mailinglist/save_options.pl:92
+#: ../vhffs-panel/mailinglist/prefs.pl:92
+#: ../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:86 ../vhffs-panel/dns/prefs.pl:99
+#: ../vhffs-panel/svn/prefs_save.pl:88 ../vhffs-panel/dns/prefs.pl:98
 #: ../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
@@ -3979,7 +4363,7 @@
 "Esto objecto no es funcional ya. Espera por favor su creacin o su moderacin."
 
 #: ../vhffs-panel/svn/prefs.pl:106 ../vhffs-panel/repository/prefs.pl:89
-#: ../vhffs-panel/cvs/prefs.pl:92
+#: ../vhffs-panel/cvs/prefs.pl:84
 #, fuzzy
 msgid ""
 "This object is not functionnal yet. Please wait creation, moderation or "
@@ -3995,12 +4379,6 @@
 msgid "This object will NOT be DELETED"
 msgstr "Esto objecto no ser destruido"
 
-#: ../vhffs-panel/dns/delete_a.pl:74 ../vhffs-panel/dns/delete_ns.pl:102
-#: ../vhffs-panel/dns/delete_mx.pl:103 ../vhffs-panel/dns/delete_cname.pl:101
-#, fuzzy
-msgid "This part of the domain is now removed."
-msgstr "Esta partida del dominio es ahora, quitada."
-
 #: ../vhffs-panel/object/upavatar.pl:93
 msgid "This platform does not provide avatar support"
 msgstr ""
@@ -4009,14 +4387,14 @@
 msgid "This platform does not support avatar"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:34
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:50
 msgid ""
 "This platform is temporary closed. Administrators are performing some "
 "maintenances tasks or system has database errors. Please come back in a few "
 "minutes to log in."
 msgstr ""
 
-#: ../vhffs-panel/login.pl:75 ../vhffs-api/src/Vhffs/Panel/Main.pm:45
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:61
 msgid ""
 "This platform is temporary closed. Administrators are performing some "
 "maintenances tasks. Please come back in a few minutes to log in."
@@ -4071,14 +4449,26 @@
 msgid "This web area doesn't exist in VHFFS database"
 msgstr "Esta zona web no existe en la base de datos VHFFS"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:390
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:416
+msgid "To accept this subscriber, send a message to\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:398
 msgid "To put this post on the list, send a message  \n"
 msgstr ""
 
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:419
+msgid "To refuse this subscriber, send a message to\n"
+msgstr ""
+
 #: ../vhffs-listengine/src/archives/show_msg.pl:107
 msgid "To: "
 msgstr ""
 
+#: ../vhffs-panel/ajax/help.pl:54 ../vhffs-panel/ajax/help.pl:59
+msgid "Topic not found"
+msgstr ""
+
 #: ../vhffs-panel/admin/stats.pl:93
 msgid "Total Admin Users in VHFFS database"
 msgstr "Total de los usuarios Admin en la base de datos VHFFS"
@@ -4194,6 +4584,41 @@
 msgid "URL"
 msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:148
+#, perl-format
+msgid "Unable to add A record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:143
+#, perl-format
+msgid "Unable to add AAAA record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:187
+#, perl-format
+msgid "Unable to add CNAME record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:164
+#, perl-format
+msgid "Unable to add MX record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:173
+#, perl-format
+msgid "Unable to add NS record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:210
+#, perl-format
+msgid "Unable to add SRV record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:215
+#, perl-format
+msgid "Unable to add TXT record: %s"
+msgstr ""
+
 #: ../vhffs-panel/admin/mail/password_box.pl:105
 #, fuzzy, perl-format
 msgid "Unable to change password for box %s (%d)"
@@ -4214,6 +4639,41 @@
 msgid "Unable to change virus protection status for %s"
 msgstr "Es imposible grabar cambios sobre esto dominio"
 
+#: ../vhffs-panel/dns/prefs.pl:125
+#, perl-format
+msgid "Unable to delete A record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:137
+#, perl-format
+msgid "Unable to delete AAAA record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:182
+#, perl-format
+msgid "Unable to delete CNAME record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:159
+#, perl-format
+msgid "Unable to delete MX record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:169
+#, perl-format
+msgid "Unable to delete NS record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:199
+#, perl-format
+msgid "Unable to delete SRV record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:226
+#, perl-format
+msgid "Unable to delete TXT record: %s"
+msgstr ""
+
 #: ../vhffs-panel/mail/delete_forward.pl:96
 #, fuzzy, perl-format
 msgid "Unable to delete forward %s"
@@ -4228,6 +4688,12 @@
 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
+msgid ""
+"Unable to find default redirection address, please contact administrators"
+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
@@ -4241,6 +4707,36 @@
 msgid "Unable to get information on mail domain %s"
 msgstr "Es imposible grabar cambios sobre esto dominio"
 
+#: ../vhffs-panel/dns/prefs.pl:120
+#, perl-format
+msgid "Unable to modify A record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:132
+#, perl-format
+msgid "Unable to modify AAAA record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:178
+#, perl-format
+msgid "Unable to modify CNAME record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:154
+#, perl-format
+msgid "Unable to modify MX record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:195
+#, perl-format
+msgid "Unable to modify SRV record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:221
+#, perl-format
+msgid "Unable to modify TXT record: %s"
+msgstr ""
+
 #: ../vhffs-panel/admin/mail/change_forward.pl:105
 #: ../vhffs-panel/mail/change_forward.pl:104
 #, fuzzy, perl-format
@@ -4262,16 +4758,33 @@
 msgid "Undefined list"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:286
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:293
 msgid "Unknow command\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Functions.pm:391
-#: ../vhffs-api/src/Vhffs/Functions.pm:396
+#: ../vhffs-api/src/Vhffs/Functions.pm:400
+#: ../vhffs-api/src/Vhffs/Functions.pm:405
 msgid "Unknown"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:453
+#: ../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: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
+msgid "Unknown error"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:480
 msgid "Unknown month"
 msgstr ""
 
@@ -4280,7 +4793,7 @@
 msgid "Unknown status"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:229
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:235
 #, perl-format
 msgid "Unsubscribe for the list %s was not complete.\n"
 msgstr ""
@@ -4290,21 +4803,21 @@
 msgid "Update note"
 msgstr "Puesto al da!"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:125
+#: ../vhffs-panel/mailinglist/prefs.pl:150
 #, fuzzy
 msgid "Update signature"
 msgstr "Puesto al da!"
 
-#: ../vhffs-panel/dns/modif_a.pl:106
-#, fuzzy
-msgid "Updated !"
-msgstr "Puesto al da!"
+#: ../vhffs-panel/dns/prefs.pl:253
+#, perl-format
+msgid "Use @ for origin (%s)"
+msgstr ""
 
 #: ../vhffs-panel/admin/web/edit.pl:102 ../vhffs-panel/admin/web/show.pl:115
 msgid "Use Crawl"
 msgstr "Utilize Crawl"
 
-#: ../vhffs-panel/user/prefs.pl:178
+#: ../vhffs-panel/user/prefs.pl:349
 #, perl-format
 msgid ""
 "Use VHFFS servers to manage this mail,<br>you should use use the host pop.%s "
@@ -4313,11 +4826,11 @@
 "Utiliza los servidores VHFFS por administrar esto mail. <br> Debe utilizar "
 "el pop.%s o elimap.%s albergado para obtener su mails"
 
-#: ../vhffs-panel/user/prefs.pl:184
+#: ../vhffs-panel/user/prefs.pl:355
 msgid "Use anti-spam protection"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs.pl:192
+#: ../vhffs-panel/user/prefs.pl:363
 msgid "Use anti-virus protection"
 msgstr ""
 
@@ -4327,6 +4840,7 @@
 
 #: ../vhffs-panel/admin/pgsql/edit.pl:96 ../vhffs-panel/admin/pgsql/show.pl:95
 #: ../vhffs-panel/admin/mysql/edit.pl:96 ../vhffs-panel/admin/mysql/show.pl:94
+#: ../vhffs-intl/extra_strings.pl:30
 msgid "User"
 msgstr "Usuario"
 
@@ -4339,7 +4853,7 @@
 msgid "User Admin"
 msgstr "Usuario Admin"
 
-#: ../vhffs-panel/user/prefs.pl:76 ../vhffs-api/src/Vhffs/Panel/Menu.pm:88
+#: ../vhffs-panel/user/prefs.pl:248 ../vhffs-api/src/Vhffs/Panel/Menu.pm:80
 msgid "User Preferences"
 msgstr "Preferencias del usuario"
 
@@ -4347,28 +4861,27 @@
 msgid "User Successfully created"
 msgstr "Usuario bien creado"
 
-#: ../vhffs-panel/user/prefs_save.pl:132
-msgid "User Successfully modified"
-msgstr "Usuario bien modificado"
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:76
+msgid "User account"
+msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:81
-#, fuzzy
-msgid "User account : "
-msgstr "Cuenta Usario:"
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:237
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:275
 msgid "User does not exist"
 msgstr "El usuario no existe"
 
-#: ../vhffs-panel/public/index.pl:63
+#: ../vhffs-panel/auth.pl:71
+msgid "User is not active yet"
+msgstr ""
+
+#: ../vhffs-panel/public/index.pl:65
 msgid "User public area"
 msgstr ""
 
-#: ../vhffs-panel/subscribe.pl:198 ../vhffs-panel/user/prefs.pl:78
+#: ../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/admin/user/list.pl:79 ../vhffs-panel/admin/su.pl:78
-#: ../vhffs-panel/public/user.pl:81 ../vhffs-panel/public/lastusers.pl:76
-#: ../vhffs-panel/auth.pl:58 ../vhffs-panel/lost.pl:54
+#: ../vhffs-panel/public/user.pl:83 ../vhffs-panel/public/lastusers.pl:78
+#: ../vhffs-panel/lost.pl:54 ../vhffs-api/src/Vhffs/Panel/Commons.pm:54
 msgid "Username"
 msgstr "Identificador"
 
@@ -4380,8 +4893,8 @@
 msgid "Username:"
 msgstr "Identificador:"
 
-#: ../vhffs-panel/public/lastgroups.pl:73 ../vhffs-panel/public/group.pl:92
-#: ../vhffs-panel/public/allgroups.pl:80
+#: ../vhffs-panel/public/lastgroups.pl:75 ../vhffs-panel/public/group.pl:94
+#: ../vhffs-panel/public/allgroups.pl:82
 msgid "Users"
 msgstr "Usuarios"
 
@@ -4389,27 +4902,19 @@
 msgid "Users stats"
 msgstr "Estadsticas usuarios"
 
-#: ../vhffs-panel/auth.pl:54
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:50
 msgid "VHFFS Login"
 msgstr "Login VHFFS"
 
-#: ../vhffs-panel/login.pl:106
-msgid "VHFFS Login OK"
-msgstr "Login VHFFS OK"
-
-#: ../vhffs-panel/login.pl:86 ../vhffs-panel/login.pl:116
-msgid "VHFFS Login failed"
-msgstr "Fracaso del Login VHFFS"
-
 #: ../vhffs-panel/logout.pl:58
 msgid "VHFFS Logout"
 msgstr "Desconexin VHFFS"
 
-#: ../vhffs-panel/lost_ack.pl:68
+#: ../vhffs-panel/lost_ack.pl:78
 msgid "VHFFS Password Lost OK"
 msgstr "Cdigo de acceso VHFFS perdida OK"
 
-#: ../vhffs-panel/lost_ack.pl:79
+#: ../vhffs-panel/lost_ack.pl:89
 msgid "VHFFS Password Lost failed"
 msgstr "Cdigo de acceso VHFFS perdida Fracaso"
 
@@ -4420,6 +4925,7 @@
 #: ../vhffs-panel/admin/object/edit.pl:116
 #: ../vhffs-panel/admin/web/edit.pl:129 ../vhffs-panel/admin/mysql/edit.pl:117
 #: ../vhffs-panel/admin/cvs/edit.pl:125 ../vhffs-panel/admin/mail/edit.pl:157
+#: ../vhffs-intl/extra_strings.pl:16
 msgid "Validation refused"
 msgstr "Validacin negada"
 
@@ -4432,20 +4938,20 @@
 msgid "View"
 msgstr ""
 
-#: ../vhffs-panel/public/group.pl:207
+#: ../vhffs-panel/public/group.pl:209
 #, fuzzy
 msgid "View archives"
 msgstr "Abrir los archivos"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:359
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:383
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:409
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:435
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:461
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:488
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:514
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:540
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:565
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:419
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:443
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:469
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:495
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:521
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:548
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:574
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:600
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:625
 #, fuzzy
 msgid "View history"
 msgstr "Historia"
@@ -4472,6 +4978,10 @@
 msgid "WEB stats"
 msgstr "Estadsticas WEB"
 
+#: ../vhffs-panel/mailinglist/prefs.pl:179
+msgid "Waiting for confirmation"
+msgstr ""
+
 #: ../vhffs-panel/admin/user/edit.pl:141
 #: ../vhffs-panel/admin/pgsql/edit.pl:117
 #: ../vhffs-panel/admin/group/edit.pl:117
@@ -4479,13 +4989,13 @@
 #: ../vhffs-panel/admin/object/edit.pl:117
 #: ../vhffs-panel/admin/web/edit.pl:130 ../vhffs-panel/admin/mysql/edit.pl:118
 #: ../vhffs-panel/admin/cvs/edit.pl:126 ../vhffs-panel/admin/mail/edit.pl:158
+#: ../vhffs-intl/extra_strings.pl:17
 msgid "Waiting for creation"
 msgstr "Creacin en espera"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:179
-#, fuzzy
-msgid "Waiting for delete"
-msgstr "Moderacin en curso"
+#: ../vhffs-panel/mailinglist/prefs.pl:181
+msgid "Waiting for deletion"
+msgstr ""
 
 #: ../vhffs-panel/admin/user/edit.pl:147
 #: ../vhffs-panel/admin/pgsql/edit.pl:123
@@ -4494,9 +5004,11 @@
 #: ../vhffs-panel/admin/object/edit.pl:123
 #: ../vhffs-panel/admin/web/edit.pl:136 ../vhffs-panel/admin/mysql/edit.pl:124
 #: ../vhffs-panel/admin/cvs/edit.pl:132 ../vhffs-panel/admin/mail/edit.pl:164
+#: ../vhffs-intl/extra_strings.pl:23
 msgid "Waiting for modification"
 msgstr "Modificacin en espera"
 
+#: ../vhffs-panel/mailinglist/prefs.pl:180
 #: ../vhffs-panel/admin/user/edit.pl:139
 #: ../vhffs-panel/admin/pgsql/edit.pl:115
 #: ../vhffs-panel/admin/group/edit.pl:115
@@ -4504,6 +5016,7 @@
 #: ../vhffs-panel/admin/object/edit.pl:115
 #: ../vhffs-panel/admin/web/edit.pl:128 ../vhffs-panel/admin/mysql/edit.pl:116
 #: ../vhffs-panel/admin/cvs/edit.pl:124 ../vhffs-panel/admin/mail/edit.pl:156
+#: ../vhffs-intl/extra_strings.pl:15
 msgid "Waiting for validation"
 msgstr "Validacin en espera"
 
@@ -4511,7 +5024,7 @@
 msgid "Warn the admin team"
 msgstr "Advertir la equipa admin"
 
-#: ../vhffs-panel/user/prefs.pl:176
+#: ../vhffs-panel/user/prefs.pl:347
 #, perl-format
 msgid "We offer you the possibility to have one email box on the domain %s"
 msgstr "Se ofrece la possibilidad de tener un cuenta sobre el dominio %s"
@@ -4539,26 +5052,34 @@
 msgid "Web area successfully created !"
 msgstr "Zona Web bien creada."
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:349
+#: ../vhffs-intl/extra_strings.pl:32
+msgid "Webarea"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:409
 #, fuzzy
 msgid "Webarea for this group"
 msgstr "Bsqueda sobre un grupo"
 
-#: ../vhffs-panel/public/group.pl:122
+#: ../vhffs-panel/public/group.pl:124
 #, fuzzy
 msgid "Website for this group"
 msgstr "Aadir un usuario en esto grupo"
 
-#: ../vhffs-panel/public/index.pl:74
+#: ../vhffs-panel/public/index.pl:76
 #, fuzzy
 msgid "Websites area"
 msgstr "Zonas Web"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:313
+#: ../vhffs-panel/dns/prefs.pl:310 ../vhffs-panel/dns/prefs.pl:395
+msgid "Weight"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:373
 msgid "Welcome"
 msgstr "Bienvenido"
 
-#: ../vhffs-panel/auth.pl:55
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:51
 #, fuzzy, perl-format
 msgid "Welcome on %s"
 msgstr "Bienvenido a"
@@ -4574,30 +5095,31 @@
 #: ../vhffs-panel/admin/object/edit.pl:126
 #: ../vhffs-panel/admin/web/edit.pl:139 ../vhffs-panel/admin/mysql/edit.pl:127
 #: ../vhffs-panel/admin/cvs/edit.pl:135 ../vhffs-panel/admin/mail/edit.pl:167
+#: ../vhffs-intl/extra_strings.pl:26
 msgid "Will be deleted"
 msgstr "Ser destruido"
 
-#: ../vhffs-panel/auth.pl:74
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:70
 #, perl-format
 msgid "Woah, %s users and %s groups already trust %s"
 msgstr ""
 
-#: ../vhffs-panel/svn/prefs.pl:119 ../vhffs-panel/dns/prefs.pl:139
+#: ../vhffs-panel/svn/prefs.pl:119 ../vhffs-panel/dns/prefs.pl:273
 #: ../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:103
+#: ../vhffs-panel/web/prefs.pl:115 ../vhffs-panel/cvs/prefs.pl:93
 msgid "Yes"
 msgstr "Si"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:203 ../vhffs-panel/svn/prefs.pl:125
-#: ../vhffs-panel/user/prefs.pl:104 ../vhffs-panel/dns/prefs.pl:132
+#: ../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:109
+#: ../vhffs-panel/mysql/prefs.pl:117 ../vhffs-panel/cvs/prefs.pl:99
 #: ../vhffs-panel/mail/prefs.pl:133
 msgid "Yes I'm sure of what I do"
 msgstr "Si, soy seguro(a)"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:215
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:222
 #, fuzzy
 msgid "You are not a subscriber on this list.\n"
 msgstr "No miembros sobre la lista"
@@ -4648,12 +5170,16 @@
 msgid "You are not allowed to see it"
 msgstr "No es autorizado a ver esto"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:121
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:114
 #, perl-format
-msgid "You ask to be subscribed to the following list: %s\n"
+msgid ""
+"You asked to be subscribed to the following list:\n"
+"\n"
+"%s\n"
+"\n"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:124 ../vhffs-panel/web/prefs.pl:123
+#: ../vhffs-panel/dns/prefs.pl:258 ../vhffs-panel/web/prefs.pl:123
 #: ../vhffs-panel/mail/prefs.pl:138
 #, fuzzy
 msgid ""
@@ -4663,28 +5189,20 @@
 "Se puede administrar los derechos en esto servicio por cada usuario en la "
 "base de datos VHFFS.Lee la ayuda, por favor, antes de administrar esto."
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:50
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:46
 msgid "You can also send a command list in the mail body.\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:154
-msgid "You can have some help on listengine, sending an email to\n"
-msgstr ""
-
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:152
-msgid "You can post on the list now."
-msgstr ""
-
 #: ../vhffs-panel/subscribe.pl:80
 msgid "You cannot subscribe to VHFFS"
 msgstr "No puede suscribir a VHFFS"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:214
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:221
 #, fuzzy, perl-format
 msgid "You cannot unsubscribe from the list %s\n"
 msgstr "No puede suscribir a VHFFS"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:199
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:206
 msgid "You demand was refused\n"
 msgstr ""
 
@@ -4693,17 +5211,21 @@
 msgid "You don't own this domain"
 msgstr "Es imposible poner MX al da sobre esto dominio"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:168
-#, fuzzy, perl-format
-msgid "You have been successfully removed from the list %s\n"
-msgstr "Esto bzon es bien aadido a esto dominio"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:177
+#, perl-format
+msgid ""
+"You have been successfully removed from the following list:\n"
+"\n"
+"%s\n"
+msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:244
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:250
 #, fuzzy, perl-format
 msgid "You have been successfully removed from the list %s.\n"
 msgstr "Esto bzon es bien aadido a esto dominio"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:150
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:142
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:158
 #, fuzzy, perl-format
 msgid "You have been successfully subscribed to the list %s\n"
 msgstr "Esto bzon es bien aadido a esto dominio"
@@ -4718,18 +5240,20 @@
 msgid "You lost your password? You're a bad guy!"
 msgstr "Ha perdido su contrasea VHFFS? Que pena...!"
 
-#: ../vhffs-panel/user/prefs_save.pl:170
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:144
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:163
+msgid "You may get some help on listengine by sending an email to\n"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:161
 msgid "You must choose a method for your mail"
 msgstr "Debe eligir un mtodo por su mail"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:104
-msgid "You must confirm this request by seding a email\n"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:80
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:98
+msgid "You must confirm your request by sending a confirmation email\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:86
-msgid "You must confirm your request by sending a confirmation emailn\n"
-msgstr ""
-
 #: ../vhffs-panel/subscribe.pl:121
 #, fuzzy
 msgid "You must declare a valid mail address"
@@ -4763,38 +5287,35 @@
 msgid "You must declare your zipcode"
 msgstr "Debe declarar su cdigo postal"
 
+#: ../vhffs-panel/dns/create.pl:43 ../vhffs-panel/cvs/create.pl:73
+msgid "You must enter a description"
+msgstr ""
+
 #: ../vhffs-panel/mailinglist/create.pl:81
 msgid "You need to manage at least a domain to host a mailing-list"
 msgstr ""
 "Debe administrar por lo menos un dominio, por albergar una mailing-list"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:239
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:161
+msgid "You will receive an email with the decision of administrators.\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:277
 msgid "You're are not allowed to browse panel"
 msgstr "No es autorizado a recorrer el panel"
 
 #: ../vhffs-panel/mailinglist/delete.pl:90
 #: ../vhffs-panel/mailinglist/save_sig.pl:89
 #: ../vhffs-panel/mailinglist/add_sub.pl:91
-#: ../vhffs-panel/mailinglist/prefs.pl:100
-#: ../vhffs-panel/mailinglist/save_options.pl:96
+#: ../vhffs-panel/mailinglist/prefs.pl:98
+#: ../vhffs-panel/mailinglist/save_options.pl:93
 #: ../vhffs-panel/mailinglist/change_right.pl:93
 #: ../vhffs-panel/mailinglist/del_member.pl:91 ../vhffs-panel/svn/delete.pl:81
-#: ../vhffs-panel/svn/prefs.pl:100 ../vhffs-panel/svn/prefs_save.pl:82
+#: ../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/add_mx.pl:88 ../vhffs-panel/dns/add_mx.pl:92
-#: ../vhffs-panel/dns/prefs.pl:92 ../vhffs-panel/dns/modif_a.pl:88
-#: ../vhffs-panel/dns/modif_a.pl:92 ../vhffs-panel/dns/add_ns.pl:86
-#: ../vhffs-panel/dns/add_ns.pl:90 ../vhffs-panel/dns/add_cname.pl:90
-#: ../vhffs-panel/dns/add_cname.pl:94 ../vhffs-panel/dns/delete_a.pl:60
-#: ../vhffs-panel/dns/delete_a.pl:64 ../vhffs-panel/dns/delete_ns.pl:88
-#: ../vhffs-panel/dns/delete_ns.pl:92 ../vhffs-panel/dns/delete_mx.pl:89
-#: ../vhffs-panel/dns/delete_mx.pl:93 ../vhffs-panel/dns/modif_cname.pl:91
-#: ../vhffs-panel/dns/modif_cname.pl:95 ../vhffs-panel/dns/modif_mx.pl:91
-#: ../vhffs-panel/dns/modif_mx.pl:95 ../vhffs-panel/dns/add_a.pl:92
-#: ../vhffs-panel/dns/add_a.pl:96 ../vhffs-panel/dns/delete_cname.pl:87
-#: ../vhffs-panel/dns/delete_cname.pl:91 ../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/dns/prefs.pl:91 ../vhffs-panel/dns/prefs.pl:108
+#: ../vhffs-panel/pgsql/delete.pl:77 ../vhffs-panel/pgsql/prefs.pl:78
+#: ../vhffs-panel/pgsql/prefs_save.pl:85 ../vhffs-panel/group/delete.pl:70
 #: ../vhffs-panel/group/remove_user_from_group.pl:75
 #: ../vhffs-panel/group/prefs.pl:80 ../vhffs-panel/group/join_group.pl:74
 #: ../vhffs-panel/group/prefs_save.pl:78
@@ -4811,7 +5332,7 @@
 #: ../vhffs-panel/web/delete.pl:83 ../vhffs-panel/web/prefs.pl:86
 #: ../vhffs-panel/web/prefs_save.pl:86 ../vhffs-panel/mysql/delete.pl:80
 #: ../vhffs-panel/mysql/prefs.pl:84 ../vhffs-panel/mysql/prefs_save.pl:87
-#: ../vhffs-panel/cvs/delete.pl:82 ../vhffs-panel/cvs/prefs.pl:86
+#: ../vhffs-panel/cvs/delete.pl:82 ../vhffs-panel/cvs/prefs.pl:80
 #: ../vhffs-panel/cvs/prefs_save.pl:81 ../vhffs-panel/mail/delete.pl:86
 #: ../vhffs-panel/mail/delete_box.pl:92 ../vhffs-panel/mail/add_account.pl:95
 #: ../vhffs-panel/mail/prefs.pl:91 ../vhffs-panel/mail/save_catchall.pl:85
@@ -4928,6 +5449,12 @@
 msgid "Your Subversion repository request : %s"
 msgstr "Todas las listas de repositorios Subversion"
 
+#: ../vhffs-panel/subscribe.pl:218
+msgid ""
+"Your email address. It will be used to contact you when needed and as a "
+"destination address if you use our email forwarding service"
+msgstr ""
+
 #: ../vhffs-robots/src/refused_web.pl:78
 #, fuzzy
 msgid "Your hosting request"
@@ -4943,7 +5470,7 @@
 msgstr ""
 "Su cdigo postal no es correcto! Escribe por favor un cdigo postal vlido"
 
-#: ../vhffs-panel/cvs/cvs_submit.pl:80
+#: ../vhffs-panel/cvs/create.pl:71
 #, fuzzy
 msgid ""
 "Your repository name is not correct. It must contains at least 3 caracters"
@@ -4951,7 +5478,7 @@
 "El nombre del repositorio est demasiado corto. Debe contener por lo menos 3 "
 "caracteres"
 
-#: ../vhffs-panel/cvs/cvs_submit.pl:76
+#: ../vhffs-panel/cvs/create.pl:69
 #, fuzzy
 msgid ""
 "Your repository name is not correct. It must contains only caracter and "
@@ -4965,11 +5492,6 @@
 msgid "Your request for a "
 msgstr "Su demanda por la zona web"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:137
-#, fuzzy
-msgid "Your request has been removed.\n"
-msgstr "Su demanda por la zona web:"
-
 #: ../vhffs-irc/modobot.pl:404
 #, fuzzy, perl-format
 msgid "Your request on %s"
@@ -4980,6 +5502,12 @@
 msgid "Your request on VHFFS platform"
 msgstr "Alarma sobre la plataforma Vhffs"
 
+#: ../vhffs-panel/subscribe.pl:217
+msgid ""
+"Your username. It must contains only alphanumeric characters in lowercase, "
+"its length must be between 3 and 12 chars"
+msgstr ""
+
 #: ../vhffs-robots/src/refused_web.pl:67
 #, fuzzy, perl-format
 msgid "Your web hosting request for the servername : %s "
@@ -4991,21 +5519,21 @@
 msgstr ""
 "Su cdigo postal no es correcto! Escribe por favor un cdigo postal vlido"
 
-#: ../vhffs-panel/subscribe.pl:202 ../vhffs-panel/user/prefs.pl:82
+#: ../vhffs-panel/subscribe.pl:202 ../vhffs-panel/user/prefs.pl:257
 #: ../vhffs-panel/admin/user/edit.pl:106 ../vhffs-panel/admin/user/show.pl:106
 msgid "Zipcode"
 msgstr "Cdigo postal"
 
-#: ../vhffs-panel/user/prefs_save.pl:95
+#: ../vhffs-panel/user/prefs.pl:102
 #, fuzzy
 msgid "Zipcode is not correct !"
 msgstr "Su cdigo postal no es correcto!"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:338
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:347
 msgid "cannot be removed from the list\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:306
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:313
 msgid "cannot be removed.\n"
 msgstr ""
 
@@ -5020,66 +5548,90 @@
 msgid "has been refused by the Moderators team"
 msgstr "negado por la equipa moderadores"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:55
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:50
 msgid "help\t\t - show this help\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:353
+#: ../vhffs-intl/extra_strings.pl:10
+msgid "help_user_bug"
+msgstr ""
+
+#: ../vhffs-intl/extra_strings.pl:9
+msgid "help_user_help"
+msgstr ""
+
+#: ../vhffs-intl/extra_strings.pl:11
+msgid "help_user_logout"
+msgstr ""
+
+#: ../vhffs-intl/extra_strings.pl:8
+msgid "help_user_preferences"
+msgstr ""
+
+#: ../vhffs-intl/extra_strings.pl:12
+msgid "help_user_projects"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:362
 #, perl-format
 msgid "in the moderation queue of the list %s"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:58
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:53
 msgid "lang [fr|us|es]\t - set listengine language\n"
 msgstr ""
 
-#: ../vhffs-listengine/src/listengine.pl:759
+#: ../vhffs-listengine/src/listengine.pl:781
 #, perl-format
 msgid "listengine - list of messages to moderate for %s"
 msgstr ""
 
-#: ../vhffs-listengine/src/listengine.pl:642
 #: ../vhffs-listengine/src/listengine.pl:664
-#: ../vhffs-listengine/src/listengine.pl:675
+#: ../vhffs-listengine/src/listengine.pl:686
+#: ../vhffs-listengine/src/listengine.pl:697
 msgid "listengine help"
 msgstr ""
 
-#: ../vhffs-listengine/src/listengine.pl:707
-#: ../vhffs-listengine/src/listengine.pl:718
-#: ../vhffs-listengine/src/listengine.pl:734
-#: ../vhffs-listengine/src/listengine.pl:746
-#: ../vhffs-listengine/src/listengine.pl:773
-#: ../vhffs-listengine/src/listengine.pl:784
+#: ../vhffs-listengine/src/listengine.pl:729
+#: ../vhffs-listengine/src/listengine.pl:740
+#: ../vhffs-listengine/src/listengine.pl:756
+#: ../vhffs-listengine/src/listengine.pl:768
+#: ../vhffs-listengine/src/listengine.pl:795
+#: ../vhffs-listengine/src/listengine.pl:806
 #, fuzzy
 msgid "listengine moderation"
 msgstr "Moderacin en curso"
 
-#: ../vhffs-listengine/src/listengine.pl:692
+#: ../vhffs-listengine/src/listengine.pl:714
 msgid "listengine result command"
 msgstr ""
 
-#: ../vhffs-listengine/src/listengine.pl:811
+#: ../vhffs-listengine/src/listengine.pl:833
 msgid "listengine: unknown command"
 msgstr ""
 
-#: ../vhffs-panel/subscribe.pl:199 ../vhffs-panel/user/prefs.pl:79
+#: ../vhffs-panel/subscribe.pl:199 ../vhffs-panel/user/prefs.pl:254
 msgid "mail"
 msgstr "mail"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:61
+#: ../vhffs-panel/svn/prefs.pl:143 ../vhffs-panel/svn/prefs_save.pl:115
+msgid "ml adress here..."
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:56
 msgid "moderate XXXXX\t\t\t - moderate the message with message-id XXXXX\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:64
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:59
 msgid "moderate list\t\t\t - give the message list for moderation\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:63
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:58
 msgid ""
 "moderate refused XXXXX\t\t\t - refuse the message with message-id XXXXX\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:62
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:57
 msgid ""
 "moderate validate XXXXX\t\t\t - moderate the message with message-id XXXXX\n"
 msgstr ""
@@ -5092,17 +5644,17 @@
 msgid "no information about date"
 msgstr "no informacines sobre la fecha"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:305
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:337
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:312
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:346
 #, perl-format
 msgid "present in the moderation queue for the list %s"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:56
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:51
 msgid "subscribe\t - subscribe the shipper to the list\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:391
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:399
 #, perl-format
 msgid "to %s-request@%s with the following subject : \"moderate %s\" \n"
 msgstr ""
@@ -5112,40 +5664,161 @@
 msgid "unknown message-id t: %s"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:57
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:52
 msgid "unsubscribe\t - unsubscribe from this list\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:69
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:64
 msgid "user info user@xxxxxxxxxx\t\t - show this user's informations\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:67
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:62
 msgid "user right RIGHT user@xxxxxxxxxx\t - change right for this user\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:66
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:61
 msgid ""
 "user subscribe user@xxxxxxxxxx\t\t - register the user user@xxxxxxxxxx on "
 "the list\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:65
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:60
 msgid ""
 "user unsubscribe user@xxxxxxxxxx\t - delete user user@xxxxxxxxxx from list\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:322
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:330
 #, perl-format
 msgid "was removed from the moderation queue from the list %s"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:354
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:363
 #, fuzzy
 msgid "was sent on the list.\n"
 msgstr "Mail por la lista"
 
 #, fuzzy
+#~ msgid "ACL Administration for : "
+#~ msgstr "Administracin PostgreSQL"
+
+#, fuzzy
+#~ msgid "Admin DNS"
+#~ msgstr "Admin"
+
+#, fuzzy
+#~ msgid "Admin account : "
+#~ msgstr "Cuenta Admin: "
+
+#, fuzzy
+#~ msgid "CNAME field successfully updated"
+#~ msgstr "CNAME bien puesto al da"
+
+#~ msgid "Cannot add this ressource to this domain"
+#~ msgstr "Es imposible aadir esto recurso en esto dominio"
+
+#, fuzzy
+#~ msgid "Cannot delete it."
+#~ msgstr "No se puede destruire"
+
+#~ msgid "Cannot modify this ressource on this domain"
+#~ msgstr "Es imposible modificar esto recurso en esto dominio"
+
+#~ msgid "Cannot update CNAME on this domain"
+#~ msgstr "Es imposible poner CNAME al da sobre esto dominio"
+
+#~ msgid "Cannot update MX on this domain"
+#~ msgstr "Es imposible poner MX al da sobre esto dominio"
+
+#~ msgid "Create a DNS "
+#~ msgstr "Crear un DNS"
+
+#, fuzzy
+#~ msgid "Go to Login"
+#~ msgstr "Volver al Login"
+
+#, fuzzy
+#~ msgid "Go to login page"
+#~ msgstr "Volver al Login"
+
+#~ msgid "Invalid IP"
+#~ msgstr "IP invlido"
+
+#, fuzzy
+#~ msgid "List all all A reccords"
+#~ msgstr "Listar todos los cuentas"
+
+#~ msgid "Login OK, please wait..."
+#~ msgstr "Login OK, espera un momento por favor..."
+
+#~ msgid "MX successfully changed"
+#~ msgstr "MX bien cambiada"
+
+#~ msgid "Moderated"
+#~ msgstr "Moderado"
+
+#, fuzzy
+#~ msgid "Moderator account : "
+#~ msgstr "Cuenta Usario:"
+
+#~ msgid "Open archives"
+#~ msgstr "Abrir los archivos"
+
+#~ msgid "Open post"
+#~ msgstr "Abrir el post"
+
+#~ msgid "Panel Access"
+#~ msgstr "Acceso al Panel"
+
+#, fuzzy
+#~ msgid "Resource successfully added to this domain"
+#~ msgstr "Recurso bien aadido a esto dominio"
+
+#, fuzzy
+#~ msgid "Subscribed. Waiting for confirmation"
+#~ msgstr "Creacin en espera"
+
+#, fuzzy
+#~ msgid "Subscriber"
+#~ msgstr "Suscribir"
+
+#, fuzzy
+#~ msgid "This domain name doesn't exist in the VHFFS database"
+#~ msgstr "Esto nombre de dominio DNS no existe en la base de datos de VHFFS"
+
+#, fuzzy
+#~ msgid "This part of the domain is now removed."
+#~ msgstr "Esta partida del dominio es ahora, quitada."
+
+#, fuzzy
+#~ msgid "Updated !"
+#~ msgstr "Puesto al da!"
+
+#~ msgid "User Successfully modified"
+#~ msgstr "Usuario bien modificado"
+
+#, fuzzy
+#~ msgid "User account : "
+#~ msgstr "Cuenta Usario:"
+
+#~ msgid "VHFFS Login OK"
+#~ msgstr "Login VHFFS OK"
+
+#~ msgid "VHFFS Login failed"
+#~ msgstr "Fracaso del Login VHFFS"
+
+#, fuzzy
+#~ msgid "Waiting for delete"
+#~ msgstr "Moderacin en curso"
+
+#, fuzzy
+#~ msgid "You have been successfully removed from the list %s\n"
+#~ msgstr "Esto bzon es bien aadido a esto dominio"
+
+#, fuzzy
+#~ msgid "Your request has been removed.\n"
+#~ msgstr "Su demanda por la zona web:"
+
+#, fuzzy
 #~ msgid "An error occured while applying changes"
 #~ msgstr "Un error lleg durante el commit de los cambios"
 

Modified: branches/vhffs-design/vhffs-intl/src/fr.po
===================================================================
--- branches/vhffs-design/vhffs-intl/src/fr.po	2007-05-17 11:04:33 UTC (rev 610)
+++ branches/vhffs-design/vhffs-intl/src/fr.po	2007-05-17 11:10:10 UTC (rev 611)
@@ -8,60 +8,123 @@
 # Cyril Brulebois <cyril.brulebois@xxxxxxxxxxxxxxxx>, 2006.
 msgid ""
 msgstr ""
-"Project-Id-Version: fr\n"
+"Project-Id-Version: VHFFS 4.1 French strings\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-03-25 19:16+0200\n"
+"POT-Creation-Date: 2007-05-17 10:35+0200\n"
 "PO-Revision-Date: 2006-04-26 11:41+0200\n"
 "Last-Translator: Christophe Benz <christophebenz@xxxxxxxx>\n"
-"Language-Team:  <fr@xxxxxx>\n"
+"Language-Team:  <fr@xxxxxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=ISO-8859-1\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: KBabel 1.11.2\n"
 "Plural-Forms:  nplurals=2; plural=(n > 1);\n"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:68
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:63
 msgid "\t\t\t\t   RIGHT can be subscriber or admin\n"
 msgstr "\t\t\t\t    RIGHT peut être inscrit ou admin\n"
 
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:143
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:159
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:162
+msgid "\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:417
+#, perl-format
+msgid ""
+"  %s-request@%s\n"
+"with the following subject :\n"
+"  \"accept %s\" \n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:420
+#, perl-format
+msgid ""
+"  %s-request@%s\n"
+"with the following subject :\n"
+"  \"refuse %s\" \n"
+msgstr ""
+
 #: ../vhffs-panel/admin/moderation_submit.pl:105 ../vhffs-irc/modobot.pl:397
 msgid ""
 " was accepted\n"
 "Please wait while we are creating your object\n"
-msgstr " a été acceptée.\nVeuillez patienter pendant la création de votre service\n"
+msgstr ""
+" a été acceptée.\n"
+"Veuillez patienter pendant la création de votre service\n"
 
-#: ../vhffs-panel/public/index.pl:61
+#: ../vhffs-panel/public/index.pl:63
 #, perl-format
 msgid "%s public area"
 msgstr "Zone publique de %s"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:269
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:303
 #, perl-format
 msgid "%s's Panel"
 msgstr "Panel de %s"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:155
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:145
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:164
 #, perl-format
-msgid "%s-request@%s with subject : \"help\"\n"
-msgstr "%s-request@%s avec le sujet : \"help\"\n"
+msgid "%s-request@%s with subject \"help\"\n"
+msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:151
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:153
-msgid "------\n"
-msgstr "------\n"
-
 #: ../vhffs-panel/web/create.pl:69
 msgid "<new site>."
 msgstr "<nom de votre nouveau site>."
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:386
+#: ../vhffs-panel/dns/prefs.pl:324
 #, perl-format
+msgid "@ represents the origin (%s)"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:341
+msgid ""
+"A CNAME, A or AAAA record with the same name already exists for this domain"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:126
+msgid "A Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:121
+msgid "A Record updated"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:394
+#, perl-format
 msgid "A mail to moderate is on the list %s.\n"
 msgstr "Un mail à modérer est arrivé sur la liste %s.\n"
 
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:412
+#, perl-format
+msgid ""
+"A new person wants to subscribe to the following mailing list:\n"
+"\n"
+"%s\n"
+"\n"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:149
+msgid "A record added"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:138
+msgid "AAAA Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:133
+msgid "AAAA Record updated"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:144
+msgid "AAAA record added"
+msgstr ""
+
 #: ../vhffs-panel/acl/view.pl:148
-msgid "ACL Administration for : "
-msgstr "Administration des ACL pour : "
+msgid "ACL Administration"
+msgstr ""
 
 #: ../vhffs-panel/acl/view.pl:167
 msgid "ACL level"
@@ -93,7 +156,7 @@
 msgid "Accept"
 msgstr "Accepter"
 
-#: ../vhffs-panel/logout.pl:60 ../vhffs-panel/auth.pl:60
+#: ../vhffs-panel/logout.pl:60 ../vhffs-api/src/Vhffs/Panel/Commons.pm:57
 msgid "Access to panel"
 msgstr "Accéder au panel"
 
@@ -105,7 +168,7 @@
 msgid "Accounts"
 msgstr "Comptes"
 
-#: ../vhffs-panel/user/prefs.pl:175
+#: ../vhffs-panel/user/prefs.pl:346
 #, perl-format
 msgid "Activate %s@%s email"
 msgstr "Activer l'adresse email %s@%s"
@@ -117,30 +180,39 @@
 #: ../vhffs-panel/admin/object/edit.pl:119
 #: ../vhffs-panel/admin/web/edit.pl:132 ../vhffs-panel/admin/mysql/edit.pl:120
 #: ../vhffs-panel/admin/cvs/edit.pl:128 ../vhffs-panel/admin/mail/edit.pl:160
+#: ../vhffs-intl/extra_strings.pl:20
 msgid "Activated"
 msgstr "Activé"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:131 ../vhffs-panel/dns/prefs.pl:143
+#: ../vhffs-panel/mailinglist/prefs.pl:156 ../vhffs-panel/dns/prefs.pl:277
 msgid "Add !"
 msgstr "Ajouter !"
 
-#: ../vhffs-panel/dns/prefs.pl:156
+#: ../vhffs-panel/dns/prefs.pl:290
 msgid "Add a CNAME field to your domain"
 msgstr "Ajouter un champ CNAME à votre domaine"
 
-#: ../vhffs-panel/dns/prefs.pl:148
+#: ../vhffs-panel/dns/prefs.pl:282
 msgid "Add a MX field to your domain"
 msgstr "Ajouter un champ MX à votre domaine"
 
-#: ../vhffs-panel/dns/prefs.pl:164
+#: ../vhffs-panel/dns/prefs.pl:298
 msgid "Add a NS field to your domain"
 msgstr "Ajouter un champ NS à votre domaine"
 
+#: ../vhffs-panel/dns/prefs.pl:304
+msgid "Add a SRV record to your domain"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:316
+msgid "Add a TXT record"
+msgstr ""
+
 #: ../vhffs-panel/mail/prefs.pl:117 ../vhffs-panel/mail/prefs.pl:127
 msgid "Add a forward on this domain"
 msgstr "Ajouter une redirection sur ce domaine"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:129
+#: ../vhffs-panel/mailinglist/prefs.pl:154
 msgid "Add a member"
 msgstr "Ajouter un membre"
 
@@ -152,10 +224,14 @@
 msgid "Add a user in this group"
 msgstr "Ajouter un utilisateur dans ce groupe"
 
-#: ../vhffs-panel/dns/prefs.pl:118
+#: ../vhffs-panel/dns/prefs.pl:251
 msgid "Add an A record"
 msgstr "Ajouter un enregistrement de type A"
 
+#: ../vhffs-panel/dns/prefs.pl:252
+msgid "Add an AAAA record"
+msgstr ""
+
 #: ../vhffs-panel/mail/prefs.pl:108
 msgid "Add an account"
 msgstr "Ajouter un compte"
@@ -168,7 +244,7 @@
 msgid "Add this user to this group"
 msgstr "Ajouter cet utilisateur à ce groupe"
 
-#: ../vhffs-panel/subscribe.pl:205 ../vhffs-panel/user/prefs.pl:84
+#: ../vhffs-panel/subscribe.pl:205 ../vhffs-panel/user/prefs.pl:259
 #: ../vhffs-panel/admin/user/edit.pl:104 ../vhffs-panel/admin/user/show.pl:104
 msgid "Address"
 msgstr "Adresse"
@@ -177,25 +253,25 @@
 msgid "Address (Servername)"
 msgstr "Adresse (directive ServerName)"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:181
+#: ../vhffs-panel/user/prefs.pl:108
+msgid "Address is not correct !"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:182
 #: ../vhffs-panel/admin/user/edit.pl:101 ../vhffs-panel/admin/user/edit.pl:131
 #: ../vhffs-panel/admin/user/show.pl:101 ../vhffs-panel/admin/user/show.pl:136
 msgid "Admin"
 msgstr "Administration"
 
-#: ../vhffs-panel/cvs/prefs.pl:99
+#: ../vhffs-panel/cvs/prefs.pl:89
 msgid "Admin CVS Repository"
 msgstr "Administration des dépôts CVS"
 
-#: ../vhffs-panel/dns/prefs.pl:110
-msgid "Admin DNS"
-msgstr "Administration des noms de domaine"
-
 #: ../vhffs-panel/repository/prefs.pl:96
 msgid "Admin Download repository"
 msgstr "Administration des espaces de téléchargement"
 
-#: ../vhffs-panel/dns/prefs.pl:123 ../vhffs-panel/web/prefs.pl:122
+#: ../vhffs-panel/dns/prefs.pl:257 ../vhffs-panel/web/prefs.pl:122
 #: ../vhffs-panel/mail/prefs.pl:137
 msgid "Admin Rights on this object (ACL)"
 msgstr "Droits d'admin sur cet objet (ACL)"
@@ -204,11 +280,11 @@
 msgid "Admin Subversion Repository"
 msgstr "Administration des dépôts Subversion"
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:73
-msgid "Admin account : "
-msgstr "Compte administrateur : "
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:72
+msgid "Admin account"
+msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:107
+#: ../vhffs-panel/mailinglist/prefs.pl:105
 msgid "Administration for list "
 msgstr "Administration pour la liste "
 
@@ -216,10 +292,9 @@
 msgid "Administrator Menu"
 msgstr "Menu d'administration"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:122
-#, perl-format
-msgid "Adress %s is already a subscriber for this list.\n"
-msgstr "L'adresse %s est déjà inscrite sur cette liste.\n"
+#: ../vhffs-panel/mailinglist/prefs.pl:121
+msgid "Admins only"
+msgstr ""
 
 #: ../vhffs-panel/web/create.pl:74
 msgid "Adress (ServerName directive)"
@@ -237,44 +312,52 @@
 msgid "Alert state"
 msgstr "État d'alerte"
 
-#: ../vhffs-panel/public/allwebsites.pl:71
-#: ../vhffs-panel/public/allgroups.pl:67
+#: ../vhffs-panel/public/allwebsites.pl:73
+#: ../vhffs-panel/public/allgroups.pl:69
 msgid "All"
 msgstr "Tous"
 
-#: ../vhffs-panel/dns/prefs.pl:114
-msgid "All A TYPE for you domain name"
-msgstr "Tous les enregistrements A pour votre domaine"
+#: ../vhffs-panel/dns/prefs.pl:245
+msgid "All A TYPE for your domain name"
+msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:155
+#: ../vhffs-panel/dns/prefs.pl:246
+msgid "All AAAA TYPE for your domain name"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:289
 msgid "All CNAME TYPE for your domain name"
 msgstr "Tous les enregistrements CNAME pour votre domaine"
 
-#: ../vhffs-panel/dns/prefs.pl:116
-msgid "All CNAME for you domain name"
-msgstr "Tous les CNAME sur votre domaine"
+#: ../vhffs-panel/dns/prefs.pl:248
+msgid "All CNAME for your domain name"
+msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:115
-msgid "All MX TYPE for you domain name"
-msgstr "Tous les champs MX pour votre domaine"
-
-#: ../vhffs-panel/dns/prefs.pl:147
+#: ../vhffs-panel/dns/prefs.pl:247 ../vhffs-panel/dns/prefs.pl:281
 msgid "All MX TYPE for your domain name"
 msgstr "Tous les champs MX pour votre domaine"
 
-#: ../vhffs-panel/dns/prefs.pl:163
+#: ../vhffs-panel/dns/prefs.pl:297
 msgid "All NS TYPE for your domain name"
 msgstr "Tous les enregistrements NS pour votre domaine"
 
+#: ../vhffs-panel/dns/prefs.pl:303
+msgid "All SRV records for your domain name"
+msgstr ""
+
 #: ../vhffs-panel/admin/svn/list.pl:73
 msgid "All Subversion repositories lists"
 msgstr "Liste de tous les dépôts Subversion"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:49
+#: ../vhffs-panel/dns/prefs.pl:317
+msgid "All TXT records for your domain name"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:45
 msgid "All commands can be sent as mail subject.\n"
 msgstr "Toutes les commandes peuvent être envoyées en sujet d'un mail.\n"
 
-#: ../vhffs-panel/public/allgroups.pl:65
+#: ../vhffs-panel/public/allgroups.pl:67
 #, perl-format
 msgid "All groups on %s"
 msgstr "Tous les groupes sur %s"
@@ -283,13 +366,10 @@
 msgid "All mailings sent to hosted"
 msgstr "Tous les mailings envoyés aux hébergés"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:51
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:47
 msgid ""
-"All mails with commands must be sent on \n"
-"                     YOURLIST-request@xxxxxxxxxx list.\n"
+"All mails with commands must be sent on YOURLIST-request@xxxxxxxxxx list.\n"
 msgstr ""
-" Tous les mails avec des commandes doivent être envoyés sur \n"
-"                     VOTRELIST-request@xxxxxxxxxxx list.\n"
 
 #: ../vhffs-panel/admin/object/list.pl:84
 msgid "All objects List"
@@ -299,8 +379,8 @@
 msgid "All users in this group"
 msgstr "Utilisateurs dans ce groupe"
 
-#: ../vhffs-panel/public/allwebsites.pl:69
-#: ../vhffs-panel/public/websearch.pl:74
+#: ../vhffs-panel/public/allwebsites.pl:71
+#: ../vhffs-panel/public/websearch.pl:76
 #, perl-format
 msgid "All websites on %s"
 msgstr "Sites web sur %s"
@@ -312,23 +392,40 @@
 "Existe déjà sur ce domaine ou paramètres incorrects. Vérifiez votre "
 "domaine"
 
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:293
+msgid "An MX record with the same name already exists for this domain"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:316
+msgid "An NS record with the same name already exists for this domain"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:189
+#, perl-format
+msgid ""
+"An error occured during your subscription to the following list:\n"
+"\n"
+"%s\n"
+"\n"
+msgstr ""
+
 #: ../vhffs-panel/mailinglist/submit.pl:114
 msgid "An error occured while adding an ACL for the group"
 msgstr "Une erreur est survenue lors de l'ajout d'une ACL pour le groupe"
 
-#: ../vhffs-panel/user/prefs_save.pl:184
+#: ../vhffs-panel/user/prefs.pl:169
 msgid "An error occured while adding the box"
 msgstr "Une erreur est survenue lors de l'ajout de la boîte"
 
-#: ../vhffs-panel/user/prefs_save.pl:188
+#: ../vhffs-panel/user/prefs.pl:171
 msgid "An error occured while adding the box (anti-spam adding)"
 msgstr "Une erreur est survenue lors de l'ajout de la protection anti-spam"
 
-#: ../vhffs-panel/user/prefs_save.pl:192
+#: ../vhffs-panel/user/prefs.pl:173
 msgid "An error occured while adding the box (anti-virus adding)"
 msgstr "Une erreur est survenue lors de l'ajout de l'anti-virus"
 
-#: ../vhffs-panel/user/prefs_save.pl:260
+#: ../vhffs-panel/user/prefs.pl:213
 msgid "An error occured while adding the forwarding"
 msgstr "Une erreur est survenue lors de l'ajout de la redirection"
 
@@ -372,7 +469,7 @@
 msgid "An error occured while creating the object %s %s"
 msgstr "Une erreur est survenue lors de la création de l'objet %s %s"
 
-#: ../vhffs-panel/dns/dns_submit.pl:78
+#: ../vhffs-panel/dns/create.pl:50
 msgid ""
 "An error occured while creating the object. The domain is not correct or "
 "aleady exists in Vhffs database"
@@ -381,7 +478,7 @@
 "incorrect ou existe déjà sur cette plate-forme"
 
 #: ../vhffs-panel/repository/repository_submit.pl:93
-#: ../vhffs-panel/cvs/cvs_submit.pl:92
+#: ../vhffs-panel/cvs/create.pl:81
 msgid "An error occured while creating the object.It probably already exists"
 msgstr ""
 "Une erreur est survenue lors de la création de cet objet. Il existe "
@@ -417,7 +514,7 @@
 msgid "An error occured while setting up the ACL"
 msgstr "Une erreur est survenue lors de la mise en place des ACL"
 
-#: ../vhffs-panel/user/prefs_save.pl:272
+#: ../vhffs-panel/user/prefs.pl:220
 msgid "An error occured while the forwarding"
 msgstr "Une erreur est survenue lors de l'ajout de la redirection"
 
@@ -429,7 +526,7 @@
 msgid "An error occured while updating"
 msgstr "Une erreur est survenue lors de la mise à jour"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:273
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:280
 #, perl-format
 msgid ""
 "An error occured while updating language for the following address: %s.\n"
@@ -447,7 +544,7 @@
 "Une erreur est survenue lors de la mise à jour de l'espace de "
 "téléchargement"
 
-#: ../vhffs-panel/svn/prefs_save.pl:107
+#: ../vhffs-panel/svn/prefs_save.pl:107 ../vhffs-panel/svn/prefs_save.pl:119
 msgid "An error occured while updating the Subversion repository"
 msgstr "Une erreur est survenue lors de la mise à jour du dépôt Subversion"
 
@@ -463,16 +560,11 @@
 msgid "An error occured while updating the project"
 msgstr "Une erreur est survenue lors de la mise à jour du projet"
 
-#: ../vhffs-panel/user/prefs_save.pl:128
+#: ../vhffs-panel/user/prefs.pl:140
 msgid "An error occured while updating the user account"
 msgstr "Une erreur est survenue lors de la mise à jour du compte utilisateur"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:181
-#, perl-format
-msgid "An error occurs while you subscribed to the list  %s \n"
-msgstr "Une erreur est survenue lors de votre ajout à la liste %s \n"
-
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:415
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:445
 msgid "April"
 msgstr "Avril"
 
@@ -500,7 +592,7 @@
 msgid "Are you SURE you want DELETE this  subversion repository ?"
 msgstr "Êtes-vous SÛR de vouloir supprimer ce dépôt Subversion ?"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:202 ../vhffs-panel/mail/prefs.pl:132
+#: ../vhffs-panel/mailinglist/prefs.pl:203 ../vhffs-panel/mail/prefs.pl:132
 msgid "Are you SURE you want DELETE this Mail Area ?"
 msgstr "Êtes-vous SÛR de vouloir détruire ce domaine mail ?"
 
@@ -516,11 +608,11 @@
 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:108
+#: ../vhffs-panel/cvs/prefs.pl:98
 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:131
+#: ../vhffs-panel/dns/prefs.pl:265
 msgid "Are you SURE you want DELETE this domain ?"
 msgstr "Êtes-vous SÛR de vouloir supprimer ce domaine ?"
 
@@ -532,11 +624,11 @@
 msgid "Are you SURE you want DELETE this project ?"
 msgstr "Êtes-vous SÛR de vouloir supprimer ce projet ?"
 
-#: ../vhffs-panel/user/prefs.pl:103
+#: ../vhffs-panel/user/prefs.pl:278
 msgid "Are you SURE you want DELETE this user?"
 msgstr "Êtes-vous SÛR de vouloir supprimer cet utilisateur ?"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:431
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:461
 msgid "August"
 msgstr "Août"
 
@@ -596,7 +688,7 @@
 "Faites attention ! Si vous cliquez, VHFFS arrêtera la base de données et "
 "modifiera le mot de passe pour cette base"
 
-#: ../vhffs-panel/dns/create.pl:36
+#: ../vhffs-panel/dns/create.pl:63
 msgid ""
 "Be careful ! You must give the reason why you want to host this domain on "
 "our servers."
@@ -668,7 +760,7 @@
 msgid "CGI ERROR ! %s"
 msgstr "Erreur CGI : %s"
 
-#: ../vhffs-panel/public/user.pl:66 ../vhffs-panel/public/group.pl:71
+#: ../vhffs-panel/public/user.pl:68 ../vhffs-panel/public/group.pl:72
 msgid "CGI ERROR!"
 msgstr "Erreur CGI"
 
@@ -693,11 +785,11 @@
 #: ../vhffs-panel/admin/group/edit_submit.pl:95
 #: ../vhffs-panel/admin/broadcast_view.pl:78 ../vhffs-panel/mysql/delete.pl:76
 #: ../vhffs-panel/mysql/prefs.pl:71 ../vhffs-panel/mysql/submit.pl:75
-#: ../vhffs-panel/mysql/prefs_save.pl:79 ../vhffs-panel/cvs/prefs.pl:73
+#: ../vhffs-panel/mysql/prefs_save.pl:79 ../vhffs-panel/cvs/prefs.pl:72
 msgid "CGI Error !"
 msgstr "Erreur CGI"
 
-#: ../vhffs-panel/svn/prefs_save.pl:74 ../vhffs-panel/repository/delete.pl:74
+#: ../vhffs-panel/svn/prefs_save.pl:76 ../vhffs-panel/repository/delete.pl:74
 #: ../vhffs-panel/repository/prefs_save.pl:74 ../vhffs-panel/cvs/delete.pl:74
 #: ../vhffs-panel/cvs/prefs_save.pl:74
 #, perl-format
@@ -707,17 +799,11 @@
 #: ../vhffs-panel/mailinglist/delete.pl:78
 #: ../vhffs-panel/mailinglist/save_sig.pl:77
 #: ../vhffs-panel/mailinglist/add_sub.pl:79
-#: ../vhffs-panel/mailinglist/save_options.pl:84
+#: ../vhffs-panel/mailinglist/save_options.pl:81
 #: ../vhffs-panel/mailinglist/change_right.pl:81
 #: ../vhffs-panel/mailinglist/change_right.pl:101
-#: ../vhffs-panel/mailinglist/del_member.pl:79
-#: ../vhffs-panel/user/prefs_save.pl:91 ../vhffs-panel/dns/delete.pl:79
-#: ../vhffs-panel/dns/add_mx.pl:80 ../vhffs-panel/dns/prefs.pl:78
-#: ../vhffs-panel/dns/modif_a.pl:80 ../vhffs-panel/dns/add_ns.pl:79
-#: ../vhffs-panel/dns/add_cname.pl:80 ../vhffs-panel/dns/delete_a.pl:50
-#: ../vhffs-panel/dns/delete_ns.pl:78 ../vhffs-panel/dns/delete_mx.pl:79
-#: ../vhffs-panel/dns/modif_cname.pl:81 ../vhffs-panel/dns/modif_mx.pl:81
-#: ../vhffs-panel/dns/add_a.pl:84 ../vhffs-panel/dns/delete_cname.pl:79
+#: ../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/pgsql/pgsql_submit.pl:73 ../vhffs-panel/web/web_submit.pl:72
 msgid "CGI Error!"
 msgstr "Erreur CGI"
@@ -730,14 +816,26 @@
 msgid "CGI problem"
 msgstr "Problème CGI"
 
-#: ../vhffs-panel/dns/modif_cname.pl:105
-msgid "CNAME field successfully updated"
-msgstr "Le champ CNAME a été mis à jour avec succès"
+#: ../vhffs-panel/dns/prefs.pl:188
+msgid "CNAME Record added"
+msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:183
+msgid "CNAME Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:179
+msgid "CNAME Record updated"
+msgstr ""
+
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:145
 msgid "CVS Admin"
 msgstr "Administration des dépôts CVS"
 
+#: ../vhffs-intl/extra_strings.pl:36
+msgid "CVS Repository"
+msgstr ""
+
 #: ../vhffs-panel/admin/cvs/list.pl:89
 msgid "CVS Root"
 msgstr "Répertoire racine"
@@ -746,7 +844,7 @@
 msgid "CVS Search"
 msgstr "Recherche de dépôts CVS"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:425
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:485
 msgid "CVS repositories for this group"
 msgstr "Dépôts CVS pour ce groupe"
 
@@ -758,7 +856,7 @@
 msgid "CVS repository awaiting validation"
 msgstr "Dépôts CVS en attente de validation"
 
-#: ../vhffs-panel/public/group.pl:146
+#: ../vhffs-panel/public/group.pl:148
 msgid "CVS repository for this group"
 msgstr "Dépôts CVS pour ce groupe"
 
@@ -818,12 +916,6 @@
 msgid "Can't modify object..."
 msgstr "Impossible de modifier l'objet..."
 
-#: ../vhffs-panel/dns/add_mx.pl:98 ../vhffs-panel/dns/add_ns.pl:96
-#: ../vhffs-panel/dns/add_cname.pl:100 ../vhffs-panel/dns/add_a.pl:108
-#: ../vhffs-panel/dns/add_a.pl:124
-msgid "Cannot add this ressource to this domain"
-msgstr "Impossible d'ajouter cette ressource à ce domaine"
-
 #: ../vhffs-panel/group/join_group.pl:82
 msgid "Cannot add this user in this group"
 msgstr "Impossible d'ajouter cet utilisateur dans ce groupe"
@@ -846,11 +938,6 @@
 "Impossible de créer l'utilisateur. Le nom d'utilisateur que vous avez "
 "entré est déjà pris"
 
-#: ../vhffs-panel/dns/delete_a.pl:70 ../vhffs-panel/dns/delete_ns.pl:98
-#: ../vhffs-panel/dns/delete_mx.pl:99 ../vhffs-panel/dns/delete_cname.pl:97
-msgid "Cannot delete it."
-msgstr "Impossible de le supprimer"
-
 #: ../vhffs-panel/admin/object/delete_avatar.pl:95
 msgid "Cannot delete this avatar"
 msgstr "Impossible de supprimer cet avatar"
@@ -893,20 +980,14 @@
 #: ../vhffs-panel/mailinglist/delete.pl:82
 #: ../vhffs-panel/mailinglist/save_sig.pl:81
 #: ../vhffs-panel/mailinglist/add_sub.pl:83
-#: ../vhffs-panel/mailinglist/prefs.pl:86
-#: ../vhffs-panel/mailinglist/save_options.pl:88
+#: ../vhffs-panel/mailinglist/prefs.pl:84
+#: ../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/add_mx.pl:83
-#: ../vhffs-panel/dns/prefs.pl:85 ../vhffs-panel/dns/modif_a.pl:83
-#: ../vhffs-panel/dns/add_ns.pl:81 ../vhffs-panel/dns/add_cname.pl:85
-#: ../vhffs-panel/dns/delete_a.pl:55 ../vhffs-panel/dns/delete_ns.pl:83
-#: ../vhffs-panel/dns/delete_mx.pl:84 ../vhffs-panel/dns/modif_cname.pl:86
-#: ../vhffs-panel/dns/modif_mx.pl:86 ../vhffs-panel/dns/add_a.pl:88
-#: ../vhffs-panel/dns/delete_cname.pl:82 ../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:79
-#: ../vhffs-panel/mail/add_account.pl:75
+#: ../vhffs-panel/dns/delete.pl:84 ../vhffs-panel/dns/prefs.pl:84
+#: ../vhffs-panel/pgsql/prefs.pl:71 ../vhffs-panel/repository/prefs.pl:76
+#: ../vhffs-panel/web/prefs.pl:72 ../vhffs-panel/mysql/prefs.pl:77
+#: ../vhffs-panel/cvs/prefs.pl:76 ../vhffs-panel/mail/add_account.pl:75
 #: ../vhffs-panel/mail/save_catchall.pl:74
 #: ../vhffs-panel/mail/add_forward.pl:73
 msgid "Cannot get informations on this object"
@@ -921,10 +1002,6 @@
 msgid "Cannot get statistics"
 msgstr "Impossible d'obtenir les statistiques"
 
-#: ../vhffs-panel/dns/modif_a.pl:102
-msgid "Cannot modify this ressource on this domain"
-msgstr "Impossible de modifier cette ressource pour ce domaine"
-
 #: ../vhffs-panel/group/remove_user_from_group.pl:83
 msgid "Cannot remove the owner from a group"
 msgstr "Impossible de supprimer le propriétaire d'un groupe"
@@ -939,7 +1016,7 @@
 msgstr ""
 "Impossible d'obtenir des informations sur cet espace de téléchargement"
 
-#: ../vhffs-panel/svn/prefs_save.pl:78
+#: ../vhffs-panel/svn/prefs_save.pl:80
 msgid "Cannot retrieve informations about this Subversion repository"
 msgstr "Impossible d'obtenir des informations sur ce dépôt Subversion"
 
@@ -948,7 +1025,7 @@
 msgstr "Impossible de consulter ce dépôt"
 
 #: ../vhffs-panel/mailinglist/save_sig.pl:95
-#: ../vhffs-panel/mailinglist/save_options.pl:150
+#: ../vhffs-panel/mailinglist/save_options.pl:124
 msgid "Cannot save"
 msgstr "Impossible de sauvegarder"
 
@@ -956,14 +1033,6 @@
 msgid "Cannot send message, CGI error..."
 msgstr "Impossible d'envoyer le message, erreur CGI..."
 
-#: ../vhffs-panel/dns/modif_cname.pl:101
-msgid "Cannot update CNAME on this domain"
-msgstr "Impossible de mettre à jour le champ CNAME sur ce domaine"
-
-#: ../vhffs-panel/dns/modif_mx.pl:101
-msgid "Cannot update MX on this domain"
-msgstr "Impossible de mettre à jour le champ MX sur ce domaine"
-
 #: ../vhffs-panel/admin/mail/edit.pl:98 ../vhffs-panel/admin/mail/show.pl:98
 msgid "Catchall"
 msgstr "Catchall"
@@ -992,10 +1061,6 @@
 msgid "Change Password"
 msgstr "Modifier le mot de passe"
 
-#: ../vhffs-panel/user/prefs_save.pl:234
-msgid "Change anti-virus status for your account\n"
-msgstr "Ajouter ou supprimer les protections anti-virus ou anti-spam\n"
-
 #: ../vhffs-panel/mail/prefs.pl:125
 msgid "Change catchall forward"
 msgstr "Changer la redirection catchall"
@@ -1008,11 +1073,11 @@
 msgid "Change language"
 msgstr "Changer la langue"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:167
+#: ../vhffs-panel/mailinglist/prefs.pl:168
 msgid "Change rights\n"
 msgstr "Changer les droits\n"
 
-#: ../vhffs-panel/user/prefs_save.pl:216
+#: ../vhffs-panel/user/prefs.pl:188
 msgid "Change spam protection status for your account\n"
 msgstr "Activer/supprimer la protection anti-spam pour ce compte\n"
 
@@ -1028,6 +1093,10 @@
 msgid "Change user-id"
 msgstr "Changer d'identifiant utilisateur"
 
+#: ../vhffs-panel/user/prefs.pl:199
+msgid "Changed anti-virus status for your account\n"
+msgstr ""
+
 #: ../vhffs-robots/src/refused_ml.pl:77 ../vhffs-robots/src/refused_mail.pl:79
 #: ../vhffs-robots/src/refused_postgres.pl:80
 #: ../vhffs-robots/src/refused_cvs.pl:76 ../vhffs-robots/src/refused_web.pl:75
@@ -1043,14 +1112,24 @@
 msgid ""
 "Cheers,\n"
 "The Moderator and Admin team\n"
-msgstr "Cordialement,\nL'équipe de modérateurs et d'administrateurs\n"
+msgstr ""
+"Cordialement,\n"
+"L'équipe de modérateurs et d'administrateurs\n"
 
-#: ../vhffs-panel/subscribe.pl:203 ../vhffs-panel/user/prefs.pl:83
+#: ../vhffs-panel/subscribe.pl:203 ../vhffs-panel/user/prefs.pl:258
 #: ../vhffs-panel/admin/user/edit.pl:105 ../vhffs-panel/admin/user/show.pl:105
 msgid "City"
 msgstr "Ville"
 
-#: ../vhffs-panel/subscribe.pl:212
+#: ../vhffs-panel/user/prefs.pl:96
+msgid "City is not correct !"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:114
+msgid "Closed"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:213
 msgid "Code confirmation"
 msgstr "Code de confirmation"
 
@@ -1058,19 +1137,27 @@
 msgid "Codes do not match"
 msgstr "Les codes ne correspondent pas"
 
-#: ../vhffs-panel/user/prefs.pl:87
+#: ../vhffs-panel/user/prefs.pl:262
 msgid "Confirm Password"
 msgstr "Confirmation du mot de passe"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:230
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:236
 msgid "Confirmation code was wrong.\n"
 msgstr "Le code de confirmation était faux.\n"
 
-#: ../vhffs-panel/subscribe.pl:204 ../vhffs-panel/user/prefs.pl:85
+#: ../vhffs-panel/subscribe.pl:215
+msgid "Confirmation code, contact administrator team if you can't read it"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:204 ../vhffs-panel/user/prefs.pl:260
 #: ../vhffs-panel/admin/user/edit.pl:107 ../vhffs-panel/admin/user/show.pl:107
 msgid "Country"
 msgstr "Pays"
 
+#: ../vhffs-panel/user/prefs.pl:105
+msgid "Country is not correct !"
+msgstr ""
+
 #: ../vhffs-panel/admin/web/edit.pl:96 ../vhffs-panel/admin/web/show.pl:95
 msgid "Crawl"
 msgstr "Crawl"
@@ -1088,13 +1175,13 @@
 msgid "Create"
 msgstr "Créer"
 
-#: ../vhffs-panel/cvs/create.pl:64
+#: ../vhffs-panel/cvs/create.pl:89
 msgid "Create a CVS Repository"
 msgstr "Créer un dépôt CVS"
 
-#: ../vhffs-panel/dns/create.pl:34
-msgid "Create a DNS "
-msgstr "Créer un DNS"
+#: ../vhffs-panel/dns/create.pl:58
+msgid "Create a DNS"
+msgstr ""
 
 #: ../vhffs-panel/repository/create.pl:64
 msgid "Create a Download Repository"
@@ -1135,6 +1222,7 @@
 #: ../vhffs-panel/admin/object/edit.pl:120
 #: ../vhffs-panel/admin/web/edit.pl:133 ../vhffs-panel/admin/mysql/edit.pl:121
 #: ../vhffs-panel/admin/cvs/edit.pl:129 ../vhffs-panel/admin/mail/edit.pl:161
+#: ../vhffs-intl/extra_strings.pl:19
 msgid "Created"
 msgstr "Créé"
 
@@ -1148,11 +1236,15 @@
 msgid "Creating error"
 msgstr "Erreur de création"
 
-#: ../vhffs-panel/user/prefs.pl:113 ../vhffs-panel/group/prefs.pl:111
+#: ../vhffs-intl/extra_strings.pl:18
+msgid "Creation error"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:288 ../vhffs-panel/group/prefs.pl:111
 msgid "Current avatar"
 msgstr "Avatar utilisé"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:612
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:682
 #, perl-format
 msgid "Current group: %s"
 msgstr "Groupe en cours d'utilisation : %s"
@@ -1173,11 +1265,16 @@
 msgid "DNS"
 msgstr "Nom de domaine"
 
+#: ../vhffs-panel/dns/prefs.pl:240
+#, perl-format
+msgid "DNS Administration - %s"
+msgstr ""
+
 #: ../vhffs-panel/admin/moderation.pl:175
 msgid "DNS awaiting validation"
 msgstr "DNS en attente de validation"
 
-#: ../vhffs-panel/dns/create.pl:37
+#: ../vhffs-panel/dns/create.pl:64
 msgid "DNS servers:"
 msgstr "Serveurs DNS :"
 
@@ -1194,6 +1291,23 @@
 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-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
+msgid "Database error"
+msgstr ""
+
 #: ../vhffs-panel/mysql/submit.pl:83
 msgid "Database name must contain at least 3 caracters"
 msgstr "Le nom de la base de données doit contenir au moins 3 caractères"
@@ -1223,22 +1337,23 @@
 msgid "Date of creation"
 msgstr "Date de création"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:447
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:477
 msgid "December"
 msgstr "Décembre"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:205 ../vhffs-panel/svn/prefs.pl:127
-#: ../vhffs-panel/user/prefs.pl:106 ../vhffs-panel/dns/prefs.pl:134
-#: ../vhffs-panel/dns/prefs.pl:184 ../vhffs-panel/dns/prefs.pl:205
-#: ../vhffs-panel/dns/prefs.pl:225 ../vhffs-panel/dns/prefs.pl:246
-#: ../vhffs-panel/pgsql/prefs.pl:112 ../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:111
-#: ../vhffs-panel/mail/prefs.pl:135
+#: ../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/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
 msgid "Delete"
 msgstr "Supprimer"
 
-#: ../vhffs-panel/user/prefs.pl:101
+#: ../vhffs-panel/user/prefs.pl:276
 msgid "Delete YOUR user"
 msgstr "Supprimer votre compte utilisateur"
 
@@ -1246,7 +1361,7 @@
 msgid "Delete avatar for this object"
 msgstr "Supprimer l'avatar de cet objet"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:166
+#: ../vhffs-panel/mailinglist/prefs.pl:167
 msgid "Delete from list"
 msgstr "Supprimer de la liste"
 
@@ -1258,7 +1373,7 @@
 msgid "Delete this database"
 msgstr "Supprimer cette base de données"
 
-#: ../vhffs-panel/dns/prefs.pl:129
+#: ../vhffs-panel/dns/prefs.pl:263
 msgid "Delete this domain name from the VHFFS platform"
 msgstr "Supprimer ce nom de domaine"
 
@@ -1266,7 +1381,7 @@
 msgid "Delete this forward"
 msgstr "Supprimer cette redirection"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:200
+#: ../vhffs-panel/mailinglist/prefs.pl:201
 msgid "Delete this list"
 msgstr "Supprimer cette liste"
 
@@ -1283,7 +1398,7 @@
 msgstr "Supprimer cet envoi en masse"
 
 #: ../vhffs-panel/group/prefs.pl:97 ../vhffs-panel/repository/prefs.pl:102
-#: ../vhffs-panel/cvs/prefs.pl:106
+#: ../vhffs-panel/cvs/prefs.pl:96
 msgid "Delete this project"
 msgstr "Supprimer ce groupe/projet"
 
@@ -1295,7 +1410,7 @@
 msgid "Delete this web area"
 msgstr "Supprimer ce site web"
 
-#: ../vhffs-panel/svn/create.pl:77 ../vhffs-panel/dns/create.pl:42
+#: ../vhffs-panel/svn/create.pl:77 ../vhffs-panel/dns/create.pl:69
 #: ../vhffs-panel/pgsql/create.pl:74 ../vhffs-panel/group/create.pl:66
 #: ../vhffs-panel/repository/create.pl:72
 #: ../vhffs-panel/admin/pgsql/edit.pl:101
@@ -1308,9 +1423,9 @@
 #: ../vhffs-panel/admin/mysql/show.pl:98 ../vhffs-panel/admin/cvs/edit.pl:100
 #: ../vhffs-panel/admin/cvs/show.pl:99 ../vhffs-panel/admin/mail/edit.pl:102
 #: ../vhffs-panel/admin/mail/show.pl:102
-#: ../vhffs-panel/public/lastgroups.pl:75 ../vhffs-panel/public/group.pl:89
-#: ../vhffs-panel/public/allgroups.pl:82 ../vhffs-panel/mysql/create.pl:72
-#: ../vhffs-panel/cvs/create.pl:71
+#: ../vhffs-panel/public/lastgroups.pl:77 ../vhffs-panel/public/group.pl:91
+#: ../vhffs-panel/public/allgroups.pl:84 ../vhffs-panel/mysql/create.pl:72
+#: ../vhffs-panel/cvs/create.pl:97
 msgid "Description"
 msgstr "Description"
 
@@ -1318,7 +1433,7 @@
 msgid "Description of your webarea"
 msgstr "Description de votre site web"
 
-#: ../vhffs-panel/dns/prefs.pl:158
+#: ../vhffs-panel/dns/prefs.pl:292
 msgid "Destination"
 msgstr "Destination"
 
@@ -1344,12 +1459,12 @@
 msgid "Domain"
 msgstr "Domaine"
 
-#: ../vhffs-panel/dns/create.pl:35 ../vhffs-panel/admin/dns/list.pl:87
-#: ../vhffs-panel/admin/mail/list.pl:87
+#: ../vhffs-panel/dns/create.pl:60 ../vhffs-panel/admin/dns/list.pl:87
+#: ../vhffs-panel/admin/mail/list.pl:87 ../vhffs-intl/extra_strings.pl:38
 msgid "Domain Name"
 msgstr "Nom de domaine"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:555
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:615
 msgid "Domains for this group"
 msgstr "Domaines pour ce groupe"
 
@@ -1357,7 +1472,11 @@
 msgid "Don't use Crawl"
 msgstr "Ne pas utiliser le crawl"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:530
+#: ../vhffs-intl/extra_strings.pl:33
+msgid "Download Repository"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:590
 msgid "Download repositories for this group"
 msgstr "Espaces de téléchargement pour ce groupe"
 
@@ -1417,10 +1536,18 @@
 msgid "Edit this object"
 msgstr "Éditer cet objet"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:130
+#: ../vhffs-panel/user/prefs.pl:135
+msgid "Email address changed"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:155
 msgid "Email adress"
 msgstr "Adresse mail"
 
+#: ../vhffs-panel/user/prefs.pl:99
+msgid "Email is not correct !"
+msgstr ""
+
 #: ../vhffs-panel/mail/prefs.pl:169
 msgid "Enable anti-spam"
 msgstr "Activer l'anti-spam"
@@ -1438,7 +1565,7 @@
 msgid "Error !"
 msgstr "Erreur"
 
-#: ../vhffs-panel/user/prefs_save.pl:180
+#: ../vhffs-panel/user/prefs.pl:167
 msgid ""
 "Error ! You MUST provide a password in your account when you create your "
 "popable account"
@@ -1452,11 +1579,11 @@
 "Erreur lors de la création du groupe (un groupe du même nom existe peut "
 "être déjà)."
 
-#: ../vhffs-panel/user/prefs_save.pl:221
+#: ../vhffs-panel/user/prefs.pl:190
 msgid "Error for spam protection\n"
 msgstr "Erreur sur la protection anti-spam\n"
 
-#: ../vhffs-panel/user/prefs_save.pl:239
+#: ../vhffs-panel/user/prefs.pl:201
 msgid "Error for virus protection\n"
 msgstr "Erreur sur la protection par anti-virus\n"
 
@@ -1501,7 +1628,7 @@
 msgid "Error. This group doesn't exists"
 msgstr "Erreur. Ce groupe n'existe pas"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:227
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:272
 msgid "Expired session ! Please login again"
 msgstr "Session expirée. Merci de vous authentifier à nouveau"
 
@@ -1509,7 +1636,7 @@
 msgid "Failed to modify note"
 msgstr "Impossible de modifier la note"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:407
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:437
 msgid "February"
 msgstr "Février"
 
@@ -1522,12 +1649,16 @@
 msgstr ""
 "Type de fichier non supporté. Merci d'envoyer un fichier au format PNG."
 
-#: ../vhffs-panel/subscribe.pl:200 ../vhffs-panel/user/prefs.pl:80
+#: ../vhffs-panel/subscribe.pl:200 ../vhffs-panel/user/prefs.pl:255
 #: ../vhffs-panel/admin/user/edit.pl:96 ../vhffs-panel/admin/user/show.pl:97
-#: ../vhffs-panel/public/user.pl:83 ../vhffs-panel/public/lastusers.pl:78
+#: ../vhffs-panel/public/user.pl:85 ../vhffs-panel/public/lastusers.pl:80
 msgid "Firstname"
 msgstr "Prénom"
 
+#: ../vhffs-panel/user/prefs.pl:90
+msgid "Firstname is not correct !"
+msgstr ""
+
 #: ../vhffs-panel/admin/mail/delete_forward.pl:109
 #, perl-format
 msgid "Forward %s deleted"
@@ -1538,7 +1669,11 @@
 msgid "Forward %s successfully added"
 msgstr "Redirection %s ajoutée"
 
-#: ../vhffs-panel/user/prefs.pl:179
+#: ../vhffs-panel/user/prefs.pl:215
+msgid "Forward added"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:350
 #, perl-format
 msgid "Forward emails from %s@%s to %s"
 msgstr "Rediriger les emails de %s@%s à %s"
@@ -1559,6 +1694,10 @@
 msgid "Forward successfully deleted"
 msgstr "Redirection supprimée"
 
+#: ../vhffs-panel/user/prefs.pl:222
+msgid "Forward updated"
+msgstr ""
+
 #: ../vhffs-panel/mail/prefs.pl:115
 msgid "Forwards"
 msgstr "Redirections"
@@ -1577,7 +1716,6 @@
 msgstr "Clé GPG"
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:82
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:87
 msgid "General"
 msgstr "Général"
 
@@ -1589,39 +1727,31 @@
 msgid "Give me a new password"
 msgstr "Donnez-moi un nouveau mot de passe"
 
-#: ../vhffs-panel/public/user.pl:114 ../vhffs-panel/public/lastgroups.pl:102
-#: ../vhffs-panel/public/lastusers.pl:111
-#: ../vhffs-panel/public/allwebsites.pl:98 ../vhffs-panel/public/index.pl:80
-#: ../vhffs-panel/public/group.pl:222 ../vhffs-panel/public/allgroups.pl:110
+#: ../vhffs-panel/public/user.pl:116 ../vhffs-panel/public/lastgroups.pl:104
+#: ../vhffs-panel/public/lastusers.pl:113
+#: ../vhffs-panel/public/allwebsites.pl:100 ../vhffs-panel/public/index.pl:82
+#: ../vhffs-panel/public/group.pl:224 ../vhffs-panel/public/allgroups.pl:112
 msgid "Go on login page"
 msgstr "Aller à la page d'authentification"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:247
-msgid "Go to Login"
-msgstr "Retour à la page d'authentification"
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:358
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:382
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:408
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:434
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:460
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:487
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:513
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:539
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:564
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:418
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:442
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:468
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:494
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:520
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:547
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:573
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:599
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:624
 msgid "Go to admin"
 msgstr "Aller à l'administration"
 
-#: ../vhffs-panel/login.pl:88 ../vhffs-panel/login.pl:118
-msgid "Go to login page"
-msgstr "Aller à la page d'authentification"
-
-#: ../vhffs-panel/mailinglist/prefs.pl:215 ../vhffs-panel/svn/prefs.pl:152
-#: ../vhffs-panel/dns/prefs.pl:261
+#: ../vhffs-panel/mailinglist/prefs.pl:216 ../vhffs-panel/svn/prefs.pl:159
+#: ../vhffs-panel/dns/prefs.pl:420
 msgid "Go to object-part admin"
 msgstr "Aller à l'administration de la partie objet"
 
-#: ../vhffs-panel/auth.pl:79
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:74
 msgid "Go to public area"
 msgstr "Aller dans la zone publique"
 
@@ -1641,10 +1771,11 @@
 #: ../vhffs-panel/admin/cvs/edit.pl:97 ../vhffs-panel/admin/cvs/show.pl:96
 #: ../vhffs-panel/admin/cvs/list.pl:90 ../vhffs-panel/admin/mail/edit.pl:99
 #: ../vhffs-panel/admin/mail/show.pl:99 ../vhffs-panel/admin/mail/list.pl:88
+#: ../vhffs-intl/extra_strings.pl:31
 msgid "Group"
 msgstr "Groupe"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:341
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:401
 #, perl-format
 msgid "Group %s"
 msgstr "Groupe %s"
@@ -1653,15 +1784,15 @@
 msgid "Group Admin"
 msgstr "Administration des groupes"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:336
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:396
 msgid "Group error"
 msgstr "Erreur sur le groupe"
 
-#: ../vhffs-panel/cvs/create.pl:66
+#: ../vhffs-panel/cvs/create.pl:93
 msgid "Group owning this CVS"
 msgstr "Groupe propriétaire de ce dépôt CVS"
 
-#: ../vhffs-panel/dns/create.pl:38
+#: ../vhffs-panel/dns/create.pl:65
 msgid "Group owning this DNS"
 msgstr "Groupe propriétaire de ce nom de domaine"
 
@@ -1685,18 +1816,18 @@
 msgid "Group owning this web space"
 msgstr "Groupe propriétaire de ce site web"
 
-#: ../vhffs-panel/public/index.pl:70
+#: ../vhffs-panel/public/index.pl:72
 msgid "Group public area"
 msgstr "Zone publique des groupes"
 
 #: ../vhffs-panel/acl/view.pl:151 ../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:71 ../vhffs-panel/public/group.pl:88
-#: ../vhffs-panel/public/allgroups.pl:78
+#: ../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/public/user.pl:87 ../vhffs-panel/public/lastusers.pl:82
+#: ../vhffs-panel/public/user.pl:89 ../vhffs-panel/public/lastusers.pl:84
 msgid "Groups"
 msgstr "Groupes"
 
@@ -1712,7 +1843,7 @@
 msgid "Groups stats"
 msgstr "Statistiques des groupes"
 
-#: ../vhffs-panel/user/prefs_save.pl:122
+#: ../vhffs-panel/user/prefs.pl:133
 #, perl-format
 msgid ""
 "Hello %s %s,\n"
@@ -1733,15 +1864,16 @@
 "\n"
 "Les administrateurs\n"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:47
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:43
 msgid "Hello and welcome on listengine help\n"
 msgstr "Bonjour et bienvenue dans l'aide de listengine\n"
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:89
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:320
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:81
 msgid "Help"
 msgstr "Aide"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:54
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:49
 msgid "Here are the basic listengine commands:\n"
 msgstr "Voici les commandes basiques de listengine :\n"
 
@@ -1749,6 +1881,13 @@
 msgid "Here, you can report a bug to the admin team"
 msgstr "Ici, vous pouvez signaler un bogue à l'équipe d'administration"
 
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:413
+#, perl-format
+msgid ""
+"His email address is:\n"
+"  %s\n"
+msgstr ""
+
 #: ../vhffs-panel/history.pl:105 ../vhffs-panel/admin/user/edit.pl:110
 #: ../vhffs-panel/admin/user/show.pl:111
 #: ../vhffs-panel/admin/pgsql/edit.pl:103
@@ -1788,42 +1927,48 @@
 msgid "History of this object"
 msgstr "Historique de cet objet"
 
-#: ../vhffs-panel/admin/user/edit.pl:100 ../vhffs-panel/admin/user/show.pl:100
+#: ../vhffs-panel/subscribe.pl:208 ../vhffs-panel/admin/user/edit.pl:100
+#: ../vhffs-panel/admin/user/show.pl:100
 msgid "Home"
 msgstr "Répertoire utilisateur"
 
-#: ../vhffs-panel/public/user.pl:113 ../vhffs-panel/public/lastgroups.pl:101
-#: ../vhffs-panel/public/lastusers.pl:110
-#: ../vhffs-panel/public/allwebsites.pl:97 ../vhffs-panel/public/index.pl:79
-#: ../vhffs-panel/public/group.pl:221 ../vhffs-panel/public/allgroups.pl:109
+#: ../vhffs-panel/public/user.pl:115 ../vhffs-panel/public/lastgroups.pl:103
+#: ../vhffs-panel/public/lastusers.pl:112
+#: ../vhffs-panel/public/allwebsites.pl:99 ../vhffs-panel/public/index.pl:81
+#: ../vhffs-panel/public/group.pl:223 ../vhffs-panel/public/allgroups.pl:111
 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
+msgid "Host"
+msgstr ""
+
 #: ../vhffs-panel/admin/user/edit.pl:132 ../vhffs-panel/admin/user/show.pl:140
 msgid "Hosted"
 msgstr "Hébergé"
 
-#: ../vhffs-panel/auth.pl:61
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:160
+msgid "However this list require approval for new subscribers.\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:115
+#, perl-format
+msgid "However you are (%s) already subscribed to this list.\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:58
 msgid "I've lost my password"
 msgstr "J'ai perdu mon mot de passe"
 
-#: ../vhffs-panel/dns/prefs.pl:141
+#: ../vhffs-panel/dns/prefs.pl:275
 msgid "IP"
 msgstr "Adresse IP"
 
-#: ../vhffs-panel/dns/prefs.pl:165
+#: ../vhffs-panel/dns/prefs.pl:299
 msgid "IP/host of your NS"
 msgstr "IP/machine de votre nom de domaine"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:89
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:106
-msgid ""
-"If this mail is an error and you don't ask to be a subscriber to this list, "
-"please do not answer to this mail\n"
-msgstr ""
-"Si vous n'avez pas sollicité ce mail et que vous n'avez pas essayé de vous "
-"inscrire à cette liste, merci de ne pas répondre à ce mail\n"
-
 #: ../vhffs-robots/src/refused_ml.pl:76 ../vhffs-robots/src/refused_mail.pl:78
 #: ../vhffs-robots/src/refused_postgres.pl:79
 #: ../vhffs-robots/src/refused_cvs.pl:75 ../vhffs-robots/src/refused_web.pl:74
@@ -1836,6 +1981,18 @@
 msgid "If you encounters problem, please mail: %s\n"
 msgstr "Si vous rencontrez des problèmes, envoyez un mail à %s\n"
 
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:83
+msgid ""
+"If you haven't asked to be subscribed to this list,\n"
+"please don't answer to this mail\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:101
+msgid ""
+"If you haven't asked to be unsubscribed from this list,\n"
+"please don't answer to this mail\n"
+msgstr ""
+
 #: ../vhffs-panel/group/prefs.pl:89
 msgid ""
 "If you want more disk space for your project, you must fill a form in the "
@@ -1857,25 +2014,99 @@
 msgid "In hope to keep you in our hosting service"
 msgstr "Dans l'espoir de vous garder dans notre service d'hébergement"
 
-#: ../vhffs-panel/dns/modif_a.pl:98 ../vhffs-panel/dns/add_a.pl:120
-msgid "Invalid IP"
-msgstr "Adresse IP invalide"
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:239
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:251
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:281
+msgid "Invalid IP address"
+msgstr ""
 
-#: ../vhffs-panel/dns/dns_submit.pl:72
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:269
+msgid "Invalid IP v6 address"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:339
+msgid "Invalid alias"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:328
+msgid "Invalid destination"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:353
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:369
+msgid "Invalid destination domain name"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:340
+msgid "Invalid destination host"
+msgstr ""
+
+#: ../vhffs-panel/dns/create.pl:41
 msgid "Invalid domain name"
 msgstr "Nom de domaine invalide"
 
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:305
+msgid "Invalid host"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:291
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:315
+msgid "Invalid hostname"
+msgstr ""
+
 #: ../vhffs-panel/mail/submit.pl:78
 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
+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
+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
+msgid "Invalid priority"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:351
+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
+msgid "Invalid record"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:352
+msgid "Invalid service syntax"
+msgstr ""
+
 #: ../vhffs-panel/subscribe.pl:93
 msgid ""
 "Invalid username, it must contain between 3 and 12 alphanumeric characters, "
 "all in lowercase"
-msgstr "Le nom d'utilisateur doit contenir entre 3 et 12 caractères, tous en minuscules"
+msgstr ""
+"Le nom d'utilisateur doit contenir entre 3 et 12 caractères, tous en "
+"minuscules"
 
-#: ../vhffs-panel/cvs/prefs.pl:102
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:356
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:372
+msgid "Invalid weight"
+msgstr ""
+
+#: ../vhffs-panel/cvs/prefs.pl:92
 msgid "Is this CVS repository public ??"
 msgstr "Ce dépôt CVS doit-il être public ?"
 
@@ -1883,52 +2114,64 @@
 msgid "Is this a public repository ?"
 msgstr "Ce dépôt doit-il être public ?"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:403
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:433
 msgid "January"
 msgstr "Janvier"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:427
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:457
 msgid "July"
 msgstr "Juillet"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:423
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:453
 msgid "June"
 msgstr "Juin"
 
-#: ../vhffs-panel/user/prefs.pl:88
+#: ../vhffs-panel/user/prefs.pl:263
 msgid "Language"
 msgstr "Langue"
 
-#: ../vhffs-panel/public/user.pl:116 ../vhffs-panel/public/lastgroups.pl:104
-#: ../vhffs-panel/public/lastusers.pl:113
-#: ../vhffs-panel/public/allwebsites.pl:100 ../vhffs-panel/public/index.pl:82
-#: ../vhffs-panel/public/group.pl:224 ../vhffs-panel/public/allgroups.pl:112
+#: ../vhffs-panel/public/user.pl:118 ../vhffs-panel/public/lastgroups.pl:106
+#: ../vhffs-panel/public/lastusers.pl:115
+#: ../vhffs-panel/public/allwebsites.pl:102 ../vhffs-panel/public/index.pl:84
+#: ../vhffs-panel/public/group.pl:226 ../vhffs-panel/public/allgroups.pl:114
 msgid "Last groups"
 msgstr "Derniers groupes"
 
-#: ../vhffs-panel/public/lastgroups.pl:62
+#: ../vhffs-panel/public/lastgroups.pl:64
 #, perl-format
 msgid "Last groups on %s"
 msgstr "Derniers groupes sur %s"
 
-#: ../vhffs-panel/public/user.pl:117 ../vhffs-panel/public/lastgroups.pl:105
-#: ../vhffs-panel/public/lastusers.pl:114
-#: ../vhffs-panel/public/allwebsites.pl:101 ../vhffs-panel/public/index.pl:83
-#: ../vhffs-panel/public/group.pl:225 ../vhffs-panel/public/allgroups.pl:113
+#: ../vhffs-panel/public/user.pl:119 ../vhffs-panel/public/lastgroups.pl:107
+#: ../vhffs-panel/public/lastusers.pl:116
+#: ../vhffs-panel/public/allwebsites.pl:103 ../vhffs-panel/public/index.pl:85
+#: ../vhffs-panel/public/group.pl:227 ../vhffs-panel/public/allgroups.pl:115
 msgid "Last users"
 msgstr "Derniers utilisateurs"
 
-#: ../vhffs-panel/public/lastusers.pl:68
+#: ../vhffs-panel/public/lastusers.pl:70
 #, perl-format
 msgid "Last users on %s"
 msgstr "Derniers utilisateurs sur %s"
 
-#: ../vhffs-panel/subscribe.pl:201 ../vhffs-panel/user/prefs.pl:81
+#: ../vhffs-panel/subscribe.pl:201 ../vhffs-panel/user/prefs.pl:256
 #: ../vhffs-panel/admin/user/edit.pl:97 ../vhffs-panel/admin/user/show.pl:98
-#: ../vhffs-panel/public/user.pl:85 ../vhffs-panel/public/lastusers.pl:80
+#: ../vhffs-panel/public/user.pl:87 ../vhffs-panel/public/lastusers.pl:82
 msgid "Lastname"
 msgstr "Nom"
 
+#: ../vhffs-panel/user/prefs.pl:93
+msgid "Lastname is not correct !"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:249
+msgid "List all A reccords"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:250
+msgid "List all AAAA reccords"
+msgstr ""
+
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:146
 msgid "List all CVS"
 msgstr "Lister tous les dépôts CVS"
@@ -1945,14 +2188,14 @@
 msgid "List all SVN repo"
 msgstr "Lister tous les dépôts Subversion"
 
+#: ../vhffs-panel/dns/prefs.pl:315
+msgid "List all TXT records"
+msgstr ""
+
 #: ../vhffs-panel/mail/prefs.pl:107
 msgid "List all accounts"
 msgstr "Lister tous les comptes utilisateur"
 
-#: ../vhffs-panel/dns/prefs.pl:117
-msgid "List all all A reccords"
-msgstr "Lister tous les enregistrements de type A"
-
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:173
 msgid "List all domain names"
 msgstr "Lister tous les noms de domaine"
@@ -1977,7 +2220,7 @@
 msgid "List all lists"
 msgstr "Lister toutes les listes de diffusion"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:128
+#: ../vhffs-panel/mailinglist/prefs.pl:153
 msgid "List all members"
 msgstr "Lister tous les membres"
 
@@ -2029,11 +2272,11 @@
 msgid "List of all users"
 msgstr "Liste de tous les utilisateurs"
 
-#: ../vhffs-panel/admin/web/list.pl:75 ../vhffs-panel/public/user.pl:115
-#: ../vhffs-panel/public/lastgroups.pl:103
-#: ../vhffs-panel/public/lastusers.pl:112
-#: ../vhffs-panel/public/allwebsites.pl:99 ../vhffs-panel/public/index.pl:81
-#: ../vhffs-panel/public/group.pl:223 ../vhffs-panel/public/allgroups.pl:111
+#: ../vhffs-panel/admin/web/list.pl:75 ../vhffs-panel/public/user.pl:117
+#: ../vhffs-panel/public/lastgroups.pl:105
+#: ../vhffs-panel/public/lastusers.pl:114
+#: ../vhffs-panel/public/allwebsites.pl:101 ../vhffs-panel/public/index.pl:83
+#: ../vhffs-panel/public/group.pl:225 ../vhffs-panel/public/allgroups.pl:113
 msgid "List of all websites"
 msgstr "Liste de tous les sites web"
 
@@ -2045,7 +2288,7 @@
 msgid "List will NOT be deleted"
 msgstr "La liste de diffusion NE sera PAS supprimée"
 
-#: ../vhffs-panel/public/group.pl:199
+#: ../vhffs-panel/public/group.pl:201
 msgid "List(s) for this group"
 msgstr "Liste(s) de diffusion de ce groupe"
 
@@ -2061,26 +2304,30 @@
 msgid "Local Part for this account"
 msgstr "Partie locale de ce compte"
 
-#: ../vhffs-panel/lost_ack.pl:70 ../vhffs-panel/lost_ack.pl:81
+#: ../vhffs-panel/lost_ack.pl:80 ../vhffs-panel/lost_ack.pl:91
 msgid "Login"
 msgstr "Nom d'utilisateur"
 
-#: ../vhffs-panel/login.pl:107
-msgid "Login OK, please wait..."
-msgstr "Authentification réussie, merci de patienter..."
-
-#: ../vhffs-panel/login.pl:87 ../vhffs-panel/login.pl:117
+#: ../vhffs-panel/auth.pl:69
 msgid "Login failed !"
 msgstr "Authentification échouée"
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:91
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:83
 msgid "Logout"
 msgstr "Se déconnecter"
 
-#: ../vhffs-panel/dns/modif_mx.pl:105
-msgid "MX successfully changed"
-msgstr "Champs MX modifiés avec succès"
+#: ../vhffs-panel/dns/prefs.pl:165
+msgid "MX Record added"
+msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:160
+msgid "MX Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:155
+msgid "MX Record updated"
+msgstr ""
+
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:158
 msgid "MYSQL Admin"
 msgstr "Administration des bases de données MySQL"
@@ -2102,11 +2349,19 @@
 msgid "Mail Area awaiting validation"
 msgstr "Domaines mail en attente de validation"
 
+#: ../vhffs-intl/extra_strings.pl:39
+msgid "Mail Domain"
+msgstr ""
+
 #: ../vhffs-panel/mail/submit.pl:82
 msgid "Mail area successfully created !"
 msgstr "Domaine mail créé avec succès"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:504
+#: ../vhffs-panel/user/prefs.pl:227
+msgid "Mail deleted"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:564
 msgid "Mail domain for this group"
 msgstr "Domaines mail pour ce groupe"
 
@@ -2126,24 +2381,28 @@
 msgid "Mail to all hosted people"
 msgstr "Envoyer un message à tous les hébergés"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:352
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:361
 #, perl-format
 msgid "Mail with id %s"
 msgstr "Mail avec l'identifiant %s"
 
-#: ../vhffs-panel/user/prefs_save.pl:121
+#: ../vhffs-panel/user/prefs.pl:132
 msgid "Mailbox modified"
 msgstr "Boîte mail modifiée"
 
-#: ../vhffs-panel/user/prefs_save.pl:197
+#: ../vhffs-panel/user/prefs.pl:175
 msgid "Mailbox successfully added"
 msgstr "Boîte mail ajoutée avec succès"
 
-#: ../vhffs-panel/admin/mailing/list.pl:86
+#: ../vhffs-panel/admin/mailing/list.pl:86 ../vhffs-intl/extra_strings.pl:40
 #: ../vhffs-api/src/Vhffs/Panel/Mailinglist.pm:147
 msgid "Mailing List"
 msgstr "Liste de diffusion"
 
+#: ../vhffs-panel/svn/prefs_save.pl:124
+msgid "Mailing list address is invalid"
+msgstr ""
+
 #: ../vhffs-panel/admin/broadcast_submit.pl:91
 msgid "Mailing successfully added"
 msgstr "Envoi ajouté avec succès"
@@ -2160,7 +2419,7 @@
 msgid "Mailing-lists Admin"
 msgstr "Administrer les listes de diffusion"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:478
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:538
 msgid "Mailing-lists for this group"
 msgstr "Listes de diffusion pour ce groupe"
 
@@ -2168,7 +2427,7 @@
 msgid "Manage mailings"
 msgstr "Gérer les envois de masse"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:127
+#: ../vhffs-panel/mailinglist/prefs.pl:152
 msgid "Manage members"
 msgstr "Gérer les membres"
 
@@ -2177,14 +2436,22 @@
 msgstr ""
 "Plusieurs utilisateurs répondent à votre requête. Choisissez parmi ceux-ci"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:411
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:441
 msgid "March"
 msgstr "Mars"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:419
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:449
 msgid "May"
 msgstr "Mai"
 
+#: ../vhffs-panel/mailinglist/prefs.pl:119
+msgid "Members only"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:120
+msgid "Members only and moderated"
+msgstr ""
+
 #: ../vhffs-panel/admin/broadcast.pl:79
 msgid "Message"
 msgstr "Message"
@@ -2202,15 +2469,15 @@
 msgid "Message sent successfully"
 msgstr "Message envoyé avec succès"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:321
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:336
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:329
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:345
 #, perl-format
 msgid "Message with id: %s"
 msgstr "Message avec l'identifiant : %s"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:113
-msgid "Moderated"
-msgstr "Modéré"
+#: ../vhffs-panel/mailinglist/prefs.pl:117
+msgid "Moderated for everyone"
+msgstr ""
 
 #: ../vhffs-panel/admin/moderation.pl:84
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:84
@@ -2221,9 +2488,9 @@
 msgid "Moderator"
 msgstr "Modérateur"
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:77
-msgid "Moderator account : "
-msgstr "Compte modérateur : "
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:74
+msgid "Moderator account"
+msgstr ""
 
 #: ../vhffs-panel/admin/user/edit.pl:149
 #: ../vhffs-panel/admin/pgsql/edit.pl:125
@@ -2232,6 +2499,7 @@
 #: ../vhffs-panel/admin/object/edit.pl:125
 #: ../vhffs-panel/admin/web/edit.pl:138 ../vhffs-panel/admin/mysql/edit.pl:126
 #: ../vhffs-panel/admin/cvs/edit.pl:134 ../vhffs-panel/admin/mail/edit.pl:166
+#: ../vhffs-intl/extra_strings.pl:25
 msgid "Modification applied"
 msgstr "Modification(s) appliquée(s)"
 
@@ -2242,6 +2510,7 @@
 #: ../vhffs-panel/admin/object/edit.pl:124
 #: ../vhffs-panel/admin/web/edit.pl:137 ../vhffs-panel/admin/mysql/edit.pl:125
 #: ../vhffs-panel/admin/cvs/edit.pl:133 ../vhffs-panel/admin/mail/edit.pl:165
+#: ../vhffs-intl/extra_strings.pl:24
 msgid "Modification error"
 msgstr "Erreur lors de la modification"
 
@@ -2270,11 +2539,13 @@
 msgid "Modifications successfully applied"
 msgstr "Modifications appliquées avec succès"
 
-#: ../vhffs-panel/svn/prefs.pl:121 ../vhffs-panel/user/prefs.pl:90
-#: ../vhffs-panel/dns/prefs.pl:185 ../vhffs-panel/dns/prefs.pl:206
-#: ../vhffs-panel/dns/prefs.pl:226 ../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:105
+#: ../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
 msgid "Modify"
 msgstr "Modifier"
 
@@ -2322,10 +2593,11 @@
 msgid "Modify this user"
 msgstr "Modifier cet utilisateur"
 
-#: ../vhffs-panel/dns/prefs.pl:138
+#: ../vhffs-panel/dns/prefs.pl:272
 msgid "Must we redirect the DNS on our servers ?"
 msgstr "Les DNS doivent-ils être redirigés sur nos serveurs ?"
 
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:79
 #: ../vhffs-api/src/Vhffs/Panel/Group.pm:162
 msgid "My Projects"
 msgstr "Mes groupes/projets"
@@ -2334,6 +2606,10 @@
 msgid "MySQL Administration"
 msgstr "Administration MySQL"
 
+#: ../vhffs-intl/extra_strings.pl:34
+msgid "MySQL DB"
+msgstr ""
+
 #: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:141
 msgid "MySQL Databases"
 msgstr "Bases de données MySQL"
@@ -2354,7 +2630,7 @@
 msgid "MySQL stats"
 msgstr "Statistiques MySQL"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:373
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:433
 msgid "Mysql database for this group"
 msgstr "Bases de données MySQL pour ce groupe"
 
@@ -2362,7 +2638,15 @@
 msgid "NS Admin"
 msgstr "Administration des noms de domaine"
 
-#: ../vhffs-panel/dns/prefs.pl:162
+#: ../vhffs-panel/dns/prefs.pl:174
+msgid "NS Record added"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:170
+msgid "NS Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:296
 msgid "NS TYPE"
 msgstr "Type NS"
 
@@ -2371,42 +2655,50 @@
 msgid "Name"
 msgstr "Nom"
 
-#: ../vhffs-panel/dns/prefs.pl:142
+#: ../vhffs-panel/dns/prefs.pl:276
 msgid "Name for reccord"
 msgstr "Nom de l'enregistrement"
 
+#: ../vhffs-panel/dns/prefs.pl:319
+msgid "Name for record"
+msgstr ""
+
 #: ../vhffs-panel/pgsql/prefs.pl:93 ../vhffs-panel/mysql/prefs.pl:100
 msgid "Name of the database"
 msgstr "Nom de la base de données"
 
-#: ../vhffs-panel/dns/prefs.pl:149
+#: ../vhffs-panel/dns/prefs.pl:283
 msgid "Name of your MX"
 msgstr "Nom de votre MX"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:260
+#: ../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:140
+#: ../vhffs-panel/svn/prefs.pl:120 ../vhffs-panel/dns/prefs.pl:274
 #: ../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:104
+#: ../vhffs-panel/web/prefs.pl:116 ../vhffs-panel/cvs/prefs.pl:94
 msgid "No"
 msgstr "Non"
 
-#: ../vhffs-panel/dns/prefs.pl:193
+#: ../vhffs-panel/dns/prefs.pl:331
 msgid "No A type found"
 msgstr "Aucun champ A trouvé"
 
-#: ../vhffs-panel/dns/prefs.pl:234
+#: ../vhffs-panel/dns/prefs.pl:343
+msgid "No AAAA type found"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:370
 msgid "No CNAME available on this domain"
 msgstr "Aucun champ CNAME trouvé pour ce domaine"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:442
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:502
 msgid "No CVS repository for this group"
 msgstr "Aucun dépôt CVS pour ce groupe"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:572
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:632
 msgid "No DNS domain for this group"
 msgstr "Aucun nom de domaine pour ce groupe"
 
@@ -2418,7 +2710,7 @@
 msgid "No Group to validate"
 msgstr "Aucun groupe à valider"
 
-#: ../vhffs-panel/dns/prefs.pl:214
+#: ../vhffs-panel/dns/prefs.pl:357
 msgid "No MX reccord for this domain"
 msgstr "Aucun champ MX trouvé pour ce domaine"
 
@@ -2426,37 +2718,45 @@
 msgid "No Mail Area to validate"
 msgstr "Aucun domaine mail à valider"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:521
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:581
 msgid "No Mail domain for this group"
 msgstr "Aucun domaine mail pour ce groupe"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:495
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:555
 msgid "No Mailing-list for this group"
 msgstr "Aucune liste de diffusion pour ce groupe"
 
-#: ../vhffs-panel/dns/prefs.pl:254
+#: ../vhffs-panel/dns/prefs.pl:383
 msgid "No NS available on this domain"
 msgstr "Aucun NS disponible pour ce domaine"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:416
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:476
 msgid "No PostgreSQL database for this group"
 msgstr "Aucune base de données PostgreSQL pour ce groupe"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:468
+#: ../vhffs-panel/dns/prefs.pl:399
+msgid "No SRV available on this domain"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:528
 msgid "No SVN repository for this group"
 msgstr "Aucun dépôt Subversion pour ce groupe"
 
+#: ../vhffs-panel/dns/prefs.pl:412
+msgid "No TXT available on this domain"
+msgstr ""
+
 #: ../vhffs-panel/admin/moderation.pl:166
 msgid "No Web Area to validate"
 msgstr "Aucun site web à valider"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:217
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:265
 msgid "No cookie found, please accept the cookie and then please login again !"
 msgstr ""
 "Aucun cookie n'a été trouvé. Merci de vous réauthentifier ou d'accepter "
 "les cookies"
 
-#: ../vhffs-panel/public/group.pl:161
+#: ../vhffs-panel/public/group.pl:163
 msgid "No cvs repository available for this group"
 msgstr "Aucun dépôt CVS pour ce groupe"
 
@@ -2465,7 +2765,7 @@
 msgid "No database to validate"
 msgstr "Aucune base de données à valider"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:547
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:607
 msgid "No download repository for this group"
 msgstr "Aucun espace de téléchargement pour ce groupe"
 
@@ -2477,16 +2777,16 @@
 msgid "No event about this object"
 msgstr "Aucun événement à propos de cet objet"
 
-#: ../vhffs-panel/public/allgroups.pl:70
+#: ../vhffs-panel/public/allgroups.pl:72
 msgid "No group"
 msgstr "Aucun groupe"
 
-#: ../vhffs-panel/public/user.pl:98 ../vhffs-panel/public/lastgroups.pl:84
-#: ../vhffs-panel/public/lastusers.pl:92 ../vhffs-panel/public/allgroups.pl:92
+#: ../vhffs-panel/public/user.pl:100 ../vhffs-panel/public/lastgroups.pl:86
+#: ../vhffs-panel/public/lastusers.pl:94 ../vhffs-panel/public/allgroups.pl:94
 msgid "No group for this user"
 msgstr "Aucun groupe pour cet utilisateur"
 
-#: ../vhffs-panel/public/group.pl:214
+#: ../vhffs-panel/public/group.pl:216
 msgid "No list available for this group"
 msgstr "Aucune liste de diffusion n'existe pour ce groupe"
 
@@ -2494,11 +2794,11 @@
 msgid "No list to validate"
 msgstr "Aucune liste de diffusion à valider"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:196
+#: ../vhffs-panel/mailinglist/prefs.pl:197
 msgid "No member on this list"
 msgstr "Aucun membre sur cette liste de diffusion"
 
-#: ../vhffs-listengine/src/listengine.pl:570
+#: ../vhffs-listengine/src/listengine.pl:592
 msgid "No message to moderate"
 msgstr "Aucun message à modérer"
 
@@ -2507,7 +2807,7 @@
 msgstr ""
 "Aucune modification ne peut être appliquée. Merci de vérifier les champs."
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:390
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:450
 msgid "No mysql database for this group"
 msgstr "Aucune base de données MySQL pour ce groupe"
 
@@ -2517,43 +2817,43 @@
 msgid "No repository to validate"
 msgstr "Aucun dépôt à modérer"
 
-#: ../vhffs-panel/public/group.pl:188
+#: ../vhffs-panel/public/group.pl:190
 msgid "No subversion repository available for this group"
 msgstr "Aucun dépôt Subversion disponible pour ce groupe"
 
-#: ../vhffs-panel/public/group.pl:78
+#: ../vhffs-panel/public/group.pl:79
 msgid "No such group"
 msgstr "Ne trouve pas le groupe"
 
-#: ../vhffs-panel/public/user.pl:73
+#: ../vhffs-panel/public/user.pl:75
 msgid "No such user"
 msgstr "Ne trouve pas l'utilisateur"
 
-#: ../vhffs-panel/public/group.pl:101
+#: ../vhffs-panel/public/group.pl:103
 msgid "No user for this group"
 msgstr "Aucun utilisateur pour ce groupe"
 
-#: ../vhffs-panel/public/allwebsites.pl:74
+#: ../vhffs-panel/public/allwebsites.pl:76
 msgid "No webarea"
 msgstr "Aucune zone web"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:366
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:426
 msgid "No webarea for this group"
 msgstr "Aucun site web pour ce groupe"
 
-#: ../vhffs-panel/public/group.pl:137
+#: ../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:105 ../vhffs-panel/dns/prefs.pl:133
+#: ../vhffs-panel/user/prefs.pl:280 ../vhffs-panel/dns/prefs.pl:267
 #: ../vhffs-panel/web/prefs.pl:130
 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:204 ../vhffs-panel/svn/prefs.pl:126
+#: ../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:110 ../vhffs-panel/mail/prefs.pl:134
+#: ../vhffs-panel/cvs/prefs.pl:100 ../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"
 
@@ -2567,7 +2867,7 @@
 msgid "Note successfully modified"
 msgstr "Note ajoutée avec succès"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:443
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:473
 msgid "November"
 msgstr "Novembre"
 
@@ -2583,8 +2883,8 @@
 msgid "Object id"
 msgstr "Identifiant de l'objet"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:216 ../vhffs-panel/svn/prefs.pl:153
-#: ../vhffs-panel/dns/prefs.pl:262
+#: ../vhffs-panel/mailinglist/prefs.pl:217 ../vhffs-panel/svn/prefs.pl:160
+#: ../vhffs-panel/dns/prefs.pl:421
 msgid "Object part"
 msgstr "Partie objet"
 
@@ -2596,11 +2896,11 @@
 msgid "Object-ID error"
 msgstr "Erreur sur l'identifiant de l'objet"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:439
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:469
 msgid "October"
 msgstr "Octobre"
 
-#: ../vhffs-panel/dns/prefs.pl:125 ../vhffs-panel/web/prefs.pl:124
+#: ../vhffs-panel/dns/prefs.pl:259 ../vhffs-panel/web/prefs.pl:124
 #: ../vhffs-panel/mail/prefs.pl:139
 msgid "Ok, go to ACL admin"
 msgstr "Aller à l'administration des ACL"
@@ -2609,32 +2909,36 @@
 msgid "Ok, send it !"
 msgstr "Envoyer"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:60
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:55
 msgid "Only this list administrators can use the following commands.\n"
 msgstr "Les administrateurs peuvent utiliser les commandes suivantes.\n"
 
 #: ../vhffs-panel/mailinglist/prefs.pl:116
-msgid "Open archives"
-msgstr "Archives ouvertes publiquement"
+msgid "Open for everyone"
+msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:114
-msgid "Open post"
-msgstr "Post ouvert au public"
+#: ../vhffs-panel/mailinglist/prefs.pl:118
+msgid "Open for members, moderated for non-members"
+msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:115
-msgid "Open subscribing"
-msgstr "Inscription ouverte au public"
+#: ../vhffs-panel/mailinglist/prefs.pl:113
+msgid "Open, approval required"
+msgstr ""
 
 #: ../vhffs-panel/mailinglist/prefs.pl:112
+msgid "Open, no approval required"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:110
 msgid "Options"
 msgstr "Options"
 
 #: ../vhffs-panel/mailinglist/save_sig.pl:97
-#: ../vhffs-panel/mailinglist/save_options.pl:154
+#: ../vhffs-panel/mailinglist/save_options.pl:128
 msgid "Options successfully modified"
 msgstr "Options modifiées avec succès"
 
-#: ../vhffs-panel/public/allwebsites.pl:85
+#: ../vhffs-panel/public/allwebsites.pl:87
 msgid "Owned by"
 msgstr "Appartient à"
 
@@ -2659,16 +2963,16 @@
 msgid "Owner of this group"
 msgstr "Propriétaire de ce groupe"
 
-#: ../vhffs-panel/login.pl:108
-msgid "Panel Access"
-msgstr "Accès au panel"
-
-#: ../vhffs-panel/user/prefs.pl:86 ../vhffs-panel/admin/user/edit.pl:99
+#: ../vhffs-panel/user/prefs.pl:261 ../vhffs-panel/admin/user/edit.pl:99
 #: ../vhffs-panel/admin/pgsql/edit.pl:97 ../vhffs-panel/admin/mysql/edit.pl:97
-#: ../vhffs-panel/auth.pl:59 ../vhffs-panel/mail/prefs.pl:111
+#: ../vhffs-panel/mail/prefs.pl:111 ../vhffs-api/src/Vhffs/Panel/Commons.pm:56
 msgid "Password"
 msgstr "Mot de passe"
 
+#: ../vhffs-panel/user/prefs.pl:125
+msgid "Password changed"
+msgstr ""
+
 #: ../vhffs-panel/admin/mail/password_box.pl:109
 #, perl-format
 msgid "Password changed for box %s"
@@ -2687,7 +2991,7 @@
 msgstr ""
 "Le mot de passe doit contenir uniquement des caractères alphanumériques"
 
-#: ../vhffs-panel/lost_ack.pl:80
+#: ../vhffs-panel/lost_ack.pl:90
 msgid "Password recovery failed!"
 msgstr "Le mot de passe n'a pas été retrouvé"
 
@@ -2699,24 +3003,28 @@
 msgid "Password will not be modified if it is set to 'blanked' or empty"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs_save.pl:99
+#: ../vhffs-panel/user/prefs.pl:112
 msgid "Passwords don't match"
 msgstr "Les mots de passe ne correspondent pas"
 
+#: ../vhffs-intl/extra_strings.pl:35
+msgid "PgSQL DB"
+msgstr ""
+
 #: ../vhffs-panel/admin/stats.pl:152
 msgid "PgSQL stats"
 msgstr "Statistiques PostgreSQL"
 
-#: ../vhffs-panel/login.pl:73 ../vhffs-api/src/Vhffs/Panel/Main.pm:32
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:43
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:48
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:59
 msgid "Platform temporary closed"
 msgstr "Plate-forme fermée temporairement"
 
-#: ../vhffs-panel/login.pl:74 ../vhffs-api/src/Vhffs/Panel/Main.pm:44
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:60
 msgid "Platform temporary closed."
 msgstr "Plate-forme fermée temporairement."
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:33
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:49
 msgid "Platform temporary closed<br/>database error"
 msgstr "Plate-forme fermée temporairement<br/>Erreur de base de données"
 
@@ -2736,7 +3044,7 @@
 msgid "Please enter a correct lastname"
 msgstr "Veuillez fournir un nom correct"
 
-#: ../vhffs-panel/auth.pl:57
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:53
 msgid "Please enter your username and password"
 msgstr "Veuillez entrer votre nom d'utilisateur et votre mot de passe"
 
@@ -2748,19 +3056,19 @@
 "Veuillez remplir tous les champs. Un mail contenant votre mot de passe vous "
 "sera envoyé"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:287
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:294
 msgid "Please read help of listengine\n"
 msgstr "Veuillez lire l'aide de listengine\n"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:183
-msgid "Please try again\n"
-msgstr "Veuillez réessayer\n"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:191
+msgid "Please try again !\n"
+msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:231
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:237
 msgid "Please try again.\n"
 msgstr "Veuillez réessayer.\n"
 
-#: ../vhffs-panel/lost_ack.pl:69
+#: ../vhffs-panel/lost_ack.pl:79
 #, perl-format
 msgid "Please wait %s, a new password will be sent to you in a few minutes..."
 msgstr ""
@@ -2782,6 +3090,10 @@
 msgid "Popboxes for"
 msgstr "Boîtes mail pour"
 
+#: ../vhffs-panel/dns/prefs.pl:308 ../vhffs-panel/dns/prefs.pl:393
+msgid "Port"
+msgstr ""
+
 #: ../vhffs-panel/pgsql/prefs.pl:91
 msgid "PostgreSQL Administration"
 msgstr "Administration des bases PostgreSQL"
@@ -2790,7 +3102,7 @@
 msgid "PostgreSQL Databases"
 msgstr "Bases de données PostgreSQL"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:399
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:459
 msgid "PostgreSQL database for this group"
 msgstr "Bases de données PostgreSQL pour ce groupe"
 
@@ -2810,23 +3122,36 @@
 msgid "Postgres database awaiting validation"
 msgstr "Bases de données PostgreSQL en attente de validation"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:118
+#: ../vhffs-panel/mailinglist/prefs.pl:115
+msgid "Posting control:"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:237
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:267
+msgid "Prefix already exists"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:143
 msgid "Prefix on subject"
 msgstr "Préfixe devant le sujet du mail"
 
-#: ../vhffs-panel/dns/prefs.pl:150
+#: ../vhffs-panel/dns/prefs.pl:309 ../vhffs-panel/dns/prefs.pl:394
+msgid "Priority"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:284
 msgid "Priority of your MX"
 msgstr "Priorité de votre MX"
 
-#: ../vhffs-panel/dns/prefs.pl:203
+#: ../vhffs-panel/dns/prefs.pl:353
 msgid "Priority: "
 msgstr "Priorité : "
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:123
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:112
 msgid "Project : "
 msgstr "Groupe/Projet : "
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:124
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:113
 msgid "Project Configuration"
 msgstr "Configuration du groupe/projet"
 
@@ -2854,11 +3179,28 @@
 msgid "Project Successfully modified"
 msgstr "Projet modifié avec succès"
 
+#: ../vhffs-panel/dns/prefs.pl:305
+msgid "Protocol"
+msgstr ""
+
 #: ../vhffs-panel/svn/prefs.pl:117 ../vhffs-panel/admin/cvs/edit.pl:96
 #: ../vhffs-panel/admin/cvs/show.pl:95
 msgid "Public"
 msgstr "Public"
 
+#: ../vhffs-panel/mailinglist/prefs.pl:141
+msgid "Public archives"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:79
+msgid "Public area is not available on this platform."
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:77
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:78
+msgid "Public area not available"
+msgstr ""
+
 #: ../vhffs-panel/admin/group/edit.pl:96 ../vhffs-panel/admin/group/show.pl:96
 #: ../vhffs-panel/admin/repository/edit.pl:102
 #: ../vhffs-panel/admin/repository/show.pl:100
@@ -2867,7 +3209,7 @@
 
 #: ../vhffs-panel/repository/prefs.pl:100
 #: ../vhffs-panel/admin/group/edit.pl:110
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:344
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:404
 #, perl-format
 msgid "Quota (used/total) : %s/%s"
 msgstr "Quota (utilisé/total) : %s/%s"
@@ -2878,7 +3220,7 @@
 msgid "Quota used"
 msgstr "Quota utilisé"
 
-#: ../vhffs-panel/public/rss/lastgroups.pl:107
+#: ../vhffs-panel/public/rss/lastgroups.pl:108
 #: ../vhffs-panel/public/rss/lastusers.pl:106
 msgid "RSS infos are not published"
 msgstr "Les informations ne sont pas publiées au format RSS"
@@ -2898,10 +3240,24 @@
 msgid "Reason given : "
 msgstr "Raison donnée : "
 
-#: ../vhffs-panel/subscribe.pl:213
+#: ../vhffs-panel/subscribe.pl:214
 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
+msgid "Record does not exists"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:202
+msgid "Record type doesn't exists"
+msgstr ""
+
 #: ../vhffs-panel/admin/moderation.pl:116
 #: ../vhffs-panel/admin/moderation.pl:158
 #: ../vhffs-panel/admin/moderation.pl:199
@@ -2919,34 +3275,48 @@
 msgid "Remove this user from this group"
 msgstr "Supprimer cet utilisateur du groupe"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:117
+#: ../vhffs-panel/mailinglist/prefs.pl:142
 msgid "Reply to: on list"
 msgstr "Champ Reply-to: actif"
 
 #: ../vhffs-panel/svn/create.pl:71 ../vhffs-panel/repository/create.pl:65
-#: ../vhffs-panel/admin/repository/list.pl:88 ../vhffs-panel/cvs/create.pl:65
+#: ../vhffs-panel/admin/repository/list.pl:88 ../vhffs-panel/cvs/create.pl:91
 msgid "Repository Name"
 msgstr "Nom du dépôt"
 
-#: ../vhffs-panel/svn/prefs_save.pl:111
+#: ../vhffs-panel/svn/prefs_save.pl:111 ../vhffs-panel/svn/prefs_save.pl:121
 msgid "Repository updated"
 msgstr "Dépôt mis à jour"
 
-#: ../vhffs-panel/dns/add_mx.pl:102 ../vhffs-panel/dns/add_ns.pl:100
-#: ../vhffs-panel/dns/add_cname.pl:104 ../vhffs-panel/dns/add_a.pl:112
-#: ../vhffs-panel/dns/add_a.pl:128
-msgid "Resource successfully added to this domain"
-msgstr "Ressource ajoutée au domaine avec succès"
-
 #: ../vhffs-panel/mailinglist/change_right.pl:111
 msgid "Rights successfully changed"
 msgstr "Droits modifiés avec succès"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:451
+#: ../vhffs-panel/dns/prefs.pl:211
+msgid "SRV Record added"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:200
+msgid "SRV Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:196
+msgid "SRV Record updated"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:302
+msgid "SRV TYPE"
+msgstr ""
+
+#: ../vhffs-intl/extra_strings.pl:37
+msgid "SVN Repository"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:511
 msgid "SVN repositories for this group"
 msgstr "Dépôts Subversion pour ce groupe"
 
-#: ../vhffs-panel/public/group.pl:172
+#: ../vhffs-panel/public/group.pl:174
 msgid "SVN repository for this group"
 msgstr "Dépôt Subversion pour ce groupe"
 
@@ -2962,7 +3332,7 @@
 msgid "SVNweb"
 msgstr "Subversion par le web"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:121
+#: ../vhffs-panel/mailinglist/prefs.pl:146
 msgid "Save options"
 msgstr "Sauvegarder les options"
 
@@ -3023,7 +3393,7 @@
 msgid "Search for a web area"
 msgstr "Recherche d'un site web"
 
-#: ../vhffs-panel/public/index.pl:75 ../vhffs-api/src/Vhffs/Panel/Admin.pm:119
+#: ../vhffs-panel/public/index.pl:77 ../vhffs-api/src/Vhffs/Panel/Admin.pm:119
 msgid "Search for a website"
 msgstr "Recherche d'un site web"
 
@@ -3070,15 +3440,15 @@
 msgid "Search result for domain"
 msgstr "Résultat de recherche pour un nom de domaine"
 
-#: ../vhffs-panel/public/user.pl:118 ../vhffs-panel/public/lastgroups.pl:106
-#: ../vhffs-panel/public/lastusers.pl:115
-#: ../vhffs-panel/public/allwebsites.pl:102 ../vhffs-panel/public/index.pl:84
-#: ../vhffs-panel/public/group.pl:226 ../vhffs-panel/public/allgroups.pl:114
+#: ../vhffs-panel/public/user.pl:120 ../vhffs-panel/public/lastgroups.pl:108
+#: ../vhffs-panel/public/lastusers.pl:117
+#: ../vhffs-panel/public/allwebsites.pl:104 ../vhffs-panel/public/index.pl:86
+#: ../vhffs-panel/public/group.pl:228 ../vhffs-panel/public/allgroups.pl:116
 msgid "Search:"
 msgstr "Recherche :"
 
 #: ../vhffs-panel/mailinglist/create.pl:101 ../vhffs-panel/svn/create.pl:76
-#: ../vhffs-panel/dns/create.pl:41 ../vhffs-panel/pgsql/create.pl:73
+#: ../vhffs-panel/dns/create.pl:68 ../vhffs-panel/pgsql/create.pl:73
 #: ../vhffs-panel/group/create.pl:65 ../vhffs-panel/repository/create.pl:71
 #: ../vhffs-panel/alert.pl:71 ../vhffs-panel/admin/user/edit.pl:111
 #: ../vhffs-panel/admin/pgsql/edit.pl:102
@@ -3090,7 +3460,7 @@
 #: ../vhffs-panel/admin/web/edit.pl:105 ../vhffs-panel/admin/mysql/edit.pl:103
 #: ../vhffs-panel/admin/cvs/edit.pl:101 ../vhffs-panel/admin/mail/edit.pl:103
 #: ../vhffs-panel/web/create.pl:80 ../vhffs-panel/mysql/create.pl:71
-#: ../vhffs-panel/cvs/create.pl:70 ../vhffs-panel/mail/create.pl:70
+#: ../vhffs-panel/cvs/create.pl:96 ../vhffs-panel/mail/create.pl:70
 msgid "Send"
 msgstr "Envoyer"
 
@@ -3098,7 +3468,7 @@
 msgid "Send an email to all hosted people"
 msgstr "Envoyer un mail à tous les hébergés"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:288
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:295
 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"
 
@@ -3110,11 +3480,11 @@
 msgid "Send logo"
 msgstr "Envoyer l'avatar"
 
-#: ../vhffs-panel/user/prefs.pl:112 ../vhffs-panel/user/prefs.pl:114
+#: ../vhffs-panel/user/prefs.pl:287 ../vhffs-panel/user/prefs.pl:289
 msgid "Send my avatar"
 msgstr "Envoyer mon avatar"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:435
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:465
 msgid "September"
 msgstr "Septembre"
 
@@ -3128,6 +3498,10 @@
 msgid "Servername error. Please enter a valid servername"
 msgstr "Erreur de ServerName. Veuillez entrer un ServerName valide"
 
+#: ../vhffs-panel/dns/prefs.pl:306
+msgid "Service"
+msgstr ""
+
 #: ../vhffs-panel/admin/user/edit.pl:98 ../vhffs-panel/admin/user/show.pl:99
 msgid "Shell"
 msgstr "Shell"
@@ -3164,30 +3538,30 @@
 msgid "Show Web Area"
 msgstr "Montrer le site web"
 
-#: ../vhffs-panel/public/index.pl:69
+#: ../vhffs-panel/public/index.pl:71
 #, perl-format
 msgid "Show me all groups on %s"
 msgstr "Voir tous les groupes/projets enregistrés sur %s"
 
-#: ../vhffs-panel/public/index.pl:73
+#: ../vhffs-panel/public/index.pl:75
 msgid "Show me all websites"
 msgstr "Voir tous les sites web"
 
-#: ../vhffs-panel/public/index.pl:68
+#: ../vhffs-panel/public/index.pl:70
 #, perl-format
 msgid "Show me last groups on %s"
 msgstr "Voir les derniers groupes sur %s"
 
-#: ../vhffs-panel/public/index.pl:62
+#: ../vhffs-panel/public/index.pl:64
 #, perl-format
 msgid "Show me last users on %s"
 msgstr "Voir les derniers utilisateurs sur %s"
 
-#: ../vhffs-panel/public/index.pl:71
+#: ../vhffs-panel/public/index.pl:73
 msgid "Show me this group according to this username"
 msgstr "Voir ce groupe"
 
-#: ../vhffs-panel/public/index.pl:64
+#: ../vhffs-panel/public/index.pl:66
 msgid "Show me this user according to this username"
 msgstr "Voir cet utilisateur"
 
@@ -3227,7 +3601,7 @@
 msgid "Show this user"
 msgstr "Voir cet utilisateur"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:123
+#: ../vhffs-panel/mailinglist/prefs.pl:148
 msgid "Signature"
 msgstr ""
 
@@ -3278,7 +3652,7 @@
 msgid "Su !"
 msgstr "Changer d'identité"
 
-#: ../vhffs-panel/dns/prefs.pl:159
+#: ../vhffs-panel/dns/prefs.pl:293
 msgid "Subdomain name"
 msgstr "Nom de sous-domaine"
 
@@ -3291,37 +3665,42 @@
 msgid "Subject: "
 msgstr "Sujet : "
 
-#: ../vhffs-panel/dns/prefs.pl:151 ../vhffs-panel/dns/prefs.pl:157
-#: ../vhffs-panel/dns/prefs.pl:169
+#: ../vhffs-panel/dns/prefs.pl:285 ../vhffs-panel/dns/prefs.pl:291
+#: ../vhffs-panel/dns/prefs.pl:312
 msgid "Submit"
 msgstr "Envoyer"
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:90
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:82
 msgid "Submit a bug"
 msgstr "Signaler un dysfonctionnement"
 
-#: ../vhffs-panel/subscribe.pl:206 ../vhffs-panel/subscribe.pl:215
-#: ../vhffs-panel/auth.pl:62
+#: ../vhffs-panel/subscribe.pl:206 ../vhffs-panel/subscribe.pl:220
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:59
 msgid "Subscribe"
 msgstr "Inscription"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:136
-#, perl-format
-msgid "Subscribe to the list %s is forbidden\n"
-msgstr "L'inscription à la liste %s est interdite\n"
+#: ../vhffs-panel/mailinglist/prefs.pl:111
+msgid "Subscribe control:"
+msgstr ""
 
 #: ../vhffs-panel/mailinglist/prefs.pl:178
-msgid "Subscribed. Waiting for confirmation"
-msgstr "Inscrit. En attente de confirmation"
+msgid "Subscribed"
+msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:177
-msgid "Subscriber"
-msgstr "Inscrit"
-
 #: ../vhffs-panel/subscribe.pl:196
 msgid "Subscription"
 msgstr "Inscription"
 
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:130
+#, perl-format
+msgid ""
+"Subscription to the following list is forbidden:\n"
+"\n"
+"%s\n"
+"\n"
+"Have a nice day.\n"
+msgstr ""
+
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:131
 msgid "Subversion Admin"
 msgstr "Administration des dépôts Subversion"
@@ -3366,14 +3745,26 @@
 #: ../vhffs-panel/admin/mysql/edit.pl:122
 #: ../vhffs-panel/admin/mysql/edit.pl:123 ../vhffs-panel/admin/cvs/edit.pl:130
 #: ../vhffs-panel/admin/cvs/edit.pl:131 ../vhffs-panel/admin/mail/edit.pl:162
-#: ../vhffs-panel/admin/mail/edit.pl:163
+#: ../vhffs-panel/admin/mail/edit.pl:163 ../vhffs-intl/extra_strings.pl:21
 msgid "Suspended"
 msgstr "Suspendu"
 
-#: ../vhffs-panel/admin/user/edit.pl:146
+#: ../vhffs-panel/admin/user/edit.pl:146 ../vhffs-intl/extra_strings.pl:22
 msgid "Suspended before deletion"
 msgstr "Suspendu avant suppression"
 
+#: ../vhffs-panel/dns/prefs.pl:216
+msgid "TXT Record added"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:227
+msgid "TXT Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:222
+msgid "TXT Record updated"
+msgstr ""
+
 #: ../vhffs-panel/mail/create.pl:71
 msgid "Tell us what the use of this mail space will be"
 msgstr "Expliquez quel sera l'usage de cet espace mail"
@@ -3386,11 +3777,20 @@
 msgid "Tell us what the use of this web space will be"
 msgstr "Expliquez quel sera l'usage de ce site web"
 
-#: ../vhffs-panel/cvs/cvs_submit.pl:88
+#: ../vhffs-panel/dns/prefs.pl:318
+msgid "Text"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:384
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:396
+msgid "Text can't be empty"
+msgstr ""
+
+#: ../vhffs-panel/cvs/create.pl:78
 msgid "The CVS object was successfully created !"
 msgstr "Dépôt CVS créé avec succès"
 
-#: ../vhffs-panel/dns/dns_submit.pl:76
+#: ../vhffs-panel/dns/create.pl:47
 msgid "The DNS object was successfully created !"
 msgstr "Nom de domaine créé avec succès"
 
@@ -3421,7 +3821,7 @@
 msgid "The Subversion object was successfully created !"
 msgstr "Le dépôt Subversion a été créé avec succès"
 
-#: ../vhffs-panel/user/prefs.pl:115
+#: ../vhffs-panel/user/prefs.pl:290
 msgid ""
 "The avatar is a pictures that describes you. You can upload an PNG image and "
 "use it as avatar. This image will then appear in the public section."
@@ -3434,7 +3834,7 @@
 msgid "The avatar is an image to describe the group"
 msgstr "L'avatar est une image utilisée pour décrire graphiquement le groupe"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:182
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:190
 msgid "The confirmation code was wrong\n"
 msgstr "Le code de confirmation était erroné\n"
 
@@ -3447,7 +3847,7 @@
 msgstr ""
 "Le nom de la base de données est trop long (supérieur à 32 caractères)"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:370
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:379
 #, perl-format
 msgid ""
 "The following address %s is not allowed to execute commands on the list %s\n"
@@ -3455,7 +3855,7 @@
 "L'adresse suivante %s n'est pas autorisée à exécuter des commandes sur "
 "cette liste %s\n"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:198
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:205
 #, perl-format
 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"
@@ -3476,18 +3876,18 @@
 "Le nom du groupe doit contenir au moins 3 caractères et doit être écrit "
 "en minuscules, uniquement avec des caractères alphanumériques"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:259
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:265
 #, perl-format
 msgid ""
 "The listengine language preference was changed for the following address %"
 "s.\n"
 msgstr "La langue pour l'adresse %s a été changée.\n"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:307
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:314
 msgid "The message does not exists or was moderated before you.\n"
 msgstr "Le message n'existe pas ou a été modéré avant votre passage.\n"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:304
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:311
 #, perl-format
 msgid "The message with the following id %s"
 msgstr "Le message avec l'identifiant suivant %s"
@@ -3515,17 +3915,16 @@
 "Le nom du dépôt est trop court. Il doit contenir au moins 3 caractères et "
 "ne doit contenir que des caractères alphanumériques"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:123
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:117
 msgid ""
-"The state of you subscription was not changed, you are always a subscriber\n"
+"The state of you subscription was not changed, you are still subscribed\n"
 msgstr ""
-"L'état de votre inscription n'a pas changé, vous êtes toujours inscrit\n"
 
-#: ../vhffs-panel/user/prefs.pl:89
+#: ../vhffs-panel/user/prefs.pl:264
 msgid "Theme"
 msgstr "Thème"
 
-#: ../vhffs-panel/user/prefs_save.pl:254
+#: ../vhffs-panel/user/prefs.pl:211
 msgid ""
 "There is a problem with the address you filled in your profile, unable to "
 "add forwarding"
@@ -3533,7 +3932,7 @@
 "Il y a un problème avec l'adresse indiqué dans vos informations "
 "personnelles. Impossible d'ajouter la redirection."
 
-#: ../vhffs-panel/user/prefs.pl:177
+#: ../vhffs-panel/user/prefs.pl:348
 msgid "There is two possible usages :"
 msgstr "Il y a deux usages possibles : "
 
@@ -3557,11 +3956,11 @@
 msgid "This Download repository will be deleted"
 msgstr "Cet espace de téléchargement sera détruit"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:201 ../vhffs-panel/svn/prefs.pl:123
-#: ../vhffs-panel/dns/prefs.pl:130 ../vhffs-panel/pgsql/prefs.pl:108
+#: ../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/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:107 ../vhffs-panel/mail/prefs.pl:131
+#: ../vhffs-panel/cvs/prefs.pl:97 ../vhffs-panel/mail/prefs.pl:131
 msgid ""
 "This action is non-reversible. All services associated to this project will "
 "be DESTROYED."
@@ -3569,7 +3968,7 @@
 "Cette action n'est aucunement réversible. Tous les services associés au "
 "projet seront détruits."
 
-#: ../vhffs-panel/user/prefs.pl:102
+#: ../vhffs-panel/user/prefs.pl:277
 msgid "This action is non-reversible. WHEN YOU DELETE IT, YOU CANNOT CANCEL."
 msgstr ""
 "Cette action n'est pas réversible. Quand vous le supprimez, vous ne pouvez "
@@ -3603,10 +4002,6 @@
 msgid "This database will NOT be deleted"
 msgstr "Cette base de données NE sera PAS détruite"
 
-#: ../vhffs-panel/dns/dns_type_submit.pl:74
-msgid "This domain name doesn't exist in the VHFFS database"
-msgstr "Ce nom de domaine n'existe pas"
-
 #: ../vhffs-panel/dns/delete.pl:111
 msgid "This domain will NOT be DELETED from Vhffs platform"
 msgstr "Ce nom de domaine NE sera PAS détruit"
@@ -3623,6 +4018,10 @@
 msgid "This group will be deleted"
 msgstr "Ce groupe sera détruit"
 
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:357
+msgid "This host is already registered for this service"
+msgstr ""
+
 #: ../vhffs-panel/mail/save_catchall.pl:90
 msgid "This is not a correct mail address"
 msgstr "L'adresse mail n'est pas correcte"
@@ -3635,18 +4034,18 @@
 msgid "This mail domain will NOT be DELETED"
 msgstr "Ce domaine mail NE sera PAS détruit"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:105
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:99
 #, perl-format
 msgid ""
 "This mail must contains the following subject : \"confirm unsubscribe %s\"\n"
 msgstr "Ce mail doit contenir le sujet suivant : \"confirm unsubscribe %s\"\n"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:87
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:81
 #, perl-format
 msgid "This mail must have the following subject : \"confirm subscribe %s\"\n"
 msgstr "Ce mail doit avoir le sujet suivant : \"confirm subscribe %s\"\n"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:387
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:395
 #, perl-format
 msgid "This mail was sent by  %s with the following subject: \n"
 msgstr "Ce mail a été envoyé par %s avec le sujet suivant : \n"
@@ -3668,11 +4067,11 @@
 #: ../vhffs-panel/mailinglist/delete.pl:86
 #: ../vhffs-panel/mailinglist/save_sig.pl:85
 #: ../vhffs-panel/mailinglist/add_sub.pl:87
-#: ../vhffs-panel/mailinglist/prefs.pl:94
-#: ../vhffs-panel/mailinglist/save_options.pl:92
+#: ../vhffs-panel/mailinglist/prefs.pl:92
+#: ../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:86 ../vhffs-panel/dns/prefs.pl:99
+#: ../vhffs-panel/svn/prefs_save.pl:88 ../vhffs-panel/dns/prefs.pl:98
 #: ../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
@@ -3696,7 +4095,7 @@
 "modération"
 
 #: ../vhffs-panel/svn/prefs.pl:106 ../vhffs-panel/repository/prefs.pl:89
-#: ../vhffs-panel/cvs/prefs.pl:92
+#: ../vhffs-panel/cvs/prefs.pl:84
 msgid ""
 "This object is not functionnal yet. Please wait creation, moderation or "
 "modification."
@@ -3712,11 +4111,6 @@
 msgid "This object will NOT be DELETED"
 msgstr "Ce service NE sera PAS détruit"
 
-#: ../vhffs-panel/dns/delete_a.pl:74 ../vhffs-panel/dns/delete_ns.pl:102
-#: ../vhffs-panel/dns/delete_mx.pl:103 ../vhffs-panel/dns/delete_cname.pl:101
-msgid "This part of the domain is now removed."
-msgstr "Cette partie du domaine a été supprimée"
-
 #: ../vhffs-panel/object/upavatar.pl:93
 msgid "This platform does not provide avatar support"
 msgstr "Le support des avatars n'est pas disponible sur cette plate-forme"
@@ -3725,7 +4119,7 @@
 msgid "This platform does not support avatar"
 msgstr "Le support des avatars n'est pas activé sur cette plate-forme"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:34
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:50
 msgid ""
 "This platform is temporary closed. Administrators are performing some "
 "maintenances tasks or system has database errors. Please come back in a few "
@@ -3736,7 +4130,7 @@
 "connaîtdes disfonctionnements. Merci de revenir dans quelques minutes pour "
 "vous identifier."
 
-#: ../vhffs-panel/login.pl:75 ../vhffs-api/src/Vhffs/Panel/Main.pm:45
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:61
 msgid ""
 "This platform is temporary closed. Administrators are performing some "
 "maintenances tasks. Please come back in a few minutes to log in."
@@ -3789,14 +4183,26 @@
 msgid "This web area doesn't exist in VHFFS database"
 msgstr "Ce site web n'existe pas"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:390
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:416
+msgid "To accept this subscriber, send a message to\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:398
 msgid "To put this post on the list, send a message  \n"
 msgstr "Pour envoyer ce message sur la liste, envoyez un message \n"
 
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:419
+msgid "To refuse this subscriber, send a message to\n"
+msgstr ""
+
 #: ../vhffs-listengine/src/archives/show_msg.pl:107
 msgid "To: "
 msgstr "À : "
 
+#: ../vhffs-panel/ajax/help.pl:54 ../vhffs-panel/ajax/help.pl:59
+msgid "Topic not found"
+msgstr ""
+
 #: ../vhffs-panel/admin/stats.pl:93
 msgid "Total Admin Users in VHFFS database"
 msgstr "Total d'administrateurs"
@@ -3905,6 +4311,41 @@
 msgid "URL"
 msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:148
+#, perl-format
+msgid "Unable to add A record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:143
+#, perl-format
+msgid "Unable to add AAAA record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:187
+#, perl-format
+msgid "Unable to add CNAME record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:164
+#, perl-format
+msgid "Unable to add MX record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:173
+#, perl-format
+msgid "Unable to add NS record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:210
+#, perl-format
+msgid "Unable to add SRV record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:215
+#, perl-format
+msgid "Unable to add TXT record: %s"
+msgstr ""
+
 #: ../vhffs-panel/admin/mail/password_box.pl:105
 #, perl-format
 msgid "Unable to change password for box %s (%d)"
@@ -3924,6 +4365,41 @@
 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
+#, perl-format
+msgid "Unable to delete A record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:137
+#, perl-format
+msgid "Unable to delete AAAA record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:182
+#, perl-format
+msgid "Unable to delete CNAME record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:159
+#, perl-format
+msgid "Unable to delete MX record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:169
+#, perl-format
+msgid "Unable to delete NS record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:199
+#, perl-format
+msgid "Unable to delete SRV record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:226
+#, perl-format
+msgid "Unable to delete TXT record: %s"
+msgstr ""
+
 #: ../vhffs-panel/mail/delete_forward.pl:96
 #, perl-format
 msgid "Unable to delete forward %s"
@@ -3938,6 +4414,12 @@
 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
+msgid ""
+"Unable to find default redirection address, please contact administrators"
+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
@@ -3951,6 +4433,36 @@
 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
+#, perl-format
+msgid "Unable to modify A record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:132
+#, perl-format
+msgid "Unable to modify AAAA record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:178
+#, perl-format
+msgid "Unable to modify CNAME record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:154
+#, perl-format
+msgid "Unable to modify MX record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:195
+#, perl-format
+msgid "Unable to modify SRV record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:221
+#, perl-format
+msgid "Unable to modify TXT record: %s"
+msgstr ""
+
 #: ../vhffs-panel/admin/mail/change_forward.pl:105
 #: ../vhffs-panel/mail/change_forward.pl:104
 #, perl-format
@@ -3971,16 +4483,33 @@
 msgid "Undefined list"
 msgstr "Liste inconnue"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:286
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:293
 msgid "Unknow command\n"
 msgstr "Commande inconnue\n"
 
-#: ../vhffs-api/src/Vhffs/Functions.pm:391
-#: ../vhffs-api/src/Vhffs/Functions.pm:396
+#: ../vhffs-api/src/Vhffs/Functions.pm:400
+#: ../vhffs-api/src/Vhffs/Functions.pm:405
 msgid "Unknown"
 msgstr "Inconnu"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:453
+#: ../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: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
+msgid "Unknown error"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:480
 msgid "Unknown month"
 msgstr "Mois inconnu"
 
@@ -3989,7 +4518,7 @@
 msgid "Unknown status"
 msgstr "Statut inconnu"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:229
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:235
 #, perl-format
 msgid "Unsubscribe for the list %s was not complete.\n"
 msgstr "La désinscription pour la liste %s n'est pas complète.\n"
@@ -3998,19 +4527,20 @@
 msgid "Update note"
 msgstr "Mettre à jour la note"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:125
+#: ../vhffs-panel/mailinglist/prefs.pl:150
 msgid "Update signature"
 msgstr "Mettre à jour la signature"
 
-#: ../vhffs-panel/dns/modif_a.pl:106
-msgid "Updated !"
-msgstr "Mis à jour"
+#: ../vhffs-panel/dns/prefs.pl:253
+#, perl-format
+msgid "Use @ for origin (%s)"
+msgstr ""
 
 #: ../vhffs-panel/admin/web/edit.pl:102 ../vhffs-panel/admin/web/show.pl:115
 msgid "Use Crawl"
 msgstr "Utiliser le système de crawl"
 
-#: ../vhffs-panel/user/prefs.pl:178
+#: ../vhffs-panel/user/prefs.pl:349
 #, perl-format
 msgid ""
 "Use VHFFS servers to manage this mail,<br>you should use use the host pop.%s "
@@ -4019,11 +4549,11 @@
 "Utiliser nos serveurs pour gérer cette adresse mail,<br>vous devez utiliser "
 "le serveur pop.%s ou imap.%s pour récupérer vos mails"
 
-#: ../vhffs-panel/user/prefs.pl:184
+#: ../vhffs-panel/user/prefs.pl:355
 msgid "Use anti-spam protection"
 msgstr "Utiliser la protection anti-spam"
 
-#: ../vhffs-panel/user/prefs.pl:192
+#: ../vhffs-panel/user/prefs.pl:363
 msgid "Use anti-virus protection"
 msgstr "Utiliser la protection par anti-virus"
 
@@ -4033,6 +4563,7 @@
 
 #: ../vhffs-panel/admin/pgsql/edit.pl:96 ../vhffs-panel/admin/pgsql/show.pl:95
 #: ../vhffs-panel/admin/mysql/edit.pl:96 ../vhffs-panel/admin/mysql/show.pl:94
+#: ../vhffs-intl/extra_strings.pl:30
 msgid "User"
 msgstr "Utilisateur"
 
@@ -4045,7 +4576,7 @@
 msgid "User Admin"
 msgstr "Administration des Utilisateurs"
 
-#: ../vhffs-panel/user/prefs.pl:76 ../vhffs-api/src/Vhffs/Panel/Menu.pm:88
+#: ../vhffs-panel/user/prefs.pl:248 ../vhffs-api/src/Vhffs/Panel/Menu.pm:80
 msgid "User Preferences"
 msgstr "Préférences utilisateur"
 
@@ -4053,27 +4584,27 @@
 msgid "User Successfully created"
 msgstr "Utilisateur créé avec succès"
 
-#: ../vhffs-panel/user/prefs_save.pl:132
-msgid "User Successfully modified"
-msgstr "Utilisateur modifié avec succès"
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:76
+msgid "User account"
+msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:81
-msgid "User account : "
-msgstr "Compte utilisateur : "
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:237
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:275
 msgid "User does not exist"
 msgstr "L'utilisateur n'existe pas"
 
-#: ../vhffs-panel/public/index.pl:63
+#: ../vhffs-panel/auth.pl:71
+msgid "User is not active yet"
+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:78
+#: ../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/admin/user/list.pl:79 ../vhffs-panel/admin/su.pl:78
-#: ../vhffs-panel/public/user.pl:81 ../vhffs-panel/public/lastusers.pl:76
-#: ../vhffs-panel/auth.pl:58 ../vhffs-panel/lost.pl:54
+#: ../vhffs-panel/public/user.pl:83 ../vhffs-panel/public/lastusers.pl:78
+#: ../vhffs-panel/lost.pl:54 ../vhffs-api/src/Vhffs/Panel/Commons.pm:54
 msgid "Username"
 msgstr "Nom d'utilisateur"
 
@@ -4085,8 +4616,8 @@
 msgid "Username:"
 msgstr "Nom d'utilisateur :"
 
-#: ../vhffs-panel/public/lastgroups.pl:73 ../vhffs-panel/public/group.pl:92
-#: ../vhffs-panel/public/allgroups.pl:80
+#: ../vhffs-panel/public/lastgroups.pl:75 ../vhffs-panel/public/group.pl:94
+#: ../vhffs-panel/public/allgroups.pl:82
 msgid "Users"
 msgstr "Utilisateurs"
 
@@ -4094,27 +4625,19 @@
 msgid "Users stats"
 msgstr "Statistiques des utilisateurs"
 
-#: ../vhffs-panel/auth.pl:54
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:50
 msgid "VHFFS Login"
 msgstr "Authentification sur VHFFS"
 
-#: ../vhffs-panel/login.pl:106
-msgid "VHFFS Login OK"
-msgstr "Authentification réussie"
-
-#: ../vhffs-panel/login.pl:86 ../vhffs-panel/login.pl:116
-msgid "VHFFS Login failed"
-msgstr "Authentification échouée"
-
 #: ../vhffs-panel/logout.pl:58
 msgid "VHFFS Logout"
 msgstr "Déconnexion"
 
-#: ../vhffs-panel/lost_ack.pl:68
+#: ../vhffs-panel/lost_ack.pl:78
 msgid "VHFFS Password Lost OK"
 msgstr "Perte de mot de passe reconnue"
 
-#: ../vhffs-panel/lost_ack.pl:79
+#: ../vhffs-panel/lost_ack.pl:89
 msgid "VHFFS Password Lost failed"
 msgstr "Impossible de retrouver l'utilisateur"
 
@@ -4125,6 +4648,7 @@
 #: ../vhffs-panel/admin/object/edit.pl:116
 #: ../vhffs-panel/admin/web/edit.pl:129 ../vhffs-panel/admin/mysql/edit.pl:117
 #: ../vhffs-panel/admin/cvs/edit.pl:125 ../vhffs-panel/admin/mail/edit.pl:157
+#: ../vhffs-intl/extra_strings.pl:16
 msgid "Validation refused"
 msgstr "Validation refusée"
 
@@ -4137,19 +4661,19 @@
 msgid "View"
 msgstr "Voir"
 
-#: ../vhffs-panel/public/group.pl:207
+#: ../vhffs-panel/public/group.pl:209
 msgid "View archives"
 msgstr "Allez aux archives de cette liste"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:359
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:383
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:409
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:435
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:461
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:488
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:514
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:540
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:565
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:419
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:443
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:469
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:495
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:521
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:548
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:574
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:600
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:625
 msgid "View history"
 msgstr "Voir l'historique"
 
@@ -4175,6 +4699,10 @@
 msgid "WEB stats"
 msgstr "Statistiques des sites webs"
 
+#: ../vhffs-panel/mailinglist/prefs.pl:179
+msgid "Waiting for confirmation"
+msgstr ""
+
 #: ../vhffs-panel/admin/user/edit.pl:141
 #: ../vhffs-panel/admin/pgsql/edit.pl:117
 #: ../vhffs-panel/admin/group/edit.pl:117
@@ -4182,12 +4710,13 @@
 #: ../vhffs-panel/admin/object/edit.pl:117
 #: ../vhffs-panel/admin/web/edit.pl:130 ../vhffs-panel/admin/mysql/edit.pl:118
 #: ../vhffs-panel/admin/cvs/edit.pl:126 ../vhffs-panel/admin/mail/edit.pl:158
+#: ../vhffs-intl/extra_strings.pl:17
 msgid "Waiting for creation"
 msgstr "En attente de création"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:179
-msgid "Waiting for delete"
-msgstr "En attente de suppression"
+#: ../vhffs-panel/mailinglist/prefs.pl:181
+msgid "Waiting for deletion"
+msgstr ""
 
 #: ../vhffs-panel/admin/user/edit.pl:147
 #: ../vhffs-panel/admin/pgsql/edit.pl:123
@@ -4196,9 +4725,11 @@
 #: ../vhffs-panel/admin/object/edit.pl:123
 #: ../vhffs-panel/admin/web/edit.pl:136 ../vhffs-panel/admin/mysql/edit.pl:124
 #: ../vhffs-panel/admin/cvs/edit.pl:132 ../vhffs-panel/admin/mail/edit.pl:164
+#: ../vhffs-intl/extra_strings.pl:23
 msgid "Waiting for modification"
 msgstr "En attente de modification"
 
+#: ../vhffs-panel/mailinglist/prefs.pl:180
 #: ../vhffs-panel/admin/user/edit.pl:139
 #: ../vhffs-panel/admin/pgsql/edit.pl:115
 #: ../vhffs-panel/admin/group/edit.pl:115
@@ -4206,6 +4737,7 @@
 #: ../vhffs-panel/admin/object/edit.pl:115
 #: ../vhffs-panel/admin/web/edit.pl:128 ../vhffs-panel/admin/mysql/edit.pl:116
 #: ../vhffs-panel/admin/cvs/edit.pl:124 ../vhffs-panel/admin/mail/edit.pl:156
+#: ../vhffs-intl/extra_strings.pl:15
 msgid "Waiting for validation"
 msgstr "En attente de validation"
 
@@ -4213,7 +4745,7 @@
 msgid "Warn the admin team"
 msgstr "Alerter l'équipe d'administrateurs"
 
-#: ../vhffs-panel/user/prefs.pl:176
+#: ../vhffs-panel/user/prefs.pl:347
 #, perl-format
 msgid "We offer you the possibility to have one email box on the domain %s"
 msgstr ""
@@ -4240,23 +4772,31 @@
 msgid "Web area successfully created !"
 msgstr "Site web créé avec succès"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:349
+#: ../vhffs-intl/extra_strings.pl:32
+msgid "Webarea"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:409
 msgid "Webarea for this group"
 msgstr "Sites web pour ce groupe"
 
-#: ../vhffs-panel/public/group.pl:122
+#: ../vhffs-panel/public/group.pl:124
 msgid "Website for this group"
 msgstr "Site web pour ce groupe"
 
-#: ../vhffs-panel/public/index.pl:74
+#: ../vhffs-panel/public/index.pl:76
 msgid "Websites area"
 msgstr "Zone des sites web"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:313
+#: ../vhffs-panel/dns/prefs.pl:310 ../vhffs-panel/dns/prefs.pl:395
+msgid "Weight"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:373
 msgid "Welcome"
 msgstr "Bienvenue"
 
-#: ../vhffs-panel/auth.pl:55
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:51
 #, perl-format
 msgid "Welcome on %s"
 msgstr "Bienvenue sur %s"
@@ -4272,30 +4812,31 @@
 #: ../vhffs-panel/admin/object/edit.pl:126
 #: ../vhffs-panel/admin/web/edit.pl:139 ../vhffs-panel/admin/mysql/edit.pl:127
 #: ../vhffs-panel/admin/cvs/edit.pl:135 ../vhffs-panel/admin/mail/edit.pl:167
+#: ../vhffs-intl/extra_strings.pl:26
 msgid "Will be deleted"
 msgstr "Sera détruit"
 
-#: ../vhffs-panel/auth.pl:74
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:70
 #, perl-format
 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:139
+#: ../vhffs-panel/svn/prefs.pl:119 ../vhffs-panel/dns/prefs.pl:273
 #: ../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:103
+#: ../vhffs-panel/web/prefs.pl:115 ../vhffs-panel/cvs/prefs.pl:93
 msgid "Yes"
 msgstr "Oui"
 
-#: ../vhffs-panel/mailinglist/prefs.pl:203 ../vhffs-panel/svn/prefs.pl:125
-#: ../vhffs-panel/user/prefs.pl:104 ../vhffs-panel/dns/prefs.pl:132
+#: ../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:109
+#: ../vhffs-panel/mysql/prefs.pl:117 ../vhffs-panel/cvs/prefs.pl:99
 #: ../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"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:215
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:222
 msgid "You are not a subscriber on this list.\n"
 msgstr "Vous n'êtes pas inscrit à la liste.\n"
 
@@ -4344,12 +4885,16 @@
 msgid "You are not allowed to see it"
 msgstr "Vous n'êtes pas autorisé à voir ceci"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:121
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:114
 #, perl-format
-msgid "You ask to be subscribed to the following list: %s\n"
-msgstr "Vous avez demandé à être inscrit à la liste suivante : %s\n"
+msgid ""
+"You asked to be subscribed to the following list:\n"
+"\n"
+"%s\n"
+"\n"
+msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:124 ../vhffs-panel/web/prefs.pl:123
+#: ../vhffs-panel/dns/prefs.pl:258 ../vhffs-panel/web/prefs.pl:123
 #: ../vhffs-panel/mail/prefs.pl:138
 msgid ""
 "You can Manage rights on this service for each user in the VHFFS database. "
@@ -4358,30 +4903,22 @@
 "Pour chaque utilisateur, vous pouvez gérer les droits sur ce service. Merci "
 "de lire l'aide avant de modifier"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:50
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:46
 msgid "You can also send a command list in the mail body.\n"
 msgstr ""
 "Vous pouvez également envoyer une liste de commandes dans le corps du "
 "mail.\n"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:154
-msgid "You can have some help on listengine, sending an email to\n"
-msgstr "Vous pouvez obtenir de l'aide sur listengine en envoyant à mail à\n"
-
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:152
-msgid "You can post on the list now."
-msgstr "Vous pouvez poster sur la liste maintenant."
-
 #: ../vhffs-panel/subscribe.pl:80
 msgid "You cannot subscribe to VHFFS"
 msgstr "Vous ne pouvez pas vous inscrire"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:214
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:221
 #, perl-format
 msgid "You cannot unsubscribe from the list %s\n"
 msgstr "Vous ne pouvez pas vous désinscrire de la liste %s\n"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:199
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:206
 msgid "You demand was refused\n"
 msgstr "Votre demande a été refusée\n"
 
@@ -4389,17 +4926,21 @@
 msgid "You don't own this domain"
 msgstr "Vous ne possédez pas ce domaine"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:168
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:177
 #, perl-format
-msgid "You have been successfully removed from the list %s\n"
-msgstr "Vous avez été retiré de la liste %s avec succès\n"
+msgid ""
+"You have been successfully removed from the following list:\n"
+"\n"
+"%s\n"
+msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:244
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:250
 #, perl-format
 msgid "You have been successfully removed from the list %s.\n"
 msgstr "Vous avez été supprimé de la liste %s avec succès.\n"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:150
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:142
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:158
 #, perl-format
 msgid "You have been successfully subscribed to the list %s\n"
 msgstr "Vous avez été inscrit sur la liste %s avec succès\n"
@@ -4412,18 +4953,19 @@
 msgid "You lost your password? You're a bad guy!"
 msgstr "Vous avez perdu votre mot de passe ? Çaimal(tm)"
 
-#: ../vhffs-panel/user/prefs_save.pl:170
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:144
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:163
+msgid "You may get some help on listengine by sending an email to\n"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:161
 msgid "You must choose a method for your mail"
 msgstr "Vous devez choisir une méthode de gestion pour votre mail"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:104
-msgid "You must confirm this request by seding a email\n"
-msgstr "Vous devez confirmer cette demande en envoyant un mail\n"
-
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:86
-msgid "You must confirm your request by sending a confirmation emailn\n"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:80
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:98
+msgid "You must confirm your request by sending a confirmation email\n"
 msgstr ""
-"Vous devez confirmer votre requête en envoyant un mail de confirmation\n"
 
 #: ../vhffs-panel/subscribe.pl:121
 msgid "You must declare a valid mail address"
@@ -4457,38 +4999,35 @@
 msgid "You must declare your zipcode"
 msgstr "Vous devez entrer un code postal valide"
 
+#: ../vhffs-panel/dns/create.pl:43 ../vhffs-panel/cvs/create.pl:73
+msgid "You must enter a description"
+msgstr ""
+
 #: ../vhffs-panel/mailinglist/create.pl:81
 msgid "You need to manage at least a domain to host a mailing-list"
 msgstr ""
 "Vous devez gérer au moins un domaine mail pour avoir une liste de diffusion"
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:239
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:161
+msgid "You will receive an email with the decision of administrators.\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:277
 msgid "You're are not allowed to browse panel"
 msgstr "Vous n'êtes pas autorisé à parcourir le panel"
 
 #: ../vhffs-panel/mailinglist/delete.pl:90
 #: ../vhffs-panel/mailinglist/save_sig.pl:89
 #: ../vhffs-panel/mailinglist/add_sub.pl:91
-#: ../vhffs-panel/mailinglist/prefs.pl:100
-#: ../vhffs-panel/mailinglist/save_options.pl:96
+#: ../vhffs-panel/mailinglist/prefs.pl:98
+#: ../vhffs-panel/mailinglist/save_options.pl:93
 #: ../vhffs-panel/mailinglist/change_right.pl:93
 #: ../vhffs-panel/mailinglist/del_member.pl:91 ../vhffs-panel/svn/delete.pl:81
-#: ../vhffs-panel/svn/prefs.pl:100 ../vhffs-panel/svn/prefs_save.pl:82
+#: ../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/add_mx.pl:88 ../vhffs-panel/dns/add_mx.pl:92
-#: ../vhffs-panel/dns/prefs.pl:92 ../vhffs-panel/dns/modif_a.pl:88
-#: ../vhffs-panel/dns/modif_a.pl:92 ../vhffs-panel/dns/add_ns.pl:86
-#: ../vhffs-panel/dns/add_ns.pl:90 ../vhffs-panel/dns/add_cname.pl:90
-#: ../vhffs-panel/dns/add_cname.pl:94 ../vhffs-panel/dns/delete_a.pl:60
-#: ../vhffs-panel/dns/delete_a.pl:64 ../vhffs-panel/dns/delete_ns.pl:88
-#: ../vhffs-panel/dns/delete_ns.pl:92 ../vhffs-panel/dns/delete_mx.pl:89
-#: ../vhffs-panel/dns/delete_mx.pl:93 ../vhffs-panel/dns/modif_cname.pl:91
-#: ../vhffs-panel/dns/modif_cname.pl:95 ../vhffs-panel/dns/modif_mx.pl:91
-#: ../vhffs-panel/dns/modif_mx.pl:95 ../vhffs-panel/dns/add_a.pl:92
-#: ../vhffs-panel/dns/add_a.pl:96 ../vhffs-panel/dns/delete_cname.pl:87
-#: ../vhffs-panel/dns/delete_cname.pl:91 ../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/dns/prefs.pl:91 ../vhffs-panel/dns/prefs.pl:108
+#: ../vhffs-panel/pgsql/delete.pl:77 ../vhffs-panel/pgsql/prefs.pl:78
+#: ../vhffs-panel/pgsql/prefs_save.pl:85 ../vhffs-panel/group/delete.pl:70
 #: ../vhffs-panel/group/remove_user_from_group.pl:75
 #: ../vhffs-panel/group/prefs.pl:80 ../vhffs-panel/group/join_group.pl:74
 #: ../vhffs-panel/group/prefs_save.pl:78
@@ -4505,7 +5044,7 @@
 #: ../vhffs-panel/web/delete.pl:83 ../vhffs-panel/web/prefs.pl:86
 #: ../vhffs-panel/web/prefs_save.pl:86 ../vhffs-panel/mysql/delete.pl:80
 #: ../vhffs-panel/mysql/prefs.pl:84 ../vhffs-panel/mysql/prefs_save.pl:87
-#: ../vhffs-panel/cvs/delete.pl:82 ../vhffs-panel/cvs/prefs.pl:86
+#: ../vhffs-panel/cvs/delete.pl:82 ../vhffs-panel/cvs/prefs.pl:80
 #: ../vhffs-panel/cvs/prefs_save.pl:81 ../vhffs-panel/mail/delete.pl:86
 #: ../vhffs-panel/mail/delete_box.pl:92 ../vhffs-panel/mail/add_account.pl:95
 #: ../vhffs-panel/mail/prefs.pl:91 ../vhffs-panel/mail/save_catchall.pl:85
@@ -4612,6 +5151,12 @@
 msgid "Your Subversion repository request : %s"
 msgstr "Votre demande de dépôt Subversion %s "
 
+#: ../vhffs-panel/subscribe.pl:218
+msgid ""
+"Your email address. It will be used to contact you when needed and as a "
+"destination address if you use our email forwarding service"
+msgstr ""
+
 #: ../vhffs-robots/src/refused_web.pl:78
 msgid "Your hosting request"
 msgstr "Votre demande d'hébergement"
@@ -4624,12 +5169,12 @@
 msgid "Your password is not correct. Please check it."
 msgstr "Votre mot de passe n'est pas correct. Merci de le vérifier."
 
-#: ../vhffs-panel/cvs/cvs_submit.pl:80
+#: ../vhffs-panel/cvs/create.pl:71
 msgid ""
 "Your repository name is not correct. It must contains at least 3 caracters"
 msgstr "Le nom du dépôt doit contenir au moins 3 caractères"
 
-#: ../vhffs-panel/cvs/cvs_submit.pl:76
+#: ../vhffs-panel/cvs/create.pl:69
 msgid ""
 "Your repository name is not correct. It must contains only caracter and "
 "numbers"
@@ -4640,10 +5185,6 @@
 msgid "Your request for a "
 msgstr "Votre demande de "
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:137
-msgid "Your request has been removed.\n"
-msgstr "Votre requête a été supprimée.\n"
-
 #: ../vhffs-irc/modobot.pl:404
 #, perl-format
 msgid "Your request on %s"
@@ -4653,6 +5194,12 @@
 msgid "Your request on VHFFS platform"
 msgstr "Votre demande sur la plate-forme VHFFS"
 
+#: ../vhffs-panel/subscribe.pl:217
+msgid ""
+"Your username. It must contains only alphanumeric characters in lowercase, "
+"its length must be between 3 and 12 chars"
+msgstr ""
+
 #: ../vhffs-robots/src/refused_web.pl:67
 #, perl-format
 msgid "Your web hosting request for the servername : %s "
@@ -4662,20 +5209,20 @@
 msgid "Your zipcode is not correct! Please enter a correct zipcode"
 msgstr "Le code postal est incorrect. Veuillez entrer un code postal correct"
 
-#: ../vhffs-panel/subscribe.pl:202 ../vhffs-panel/user/prefs.pl:82
+#: ../vhffs-panel/subscribe.pl:202 ../vhffs-panel/user/prefs.pl:257
 #: ../vhffs-panel/admin/user/edit.pl:106 ../vhffs-panel/admin/user/show.pl:106
 msgid "Zipcode"
 msgstr "Code postal"
 
-#: ../vhffs-panel/user/prefs_save.pl:95
+#: ../vhffs-panel/user/prefs.pl:102
 msgid "Zipcode is not correct !"
 msgstr "Le code postal n'est pas correct"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:338
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:347
 msgid "cannot be removed from the list\n"
 msgstr "ne peut pas être supprimé de la liste\n"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:306
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:313
 msgid "cannot be removed.\n"
 msgstr "ne peut pas être supprimé.\n"
 
@@ -4690,66 +5237,102 @@
 msgid "has been refused by the Moderators team"
 msgstr "a été refusé par l'équipe de modérateurs"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:55
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:50
 msgid "help\t\t - show this help\n"
 msgstr "help\t\t - affiche l'aide\n"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:353
+#: ../vhffs-intl/extra_strings.pl:10
+msgid "help_user_bug"
+msgstr ""
+"<h2>Rapport d'incident</h2><p>Utilisez cet élément lorsque vous voulez "
+"signaler un problème ou demander une amélioration.</p><p>Vous pouvez "
+"également vous en servir pour contacter l'équipe d'administration et "
+"demander de l'espace disque supplémentaire</p>"
+
+#: ../vhffs-intl/extra_strings.pl:9
+msgid "help_user_help"
+msgstr ""
+"<h2>Aide générale</h2><p>Permet d'accéder à l'aide générale ainsi "
+"qu'à la FAQ</p>"
+
+#: ../vhffs-intl/extra_strings.pl:11
+msgid "help_user_logout"
+msgstr ""
+"<h2>Déconnexion</h2><p>N'oubliez pas de vous déconnecter une fois que vous "
+"avez terminé.</p>"
+
+# Help string, doesn't appear in source files
+#: ../vhffs-intl/extra_strings.pl:8
+msgid "help_user_preferences"
+msgstr ""
+"<h2>Préférences</h2>Vous permet de personnaliser l'interface de VHFFS, de "
+"gérer votre adresse email ainsi que vos informationspersonnelles."
+
+#: ../vhffs-intl/extra_strings.pl:12
+msgid "help_user_projects"
+msgstr "<h2>Mes projets</h2>"
+"<p>Gérez vos projets existants, créez en de nouveaux.</p>"
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:362
 #, perl-format
 msgid "in the moderation queue of the list %s"
 msgstr "dans la queue de modération de la liste %s"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:58
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:53
 msgid "lang [fr|us|es]\t - set listengine language\n"
 msgstr "lang [fr|us|es]\t - modifier la langue de listengine\n"
 
-#: ../vhffs-listengine/src/listengine.pl:759
+#: ../vhffs-listengine/src/listengine.pl:781
 #, perl-format
 msgid "listengine - list of messages to moderate for %s"
 msgstr "listengine - liste des messages à modérer pour %s"
 
-#: ../vhffs-listengine/src/listengine.pl:642
 #: ../vhffs-listengine/src/listengine.pl:664
-#: ../vhffs-listengine/src/listengine.pl:675
+#: ../vhffs-listengine/src/listengine.pl:686
+#: ../vhffs-listengine/src/listengine.pl:697
 msgid "listengine help"
 msgstr "listenfine help"
 
-#: ../vhffs-listengine/src/listengine.pl:707
-#: ../vhffs-listengine/src/listengine.pl:718
-#: ../vhffs-listengine/src/listengine.pl:734
-#: ../vhffs-listengine/src/listengine.pl:746
-#: ../vhffs-listengine/src/listengine.pl:773
-#: ../vhffs-listengine/src/listengine.pl:784
+#: ../vhffs-listengine/src/listengine.pl:729
+#: ../vhffs-listengine/src/listengine.pl:740
+#: ../vhffs-listengine/src/listengine.pl:756
+#: ../vhffs-listengine/src/listengine.pl:768
+#: ../vhffs-listengine/src/listengine.pl:795
+#: ../vhffs-listengine/src/listengine.pl:806
 msgid "listengine moderation"
 msgstr "modération sur listengine"
 
-#: ../vhffs-listengine/src/listengine.pl:692
+#: ../vhffs-listengine/src/listengine.pl:714
 msgid "listengine result command"
 msgstr "résultat de la commande sur listengine"
 
-#: ../vhffs-listengine/src/listengine.pl:811
+#: ../vhffs-listengine/src/listengine.pl:833
 msgid "listengine: unknown command"
 msgstr "listengine : commande inconnue"
 
-#: ../vhffs-panel/subscribe.pl:199 ../vhffs-panel/user/prefs.pl:79
+#: ../vhffs-panel/subscribe.pl:199 ../vhffs-panel/user/prefs.pl:254
 msgid "mail"
 msgstr "adresse mail"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:61
+#: ../vhffs-panel/svn/prefs.pl:143 ../vhffs-panel/svn/prefs_save.pl:115
+msgid "ml adress here..."
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:56
 msgid "moderate XXXXX\t\t\t - moderate the message with message-id XXXXX\n"
 msgstr "moderate XXXXX\t\t\t - modérer le message ayant l'identifiant XXXXX\n"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:64
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:59
 msgid "moderate list\t\t\t - give the message list for moderation\n"
 msgstr "moderate list\t\t\t - donner la liste de message à modérer\n"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:63
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:58
 msgid ""
 "moderate refused XXXXX\t\t\t - refuse the message with message-id XXXXX\n"
 msgstr ""
 "moderate refused XXXXX\t\t\t - refuser le message ayant l'identifiant XXXXX\n"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:62
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:57
 msgid ""
 "moderate validate XXXXX\t\t\t - moderate the message with message-id XXXXX\n"
 msgstr ""
@@ -4764,17 +5347,17 @@
 msgid "no information about date"
 msgstr "aucune information à propos de la date"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:305
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:337
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:312
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:346
 #, perl-format
 msgid "present in the moderation queue for the list %s"
 msgstr "présent dans la queue de modération de la liste %s"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:56
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:51
 msgid "subscribe\t - subscribe the shipper to the list\n"
 msgstr "subscribe\t - souscrire à la liste\n"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:391
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:399
 #, perl-format
 msgid "to %s-request@%s with the following subject : \"moderate %s\" \n"
 msgstr "à %s-request@%s avec le sujet suivant : \"moderate %s\" \n"
@@ -4784,22 +5367,22 @@
 msgid "unknown message-id t: %s"
 msgstr "identifiant de message inconnu : %s"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:57
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:52
 msgid "unsubscribe\t - unsubscribe from this list\n"
 msgstr "unsubscribe\t - désinscrire de la liste\n"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:69
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:64
 msgid "user info user@xxxxxxxxxx\t\t - show this user's informations\n"
 msgstr ""
 "user info user@xxxxxxxxxx\t\t - afficher les informations utilisateur\n"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:67
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:62
 msgid "user right RIGHT user@xxxxxxxxxx\t - change right for this user\n"
 msgstr ""
 "user right RIGHT user@xxxxxxxxxx\t - changer le droit pour l'utilisateur "
 "spécifié\n"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:66
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:61
 msgid ""
 "user subscribe user@xxxxxxxxxx\t\t - register the user user@xxxxxxxxxx on "
 "the list\n"
@@ -4807,22 +5390,195 @@
 "user subscribe user@xxxxxxxxxx\t\t - enregistrer user@xxxxxxxxxx sur la "
 "liste\n"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:65
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:60
 msgid ""
 "user unsubscribe user@xxxxxxxxxx\t - delete user user@xxxxxxxxxx from list\n"
 msgstr ""
 "user unsubscribe user@xxxxxxxxxx\t - supprimer l'utilisateur user@xxxxxxxxxx "
 "de la liste\n"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:322
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:330
 #, perl-format
 msgid "was removed from the moderation queue from the list %s"
 msgstr "a été supprimé de la queue de modération de la liste %s"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:354
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:363
 msgid "was sent on the list.\n"
 msgstr "a été envoyé sur la liste\n"
 
+#~ msgid "%s-request@%s with subject : \"help\"\n"
+#~ msgstr "%s-request@%s avec le sujet : \"help\"\n"
+
+#~ msgid "------\n"
+#~ msgstr "------\n"
+
+#~ msgid "ACL Administration for : "
+#~ msgstr "Administration des ACL pour : "
+
+#~ msgid "Admin DNS"
+#~ msgstr "Administration des noms de domaine"
+
+#~ msgid "Admin account : "
+#~ msgstr "Compte administrateur : "
+
+#~ msgid "Adress %s is already a subscriber for this list.\n"
+#~ msgstr "L'adresse %s est déjà inscrite sur cette liste.\n"
+
+#~ msgid "All A TYPE for you domain name"
+#~ msgstr "Tous les enregistrements A pour votre domaine"
+
+#~ msgid "All CNAME for you domain name"
+#~ msgstr "Tous les CNAME sur votre domaine"
+
+#~ msgid "All MX TYPE for you domain name"
+#~ msgstr "Tous les champs MX pour votre domaine"
+
+#~ msgid ""
+#~ "All mails with commands must be sent on \n"
+#~ "                     YOURLIST-request@xxxxxxxxxx list.\n"
+#~ msgstr ""
+#~ " Tous les mails avec des commandes doivent être envoyés sur \n"
+#~ "                     VOTRELIST-request@xxxxxxxxxxx list.\n"
+
+#~ msgid "An error occurs while you subscribed to the list  %s \n"
+#~ msgstr "Une erreur est survenue lors de votre ajout à la liste %s \n"
+
+#~ msgid "CNAME field successfully updated"
+#~ msgstr "Le champ CNAME a été mis à jour avec succès"
+
+#~ msgid "Cannot add this ressource to this domain"
+#~ msgstr "Impossible d'ajouter cette ressource à ce domaine"
+
+#~ msgid "Cannot delete it."
+#~ msgstr "Impossible de le supprimer"
+
+#~ msgid "Cannot modify this ressource on this domain"
+#~ msgstr "Impossible de modifier cette ressource pour ce domaine"
+
+#~ msgid "Cannot update CNAME on this domain"
+#~ msgstr "Impossible de mettre à jour le champ CNAME sur ce domaine"
+
+#~ msgid "Cannot update MX on this domain"
+#~ msgstr "Impossible de mettre à jour le champ MX sur ce domaine"
+
+#~ msgid "Change anti-virus status for your account\n"
+#~ msgstr "Ajouter ou supprimer les protections anti-virus ou anti-spam\n"
+
+#~ msgid "Create a DNS "
+#~ msgstr "Créer un DNS"
+
+#~ msgid "Go to Login"
+#~ msgstr "Retour à la page d'authentification"
+
+#~ msgid "Go to login page"
+#~ msgstr "Aller à la page d'authentification"
+
+#~ msgid ""
+#~ "If this mail is an error and you don't ask to be a subscriber to this "
+#~ "list, please do not answer to this mail\n"
+#~ msgstr ""
+#~ "Si vous n'avez pas sollicité ce mail et que vous n'avez pas essayé de "
+#~ "vous inscrire à cette liste, merci de ne pas répondre à ce mail\n"
+
+#~ msgid "Invalid IP"
+#~ msgstr "Adresse IP invalide"
+
+#~ msgid "List all all A reccords"
+#~ msgstr "Lister tous les enregistrements de type A"
+
+#~ msgid "Login OK, please wait..."
+#~ msgstr "Authentification réussie, merci de patienter..."
+
+#~ msgid "MX successfully changed"
+#~ msgstr "Champs MX modifiés avec succès"
+
+#~ msgid "Moderated"
+#~ msgstr "Modéré"
+
+#~ msgid "Moderator account : "
+#~ msgstr "Compte modérateur : "
+
+#~ msgid "Open archives"
+#~ msgstr "Archives ouvertes publiquement"
+
+#~ msgid "Open post"
+#~ msgstr "Post ouvert au public"
+
+#~ msgid "Open subscribing"
+#~ msgstr "Inscription ouverte au public"
+
+#~ msgid "Panel Access"
+#~ msgstr "Accès au panel"
+
+#~ msgid "Please try again\n"
+#~ msgstr "Veuillez réessayer\n"
+
+#~ msgid "Resource successfully added to this domain"
+#~ msgstr "Ressource ajoutée au domaine avec succès"
+
+#~ msgid "Subscribe to the list %s is forbidden\n"
+#~ msgstr "L'inscription à la liste %s est interdite\n"
+
+#~ msgid "Subscribed. Waiting for confirmation"
+#~ msgstr "Inscrit. En attente de confirmation"
+
+#~ msgid "Subscriber"
+#~ msgstr "Inscrit"
+
+#~ msgid ""
+#~ "The state of you subscription was not changed, you are always a "
+#~ "subscriber\n"
+#~ msgstr ""
+#~ "L'état de votre inscription n'a pas changé, vous êtes toujours "
+#~ "inscrit\n"
+
+#~ msgid "This domain name doesn't exist in the VHFFS database"
+#~ msgstr "Ce nom de domaine n'existe pas"
+
+#~ msgid "This part of the domain is now removed."
+#~ msgstr "Cette partie du domaine a été supprimée"
+
+#~ msgid "Updated !"
+#~ msgstr "Mis à jour"
+
+#~ msgid "User Successfully modified"
+#~ msgstr "Utilisateur modifié avec succès"
+
+#~ msgid "User account : "
+#~ msgstr "Compte utilisateur : "
+
+#~ msgid "VHFFS Login OK"
+#~ msgstr "Authentification réussie"
+
+#~ msgid "VHFFS Login failed"
+#~ msgstr "Authentification échouée"
+
+#~ msgid "Waiting for delete"
+#~ msgstr "En attente de suppression"
+
+#~ msgid "You ask to be subscribed to the following list: %s\n"
+#~ msgstr "Vous avez demandé à être inscrit à la liste suivante : %s\n"
+
+#~ msgid "You can have some help on listengine, sending an email to\n"
+#~ msgstr ""
+#~ "Vous pouvez obtenir de l'aide sur listengine en envoyant à mail à\n"
+
+#~ msgid "You can post on the list now."
+#~ msgstr "Vous pouvez poster sur la liste maintenant."
+
+#~ msgid "You have been successfully removed from the list %s\n"
+#~ msgstr "Vous avez été retiré de la liste %s avec succès\n"
+
+#~ msgid "You must confirm this request by seding a email\n"
+#~ msgstr "Vous devez confirmer cette demande en envoyant un mail\n"
+
+#~ msgid "You must confirm your request by sending a confirmation emailn\n"
+#~ msgstr ""
+#~ "Vous devez confirmer votre requête en envoyant un mail de confirmation\n"
+
+#~ msgid "Your request has been removed.\n"
+#~ msgstr "Votre requête a été supprimée.\n"
+
 #~ msgid "An error occured while applying changes"
 #~ msgstr "Une erreur est survenue lors de l'enregistrement des modifications"
 

Modified: branches/vhffs-design/vhffs-intl/src/vhffs.pot
===================================================================
--- branches/vhffs-design/vhffs-intl/src/vhffs.pot	2007-05-17 11:04:33 UTC (rev 610)
+++ branches/vhffs-design/vhffs-intl/src/vhffs.pot	2007-05-17 11:10:10 UTC (rev 611)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-03-25 19:16+0200\n"
+"POT-Creation-Date: 2007-05-17 10:35+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@xxxxxx>\n"
@@ -16,47 +16,108 @@
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:68
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:63
 msgid "\t\t\t\t   RIGHT can be subscriber or admin\n"
 msgstr ""
 
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:143
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:159
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:162
+msgid "\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:417
+#, perl-format
+msgid ""
+"  %s-request@%s\n"
+"with the following subject :\n"
+"  \"accept %s\" \n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:420
+#, perl-format
+msgid ""
+"  %s-request@%s\n"
+"with the following subject :\n"
+"  \"refuse %s\" \n"
+msgstr ""
+
 #: ../vhffs-panel/admin/moderation_submit.pl:105 ../vhffs-irc/modobot.pl:397
 msgid ""
 " was accepted\n"
 "Please wait while we are creating your object\n"
 msgstr ""
 
-#: ../vhffs-panel/public/index.pl:61
+#: ../vhffs-panel/public/index.pl:63
 #, perl-format
 msgid "%s public area"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:269
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:303
 #, perl-format
 msgid "%s's Panel"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:155
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:145
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:164
 #, perl-format
-msgid "%s-request@%s with subject : \"help\"\n"
+msgid "%s-request@%s with subject \"help\"\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:151
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:153
-msgid "------\n"
-msgstr ""
-
 #: ../vhffs-panel/web/create.pl:69
 msgid "<new site>."
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:386
+#: ../vhffs-panel/dns/prefs.pl:324
 #, perl-format
+msgid "@ represents the origin (%s)"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:341
+msgid ""
+"A CNAME, A or AAAA record with the same name already exists for this domain"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:126
+msgid "A Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:121
+msgid "A Record updated"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:394
+#, perl-format
 msgid "A mail to moderate is on the list %s.\n"
 msgstr ""
 
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:412
+#, perl-format
+msgid ""
+"A new person wants to subscribe to the following mailing list:\n"
+"\n"
+"%s\n"
+"\n"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:149
+msgid "A record added"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:138
+msgid "AAAA Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:133
+msgid "AAAA Record updated"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:144
+msgid "AAAA record added"
+msgstr ""
+
 #: ../vhffs-panel/acl/view.pl:148
-msgid "ACL Administration for : "
+msgid "ACL Administration"
 msgstr ""
 
 #: ../vhffs-panel/acl/view.pl:167
@@ -89,7 +150,7 @@
 msgid "Accept"
 msgstr ""
 
-#: ../vhffs-panel/logout.pl:60 ../vhffs-panel/auth.pl:60
+#: ../vhffs-panel/logout.pl:60 ../vhffs-api/src/Vhffs/Panel/Commons.pm:57
 msgid "Access to panel"
 msgstr ""
 
@@ -101,7 +162,7 @@
 msgid "Accounts"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs.pl:175
+#: ../vhffs-panel/user/prefs.pl:346
 #, perl-format
 msgid "Activate %s@%s email"
 msgstr ""
@@ -113,30 +174,39 @@
 #: ../vhffs-panel/admin/object/edit.pl:119
 #: ../vhffs-panel/admin/web/edit.pl:132 ../vhffs-panel/admin/mysql/edit.pl:120
 #: ../vhffs-panel/admin/cvs/edit.pl:128 ../vhffs-panel/admin/mail/edit.pl:160
+#: ../vhffs-intl/extra_strings.pl:20
 msgid "Activated"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:131 ../vhffs-panel/dns/prefs.pl:143
+#: ../vhffs-panel/mailinglist/prefs.pl:156 ../vhffs-panel/dns/prefs.pl:277
 msgid "Add !"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:156
+#: ../vhffs-panel/dns/prefs.pl:290
 msgid "Add a CNAME field to your domain"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:148
+#: ../vhffs-panel/dns/prefs.pl:282
 msgid "Add a MX field to your domain"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:164
+#: ../vhffs-panel/dns/prefs.pl:298
 msgid "Add a NS field to your domain"
 msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:304
+msgid "Add a SRV record to your domain"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:316
+msgid "Add a TXT record"
+msgstr ""
+
 #: ../vhffs-panel/mail/prefs.pl:117 ../vhffs-panel/mail/prefs.pl:127
 msgid "Add a forward on this domain"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:129
+#: ../vhffs-panel/mailinglist/prefs.pl:154
 msgid "Add a member"
 msgstr ""
 
@@ -148,10 +218,14 @@
 msgid "Add a user in this group"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:118
+#: ../vhffs-panel/dns/prefs.pl:251
 msgid "Add an A record"
 msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:252
+msgid "Add an AAAA record"
+msgstr ""
+
 #: ../vhffs-panel/mail/prefs.pl:108
 msgid "Add an account"
 msgstr ""
@@ -164,7 +238,7 @@
 msgid "Add this user to this group"
 msgstr ""
 
-#: ../vhffs-panel/subscribe.pl:205 ../vhffs-panel/user/prefs.pl:84
+#: ../vhffs-panel/subscribe.pl:205 ../vhffs-panel/user/prefs.pl:259
 #: ../vhffs-panel/admin/user/edit.pl:104 ../vhffs-panel/admin/user/show.pl:104
 msgid "Address"
 msgstr ""
@@ -173,25 +247,25 @@
 msgid "Address (Servername)"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:181
+#: ../vhffs-panel/user/prefs.pl:108
+msgid "Address is not correct !"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:182
 #: ../vhffs-panel/admin/user/edit.pl:101 ../vhffs-panel/admin/user/edit.pl:131
 #: ../vhffs-panel/admin/user/show.pl:101 ../vhffs-panel/admin/user/show.pl:136
 msgid "Admin"
 msgstr ""
 
-#: ../vhffs-panel/cvs/prefs.pl:99
+#: ../vhffs-panel/cvs/prefs.pl:89
 msgid "Admin CVS Repository"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:110
-msgid "Admin DNS"
-msgstr ""
-
 #: ../vhffs-panel/repository/prefs.pl:96
 msgid "Admin Download repository"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:123 ../vhffs-panel/web/prefs.pl:122
+#: ../vhffs-panel/dns/prefs.pl:257 ../vhffs-panel/web/prefs.pl:122
 #: ../vhffs-panel/mail/prefs.pl:137
 msgid "Admin Rights on this object (ACL)"
 msgstr ""
@@ -200,11 +274,11 @@
 msgid "Admin Subversion Repository"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:73
-msgid "Admin account : "
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:72
+msgid "Admin account"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:107
+#: ../vhffs-panel/mailinglist/prefs.pl:105
 msgid "Administration for list "
 msgstr ""
 
@@ -212,9 +286,8 @@
 msgid "Administrator Menu"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:122
-#, perl-format
-msgid "Adress %s is already a subscriber for this list.\n"
+#: ../vhffs-panel/mailinglist/prefs.pl:121
+msgid "Admins only"
 msgstr ""
 
 #: ../vhffs-panel/web/create.pl:74
@@ -233,44 +306,52 @@
 msgid "Alert state"
 msgstr ""
 
-#: ../vhffs-panel/public/allwebsites.pl:71
-#: ../vhffs-panel/public/allgroups.pl:67
+#: ../vhffs-panel/public/allwebsites.pl:73
+#: ../vhffs-panel/public/allgroups.pl:69
 msgid "All"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:114
-msgid "All A TYPE for you domain name"
+#: ../vhffs-panel/dns/prefs.pl:245
+msgid "All A TYPE for your domain name"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:155
-msgid "All CNAME TYPE for your domain name"
+#: ../vhffs-panel/dns/prefs.pl:246
+msgid "All AAAA TYPE for your domain name"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:116
-msgid "All CNAME for you domain name"
+#: ../vhffs-panel/dns/prefs.pl:289
+msgid "All CNAME TYPE for your domain name"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:115
-msgid "All MX TYPE for you domain name"
+#: ../vhffs-panel/dns/prefs.pl:248
+msgid "All CNAME for your domain name"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:147
+#: ../vhffs-panel/dns/prefs.pl:247 ../vhffs-panel/dns/prefs.pl:281
 msgid "All MX TYPE for your domain name"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:163
+#: ../vhffs-panel/dns/prefs.pl:297
 msgid "All NS TYPE for your domain name"
 msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:303
+msgid "All SRV records for your domain name"
+msgstr ""
+
 #: ../vhffs-panel/admin/svn/list.pl:73
 msgid "All Subversion repositories lists"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:49
+#: ../vhffs-panel/dns/prefs.pl:317
+msgid "All TXT records for your domain name"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:45
 msgid "All commands can be sent as mail subject.\n"
 msgstr ""
 
-#: ../vhffs-panel/public/allgroups.pl:65
+#: ../vhffs-panel/public/allgroups.pl:67
 #, perl-format
 msgid "All groups on %s"
 msgstr ""
@@ -279,10 +360,9 @@
 msgid "All mailings sent to hosted"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:51
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:47
 msgid ""
-"All mails with commands must be sent on \n"
-"                     YOURLIST-request@xxxxxxxxxx list.\n"
+"All mails with commands must be sent on YOURLIST-request@xxxxxxxxxx list.\n"
 msgstr ""
 
 #: ../vhffs-panel/admin/object/list.pl:84
@@ -293,8 +373,8 @@
 msgid "All users in this group"
 msgstr ""
 
-#: ../vhffs-panel/public/allwebsites.pl:69
-#: ../vhffs-panel/public/websearch.pl:74
+#: ../vhffs-panel/public/allwebsites.pl:71
+#: ../vhffs-panel/public/websearch.pl:76
 #, perl-format
 msgid "All websites on %s"
 msgstr ""
@@ -304,23 +384,40 @@
 msgid "Already exists for this domain or bad parameters. Check your domain"
 msgstr ""
 
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:293
+msgid "An MX record with the same name already exists for this domain"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:316
+msgid "An NS record with the same name already exists for this domain"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:189
+#, perl-format
+msgid ""
+"An error occured during your subscription to the following list:\n"
+"\n"
+"%s\n"
+"\n"
+msgstr ""
+
 #: ../vhffs-panel/mailinglist/submit.pl:114
 msgid "An error occured while adding an ACL for the group"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs_save.pl:184
+#: ../vhffs-panel/user/prefs.pl:169
 msgid "An error occured while adding the box"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs_save.pl:188
+#: ../vhffs-panel/user/prefs.pl:171
 msgid "An error occured while adding the box (anti-spam adding)"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs_save.pl:192
+#: ../vhffs-panel/user/prefs.pl:173
 msgid "An error occured while adding the box (anti-virus adding)"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs_save.pl:260
+#: ../vhffs-panel/user/prefs.pl:213
 msgid "An error occured while adding the forwarding"
 msgstr ""
 
@@ -358,14 +455,14 @@
 msgid "An error occured while creating the object %s %s"
 msgstr ""
 
-#: ../vhffs-panel/dns/dns_submit.pl:78
+#: ../vhffs-panel/dns/create.pl:50
 msgid ""
 "An error occured while creating the object. The domain is not correct or "
 "aleady exists in Vhffs database"
 msgstr ""
 
 #: ../vhffs-panel/repository/repository_submit.pl:93
-#: ../vhffs-panel/cvs/cvs_submit.pl:92
+#: ../vhffs-panel/cvs/create.pl:81
 msgid "An error occured while creating the object.It probably already exists"
 msgstr ""
 
@@ -397,7 +494,7 @@
 msgid "An error occured while setting up the ACL"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs_save.pl:272
+#: ../vhffs-panel/user/prefs.pl:220
 msgid "An error occured while the forwarding"
 msgstr ""
 
@@ -409,7 +506,7 @@
 msgid "An error occured while updating"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:273
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:280
 #, perl-format
 msgid ""
 "An error occured while updating language for the following address: %s.\n"
@@ -423,7 +520,7 @@
 msgid "An error occured while updating the Download repository"
 msgstr ""
 
-#: ../vhffs-panel/svn/prefs_save.pl:107
+#: ../vhffs-panel/svn/prefs_save.pl:107 ../vhffs-panel/svn/prefs_save.pl:119
 msgid "An error occured while updating the Subversion repository"
 msgstr ""
 
@@ -439,16 +536,11 @@
 msgid "An error occured while updating the project"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs_save.pl:128
+#: ../vhffs-panel/user/prefs.pl:140
 msgid "An error occured while updating the user account"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:181
-#, perl-format
-msgid "An error occurs while you subscribed to the list  %s \n"
-msgstr ""
-
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:415
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:445
 msgid "April"
 msgstr ""
 
@@ -476,7 +568,7 @@
 msgid "Are you SURE you want DELETE this  subversion repository ?"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:202 ../vhffs-panel/mail/prefs.pl:132
+#: ../vhffs-panel/mailinglist/prefs.pl:203 ../vhffs-panel/mail/prefs.pl:132
 msgid "Are you SURE you want DELETE this Mail Area ?"
 msgstr ""
 
@@ -492,11 +584,11 @@
 msgid "Are you SURE you want DELETE this Web Area ?"
 msgstr ""
 
-#: ../vhffs-panel/cvs/prefs.pl:108
+#: ../vhffs-panel/cvs/prefs.pl:98
 msgid "Are you SURE you want DELETE this cvs repository ?"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:131
+#: ../vhffs-panel/dns/prefs.pl:265
 msgid "Are you SURE you want DELETE this domain ?"
 msgstr ""
 
@@ -508,11 +600,11 @@
 msgid "Are you SURE you want DELETE this project ?"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs.pl:103
+#: ../vhffs-panel/user/prefs.pl:278
 msgid "Are you SURE you want DELETE this user?"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:431
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:461
 msgid "August"
 msgstr ""
 
@@ -570,7 +662,7 @@
 "new password for this database."
 msgstr ""
 
-#: ../vhffs-panel/dns/create.pl:36
+#: ../vhffs-panel/dns/create.pl:63
 msgid ""
 "Be careful ! You must give the reason why you want to host this domain on "
 "our servers."
@@ -635,7 +727,7 @@
 msgid "CGI ERROR ! %s"
 msgstr ""
 
-#: ../vhffs-panel/public/user.pl:66 ../vhffs-panel/public/group.pl:71
+#: ../vhffs-panel/public/user.pl:68 ../vhffs-panel/public/group.pl:72
 msgid "CGI ERROR!"
 msgstr ""
 
@@ -660,11 +752,11 @@
 #: ../vhffs-panel/admin/group/edit_submit.pl:95
 #: ../vhffs-panel/admin/broadcast_view.pl:78 ../vhffs-panel/mysql/delete.pl:76
 #: ../vhffs-panel/mysql/prefs.pl:71 ../vhffs-panel/mysql/submit.pl:75
-#: ../vhffs-panel/mysql/prefs_save.pl:79 ../vhffs-panel/cvs/prefs.pl:73
+#: ../vhffs-panel/mysql/prefs_save.pl:79 ../vhffs-panel/cvs/prefs.pl:72
 msgid "CGI Error !"
 msgstr ""
 
-#: ../vhffs-panel/svn/prefs_save.pl:74 ../vhffs-panel/repository/delete.pl:74
+#: ../vhffs-panel/svn/prefs_save.pl:76 ../vhffs-panel/repository/delete.pl:74
 #: ../vhffs-panel/repository/prefs_save.pl:74 ../vhffs-panel/cvs/delete.pl:74
 #: ../vhffs-panel/cvs/prefs_save.pl:74
 #, perl-format
@@ -674,17 +766,11 @@
 #: ../vhffs-panel/mailinglist/delete.pl:78
 #: ../vhffs-panel/mailinglist/save_sig.pl:77
 #: ../vhffs-panel/mailinglist/add_sub.pl:79
-#: ../vhffs-panel/mailinglist/save_options.pl:84
+#: ../vhffs-panel/mailinglist/save_options.pl:81
 #: ../vhffs-panel/mailinglist/change_right.pl:81
 #: ../vhffs-panel/mailinglist/change_right.pl:101
-#: ../vhffs-panel/mailinglist/del_member.pl:79
-#: ../vhffs-panel/user/prefs_save.pl:91 ../vhffs-panel/dns/delete.pl:79
-#: ../vhffs-panel/dns/add_mx.pl:80 ../vhffs-panel/dns/prefs.pl:78
-#: ../vhffs-panel/dns/modif_a.pl:80 ../vhffs-panel/dns/add_ns.pl:79
-#: ../vhffs-panel/dns/add_cname.pl:80 ../vhffs-panel/dns/delete_a.pl:50
-#: ../vhffs-panel/dns/delete_ns.pl:78 ../vhffs-panel/dns/delete_mx.pl:79
-#: ../vhffs-panel/dns/modif_cname.pl:81 ../vhffs-panel/dns/modif_mx.pl:81
-#: ../vhffs-panel/dns/add_a.pl:84 ../vhffs-panel/dns/delete_cname.pl:79
+#: ../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/pgsql/pgsql_submit.pl:73 ../vhffs-panel/web/web_submit.pl:72
 msgid "CGI Error!"
 msgstr ""
@@ -697,14 +783,26 @@
 msgid "CGI problem"
 msgstr ""
 
-#: ../vhffs-panel/dns/modif_cname.pl:105
-msgid "CNAME field successfully updated"
+#: ../vhffs-panel/dns/prefs.pl:188
+msgid "CNAME Record added"
 msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:183
+msgid "CNAME Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:179
+msgid "CNAME Record updated"
+msgstr ""
+
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:145
 msgid "CVS Admin"
 msgstr ""
 
+#: ../vhffs-intl/extra_strings.pl:36
+msgid "CVS Repository"
+msgstr ""
+
 #: ../vhffs-panel/admin/cvs/list.pl:89
 msgid "CVS Root"
 msgstr ""
@@ -713,7 +811,7 @@
 msgid "CVS Search"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:425
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:485
 msgid "CVS repositories for this group"
 msgstr ""
 
@@ -725,7 +823,7 @@
 msgid "CVS repository awaiting validation"
 msgstr ""
 
-#: ../vhffs-panel/public/group.pl:146
+#: ../vhffs-panel/public/group.pl:148
 msgid "CVS repository for this group"
 msgstr ""
 
@@ -785,12 +883,6 @@
 msgid "Can't modify object..."
 msgstr ""
 
-#: ../vhffs-panel/dns/add_mx.pl:98 ../vhffs-panel/dns/add_ns.pl:96
-#: ../vhffs-panel/dns/add_cname.pl:100 ../vhffs-panel/dns/add_a.pl:108
-#: ../vhffs-panel/dns/add_a.pl:124
-msgid "Cannot add this ressource to this domain"
-msgstr ""
-
 #: ../vhffs-panel/group/join_group.pl:82
 msgid "Cannot add this user in this group"
 msgstr ""
@@ -811,11 +903,6 @@
 msgid "Cannot create user, the username you entered already exists"
 msgstr ""
 
-#: ../vhffs-panel/dns/delete_a.pl:70 ../vhffs-panel/dns/delete_ns.pl:98
-#: ../vhffs-panel/dns/delete_mx.pl:99 ../vhffs-panel/dns/delete_cname.pl:97
-msgid "Cannot delete it."
-msgstr ""
-
 #: ../vhffs-panel/admin/object/delete_avatar.pl:95
 msgid "Cannot delete this avatar"
 msgstr ""
@@ -858,20 +945,14 @@
 #: ../vhffs-panel/mailinglist/delete.pl:82
 #: ../vhffs-panel/mailinglist/save_sig.pl:81
 #: ../vhffs-panel/mailinglist/add_sub.pl:83
-#: ../vhffs-panel/mailinglist/prefs.pl:86
-#: ../vhffs-panel/mailinglist/save_options.pl:88
+#: ../vhffs-panel/mailinglist/prefs.pl:84
+#: ../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/add_mx.pl:83
-#: ../vhffs-panel/dns/prefs.pl:85 ../vhffs-panel/dns/modif_a.pl:83
-#: ../vhffs-panel/dns/add_ns.pl:81 ../vhffs-panel/dns/add_cname.pl:85
-#: ../vhffs-panel/dns/delete_a.pl:55 ../vhffs-panel/dns/delete_ns.pl:83
-#: ../vhffs-panel/dns/delete_mx.pl:84 ../vhffs-panel/dns/modif_cname.pl:86
-#: ../vhffs-panel/dns/modif_mx.pl:86 ../vhffs-panel/dns/add_a.pl:88
-#: ../vhffs-panel/dns/delete_cname.pl:82 ../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:79
-#: ../vhffs-panel/mail/add_account.pl:75
+#: ../vhffs-panel/dns/delete.pl:84 ../vhffs-panel/dns/prefs.pl:84
+#: ../vhffs-panel/pgsql/prefs.pl:71 ../vhffs-panel/repository/prefs.pl:76
+#: ../vhffs-panel/web/prefs.pl:72 ../vhffs-panel/mysql/prefs.pl:77
+#: ../vhffs-panel/cvs/prefs.pl:76 ../vhffs-panel/mail/add_account.pl:75
 #: ../vhffs-panel/mail/save_catchall.pl:74
 #: ../vhffs-panel/mail/add_forward.pl:73
 msgid "Cannot get informations on this object"
@@ -886,10 +967,6 @@
 msgid "Cannot get statistics"
 msgstr ""
 
-#: ../vhffs-panel/dns/modif_a.pl:102
-msgid "Cannot modify this ressource on this domain"
-msgstr ""
-
 #: ../vhffs-panel/group/remove_user_from_group.pl:83
 msgid "Cannot remove the owner from a group"
 msgstr ""
@@ -903,7 +980,7 @@
 msgid "Cannot retrieve informations about this Download repository"
 msgstr ""
 
-#: ../vhffs-panel/svn/prefs_save.pl:78
+#: ../vhffs-panel/svn/prefs_save.pl:80
 msgid "Cannot retrieve informations about this Subversion repository"
 msgstr ""
 
@@ -912,7 +989,7 @@
 msgstr ""
 
 #: ../vhffs-panel/mailinglist/save_sig.pl:95
-#: ../vhffs-panel/mailinglist/save_options.pl:150
+#: ../vhffs-panel/mailinglist/save_options.pl:124
 msgid "Cannot save"
 msgstr ""
 
@@ -920,14 +997,6 @@
 msgid "Cannot send message, CGI error..."
 msgstr ""
 
-#: ../vhffs-panel/dns/modif_cname.pl:101
-msgid "Cannot update CNAME on this domain"
-msgstr ""
-
-#: ../vhffs-panel/dns/modif_mx.pl:101
-msgid "Cannot update MX on this domain"
-msgstr ""
-
 #: ../vhffs-panel/admin/mail/edit.pl:98 ../vhffs-panel/admin/mail/show.pl:98
 msgid "Catchall"
 msgstr ""
@@ -956,10 +1025,6 @@
 msgid "Change Password"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs_save.pl:234
-msgid "Change anti-virus status for your account\n"
-msgstr ""
-
 #: ../vhffs-panel/mail/prefs.pl:125
 msgid "Change catchall forward"
 msgstr ""
@@ -972,11 +1037,11 @@
 msgid "Change language"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:167
+#: ../vhffs-panel/mailinglist/prefs.pl:168
 msgid "Change rights\n"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs_save.pl:216
+#: ../vhffs-panel/user/prefs.pl:188
 msgid "Change spam protection status for your account\n"
 msgstr ""
 
@@ -992,6 +1057,10 @@
 msgid "Change user-id"
 msgstr ""
 
+#: ../vhffs-panel/user/prefs.pl:199
+msgid "Changed anti-virus status for your account\n"
+msgstr ""
+
 #: ../vhffs-robots/src/refused_ml.pl:77 ../vhffs-robots/src/refused_mail.pl:79
 #: ../vhffs-robots/src/refused_postgres.pl:80
 #: ../vhffs-robots/src/refused_cvs.pl:76 ../vhffs-robots/src/refused_web.pl:75
@@ -1009,12 +1078,20 @@
 "The Moderator and Admin team\n"
 msgstr ""
 
-#: ../vhffs-panel/subscribe.pl:203 ../vhffs-panel/user/prefs.pl:83
+#: ../vhffs-panel/subscribe.pl:203 ../vhffs-panel/user/prefs.pl:258
 #: ../vhffs-panel/admin/user/edit.pl:105 ../vhffs-panel/admin/user/show.pl:105
 msgid "City"
 msgstr ""
 
-#: ../vhffs-panel/subscribe.pl:212
+#: ../vhffs-panel/user/prefs.pl:96
+msgid "City is not correct !"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:114
+msgid "Closed"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:213
 msgid "Code confirmation"
 msgstr ""
 
@@ -1022,19 +1099,27 @@
 msgid "Codes do not match"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs.pl:87
+#: ../vhffs-panel/user/prefs.pl:262
 msgid "Confirm Password"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:230
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:236
 msgid "Confirmation code was wrong.\n"
 msgstr ""
 
-#: ../vhffs-panel/subscribe.pl:204 ../vhffs-panel/user/prefs.pl:85
+#: ../vhffs-panel/subscribe.pl:215
+msgid "Confirmation code, contact administrator team if you can't read it"
+msgstr ""
+
+#: ../vhffs-panel/subscribe.pl:204 ../vhffs-panel/user/prefs.pl:260
 #: ../vhffs-panel/admin/user/edit.pl:107 ../vhffs-panel/admin/user/show.pl:107
 msgid "Country"
 msgstr ""
 
+#: ../vhffs-panel/user/prefs.pl:105
+msgid "Country is not correct !"
+msgstr ""
+
 #: ../vhffs-panel/admin/web/edit.pl:96 ../vhffs-panel/admin/web/show.pl:95
 msgid "Crawl"
 msgstr ""
@@ -1052,12 +1137,12 @@
 msgid "Create"
 msgstr ""
 
-#: ../vhffs-panel/cvs/create.pl:64
+#: ../vhffs-panel/cvs/create.pl:89
 msgid "Create a CVS Repository"
 msgstr ""
 
-#: ../vhffs-panel/dns/create.pl:34
-msgid "Create a DNS "
+#: ../vhffs-panel/dns/create.pl:58
+msgid "Create a DNS"
 msgstr ""
 
 #: ../vhffs-panel/repository/create.pl:64
@@ -1099,6 +1184,7 @@
 #: ../vhffs-panel/admin/object/edit.pl:120
 #: ../vhffs-panel/admin/web/edit.pl:133 ../vhffs-panel/admin/mysql/edit.pl:121
 #: ../vhffs-panel/admin/cvs/edit.pl:129 ../vhffs-panel/admin/mail/edit.pl:161
+#: ../vhffs-intl/extra_strings.pl:19
 msgid "Created"
 msgstr ""
 
@@ -1112,11 +1198,15 @@
 msgid "Creating error"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs.pl:113 ../vhffs-panel/group/prefs.pl:111
+#: ../vhffs-intl/extra_strings.pl:18
+msgid "Creation error"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:288 ../vhffs-panel/group/prefs.pl:111
 msgid "Current avatar"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:612
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:682
 #, perl-format
 msgid "Current group: %s"
 msgstr ""
@@ -1137,11 +1227,16 @@
 msgid "DNS"
 msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:240
+#, perl-format
+msgid "DNS Administration - %s"
+msgstr ""
+
 #: ../vhffs-panel/admin/moderation.pl:175
 msgid "DNS awaiting validation"
 msgstr ""
 
-#: ../vhffs-panel/dns/create.pl:37
+#: ../vhffs-panel/dns/create.pl:64
 msgid "DNS servers:"
 msgstr ""
 
@@ -1158,6 +1253,23 @@
 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-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
+msgid "Database error"
+msgstr ""
+
 #: ../vhffs-panel/mysql/submit.pl:83
 msgid "Database name must contain at least 3 caracters"
 msgstr ""
@@ -1186,22 +1298,23 @@
 msgid "Date of creation"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:447
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:477
 msgid "December"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:205 ../vhffs-panel/svn/prefs.pl:127
-#: ../vhffs-panel/user/prefs.pl:106 ../vhffs-panel/dns/prefs.pl:134
-#: ../vhffs-panel/dns/prefs.pl:184 ../vhffs-panel/dns/prefs.pl:205
-#: ../vhffs-panel/dns/prefs.pl:225 ../vhffs-panel/dns/prefs.pl:246
-#: ../vhffs-panel/pgsql/prefs.pl:112 ../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:111
-#: ../vhffs-panel/mail/prefs.pl:135
+#: ../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/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
 msgid "Delete"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs.pl:101
+#: ../vhffs-panel/user/prefs.pl:276
 msgid "Delete YOUR user"
 msgstr ""
 
@@ -1209,7 +1322,7 @@
 msgid "Delete avatar for this object"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:166
+#: ../vhffs-panel/mailinglist/prefs.pl:167
 msgid "Delete from list"
 msgstr ""
 
@@ -1221,7 +1334,7 @@
 msgid "Delete this database"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:129
+#: ../vhffs-panel/dns/prefs.pl:263
 msgid "Delete this domain name from the VHFFS platform"
 msgstr ""
 
@@ -1229,7 +1342,7 @@
 msgid "Delete this forward"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:200
+#: ../vhffs-panel/mailinglist/prefs.pl:201
 msgid "Delete this list"
 msgstr ""
 
@@ -1246,7 +1359,7 @@
 msgstr ""
 
 #: ../vhffs-panel/group/prefs.pl:97 ../vhffs-panel/repository/prefs.pl:102
-#: ../vhffs-panel/cvs/prefs.pl:106
+#: ../vhffs-panel/cvs/prefs.pl:96
 msgid "Delete this project"
 msgstr ""
 
@@ -1258,7 +1371,7 @@
 msgid "Delete this web area"
 msgstr ""
 
-#: ../vhffs-panel/svn/create.pl:77 ../vhffs-panel/dns/create.pl:42
+#: ../vhffs-panel/svn/create.pl:77 ../vhffs-panel/dns/create.pl:69
 #: ../vhffs-panel/pgsql/create.pl:74 ../vhffs-panel/group/create.pl:66
 #: ../vhffs-panel/repository/create.pl:72
 #: ../vhffs-panel/admin/pgsql/edit.pl:101
@@ -1271,9 +1384,9 @@
 #: ../vhffs-panel/admin/mysql/show.pl:98 ../vhffs-panel/admin/cvs/edit.pl:100
 #: ../vhffs-panel/admin/cvs/show.pl:99 ../vhffs-panel/admin/mail/edit.pl:102
 #: ../vhffs-panel/admin/mail/show.pl:102
-#: ../vhffs-panel/public/lastgroups.pl:75 ../vhffs-panel/public/group.pl:89
-#: ../vhffs-panel/public/allgroups.pl:82 ../vhffs-panel/mysql/create.pl:72
-#: ../vhffs-panel/cvs/create.pl:71
+#: ../vhffs-panel/public/lastgroups.pl:77 ../vhffs-panel/public/group.pl:91
+#: ../vhffs-panel/public/allgroups.pl:84 ../vhffs-panel/mysql/create.pl:72
+#: ../vhffs-panel/cvs/create.pl:97
 msgid "Description"
 msgstr ""
 
@@ -1281,7 +1394,7 @@
 msgid "Description of your webarea"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:158
+#: ../vhffs-panel/dns/prefs.pl:292
 msgid "Destination"
 msgstr ""
 
@@ -1307,12 +1420,12 @@
 msgid "Domain"
 msgstr ""
 
-#: ../vhffs-panel/dns/create.pl:35 ../vhffs-panel/admin/dns/list.pl:87
-#: ../vhffs-panel/admin/mail/list.pl:87
+#: ../vhffs-panel/dns/create.pl:60 ../vhffs-panel/admin/dns/list.pl:87
+#: ../vhffs-panel/admin/mail/list.pl:87 ../vhffs-intl/extra_strings.pl:38
 msgid "Domain Name"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:555
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:615
 msgid "Domains for this group"
 msgstr ""
 
@@ -1320,7 +1433,11 @@
 msgid "Don't use Crawl"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:530
+#: ../vhffs-intl/extra_strings.pl:33
+msgid "Download Repository"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:590
 msgid "Download repositories for this group"
 msgstr ""
 
@@ -1380,10 +1497,18 @@
 msgid "Edit this object"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:130
+#: ../vhffs-panel/user/prefs.pl:135
+msgid "Email address changed"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:155
 msgid "Email adress"
 msgstr ""
 
+#: ../vhffs-panel/user/prefs.pl:99
+msgid "Email is not correct !"
+msgstr ""
+
 #: ../vhffs-panel/mail/prefs.pl:169
 msgid "Enable anti-spam"
 msgstr ""
@@ -1400,7 +1525,7 @@
 msgid "Error !"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs_save.pl:180
+#: ../vhffs-panel/user/prefs.pl:167
 msgid ""
 "Error ! You MUST provide a password in your account when you create your "
 "popable account"
@@ -1410,11 +1535,11 @@
 msgid "Error creating group (maybe a group with the same name already exists)"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs_save.pl:221
+#: ../vhffs-panel/user/prefs.pl:190
 msgid "Error for spam protection\n"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs_save.pl:239
+#: ../vhffs-panel/user/prefs.pl:201
 msgid "Error for virus protection\n"
 msgstr ""
 
@@ -1453,7 +1578,7 @@
 msgid "Error. This group doesn't exists"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:227
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:272
 msgid "Expired session ! Please login again"
 msgstr ""
 
@@ -1461,7 +1586,7 @@
 msgid "Failed to modify note"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:407
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:437
 msgid "February"
 msgstr ""
 
@@ -1473,12 +1598,16 @@
 msgid "Filetype not supported"
 msgstr ""
 
-#: ../vhffs-panel/subscribe.pl:200 ../vhffs-panel/user/prefs.pl:80
+#: ../vhffs-panel/subscribe.pl:200 ../vhffs-panel/user/prefs.pl:255
 #: ../vhffs-panel/admin/user/edit.pl:96 ../vhffs-panel/admin/user/show.pl:97
-#: ../vhffs-panel/public/user.pl:83 ../vhffs-panel/public/lastusers.pl:78
+#: ../vhffs-panel/public/user.pl:85 ../vhffs-panel/public/lastusers.pl:80
 msgid "Firstname"
 msgstr ""
 
+#: ../vhffs-panel/user/prefs.pl:90
+msgid "Firstname is not correct !"
+msgstr ""
+
 #: ../vhffs-panel/admin/mail/delete_forward.pl:109
 #, perl-format
 msgid "Forward %s deleted"
@@ -1489,7 +1618,11 @@
 msgid "Forward %s successfully added"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs.pl:179
+#: ../vhffs-panel/user/prefs.pl:215
+msgid "Forward added"
+msgstr ""
+
+#: ../vhffs-panel/user/prefs.pl:350
 #, perl-format
 msgid "Forward emails from %s@%s to %s"
 msgstr ""
@@ -1510,6 +1643,10 @@
 msgid "Forward successfully deleted"
 msgstr ""
 
+#: ../vhffs-panel/user/prefs.pl:222
+msgid "Forward updated"
+msgstr ""
+
 #: ../vhffs-panel/mail/prefs.pl:115
 msgid "Forwards"
 msgstr ""
@@ -1528,7 +1665,6 @@
 msgstr ""
 
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:82
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:87
 msgid "General"
 msgstr ""
 
@@ -1540,39 +1676,31 @@
 msgid "Give me a new password"
 msgstr ""
 
-#: ../vhffs-panel/public/user.pl:114 ../vhffs-panel/public/lastgroups.pl:102
-#: ../vhffs-panel/public/lastusers.pl:111
-#: ../vhffs-panel/public/allwebsites.pl:98 ../vhffs-panel/public/index.pl:80
-#: ../vhffs-panel/public/group.pl:222 ../vhffs-panel/public/allgroups.pl:110
+#: ../vhffs-panel/public/user.pl:116 ../vhffs-panel/public/lastgroups.pl:104
+#: ../vhffs-panel/public/lastusers.pl:113
+#: ../vhffs-panel/public/allwebsites.pl:100 ../vhffs-panel/public/index.pl:82
+#: ../vhffs-panel/public/group.pl:224 ../vhffs-panel/public/allgroups.pl:112
 msgid "Go on login page"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:247
-msgid "Go to Login"
-msgstr ""
-
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:358
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:382
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:408
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:434
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:460
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:487
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:513
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:539
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:564
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:418
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:442
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:468
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:494
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:520
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:547
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:573
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:599
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:624
 msgid "Go to admin"
 msgstr ""
 
-#: ../vhffs-panel/login.pl:88 ../vhffs-panel/login.pl:118
-msgid "Go to login page"
-msgstr ""
-
-#: ../vhffs-panel/mailinglist/prefs.pl:215 ../vhffs-panel/svn/prefs.pl:152
-#: ../vhffs-panel/dns/prefs.pl:261
+#: ../vhffs-panel/mailinglist/prefs.pl:216 ../vhffs-panel/svn/prefs.pl:159
+#: ../vhffs-panel/dns/prefs.pl:420
 msgid "Go to object-part admin"
 msgstr ""
 
-#: ../vhffs-panel/auth.pl:79
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:74
 msgid "Go to public area"
 msgstr ""
 
@@ -1592,10 +1720,11 @@
 #: ../vhffs-panel/admin/cvs/edit.pl:97 ../vhffs-panel/admin/cvs/show.pl:96
 #: ../vhffs-panel/admin/cvs/list.pl:90 ../vhffs-panel/admin/mail/edit.pl:99
 #: ../vhffs-panel/admin/mail/show.pl:99 ../vhffs-panel/admin/mail/list.pl:88
+#: ../vhffs-intl/extra_strings.pl:31
 msgid "Group"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:341
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:401
 #, perl-format
 msgid "Group %s"
 msgstr ""
@@ -1604,15 +1733,15 @@
 msgid "Group Admin"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:336
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:396
 msgid "Group error"
 msgstr ""
 
-#: ../vhffs-panel/cvs/create.pl:66
+#: ../vhffs-panel/cvs/create.pl:93
 msgid "Group owning this CVS"
 msgstr ""
 
-#: ../vhffs-panel/dns/create.pl:38
+#: ../vhffs-panel/dns/create.pl:65
 msgid "Group owning this DNS"
 msgstr ""
 
@@ -1636,18 +1765,18 @@
 msgid "Group owning this web space"
 msgstr ""
 
-#: ../vhffs-panel/public/index.pl:70
+#: ../vhffs-panel/public/index.pl:72
 msgid "Group public area"
 msgstr ""
 
 #: ../vhffs-panel/acl/view.pl:151 ../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:71 ../vhffs-panel/public/group.pl:88
-#: ../vhffs-panel/public/allgroups.pl:78
+#: ../vhffs-panel/public/lastgroups.pl:73 ../vhffs-panel/public/group.pl:90
+#: ../vhffs-panel/public/allgroups.pl:80
 msgid "Groupname"
 msgstr ""
 
-#: ../vhffs-panel/public/user.pl:87 ../vhffs-panel/public/lastusers.pl:82
+#: ../vhffs-panel/public/user.pl:89 ../vhffs-panel/public/lastusers.pl:84
 msgid "Groups"
 msgstr ""
 
@@ -1663,7 +1792,7 @@
 msgid "Groups stats"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs_save.pl:122
+#: ../vhffs-panel/user/prefs.pl:133
 #, perl-format
 msgid ""
 "Hello %s %s,\n"
@@ -1676,15 +1805,16 @@
 "VHFFS administrators\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:47
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:43
 msgid "Hello and welcome on listengine help\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:89
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:320
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:81
 msgid "Help"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:54
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:49
 msgid "Here are the basic listengine commands:\n"
 msgstr ""
 
@@ -1692,6 +1822,13 @@
 msgid "Here, you can report a bug to the admin team"
 msgstr ""
 
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:413
+#, perl-format
+msgid ""
+"His email address is:\n"
+"  %s\n"
+msgstr ""
+
 #: ../vhffs-panel/history.pl:105 ../vhffs-panel/admin/user/edit.pl:110
 #: ../vhffs-panel/admin/user/show.pl:111
 #: ../vhffs-panel/admin/pgsql/edit.pl:103
@@ -1731,40 +1868,48 @@
 msgid "History of this object"
 msgstr ""
 
-#: ../vhffs-panel/admin/user/edit.pl:100 ../vhffs-panel/admin/user/show.pl:100
+#: ../vhffs-panel/subscribe.pl:208 ../vhffs-panel/admin/user/edit.pl:100
+#: ../vhffs-panel/admin/user/show.pl:100
 msgid "Home"
 msgstr ""
 
-#: ../vhffs-panel/public/user.pl:113 ../vhffs-panel/public/lastgroups.pl:101
-#: ../vhffs-panel/public/lastusers.pl:110
-#: ../vhffs-panel/public/allwebsites.pl:97 ../vhffs-panel/public/index.pl:79
-#: ../vhffs-panel/public/group.pl:221 ../vhffs-panel/public/allgroups.pl:109
+#: ../vhffs-panel/public/user.pl:115 ../vhffs-panel/public/lastgroups.pl:103
+#: ../vhffs-panel/public/lastusers.pl:112
+#: ../vhffs-panel/public/allwebsites.pl:99 ../vhffs-panel/public/index.pl:81
+#: ../vhffs-panel/public/group.pl:223 ../vhffs-panel/public/allgroups.pl:111
 msgid "Homepage of public area"
 msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:307 ../vhffs-panel/dns/prefs.pl:392
+#: ../vhffs-panel/dns/prefs.pl:408
+msgid "Host"
+msgstr ""
+
 #: ../vhffs-panel/admin/user/edit.pl:132 ../vhffs-panel/admin/user/show.pl:140
 msgid "Hosted"
 msgstr ""
 
-#: ../vhffs-panel/auth.pl:61
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:160
+msgid "However this list require approval for new subscribers.\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:115
+#, perl-format
+msgid "However you are (%s) already subscribed to this list.\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:58
 msgid "I've lost my password"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:141
+#: ../vhffs-panel/dns/prefs.pl:275
 msgid "IP"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:165
+#: ../vhffs-panel/dns/prefs.pl:299
 msgid "IP/host of your NS"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:89
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:106
-msgid ""
-"If this mail is an error and you don't ask to be a subscriber to this list, "
-"please do not answer to this mail\n"
-msgstr ""
-
 #: ../vhffs-robots/src/refused_ml.pl:76 ../vhffs-robots/src/refused_mail.pl:78
 #: ../vhffs-robots/src/refused_postgres.pl:79
 #: ../vhffs-robots/src/refused_cvs.pl:75 ../vhffs-robots/src/refused_web.pl:74
@@ -1777,6 +1922,18 @@
 msgid "If you encounters problem, please mail: %s\n"
 msgstr ""
 
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:83
+msgid ""
+"If you haven't asked to be subscribed to this list,\n"
+"please don't answer to this mail\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:101
+msgid ""
+"If you haven't asked to be unsubscribed from this list,\n"
+"please don't answer to this mail\n"
+msgstr ""
+
 #: ../vhffs-panel/group/prefs.pl:89
 msgid ""
 "If you want more disk space for your project, you must fill a form in the "
@@ -1795,25 +1952,97 @@
 msgid "In hope to keep you in our hosting service"
 msgstr ""
 
-#: ../vhffs-panel/dns/modif_a.pl:98 ../vhffs-panel/dns/add_a.pl:120
-msgid "Invalid IP"
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:239
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:251
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:281
+msgid "Invalid IP address"
 msgstr ""
 
-#: ../vhffs-panel/dns/dns_submit.pl:72
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:269
+msgid "Invalid IP v6 address"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:339
+msgid "Invalid alias"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:328
+msgid "Invalid destination"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:353
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:369
+msgid "Invalid destination domain name"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:340
+msgid "Invalid destination host"
+msgstr ""
+
+#: ../vhffs-panel/dns/create.pl:41
 msgid "Invalid domain name"
 msgstr ""
 
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:305
+msgid "Invalid host"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:291
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:315
+msgid "Invalid hostname"
+msgstr ""
+
 #: ../vhffs-panel/mail/submit.pl:78
 msgid "Invalid mail domain"
 msgstr ""
 
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:354
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:370
+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
+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
+msgid "Invalid priority"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:351
+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
+msgid "Invalid record"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:352
+msgid "Invalid service syntax"
+msgstr ""
+
 #: ../vhffs-panel/subscribe.pl:93
 msgid ""
 "Invalid username, it must contain between 3 and 12 alphanumeric characters, "
 "all in lowercase"
 msgstr ""
 
-#: ../vhffs-panel/cvs/prefs.pl:102
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:356
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:372
+msgid "Invalid weight"
+msgstr ""
+
+#: ../vhffs-panel/cvs/prefs.pl:92
 msgid "Is this CVS repository public ??"
 msgstr ""
 
@@ -1821,52 +2050,64 @@
 msgid "Is this a public repository ?"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:403
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:433
 msgid "January"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:427
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:457
 msgid "July"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:423
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:453
 msgid "June"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs.pl:88
+#: ../vhffs-panel/user/prefs.pl:263
 msgid "Language"
 msgstr ""
 
-#: ../vhffs-panel/public/user.pl:116 ../vhffs-panel/public/lastgroups.pl:104
-#: ../vhffs-panel/public/lastusers.pl:113
-#: ../vhffs-panel/public/allwebsites.pl:100 ../vhffs-panel/public/index.pl:82
-#: ../vhffs-panel/public/group.pl:224 ../vhffs-panel/public/allgroups.pl:112
+#: ../vhffs-panel/public/user.pl:118 ../vhffs-panel/public/lastgroups.pl:106
+#: ../vhffs-panel/public/lastusers.pl:115
+#: ../vhffs-panel/public/allwebsites.pl:102 ../vhffs-panel/public/index.pl:84
+#: ../vhffs-panel/public/group.pl:226 ../vhffs-panel/public/allgroups.pl:114
 msgid "Last groups"
 msgstr ""
 
-#: ../vhffs-panel/public/lastgroups.pl:62
+#: ../vhffs-panel/public/lastgroups.pl:64
 #, perl-format
 msgid "Last groups on %s"
 msgstr ""
 
-#: ../vhffs-panel/public/user.pl:117 ../vhffs-panel/public/lastgroups.pl:105
-#: ../vhffs-panel/public/lastusers.pl:114
-#: ../vhffs-panel/public/allwebsites.pl:101 ../vhffs-panel/public/index.pl:83
-#: ../vhffs-panel/public/group.pl:225 ../vhffs-panel/public/allgroups.pl:113
+#: ../vhffs-panel/public/user.pl:119 ../vhffs-panel/public/lastgroups.pl:107
+#: ../vhffs-panel/public/lastusers.pl:116
+#: ../vhffs-panel/public/allwebsites.pl:103 ../vhffs-panel/public/index.pl:85
+#: ../vhffs-panel/public/group.pl:227 ../vhffs-panel/public/allgroups.pl:115
 msgid "Last users"
 msgstr ""
 
-#: ../vhffs-panel/public/lastusers.pl:68
+#: ../vhffs-panel/public/lastusers.pl:70
 #, perl-format
 msgid "Last users on %s"
 msgstr ""
 
-#: ../vhffs-panel/subscribe.pl:201 ../vhffs-panel/user/prefs.pl:81
+#: ../vhffs-panel/subscribe.pl:201 ../vhffs-panel/user/prefs.pl:256
 #: ../vhffs-panel/admin/user/edit.pl:97 ../vhffs-panel/admin/user/show.pl:98
-#: ../vhffs-panel/public/user.pl:85 ../vhffs-panel/public/lastusers.pl:80
+#: ../vhffs-panel/public/user.pl:87 ../vhffs-panel/public/lastusers.pl:82
 msgid "Lastname"
 msgstr ""
 
+#: ../vhffs-panel/user/prefs.pl:93
+msgid "Lastname is not correct !"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:249
+msgid "List all A reccords"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:250
+msgid "List all AAAA reccords"
+msgstr ""
+
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:146
 msgid "List all CVS"
 msgstr ""
@@ -1883,14 +2124,14 @@
 msgid "List all SVN repo"
 msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:315
+msgid "List all TXT records"
+msgstr ""
+
 #: ../vhffs-panel/mail/prefs.pl:107
 msgid "List all accounts"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:117
-msgid "List all all A reccords"
-msgstr ""
-
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:173
 msgid "List all domain names"
 msgstr ""
@@ -1915,7 +2156,7 @@
 msgid "List all lists"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:128
+#: ../vhffs-panel/mailinglist/prefs.pl:153
 msgid "List all members"
 msgstr ""
 
@@ -1967,11 +2208,11 @@
 msgid "List of all users"
 msgstr ""
 
-#: ../vhffs-panel/admin/web/list.pl:75 ../vhffs-panel/public/user.pl:115
-#: ../vhffs-panel/public/lastgroups.pl:103
-#: ../vhffs-panel/public/lastusers.pl:112
-#: ../vhffs-panel/public/allwebsites.pl:99 ../vhffs-panel/public/index.pl:81
-#: ../vhffs-panel/public/group.pl:223 ../vhffs-panel/public/allgroups.pl:111
+#: ../vhffs-panel/admin/web/list.pl:75 ../vhffs-panel/public/user.pl:117
+#: ../vhffs-panel/public/lastgroups.pl:105
+#: ../vhffs-panel/public/lastusers.pl:114
+#: ../vhffs-panel/public/allwebsites.pl:101 ../vhffs-panel/public/index.pl:83
+#: ../vhffs-panel/public/group.pl:225 ../vhffs-panel/public/allgroups.pl:113
 msgid "List of all websites"
 msgstr ""
 
@@ -1983,7 +2224,7 @@
 msgid "List will NOT be deleted"
 msgstr ""
 
-#: ../vhffs-panel/public/group.pl:199
+#: ../vhffs-panel/public/group.pl:201
 msgid "List(s) for this group"
 msgstr ""
 
@@ -1999,26 +2240,30 @@
 msgid "Local Part for this account"
 msgstr ""
 
-#: ../vhffs-panel/lost_ack.pl:70 ../vhffs-panel/lost_ack.pl:81
+#: ../vhffs-panel/lost_ack.pl:80 ../vhffs-panel/lost_ack.pl:91
 msgid "Login"
 msgstr ""
 
-#: ../vhffs-panel/login.pl:107
-msgid "Login OK, please wait..."
-msgstr ""
-
-#: ../vhffs-panel/login.pl:87 ../vhffs-panel/login.pl:117
+#: ../vhffs-panel/auth.pl:69
 msgid "Login failed !"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:91
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:83
 msgid "Logout"
 msgstr ""
 
-#: ../vhffs-panel/dns/modif_mx.pl:105
-msgid "MX successfully changed"
+#: ../vhffs-panel/dns/prefs.pl:165
+msgid "MX Record added"
 msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:160
+msgid "MX Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:155
+msgid "MX Record updated"
+msgstr ""
+
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:158
 msgid "MYSQL Admin"
 msgstr ""
@@ -2040,11 +2285,19 @@
 msgid "Mail Area awaiting validation"
 msgstr ""
 
+#: ../vhffs-intl/extra_strings.pl:39
+msgid "Mail Domain"
+msgstr ""
+
 #: ../vhffs-panel/mail/submit.pl:82
 msgid "Mail area successfully created !"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:504
+#: ../vhffs-panel/user/prefs.pl:227
+msgid "Mail deleted"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:564
 msgid "Mail domain for this group"
 msgstr ""
 
@@ -2064,24 +2317,28 @@
 msgid "Mail to all hosted people"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:352
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:361
 #, perl-format
 msgid "Mail with id %s"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs_save.pl:121
+#: ../vhffs-panel/user/prefs.pl:132
 msgid "Mailbox modified"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs_save.pl:197
+#: ../vhffs-panel/user/prefs.pl:175
 msgid "Mailbox successfully added"
 msgstr ""
 
-#: ../vhffs-panel/admin/mailing/list.pl:86
+#: ../vhffs-panel/admin/mailing/list.pl:86 ../vhffs-intl/extra_strings.pl:40
 #: ../vhffs-api/src/Vhffs/Panel/Mailinglist.pm:147
 msgid "Mailing List"
 msgstr ""
 
+#: ../vhffs-panel/svn/prefs_save.pl:124
+msgid "Mailing list address is invalid"
+msgstr ""
+
 #: ../vhffs-panel/admin/broadcast_submit.pl:91
 msgid "Mailing successfully added"
 msgstr ""
@@ -2098,7 +2355,7 @@
 msgid "Mailing-lists Admin"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:478
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:538
 msgid "Mailing-lists for this group"
 msgstr ""
 
@@ -2106,7 +2363,7 @@
 msgid "Manage mailings"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:127
+#: ../vhffs-panel/mailinglist/prefs.pl:152
 msgid "Manage members"
 msgstr ""
 
@@ -2114,14 +2371,22 @@
 msgid "Many users matched your query. Please choose between them"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:411
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:441
 msgid "March"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:419
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:449
 msgid "May"
 msgstr ""
 
+#: ../vhffs-panel/mailinglist/prefs.pl:119
+msgid "Members only"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:120
+msgid "Members only and moderated"
+msgstr ""
+
 #: ../vhffs-panel/admin/broadcast.pl:79
 msgid "Message"
 msgstr ""
@@ -2139,14 +2404,14 @@
 msgid "Message sent successfully"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:321
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:336
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:329
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:345
 #, perl-format
 msgid "Message with id: %s"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:113
-msgid "Moderated"
+#: ../vhffs-panel/mailinglist/prefs.pl:117
+msgid "Moderated for everyone"
 msgstr ""
 
 #: ../vhffs-panel/admin/moderation.pl:84
@@ -2158,8 +2423,8 @@
 msgid "Moderator"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:77
-msgid "Moderator account : "
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:74
+msgid "Moderator account"
 msgstr ""
 
 #: ../vhffs-panel/admin/user/edit.pl:149
@@ -2169,6 +2434,7 @@
 #: ../vhffs-panel/admin/object/edit.pl:125
 #: ../vhffs-panel/admin/web/edit.pl:138 ../vhffs-panel/admin/mysql/edit.pl:126
 #: ../vhffs-panel/admin/cvs/edit.pl:134 ../vhffs-panel/admin/mail/edit.pl:166
+#: ../vhffs-intl/extra_strings.pl:25
 msgid "Modification applied"
 msgstr ""
 
@@ -2179,6 +2445,7 @@
 #: ../vhffs-panel/admin/object/edit.pl:124
 #: ../vhffs-panel/admin/web/edit.pl:137 ../vhffs-panel/admin/mysql/edit.pl:125
 #: ../vhffs-panel/admin/cvs/edit.pl:133 ../vhffs-panel/admin/mail/edit.pl:165
+#: ../vhffs-intl/extra_strings.pl:24
 msgid "Modification error"
 msgstr ""
 
@@ -2207,11 +2474,13 @@
 msgid "Modifications successfully applied"
 msgstr ""
 
-#: ../vhffs-panel/svn/prefs.pl:121 ../vhffs-panel/user/prefs.pl:90
-#: ../vhffs-panel/dns/prefs.pl:185 ../vhffs-panel/dns/prefs.pl:206
-#: ../vhffs-panel/dns/prefs.pl:226 ../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:105
+#: ../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
 msgid "Modify"
 msgstr ""
 
@@ -2259,10 +2528,11 @@
 msgid "Modify this user"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:138
+#: ../vhffs-panel/dns/prefs.pl:272
 msgid "Must we redirect the DNS on our servers ?"
 msgstr ""
 
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:79
 #: ../vhffs-api/src/Vhffs/Panel/Group.pm:162
 msgid "My Projects"
 msgstr ""
@@ -2271,6 +2541,10 @@
 msgid "MySQL Administration"
 msgstr ""
 
+#: ../vhffs-intl/extra_strings.pl:34
+msgid "MySQL DB"
+msgstr ""
+
 #: ../vhffs-api/src/Vhffs/Panel/Mysql.pm:141
 msgid "MySQL Databases"
 msgstr ""
@@ -2291,7 +2565,7 @@
 msgid "MySQL stats"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:373
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:433
 msgid "Mysql database for this group"
 msgstr ""
 
@@ -2299,7 +2573,15 @@
 msgid "NS Admin"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:162
+#: ../vhffs-panel/dns/prefs.pl:174
+msgid "NS Record added"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:170
+msgid "NS Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:296
 msgid "NS TYPE"
 msgstr ""
 
@@ -2308,42 +2590,50 @@
 msgid "Name"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:142
+#: ../vhffs-panel/dns/prefs.pl:276
 msgid "Name for reccord"
 msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:319
+msgid "Name for record"
+msgstr ""
+
 #: ../vhffs-panel/pgsql/prefs.pl:93 ../vhffs-panel/mysql/prefs.pl:100
 msgid "Name of the database"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:149
+#: ../vhffs-panel/dns/prefs.pl:283
 msgid "Name of your MX"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:260
+#: ../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:140
+#: ../vhffs-panel/svn/prefs.pl:120 ../vhffs-panel/dns/prefs.pl:274
 #: ../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:104
+#: ../vhffs-panel/web/prefs.pl:116 ../vhffs-panel/cvs/prefs.pl:94
 msgid "No"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:193
+#: ../vhffs-panel/dns/prefs.pl:331
 msgid "No A type found"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:234
+#: ../vhffs-panel/dns/prefs.pl:343
+msgid "No AAAA type found"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:370
 msgid "No CNAME available on this domain"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:442
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:502
 msgid "No CVS repository for this group"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:572
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:632
 msgid "No DNS domain for this group"
 msgstr ""
 
@@ -2355,7 +2645,7 @@
 msgid "No Group to validate"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:214
+#: ../vhffs-panel/dns/prefs.pl:357
 msgid "No MX reccord for this domain"
 msgstr ""
 
@@ -2363,35 +2653,43 @@
 msgid "No Mail Area to validate"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:521
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:581
 msgid "No Mail domain for this group"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:495
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:555
 msgid "No Mailing-list for this group"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:254
+#: ../vhffs-panel/dns/prefs.pl:383
 msgid "No NS available on this domain"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:416
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:476
 msgid "No PostgreSQL database for this group"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:468
+#: ../vhffs-panel/dns/prefs.pl:399
+msgid "No SRV available on this domain"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:528
 msgid "No SVN repository for this group"
 msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:412
+msgid "No TXT available on this domain"
+msgstr ""
+
 #: ../vhffs-panel/admin/moderation.pl:166
 msgid "No Web Area to validate"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:217
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:265
 msgid "No cookie found, please accept the cookie and then please login again !"
 msgstr ""
 
-#: ../vhffs-panel/public/group.pl:161
+#: ../vhffs-panel/public/group.pl:163
 msgid "No cvs repository available for this group"
 msgstr ""
 
@@ -2400,7 +2698,7 @@
 msgid "No database to validate"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:547
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:607
 msgid "No download repository for this group"
 msgstr ""
 
@@ -2412,16 +2710,16 @@
 msgid "No event about this object"
 msgstr ""
 
-#: ../vhffs-panel/public/allgroups.pl:70
+#: ../vhffs-panel/public/allgroups.pl:72
 msgid "No group"
 msgstr ""
 
-#: ../vhffs-panel/public/user.pl:98 ../vhffs-panel/public/lastgroups.pl:84
-#: ../vhffs-panel/public/lastusers.pl:92 ../vhffs-panel/public/allgroups.pl:92
+#: ../vhffs-panel/public/user.pl:100 ../vhffs-panel/public/lastgroups.pl:86
+#: ../vhffs-panel/public/lastusers.pl:94 ../vhffs-panel/public/allgroups.pl:94
 msgid "No group for this user"
 msgstr ""
 
-#: ../vhffs-panel/public/group.pl:214
+#: ../vhffs-panel/public/group.pl:216
 msgid "No list available for this group"
 msgstr ""
 
@@ -2429,11 +2727,11 @@
 msgid "No list to validate"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:196
+#: ../vhffs-panel/mailinglist/prefs.pl:197
 msgid "No member on this list"
 msgstr ""
 
-#: ../vhffs-listengine/src/listengine.pl:570
+#: ../vhffs-listengine/src/listengine.pl:592
 msgid "No message to moderate"
 msgstr ""
 
@@ -2441,7 +2739,7 @@
 msgid "No modification can be applied. Please check your fields."
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:390
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:450
 msgid "No mysql database for this group"
 msgstr ""
 
@@ -2451,43 +2749,43 @@
 msgid "No repository to validate"
 msgstr ""
 
-#: ../vhffs-panel/public/group.pl:188
+#: ../vhffs-panel/public/group.pl:190
 msgid "No subversion repository available for this group"
 msgstr ""
 
-#: ../vhffs-panel/public/group.pl:78
+#: ../vhffs-panel/public/group.pl:79
 msgid "No such group"
 msgstr ""
 
-#: ../vhffs-panel/public/user.pl:73
+#: ../vhffs-panel/public/user.pl:75
 msgid "No such user"
 msgstr ""
 
-#: ../vhffs-panel/public/group.pl:101
+#: ../vhffs-panel/public/group.pl:103
 msgid "No user for this group"
 msgstr ""
 
-#: ../vhffs-panel/public/allwebsites.pl:74
+#: ../vhffs-panel/public/allwebsites.pl:76
 msgid "No webarea"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:366
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:426
 msgid "No webarea for this group"
 msgstr ""
 
-#: ../vhffs-panel/public/group.pl:137
+#: ../vhffs-panel/public/group.pl:139
 msgid "No website available for this group"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs.pl:105 ../vhffs-panel/dns/prefs.pl:133
+#: ../vhffs-panel/user/prefs.pl:280 ../vhffs-panel/dns/prefs.pl:267
 #: ../vhffs-panel/web/prefs.pl:130
 msgid "No, I'm not sure, I prefer to keep it."
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:204 ../vhffs-panel/svn/prefs.pl:126
+#: ../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:110 ../vhffs-panel/mail/prefs.pl:134
+#: ../vhffs-panel/cvs/prefs.pl:100 ../vhffs-panel/mail/prefs.pl:134
 msgid "No, I'm not sure, I prefer to keep this project."
 msgstr ""
 
@@ -2501,7 +2799,7 @@
 msgid "Note successfully modified"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:443
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:473
 msgid "November"
 msgstr ""
 
@@ -2517,8 +2815,8 @@
 msgid "Object id"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:216 ../vhffs-panel/svn/prefs.pl:153
-#: ../vhffs-panel/dns/prefs.pl:262
+#: ../vhffs-panel/mailinglist/prefs.pl:217 ../vhffs-panel/svn/prefs.pl:160
+#: ../vhffs-panel/dns/prefs.pl:421
 msgid "Object part"
 msgstr ""
 
@@ -2530,11 +2828,11 @@
 msgid "Object-ID error"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:439
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:469
 msgid "October"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:125 ../vhffs-panel/web/prefs.pl:124
+#: ../vhffs-panel/dns/prefs.pl:259 ../vhffs-panel/web/prefs.pl:124
 #: ../vhffs-panel/mail/prefs.pl:139
 msgid "Ok, go to ACL admin"
 msgstr ""
@@ -2543,32 +2841,36 @@
 msgid "Ok, send it !"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:60
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:55
 msgid "Only this list administrators can use the following commands.\n"
 msgstr ""
 
 #: ../vhffs-panel/mailinglist/prefs.pl:116
-msgid "Open archives"
+msgid "Open for everyone"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:114
-msgid "Open post"
+#: ../vhffs-panel/mailinglist/prefs.pl:118
+msgid "Open for members, moderated for non-members"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:115
-msgid "Open subscribing"
+#: ../vhffs-panel/mailinglist/prefs.pl:113
+msgid "Open, approval required"
 msgstr ""
 
 #: ../vhffs-panel/mailinglist/prefs.pl:112
+msgid "Open, no approval required"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:110
 msgid "Options"
 msgstr ""
 
 #: ../vhffs-panel/mailinglist/save_sig.pl:97
-#: ../vhffs-panel/mailinglist/save_options.pl:154
+#: ../vhffs-panel/mailinglist/save_options.pl:128
 msgid "Options successfully modified"
 msgstr ""
 
-#: ../vhffs-panel/public/allwebsites.pl:85
+#: ../vhffs-panel/public/allwebsites.pl:87
 msgid "Owned by"
 msgstr ""
 
@@ -2593,16 +2895,16 @@
 msgid "Owner of this group"
 msgstr ""
 
-#: ../vhffs-panel/login.pl:108
-msgid "Panel Access"
-msgstr ""
-
-#: ../vhffs-panel/user/prefs.pl:86 ../vhffs-panel/admin/user/edit.pl:99
+#: ../vhffs-panel/user/prefs.pl:261 ../vhffs-panel/admin/user/edit.pl:99
 #: ../vhffs-panel/admin/pgsql/edit.pl:97 ../vhffs-panel/admin/mysql/edit.pl:97
-#: ../vhffs-panel/auth.pl:59 ../vhffs-panel/mail/prefs.pl:111
+#: ../vhffs-panel/mail/prefs.pl:111 ../vhffs-api/src/Vhffs/Panel/Commons.pm:56
 msgid "Password"
 msgstr ""
 
+#: ../vhffs-panel/user/prefs.pl:125
+msgid "Password changed"
+msgstr ""
+
 #: ../vhffs-panel/admin/mail/password_box.pl:109
 #, perl-format
 msgid "Password changed for box %s"
@@ -2620,7 +2922,7 @@
 msgid "Password must contains only alphanum caracters"
 msgstr ""
 
-#: ../vhffs-panel/lost_ack.pl:80
+#: ../vhffs-panel/lost_ack.pl:90
 msgid "Password recovery failed!"
 msgstr ""
 
@@ -2632,24 +2934,28 @@
 msgid "Password will not be modified if it is set to 'blanked' or empty"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs_save.pl:99
+#: ../vhffs-panel/user/prefs.pl:112
 msgid "Passwords don't match"
 msgstr ""
 
+#: ../vhffs-intl/extra_strings.pl:35
+msgid "PgSQL DB"
+msgstr ""
+
 #: ../vhffs-panel/admin/stats.pl:152
 msgid "PgSQL stats"
 msgstr ""
 
-#: ../vhffs-panel/login.pl:73 ../vhffs-api/src/Vhffs/Panel/Main.pm:32
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:43
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:48
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:59
 msgid "Platform temporary closed"
 msgstr ""
 
-#: ../vhffs-panel/login.pl:74 ../vhffs-api/src/Vhffs/Panel/Main.pm:44
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:60
 msgid "Platform temporary closed."
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:33
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:49
 msgid "Platform temporary closed<br/>database error"
 msgstr ""
 
@@ -2669,7 +2975,7 @@
 msgid "Please enter a correct lastname"
 msgstr ""
 
-#: ../vhffs-panel/auth.pl:57
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:53
 msgid "Please enter your username and password"
 msgstr ""
 
@@ -2679,19 +2985,19 @@
 "you"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:287
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:294
 msgid "Please read help of listengine\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:183
-msgid "Please try again\n"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:191
+msgid "Please try again !\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:231
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:237
 msgid "Please try again.\n"
 msgstr ""
 
-#: ../vhffs-panel/lost_ack.pl:69
+#: ../vhffs-panel/lost_ack.pl:79
 #, perl-format
 msgid "Please wait %s, a new password will be sent to you in a few minutes..."
 msgstr ""
@@ -2709,6 +3015,10 @@
 msgid "Popboxes for"
 msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:308 ../vhffs-panel/dns/prefs.pl:393
+msgid "Port"
+msgstr ""
+
 #: ../vhffs-panel/pgsql/prefs.pl:91
 msgid "PostgreSQL Administration"
 msgstr ""
@@ -2717,7 +3027,7 @@
 msgid "PostgreSQL Databases"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:399
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:459
 msgid "PostgreSQL database for this group"
 msgstr ""
 
@@ -2737,23 +3047,36 @@
 msgid "Postgres database awaiting validation"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:118
+#: ../vhffs-panel/mailinglist/prefs.pl:115
+msgid "Posting control:"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:237
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:267
+msgid "Prefix already exists"
+msgstr ""
+
+#: ../vhffs-panel/mailinglist/prefs.pl:143
 msgid "Prefix on subject"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:150
+#: ../vhffs-panel/dns/prefs.pl:309 ../vhffs-panel/dns/prefs.pl:394
+msgid "Priority"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:284
 msgid "Priority of your MX"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:203
+#: ../vhffs-panel/dns/prefs.pl:353
 msgid "Priority: "
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:123
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:112
 msgid "Project : "
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:124
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:113
 msgid "Project Configuration"
 msgstr ""
 
@@ -2781,11 +3104,28 @@
 msgid "Project Successfully modified"
 msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:305
+msgid "Protocol"
+msgstr ""
+
 #: ../vhffs-panel/svn/prefs.pl:117 ../vhffs-panel/admin/cvs/edit.pl:96
 #: ../vhffs-panel/admin/cvs/show.pl:95
 msgid "Public"
 msgstr ""
 
+#: ../vhffs-panel/mailinglist/prefs.pl:141
+msgid "Public archives"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:79
+msgid "Public area is not available on this platform."
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:77
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:78
+msgid "Public area not available"
+msgstr ""
+
 #: ../vhffs-panel/admin/group/edit.pl:96 ../vhffs-panel/admin/group/show.pl:96
 #: ../vhffs-panel/admin/repository/edit.pl:102
 #: ../vhffs-panel/admin/repository/show.pl:100
@@ -2794,7 +3134,7 @@
 
 #: ../vhffs-panel/repository/prefs.pl:100
 #: ../vhffs-panel/admin/group/edit.pl:110
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:344
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:404
 #, perl-format
 msgid "Quota (used/total) : %s/%s"
 msgstr ""
@@ -2805,7 +3145,7 @@
 msgid "Quota used"
 msgstr ""
 
-#: ../vhffs-panel/public/rss/lastgroups.pl:107
+#: ../vhffs-panel/public/rss/lastgroups.pl:108
 #: ../vhffs-panel/public/rss/lastusers.pl:106
 msgid "RSS infos are not published"
 msgstr ""
@@ -2825,10 +3165,24 @@
 msgid "Reason given : "
 msgstr ""
 
-#: ../vhffs-panel/subscribe.pl:213
+#: ../vhffs-panel/subscribe.pl:214
 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
+msgid "Record does not exists"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:202
+msgid "Record type doesn't exists"
+msgstr ""
+
 #: ../vhffs-panel/admin/moderation.pl:116
 #: ../vhffs-panel/admin/moderation.pl:158
 #: ../vhffs-panel/admin/moderation.pl:199
@@ -2846,34 +3200,48 @@
 msgid "Remove this user from this group"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:117
+#: ../vhffs-panel/mailinglist/prefs.pl:142
 msgid "Reply to: on list"
 msgstr ""
 
 #: ../vhffs-panel/svn/create.pl:71 ../vhffs-panel/repository/create.pl:65
-#: ../vhffs-panel/admin/repository/list.pl:88 ../vhffs-panel/cvs/create.pl:65
+#: ../vhffs-panel/admin/repository/list.pl:88 ../vhffs-panel/cvs/create.pl:91
 msgid "Repository Name"
 msgstr ""
 
-#: ../vhffs-panel/svn/prefs_save.pl:111
+#: ../vhffs-panel/svn/prefs_save.pl:111 ../vhffs-panel/svn/prefs_save.pl:121
 msgid "Repository updated"
 msgstr ""
 
-#: ../vhffs-panel/dns/add_mx.pl:102 ../vhffs-panel/dns/add_ns.pl:100
-#: ../vhffs-panel/dns/add_cname.pl:104 ../vhffs-panel/dns/add_a.pl:112
-#: ../vhffs-panel/dns/add_a.pl:128
-msgid "Resource successfully added to this domain"
-msgstr ""
-
 #: ../vhffs-panel/mailinglist/change_right.pl:111
 msgid "Rights successfully changed"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:451
+#: ../vhffs-panel/dns/prefs.pl:211
+msgid "SRV Record added"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:200
+msgid "SRV Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:196
+msgid "SRV Record updated"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:302
+msgid "SRV TYPE"
+msgstr ""
+
+#: ../vhffs-intl/extra_strings.pl:37
+msgid "SVN Repository"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:511
 msgid "SVN repositories for this group"
 msgstr ""
 
-#: ../vhffs-panel/public/group.pl:172
+#: ../vhffs-panel/public/group.pl:174
 msgid "SVN repository for this group"
 msgstr ""
 
@@ -2889,7 +3257,7 @@
 msgid "SVNweb"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:121
+#: ../vhffs-panel/mailinglist/prefs.pl:146
 msgid "Save options"
 msgstr ""
 
@@ -2950,7 +3318,7 @@
 msgid "Search for a web area"
 msgstr ""
 
-#: ../vhffs-panel/public/index.pl:75 ../vhffs-api/src/Vhffs/Panel/Admin.pm:119
+#: ../vhffs-panel/public/index.pl:77 ../vhffs-api/src/Vhffs/Panel/Admin.pm:119
 msgid "Search for a website"
 msgstr ""
 
@@ -2997,15 +3365,15 @@
 msgid "Search result for domain"
 msgstr ""
 
-#: ../vhffs-panel/public/user.pl:118 ../vhffs-panel/public/lastgroups.pl:106
-#: ../vhffs-panel/public/lastusers.pl:115
-#: ../vhffs-panel/public/allwebsites.pl:102 ../vhffs-panel/public/index.pl:84
-#: ../vhffs-panel/public/group.pl:226 ../vhffs-panel/public/allgroups.pl:114
+#: ../vhffs-panel/public/user.pl:120 ../vhffs-panel/public/lastgroups.pl:108
+#: ../vhffs-panel/public/lastusers.pl:117
+#: ../vhffs-panel/public/allwebsites.pl:104 ../vhffs-panel/public/index.pl:86
+#: ../vhffs-panel/public/group.pl:228 ../vhffs-panel/public/allgroups.pl:116
 msgid "Search:"
 msgstr ""
 
 #: ../vhffs-panel/mailinglist/create.pl:101 ../vhffs-panel/svn/create.pl:76
-#: ../vhffs-panel/dns/create.pl:41 ../vhffs-panel/pgsql/create.pl:73
+#: ../vhffs-panel/dns/create.pl:68 ../vhffs-panel/pgsql/create.pl:73
 #: ../vhffs-panel/group/create.pl:65 ../vhffs-panel/repository/create.pl:71
 #: ../vhffs-panel/alert.pl:71 ../vhffs-panel/admin/user/edit.pl:111
 #: ../vhffs-panel/admin/pgsql/edit.pl:102
@@ -3017,7 +3385,7 @@
 #: ../vhffs-panel/admin/web/edit.pl:105 ../vhffs-panel/admin/mysql/edit.pl:103
 #: ../vhffs-panel/admin/cvs/edit.pl:101 ../vhffs-panel/admin/mail/edit.pl:103
 #: ../vhffs-panel/web/create.pl:80 ../vhffs-panel/mysql/create.pl:71
-#: ../vhffs-panel/cvs/create.pl:70 ../vhffs-panel/mail/create.pl:70
+#: ../vhffs-panel/cvs/create.pl:96 ../vhffs-panel/mail/create.pl:70
 msgid "Send"
 msgstr ""
 
@@ -3025,7 +3393,7 @@
 msgid "Send an email to all hosted people"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:288
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:295
 msgid "Send an email with the subject \"help\" to the following address: \n"
 msgstr ""
 
@@ -3037,11 +3405,11 @@
 msgid "Send logo"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs.pl:112 ../vhffs-panel/user/prefs.pl:114
+#: ../vhffs-panel/user/prefs.pl:287 ../vhffs-panel/user/prefs.pl:289
 msgid "Send my avatar"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:435
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:465
 msgid "September"
 msgstr ""
 
@@ -3055,6 +3423,10 @@
 msgid "Servername error. Please enter a valid servername"
 msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:306
+msgid "Service"
+msgstr ""
+
 #: ../vhffs-panel/admin/user/edit.pl:98 ../vhffs-panel/admin/user/show.pl:99
 msgid "Shell"
 msgstr ""
@@ -3091,30 +3463,30 @@
 msgid "Show Web Area"
 msgstr ""
 
-#: ../vhffs-panel/public/index.pl:69
+#: ../vhffs-panel/public/index.pl:71
 #, perl-format
 msgid "Show me all groups on %s"
 msgstr ""
 
-#: ../vhffs-panel/public/index.pl:73
+#: ../vhffs-panel/public/index.pl:75
 msgid "Show me all websites"
 msgstr ""
 
-#: ../vhffs-panel/public/index.pl:68
+#: ../vhffs-panel/public/index.pl:70
 #, perl-format
 msgid "Show me last groups on %s"
 msgstr ""
 
-#: ../vhffs-panel/public/index.pl:62
+#: ../vhffs-panel/public/index.pl:64
 #, perl-format
 msgid "Show me last users on %s"
 msgstr ""
 
-#: ../vhffs-panel/public/index.pl:71
+#: ../vhffs-panel/public/index.pl:73
 msgid "Show me this group according to this username"
 msgstr ""
 
-#: ../vhffs-panel/public/index.pl:64
+#: ../vhffs-panel/public/index.pl:66
 msgid "Show me this user according to this username"
 msgstr ""
 
@@ -3154,7 +3526,7 @@
 msgid "Show this user"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:123
+#: ../vhffs-panel/mailinglist/prefs.pl:148
 msgid "Signature"
 msgstr ""
 
@@ -3205,7 +3577,7 @@
 msgid "Su !"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:159
+#: ../vhffs-panel/dns/prefs.pl:293
 msgid "Subdomain name"
 msgstr ""
 
@@ -3218,37 +3590,42 @@
 msgid "Subject: "
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:151 ../vhffs-panel/dns/prefs.pl:157
-#: ../vhffs-panel/dns/prefs.pl:169
+#: ../vhffs-panel/dns/prefs.pl:285 ../vhffs-panel/dns/prefs.pl:291
+#: ../vhffs-panel/dns/prefs.pl:312
 msgid "Submit"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:90
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:82
 msgid "Submit a bug"
 msgstr ""
 
-#: ../vhffs-panel/subscribe.pl:206 ../vhffs-panel/subscribe.pl:215
-#: ../vhffs-panel/auth.pl:62
+#: ../vhffs-panel/subscribe.pl:206 ../vhffs-panel/subscribe.pl:220
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:59
 msgid "Subscribe"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:136
-#, perl-format
-msgid "Subscribe to the list %s is forbidden\n"
+#: ../vhffs-panel/mailinglist/prefs.pl:111
+msgid "Subscribe control:"
 msgstr ""
 
 #: ../vhffs-panel/mailinglist/prefs.pl:178
-msgid "Subscribed. Waiting for confirmation"
+msgid "Subscribed"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:177
-msgid "Subscriber"
-msgstr ""
-
 #: ../vhffs-panel/subscribe.pl:196
 msgid "Subscription"
 msgstr ""
 
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:130
+#, perl-format
+msgid ""
+"Subscription to the following list is forbidden:\n"
+"\n"
+"%s\n"
+"\n"
+"Have a nice day.\n"
+msgstr ""
+
 #: ../vhffs-api/src/Vhffs/Panel/Admin.pm:131
 msgid "Subversion Admin"
 msgstr ""
@@ -3291,14 +3668,26 @@
 #: ../vhffs-panel/admin/mysql/edit.pl:122
 #: ../vhffs-panel/admin/mysql/edit.pl:123 ../vhffs-panel/admin/cvs/edit.pl:130
 #: ../vhffs-panel/admin/cvs/edit.pl:131 ../vhffs-panel/admin/mail/edit.pl:162
-#: ../vhffs-panel/admin/mail/edit.pl:163
+#: ../vhffs-panel/admin/mail/edit.pl:163 ../vhffs-intl/extra_strings.pl:21
 msgid "Suspended"
 msgstr ""
 
-#: ../vhffs-panel/admin/user/edit.pl:146
+#: ../vhffs-panel/admin/user/edit.pl:146 ../vhffs-intl/extra_strings.pl:22
 msgid "Suspended before deletion"
 msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:216
+msgid "TXT Record added"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:227
+msgid "TXT Record deleted"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:222
+msgid "TXT Record updated"
+msgstr ""
+
 #: ../vhffs-panel/mail/create.pl:71
 msgid "Tell us what the use of this mail space will be"
 msgstr ""
@@ -3311,11 +3700,20 @@
 msgid "Tell us what the use of this web space will be"
 msgstr ""
 
-#: ../vhffs-panel/cvs/cvs_submit.pl:88
+#: ../vhffs-panel/dns/prefs.pl:318
+msgid "Text"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:384
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:396
+msgid "Text can't be empty"
+msgstr ""
+
+#: ../vhffs-panel/cvs/create.pl:78
 msgid "The CVS object was successfully created !"
 msgstr ""
 
-#: ../vhffs-panel/dns/dns_submit.pl:76
+#: ../vhffs-panel/dns/create.pl:47
 msgid "The DNS object was successfully created !"
 msgstr ""
 
@@ -3346,7 +3744,7 @@
 msgid "The Subversion object was successfully created !"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs.pl:115
+#: ../vhffs-panel/user/prefs.pl:290
 msgid ""
 "The avatar is a pictures that describes you. You can upload an PNG image and "
 "use it as avatar. This image will then appear in the public section."
@@ -3356,7 +3754,7 @@
 msgid "The avatar is an image to describe the group"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:182
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:190
 msgid "The confirmation code was wrong\n"
 msgstr ""
 
@@ -3368,13 +3766,13 @@
 msgid "The database name is too long. There is a 32 character limit"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:370
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:379
 #, perl-format
 msgid ""
 "The following address %s is not allowed to execute commands on the list %s\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:198
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:205
 #, perl-format
 msgid "The following address %s is not on the list %s\n"
 msgstr ""
@@ -3393,18 +3791,18 @@
 "letters or numbers in lower case"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:259
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:265
 #, perl-format
 msgid ""
 "The listengine language preference was changed for the following address %"
 "s.\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:307
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:314
 msgid "The message does not exists or was moderated before you.\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:304
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:311
 #, perl-format
 msgid "The message with the following id %s"
 msgstr ""
@@ -3427,22 +3825,22 @@
 "must only contain letters and numbers"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:123
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:117
 msgid ""
-"The state of you subscription was not changed, you are always a subscriber\n"
+"The state of you subscription was not changed, you are still subscribed\n"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs.pl:89
+#: ../vhffs-panel/user/prefs.pl:264
 msgid "Theme"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs_save.pl:254
+#: ../vhffs-panel/user/prefs.pl:211
 msgid ""
 "There is a problem with the address you filled in your profile, unable to "
 "add forwarding"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs.pl:177
+#: ../vhffs-panel/user/prefs.pl:348
 msgid "There is two possible usages :"
 msgstr ""
 
@@ -3466,17 +3864,17 @@
 msgid "This Download repository will be deleted"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:201 ../vhffs-panel/svn/prefs.pl:123
-#: ../vhffs-panel/dns/prefs.pl:130 ../vhffs-panel/pgsql/prefs.pl:108
+#: ../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/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:107 ../vhffs-panel/mail/prefs.pl:131
+#: ../vhffs-panel/cvs/prefs.pl:97 ../vhffs-panel/mail/prefs.pl:131
 msgid ""
 "This action is non-reversible. All services associated to this project will "
 "be DESTROYED."
 msgstr ""
 
-#: ../vhffs-panel/user/prefs.pl:102
+#: ../vhffs-panel/user/prefs.pl:277
 msgid "This action is non-reversible. WHEN YOU DELETE IT, YOU CANNOT CANCEL."
 msgstr ""
 
@@ -3506,10 +3904,6 @@
 msgid "This database will NOT be deleted"
 msgstr ""
 
-#: ../vhffs-panel/dns/dns_type_submit.pl:74
-msgid "This domain name doesn't exist in the VHFFS database"
-msgstr ""
-
 #: ../vhffs-panel/dns/delete.pl:111
 msgid "This domain will NOT be DELETED from Vhffs platform"
 msgstr ""
@@ -3526,6 +3920,10 @@
 msgid "This group will be deleted"
 msgstr ""
 
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:357
+msgid "This host is already registered for this service"
+msgstr ""
+
 #: ../vhffs-panel/mail/save_catchall.pl:90
 msgid "This is not a correct mail address"
 msgstr ""
@@ -3538,18 +3936,18 @@
 msgid "This mail domain will NOT be DELETED"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:105
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:99
 #, perl-format
 msgid ""
 "This mail must contains the following subject : \"confirm unsubscribe %s\"\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:87
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:81
 #, perl-format
 msgid "This mail must have the following subject : \"confirm subscribe %s\"\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:387
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:395
 #, perl-format
 msgid "This mail was sent by  %s with the following subject: \n"
 msgstr ""
@@ -3569,11 +3967,11 @@
 #: ../vhffs-panel/mailinglist/delete.pl:86
 #: ../vhffs-panel/mailinglist/save_sig.pl:85
 #: ../vhffs-panel/mailinglist/add_sub.pl:87
-#: ../vhffs-panel/mailinglist/prefs.pl:94
-#: ../vhffs-panel/mailinglist/save_options.pl:92
+#: ../vhffs-panel/mailinglist/prefs.pl:92
+#: ../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:86 ../vhffs-panel/dns/prefs.pl:99
+#: ../vhffs-panel/svn/prefs_save.pl:88 ../vhffs-panel/dns/prefs.pl:98
 #: ../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
@@ -3595,7 +3993,7 @@
 msgstr ""
 
 #: ../vhffs-panel/svn/prefs.pl:106 ../vhffs-panel/repository/prefs.pl:89
-#: ../vhffs-panel/cvs/prefs.pl:92
+#: ../vhffs-panel/cvs/prefs.pl:84
 msgid ""
 "This object is not functionnal yet. Please wait creation, moderation or "
 "modification."
@@ -3609,11 +4007,6 @@
 msgid "This object will NOT be DELETED"
 msgstr ""
 
-#: ../vhffs-panel/dns/delete_a.pl:74 ../vhffs-panel/dns/delete_ns.pl:102
-#: ../vhffs-panel/dns/delete_mx.pl:103 ../vhffs-panel/dns/delete_cname.pl:101
-msgid "This part of the domain is now removed."
-msgstr ""
-
 #: ../vhffs-panel/object/upavatar.pl:93
 msgid "This platform does not provide avatar support"
 msgstr ""
@@ -3622,14 +4015,14 @@
 msgid "This platform does not support avatar"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:34
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:50
 msgid ""
 "This platform is temporary closed. Administrators are performing some "
 "maintenances tasks or system has database errors. Please come back in a few "
 "minutes to log in."
 msgstr ""
 
-#: ../vhffs-panel/login.pl:75 ../vhffs-api/src/Vhffs/Panel/Main.pm:45
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:61
 msgid ""
 "This platform is temporary closed. Administrators are performing some "
 "maintenances tasks. Please come back in a few minutes to log in."
@@ -3679,14 +4072,26 @@
 msgid "This web area doesn't exist in VHFFS database"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:390
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:416
+msgid "To accept this subscriber, send a message to\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:398
 msgid "To put this post on the list, send a message  \n"
 msgstr ""
 
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:419
+msgid "To refuse this subscriber, send a message to\n"
+msgstr ""
+
 #: ../vhffs-listengine/src/archives/show_msg.pl:107
 msgid "To: "
 msgstr ""
 
+#: ../vhffs-panel/ajax/help.pl:54 ../vhffs-panel/ajax/help.pl:59
+msgid "Topic not found"
+msgstr ""
+
 #: ../vhffs-panel/admin/stats.pl:93
 msgid "Total Admin Users in VHFFS database"
 msgstr ""
@@ -3795,6 +4200,41 @@
 msgid "URL"
 msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:148
+#, perl-format
+msgid "Unable to add A record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:143
+#, perl-format
+msgid "Unable to add AAAA record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:187
+#, perl-format
+msgid "Unable to add CNAME record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:164
+#, perl-format
+msgid "Unable to add MX record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:173
+#, perl-format
+msgid "Unable to add NS record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:210
+#, perl-format
+msgid "Unable to add SRV record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:215
+#, perl-format
+msgid "Unable to add TXT record: %s"
+msgstr ""
+
 #: ../vhffs-panel/admin/mail/password_box.pl:105
 #, perl-format
 msgid "Unable to change password for box %s (%d)"
@@ -3814,6 +4254,41 @@
 msgid "Unable to change virus protection status for %s"
 msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:125
+#, perl-format
+msgid "Unable to delete A record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:137
+#, perl-format
+msgid "Unable to delete AAAA record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:182
+#, perl-format
+msgid "Unable to delete CNAME record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:159
+#, perl-format
+msgid "Unable to delete MX record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:169
+#, perl-format
+msgid "Unable to delete NS record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:199
+#, perl-format
+msgid "Unable to delete SRV record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:226
+#, perl-format
+msgid "Unable to delete TXT record: %s"
+msgstr ""
+
 #: ../vhffs-panel/mail/delete_forward.pl:96
 #, perl-format
 msgid "Unable to delete forward %s"
@@ -3828,6 +4303,12 @@
 msgid "Unable to delete this domain"
 msgstr ""
 
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:238
+#: ../vhffs-api/src/Vhffs/Panel/DNS.pm:268
+msgid ""
+"Unable to find default redirection address, please contact administrators"
+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
@@ -3841,6 +4322,36 @@
 msgid "Unable to get information on mail domain %s"
 msgstr ""
 
+#: ../vhffs-panel/dns/prefs.pl:120
+#, perl-format
+msgid "Unable to modify A record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:132
+#, perl-format
+msgid "Unable to modify AAAA record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:178
+#, perl-format
+msgid "Unable to modify CNAME record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:154
+#, perl-format
+msgid "Unable to modify MX record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:195
+#, perl-format
+msgid "Unable to modify SRV record: %s"
+msgstr ""
+
+#: ../vhffs-panel/dns/prefs.pl:221
+#, perl-format
+msgid "Unable to modify TXT record: %s"
+msgstr ""
+
 #: ../vhffs-panel/admin/mail/change_forward.pl:105
 #: ../vhffs-panel/mail/change_forward.pl:104
 #, perl-format
@@ -3861,16 +4372,33 @@
 msgid "Undefined list"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:286
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:293
 msgid "Unknow command\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Functions.pm:391
-#: ../vhffs-api/src/Vhffs/Functions.pm:396
+#: ../vhffs-api/src/Vhffs/Functions.pm:400
+#: ../vhffs-api/src/Vhffs/Functions.pm:405
 msgid "Unknown"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:453
+#: ../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: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
+msgid "Unknown error"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:480
 msgid "Unknown month"
 msgstr ""
 
@@ -3879,7 +4407,7 @@
 msgid "Unknown status"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:229
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:235
 #, perl-format
 msgid "Unsubscribe for the list %s was not complete.\n"
 msgstr ""
@@ -3888,30 +4416,31 @@
 msgid "Update note"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:125
+#: ../vhffs-panel/mailinglist/prefs.pl:150
 msgid "Update signature"
 msgstr ""
 
-#: ../vhffs-panel/dns/modif_a.pl:106
-msgid "Updated !"
+#: ../vhffs-panel/dns/prefs.pl:253
+#, perl-format
+msgid "Use @ for origin (%s)"
 msgstr ""
 
 #: ../vhffs-panel/admin/web/edit.pl:102 ../vhffs-panel/admin/web/show.pl:115
 msgid "Use Crawl"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs.pl:178
+#: ../vhffs-panel/user/prefs.pl:349
 #, perl-format
 msgid ""
 "Use VHFFS servers to manage this mail,<br>you should use use the host pop.%s "
 "or imap.%s to fetch your mails"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs.pl:184
+#: ../vhffs-panel/user/prefs.pl:355
 msgid "Use anti-spam protection"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs.pl:192
+#: ../vhffs-panel/user/prefs.pl:363
 msgid "Use anti-virus protection"
 msgstr ""
 
@@ -3921,6 +4450,7 @@
 
 #: ../vhffs-panel/admin/pgsql/edit.pl:96 ../vhffs-panel/admin/pgsql/show.pl:95
 #: ../vhffs-panel/admin/mysql/edit.pl:96 ../vhffs-panel/admin/mysql/show.pl:94
+#: ../vhffs-intl/extra_strings.pl:30
 msgid "User"
 msgstr ""
 
@@ -3933,7 +4463,7 @@
 msgid "User Admin"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs.pl:76 ../vhffs-api/src/Vhffs/Panel/Menu.pm:88
+#: ../vhffs-panel/user/prefs.pl:248 ../vhffs-api/src/Vhffs/Panel/Menu.pm:80
 msgid "User Preferences"
 msgstr ""
 
@@ -3941,27 +4471,27 @@
 msgid "User Successfully created"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs_save.pl:132
-msgid "User Successfully modified"
+#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:76
+msgid "User account"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Menu.pm:81
-msgid "User account : "
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:275
+msgid "User does not exist"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:237
-msgid "User does not exist"
+#: ../vhffs-panel/auth.pl:71
+msgid "User is not active yet"
 msgstr ""
 
-#: ../vhffs-panel/public/index.pl:63
+#: ../vhffs-panel/public/index.pl:65
 msgid "User public area"
 msgstr ""
 
-#: ../vhffs-panel/subscribe.pl:198 ../vhffs-panel/user/prefs.pl:78
+#: ../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/admin/user/list.pl:79 ../vhffs-panel/admin/su.pl:78
-#: ../vhffs-panel/public/user.pl:81 ../vhffs-panel/public/lastusers.pl:76
-#: ../vhffs-panel/auth.pl:58 ../vhffs-panel/lost.pl:54
+#: ../vhffs-panel/public/user.pl:83 ../vhffs-panel/public/lastusers.pl:78
+#: ../vhffs-panel/lost.pl:54 ../vhffs-api/src/Vhffs/Panel/Commons.pm:54
 msgid "Username"
 msgstr ""
 
@@ -3973,8 +4503,8 @@
 msgid "Username:"
 msgstr ""
 
-#: ../vhffs-panel/public/lastgroups.pl:73 ../vhffs-panel/public/group.pl:92
-#: ../vhffs-panel/public/allgroups.pl:80
+#: ../vhffs-panel/public/lastgroups.pl:75 ../vhffs-panel/public/group.pl:94
+#: ../vhffs-panel/public/allgroups.pl:82
 msgid "Users"
 msgstr ""
 
@@ -3982,27 +4512,19 @@
 msgid "Users stats"
 msgstr ""
 
-#: ../vhffs-panel/auth.pl:54
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:50
 msgid "VHFFS Login"
 msgstr ""
 
-#: ../vhffs-panel/login.pl:106
-msgid "VHFFS Login OK"
-msgstr ""
-
-#: ../vhffs-panel/login.pl:86 ../vhffs-panel/login.pl:116
-msgid "VHFFS Login failed"
-msgstr ""
-
 #: ../vhffs-panel/logout.pl:58
 msgid "VHFFS Logout"
 msgstr ""
 
-#: ../vhffs-panel/lost_ack.pl:68
+#: ../vhffs-panel/lost_ack.pl:78
 msgid "VHFFS Password Lost OK"
 msgstr ""
 
-#: ../vhffs-panel/lost_ack.pl:79
+#: ../vhffs-panel/lost_ack.pl:89
 msgid "VHFFS Password Lost failed"
 msgstr ""
 
@@ -4013,6 +4535,7 @@
 #: ../vhffs-panel/admin/object/edit.pl:116
 #: ../vhffs-panel/admin/web/edit.pl:129 ../vhffs-panel/admin/mysql/edit.pl:117
 #: ../vhffs-panel/admin/cvs/edit.pl:125 ../vhffs-panel/admin/mail/edit.pl:157
+#: ../vhffs-intl/extra_strings.pl:16
 msgid "Validation refused"
 msgstr ""
 
@@ -4025,19 +4548,19 @@
 msgid "View"
 msgstr ""
 
-#: ../vhffs-panel/public/group.pl:207
+#: ../vhffs-panel/public/group.pl:209
 msgid "View archives"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:359
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:383
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:409
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:435
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:461
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:488
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:514
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:540
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:565
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:419
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:443
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:469
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:495
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:521
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:548
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:574
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:600
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:625
 msgid "View history"
 msgstr ""
 
@@ -4062,6 +4585,10 @@
 msgid "WEB stats"
 msgstr ""
 
+#: ../vhffs-panel/mailinglist/prefs.pl:179
+msgid "Waiting for confirmation"
+msgstr ""
+
 #: ../vhffs-panel/admin/user/edit.pl:141
 #: ../vhffs-panel/admin/pgsql/edit.pl:117
 #: ../vhffs-panel/admin/group/edit.pl:117
@@ -4069,11 +4596,12 @@
 #: ../vhffs-panel/admin/object/edit.pl:117
 #: ../vhffs-panel/admin/web/edit.pl:130 ../vhffs-panel/admin/mysql/edit.pl:118
 #: ../vhffs-panel/admin/cvs/edit.pl:126 ../vhffs-panel/admin/mail/edit.pl:158
+#: ../vhffs-intl/extra_strings.pl:17
 msgid "Waiting for creation"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:179
-msgid "Waiting for delete"
+#: ../vhffs-panel/mailinglist/prefs.pl:181
+msgid "Waiting for deletion"
 msgstr ""
 
 #: ../vhffs-panel/admin/user/edit.pl:147
@@ -4083,9 +4611,11 @@
 #: ../vhffs-panel/admin/object/edit.pl:123
 #: ../vhffs-panel/admin/web/edit.pl:136 ../vhffs-panel/admin/mysql/edit.pl:124
 #: ../vhffs-panel/admin/cvs/edit.pl:132 ../vhffs-panel/admin/mail/edit.pl:164
+#: ../vhffs-intl/extra_strings.pl:23
 msgid "Waiting for modification"
 msgstr ""
 
+#: ../vhffs-panel/mailinglist/prefs.pl:180
 #: ../vhffs-panel/admin/user/edit.pl:139
 #: ../vhffs-panel/admin/pgsql/edit.pl:115
 #: ../vhffs-panel/admin/group/edit.pl:115
@@ -4093,6 +4623,7 @@
 #: ../vhffs-panel/admin/object/edit.pl:115
 #: ../vhffs-panel/admin/web/edit.pl:128 ../vhffs-panel/admin/mysql/edit.pl:116
 #: ../vhffs-panel/admin/cvs/edit.pl:124 ../vhffs-panel/admin/mail/edit.pl:156
+#: ../vhffs-intl/extra_strings.pl:15
 msgid "Waiting for validation"
 msgstr ""
 
@@ -4100,7 +4631,7 @@
 msgid "Warn the admin team"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs.pl:176
+#: ../vhffs-panel/user/prefs.pl:347
 #, perl-format
 msgid "We offer you the possibility to have one email box on the domain %s"
 msgstr ""
@@ -4125,23 +4656,31 @@
 msgid "Web area successfully created !"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:349
+#: ../vhffs-intl/extra_strings.pl:32
+msgid "Webarea"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:409
 msgid "Webarea for this group"
 msgstr ""
 
-#: ../vhffs-panel/public/group.pl:122
+#: ../vhffs-panel/public/group.pl:124
 msgid "Website for this group"
 msgstr ""
 
-#: ../vhffs-panel/public/index.pl:74
+#: ../vhffs-panel/public/index.pl:76
 msgid "Websites area"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:313
+#: ../vhffs-panel/dns/prefs.pl:310 ../vhffs-panel/dns/prefs.pl:395
+msgid "Weight"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:373
 msgid "Welcome"
 msgstr ""
 
-#: ../vhffs-panel/auth.pl:55
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:51
 #, perl-format
 msgid "Welcome on %s"
 msgstr ""
@@ -4157,30 +4696,31 @@
 #: ../vhffs-panel/admin/object/edit.pl:126
 #: ../vhffs-panel/admin/web/edit.pl:139 ../vhffs-panel/admin/mysql/edit.pl:127
 #: ../vhffs-panel/admin/cvs/edit.pl:135 ../vhffs-panel/admin/mail/edit.pl:167
+#: ../vhffs-intl/extra_strings.pl:26
 msgid "Will be deleted"
 msgstr ""
 
-#: ../vhffs-panel/auth.pl:74
+#: ../vhffs-api/src/Vhffs/Panel/Commons.pm:70
 #, perl-format
 msgid "Woah, %s users and %s groups already trust %s"
 msgstr ""
 
-#: ../vhffs-panel/svn/prefs.pl:119 ../vhffs-panel/dns/prefs.pl:139
+#: ../vhffs-panel/svn/prefs.pl:119 ../vhffs-panel/dns/prefs.pl:273
 #: ../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:103
+#: ../vhffs-panel/web/prefs.pl:115 ../vhffs-panel/cvs/prefs.pl:93
 msgid "Yes"
 msgstr ""
 
-#: ../vhffs-panel/mailinglist/prefs.pl:203 ../vhffs-panel/svn/prefs.pl:125
-#: ../vhffs-panel/user/prefs.pl:104 ../vhffs-panel/dns/prefs.pl:132
+#: ../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:109
+#: ../vhffs-panel/mysql/prefs.pl:117 ../vhffs-panel/cvs/prefs.pl:99
 #: ../vhffs-panel/mail/prefs.pl:133
 msgid "Yes I'm sure of what I do"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:215
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:222
 msgid "You are not a subscriber on this list.\n"
 msgstr ""
 
@@ -4229,40 +4769,36 @@
 msgid "You are not allowed to see it"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:121
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:114
 #, perl-format
-msgid "You ask to be subscribed to the following list: %s\n"
+msgid ""
+"You asked to be subscribed to the following list:\n"
+"\n"
+"%s\n"
+"\n"
 msgstr ""
 
-#: ../vhffs-panel/dns/prefs.pl:124 ../vhffs-panel/web/prefs.pl:123
+#: ../vhffs-panel/dns/prefs.pl:258 ../vhffs-panel/web/prefs.pl:123
 #: ../vhffs-panel/mail/prefs.pl:138
 msgid ""
 "You can Manage rights on this service for each user in the VHFFS database. "
 "Please read help before manage it."
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:50
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:46
 msgid "You can also send a command list in the mail body.\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:154
-msgid "You can have some help on listengine, sending an email to\n"
-msgstr ""
-
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:152
-msgid "You can post on the list now."
-msgstr ""
-
 #: ../vhffs-panel/subscribe.pl:80
 msgid "You cannot subscribe to VHFFS"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:214
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:221
 #, perl-format
 msgid "You cannot unsubscribe from the list %s\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:199
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:206
 msgid "You demand was refused\n"
 msgstr ""
 
@@ -4270,17 +4806,21 @@
 msgid "You don't own this domain"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:168
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:177
 #, perl-format
-msgid "You have been successfully removed from the list %s\n"
+msgid ""
+"You have been successfully removed from the following list:\n"
+"\n"
+"%s\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:244
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:250
 #, perl-format
 msgid "You have been successfully removed from the list %s.\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:150
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:142
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:158
 #, perl-format
 msgid "You have been successfully subscribed to the list %s\n"
 msgstr ""
@@ -4293,16 +4833,18 @@
 msgid "You lost your password? You're a bad guy!"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs_save.pl:170
-msgid "You must choose a method for your mail"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:144
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:163
+msgid "You may get some help on listengine by sending an email to\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:104
-msgid "You must confirm this request by seding a email\n"
+#: ../vhffs-panel/user/prefs.pl:161
+msgid "You must choose a method for your mail"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:86
-msgid "You must confirm your request by sending a confirmation emailn\n"
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:80
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:98
+msgid "You must confirm your request by sending a confirmation email\n"
 msgstr ""
 
 #: ../vhffs-panel/subscribe.pl:121
@@ -4337,37 +4879,34 @@
 msgid "You must declare your zipcode"
 msgstr ""
 
+#: ../vhffs-panel/dns/create.pl:43 ../vhffs-panel/cvs/create.pl:73
+msgid "You must enter a description"
+msgstr ""
+
 #: ../vhffs-panel/mailinglist/create.pl:81
 msgid "You need to manage at least a domain to host a mailing-list"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Panel/Main.pm:239
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:161
+msgid "You will receive an email with the decision of administrators.\n"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Panel/Main.pm:277
 msgid "You're are not allowed to browse panel"
 msgstr ""
 
 #: ../vhffs-panel/mailinglist/delete.pl:90
 #: ../vhffs-panel/mailinglist/save_sig.pl:89
 #: ../vhffs-panel/mailinglist/add_sub.pl:91
-#: ../vhffs-panel/mailinglist/prefs.pl:100
-#: ../vhffs-panel/mailinglist/save_options.pl:96
+#: ../vhffs-panel/mailinglist/prefs.pl:98
+#: ../vhffs-panel/mailinglist/save_options.pl:93
 #: ../vhffs-panel/mailinglist/change_right.pl:93
 #: ../vhffs-panel/mailinglist/del_member.pl:91 ../vhffs-panel/svn/delete.pl:81
-#: ../vhffs-panel/svn/prefs.pl:100 ../vhffs-panel/svn/prefs_save.pl:82
+#: ../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/add_mx.pl:88 ../vhffs-panel/dns/add_mx.pl:92
-#: ../vhffs-panel/dns/prefs.pl:92 ../vhffs-panel/dns/modif_a.pl:88
-#: ../vhffs-panel/dns/modif_a.pl:92 ../vhffs-panel/dns/add_ns.pl:86
-#: ../vhffs-panel/dns/add_ns.pl:90 ../vhffs-panel/dns/add_cname.pl:90
-#: ../vhffs-panel/dns/add_cname.pl:94 ../vhffs-panel/dns/delete_a.pl:60
-#: ../vhffs-panel/dns/delete_a.pl:64 ../vhffs-panel/dns/delete_ns.pl:88
-#: ../vhffs-panel/dns/delete_ns.pl:92 ../vhffs-panel/dns/delete_mx.pl:89
-#: ../vhffs-panel/dns/delete_mx.pl:93 ../vhffs-panel/dns/modif_cname.pl:91
-#: ../vhffs-panel/dns/modif_cname.pl:95 ../vhffs-panel/dns/modif_mx.pl:91
-#: ../vhffs-panel/dns/modif_mx.pl:95 ../vhffs-panel/dns/add_a.pl:92
-#: ../vhffs-panel/dns/add_a.pl:96 ../vhffs-panel/dns/delete_cname.pl:87
-#: ../vhffs-panel/dns/delete_cname.pl:91 ../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/dns/prefs.pl:91 ../vhffs-panel/dns/prefs.pl:108
+#: ../vhffs-panel/pgsql/delete.pl:77 ../vhffs-panel/pgsql/prefs.pl:78
+#: ../vhffs-panel/pgsql/prefs_save.pl:85 ../vhffs-panel/group/delete.pl:70
 #: ../vhffs-panel/group/remove_user_from_group.pl:75
 #: ../vhffs-panel/group/prefs.pl:80 ../vhffs-panel/group/join_group.pl:74
 #: ../vhffs-panel/group/prefs_save.pl:78
@@ -4384,7 +4923,7 @@
 #: ../vhffs-panel/web/delete.pl:83 ../vhffs-panel/web/prefs.pl:86
 #: ../vhffs-panel/web/prefs_save.pl:86 ../vhffs-panel/mysql/delete.pl:80
 #: ../vhffs-panel/mysql/prefs.pl:84 ../vhffs-panel/mysql/prefs_save.pl:87
-#: ../vhffs-panel/cvs/delete.pl:82 ../vhffs-panel/cvs/prefs.pl:86
+#: ../vhffs-panel/cvs/delete.pl:82 ../vhffs-panel/cvs/prefs.pl:80
 #: ../vhffs-panel/cvs/prefs_save.pl:81 ../vhffs-panel/mail/delete.pl:86
 #: ../vhffs-panel/mail/delete_box.pl:92 ../vhffs-panel/mail/add_account.pl:95
 #: ../vhffs-panel/mail/prefs.pl:91 ../vhffs-panel/mail/save_catchall.pl:85
@@ -4491,6 +5030,12 @@
 msgid "Your Subversion repository request : %s"
 msgstr ""
 
+#: ../vhffs-panel/subscribe.pl:218
+msgid ""
+"Your email address. It will be used to contact you when needed and as a "
+"destination address if you use our email forwarding service"
+msgstr ""
+
 #: ../vhffs-robots/src/refused_web.pl:78
 msgid "Your hosting request"
 msgstr ""
@@ -4503,12 +5048,12 @@
 msgid "Your password is not correct. Please check it."
 msgstr ""
 
-#: ../vhffs-panel/cvs/cvs_submit.pl:80
+#: ../vhffs-panel/cvs/create.pl:71
 msgid ""
 "Your repository name is not correct. It must contains at least 3 caracters"
 msgstr ""
 
-#: ../vhffs-panel/cvs/cvs_submit.pl:76
+#: ../vhffs-panel/cvs/create.pl:69
 msgid ""
 "Your repository name is not correct. It must contains only caracter and "
 "numbers"
@@ -4518,10 +5063,6 @@
 msgid "Your request for a "
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:137
-msgid "Your request has been removed.\n"
-msgstr ""
-
 #: ../vhffs-irc/modobot.pl:404
 #, perl-format
 msgid "Your request on %s"
@@ -4531,6 +5072,12 @@
 msgid "Your request on VHFFS platform"
 msgstr ""
 
+#: ../vhffs-panel/subscribe.pl:217
+msgid ""
+"Your username. It must contains only alphanumeric characters in lowercase, "
+"its length must be between 3 and 12 chars"
+msgstr ""
+
 #: ../vhffs-robots/src/refused_web.pl:67
 #, perl-format
 msgid "Your web hosting request for the servername : %s "
@@ -4540,20 +5087,20 @@
 msgid "Your zipcode is not correct! Please enter a correct zipcode"
 msgstr ""
 
-#: ../vhffs-panel/subscribe.pl:202 ../vhffs-panel/user/prefs.pl:82
+#: ../vhffs-panel/subscribe.pl:202 ../vhffs-panel/user/prefs.pl:257
 #: ../vhffs-panel/admin/user/edit.pl:106 ../vhffs-panel/admin/user/show.pl:106
 msgid "Zipcode"
 msgstr ""
 
-#: ../vhffs-panel/user/prefs_save.pl:95
+#: ../vhffs-panel/user/prefs.pl:102
 msgid "Zipcode is not correct !"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:338
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:347
 msgid "cannot be removed from the list\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:306
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:313
 msgid "cannot be removed.\n"
 msgstr ""
 
@@ -4568,65 +5115,89 @@
 msgid "has been refused by the Moderators team"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:55
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:50
 msgid "help\t\t - show this help\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:353
+#: ../vhffs-intl/extra_strings.pl:10
+msgid "help_user_bug"
+msgstr ""
+
+#: ../vhffs-intl/extra_strings.pl:9
+msgid "help_user_help"
+msgstr ""
+
+#: ../vhffs-intl/extra_strings.pl:11
+msgid "help_user_logout"
+msgstr ""
+
+#: ../vhffs-intl/extra_strings.pl:8
+msgid "help_user_preferences"
+msgstr ""
+
+#: ../vhffs-intl/extra_strings.pl:12
+msgid "help_user_projects"
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:362
 #, perl-format
 msgid "in the moderation queue of the list %s"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:58
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:53
 msgid "lang [fr|us|es]\t - set listengine language\n"
 msgstr ""
 
-#: ../vhffs-listengine/src/listengine.pl:759
+#: ../vhffs-listengine/src/listengine.pl:781
 #, perl-format
 msgid "listengine - list of messages to moderate for %s"
 msgstr ""
 
-#: ../vhffs-listengine/src/listengine.pl:642
 #: ../vhffs-listengine/src/listengine.pl:664
-#: ../vhffs-listengine/src/listengine.pl:675
+#: ../vhffs-listengine/src/listengine.pl:686
+#: ../vhffs-listengine/src/listengine.pl:697
 msgid "listengine help"
 msgstr ""
 
-#: ../vhffs-listengine/src/listengine.pl:707
-#: ../vhffs-listengine/src/listengine.pl:718
-#: ../vhffs-listengine/src/listengine.pl:734
-#: ../vhffs-listengine/src/listengine.pl:746
-#: ../vhffs-listengine/src/listengine.pl:773
-#: ../vhffs-listengine/src/listengine.pl:784
+#: ../vhffs-listengine/src/listengine.pl:729
+#: ../vhffs-listengine/src/listengine.pl:740
+#: ../vhffs-listengine/src/listengine.pl:756
+#: ../vhffs-listengine/src/listengine.pl:768
+#: ../vhffs-listengine/src/listengine.pl:795
+#: ../vhffs-listengine/src/listengine.pl:806
 msgid "listengine moderation"
 msgstr ""
 
-#: ../vhffs-listengine/src/listengine.pl:692
+#: ../vhffs-listengine/src/listengine.pl:714
 msgid "listengine result command"
 msgstr ""
 
-#: ../vhffs-listengine/src/listengine.pl:811
+#: ../vhffs-listengine/src/listengine.pl:833
 msgid "listengine: unknown command"
 msgstr ""
 
-#: ../vhffs-panel/subscribe.pl:199 ../vhffs-panel/user/prefs.pl:79
+#: ../vhffs-panel/subscribe.pl:199 ../vhffs-panel/user/prefs.pl:254
 msgid "mail"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:61
+#: ../vhffs-panel/svn/prefs.pl:143 ../vhffs-panel/svn/prefs_save.pl:115
+msgid "ml adress here..."
+msgstr ""
+
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:56
 msgid "moderate XXXXX\t\t\t - moderate the message with message-id XXXXX\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:64
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:59
 msgid "moderate list\t\t\t - give the message list for moderation\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:63
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:58
 msgid ""
 "moderate refused XXXXX\t\t\t - refuse the message with message-id XXXXX\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:62
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:57
 msgid ""
 "moderate validate XXXXX\t\t\t - moderate the message with message-id XXXXX\n"
 msgstr ""
@@ -4639,17 +5210,17 @@
 msgid "no information about date"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:305
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:337
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:312
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:346
 #, perl-format
 msgid "present in the moderation queue for the list %s"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:56
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:51
 msgid "subscribe\t - subscribe the shipper to the list\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:391
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:399
 #, perl-format
 msgid "to %s-request@%s with the following subject : \"moderate %s\" \n"
 msgstr ""
@@ -4659,34 +5230,34 @@
 msgid "unknown message-id t: %s"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:57
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:52
 msgid "unsubscribe\t - unsubscribe from this list\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:69
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:64
 msgid "user info user@xxxxxxxxxx\t\t - show this user's informations\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:67
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:62
 msgid "user right RIGHT user@xxxxxxxxxx\t - change right for this user\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:66
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:61
 msgid ""
 "user subscribe user@xxxxxxxxxx\t\t - register the user user@xxxxxxxxxx on "
 "the list\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:65
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:60
 msgid ""
 "user unsubscribe user@xxxxxxxxxx\t - delete user user@xxxxxxxxxx from list\n"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:322
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:330
 #, perl-format
 msgid "was removed from the moderation queue from the list %s"
 msgstr ""
 
-#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:354
+#: ../vhffs-api/src/Vhffs/Listengine/Intl.pm:363
 msgid "was sent on the list.\n"
 msgstr ""

Modified: branches/vhffs-design/vhffs-intl/update_po.sh
===================================================================
--- branches/vhffs-design/vhffs-intl/update_po.sh	2007-05-17 11:04:33 UTC (rev 610)
+++ branches/vhffs-design/vhffs-intl/update_po.sh	2007-05-17 11:10:10 UTC (rev 611)
@@ -1,8 +1,8 @@
 #!/bin/sh
 
 # Make a backup in case something goes wrong
-cp src/fr.po src/fr.po.old
-msgmerge src/fr.po src/vhffs.pot -o src/fr.po
+msgmerge --no-fuzzy-matching --backup=simple --suffix=.old -U src/fr.po src/vhffs.pot
 
-cp src/es.po src/es.po.old
-msgmerge src/es.po src/vhffs.pot -o src/es.po
+msgmerge --no-fuzzy-matching --backup=simple --suffix=.old -U src/es.po src/vhffs.pot
+
+msgmerge --no-fuzzy-matching --backup=simple --suffix=.old -U src/en.po src/vhffs.pot


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