[vhffs-dev] [1119] OK, so let's do i18n the way autotools want to do it. |
[ Thread Index |
Date Index
| More vhffs.org/vhffs-dev Archives
]
Revision: 1119
Author: beuss
Date: 2008-01-10 06:39:28 +0000 (Thu, 10 Jan 2008)
Log Message:
-----------
OK, so let's do i18n the way autotools want to do it.
Removed all i18n old stuff which was quite ugly.
intldir config param is no more used, use configure's --localedir switch instead.
Added a new config param 'available_languages' to set up which languages can be used on the platform.
** Don't forget to update your configuration! **
I guess there will be some additional commits to fix some ugly mistakes.
Btw, give me an autotools guy, so i can kick his ass...
Modified Paths:
--------------
trunk/ChangeLog
trunk/Makefile.am
trunk/configure.ac
trunk/vhffs-api/src/Vhffs/Conf.pm
trunk/vhffs-api/src/Vhffs/Makefile.am
trunk/vhffs-api/src/Vhffs/Object.pm
trunk/vhffs-api/src/Vhffs/Panel/Commons.pm
trunk/vhffs-api/src/Vhffs/Panel/Main.pm
trunk/vhffs-api/src/Vhffs/User.pm
trunk/vhffs-backend/Makefile.am
trunk/vhffs-backend/conf/vhffs.conf.dist.in
trunk/vhffs-listengine/src/Makefile.am
trunk/vhffs-listengine/src/listengine.pl
Added Paths:
-----------
trunk/ABOUT-NLS
trunk/config.rpath
trunk/m4/
trunk/m4/ChangeLog
trunk/m4/gettext.m4
trunk/m4/iconv.m4
trunk/m4/lib-ld.m4
trunk/m4/lib-link.m4
trunk/m4/lib-prefix.m4
trunk/m4/nls.m4
trunk/m4/po.m4
trunk/m4/progtest.m4
trunk/vhffs-intl/ChangeLog
trunk/vhffs-intl/LINGUAS
trunk/vhffs-intl/Makefile.in.in
trunk/vhffs-intl/Makevars
trunk/vhffs-intl/POTFILES.in
trunk/vhffs-intl/Rules-quot
trunk/vhffs-intl/boldquot.sed
trunk/vhffs-intl/de_DE.po
trunk/vhffs-intl/en@boldquot.header
trunk/vhffs-intl/en@quot.header
trunk/vhffs-intl/en_US.po
trunk/vhffs-intl/es_ES.po
trunk/vhffs-intl/fr_FR.po
trunk/vhffs-intl/insert-header.sin
trunk/vhffs-intl/quot.sed
trunk/vhffs-intl/remove-potcdate.sin
trunk/vhffs-intl/vhffs.pot
Removed Paths:
-------------
trunk/vhffs-api/src/Vhffs/Intl.pm
trunk/vhffs-intl/DOC
trunk/vhffs-intl/Makefile.am
trunk/vhffs-intl/compile_po.sh
trunk/vhffs-intl/createpot.sh
trunk/vhffs-intl/extra_strings.pl
trunk/vhffs-intl/result/
trunk/vhffs-intl/src/
trunk/vhffs-intl/update_po.sh
Property Changed:
----------------
trunk/vhffs-intl/
Added: trunk/ABOUT-NLS
===================================================================
--- trunk/ABOUT-NLS (rev 0)
+++ trunk/ABOUT-NLS 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,1101 @@
+1 Notes on the Free Translation Project
+***************************************
+
+Free software is going international! The Free Translation Project is
+a way to get maintainers of free software, translators, and users all
+together, so that free software will gradually become able to speak many
+languages. A few packages already provide translations for their
+messages.
+
+ If you found this `ABOUT-NLS' file inside a distribution, you may
+assume that the distributed package does use GNU `gettext' internally,
+itself available at your nearest GNU archive site. But you do _not_
+need to install GNU `gettext' prior to configuring, installing or using
+this package with messages translated.
+
+ Installers will find here some useful hints. These notes also
+explain how users should proceed for getting the programs to use the
+available translations. They tell how people wanting to contribute and
+work on translations can contact the appropriate team.
+
+ When reporting bugs in the `intl/' directory or bugs which may be
+related to internationalization, you should tell about the version of
+`gettext' which is used. The information can be found in the
+`intl/VERSION' file, in internationalized packages.
+
+1.1 Quick configuration advice
+==============================
+
+If you want to exploit the full power of internationalization, you
+should configure it using
+
+ ./configure --with-included-gettext
+
+to force usage of internationalizing routines provided within this
+package, despite the existence of internationalizing capabilities in the
+operating system where this package is being installed. So far, only
+the `gettext' implementation in the GNU C library version 2 provides as
+many features (such as locale alias, message inheritance, automatic
+charset conversion or plural form handling) as the implementation here.
+It is also not possible to offer this additional functionality on top
+of a `catgets' implementation. Future versions of GNU `gettext' will
+very likely convey even more functionality. So it might be a good idea
+to change to GNU `gettext' as soon as possible.
+
+ So you need _not_ provide this option if you are using GNU libc 2 or
+you have installed a recent copy of the GNU gettext package with the
+included `libintl'.
+
+1.2 INSTALL Matters
+===================
+
+Some packages are "localizable" when properly installed; the programs
+they contain can be made to speak your own native language. Most such
+packages use GNU `gettext'. Other packages have their own ways to
+internationalization, predating GNU `gettext'.
+
+ By default, this package will be installed to allow translation of
+messages. It will automatically detect whether the system already
+provides the GNU `gettext' functions. If not, the included GNU
+`gettext' library will be used. This library is wholly contained
+within this package, usually in the `intl/' subdirectory, so prior
+installation of the GNU `gettext' package is _not_ required.
+Installers may use special options at configuration time for changing
+the default behaviour. The commands:
+
+ ./configure --with-included-gettext
+ ./configure --disable-nls
+
+will, respectively, bypass any pre-existing `gettext' to use the
+internationalizing routines provided within this package, or else,
+_totally_ disable translation of messages.
+
+ When you already have GNU `gettext' installed on your system and run
+configure without an option for your new package, `configure' will
+probably detect the previously built and installed `libintl.a' file and
+will decide to use this. This might not be desirable. You should use
+the more recent version of the GNU `gettext' library. I.e. if the file
+`intl/VERSION' shows that the library which comes with this package is
+more recent, you should use
+
+ ./configure --with-included-gettext
+
+to prevent auto-detection.
+
+ The configuration process will not test for the `catgets' function
+and therefore it will not be used. The reason is that even an
+emulation of `gettext' on top of `catgets' could not provide all the
+extensions of the GNU `gettext' library.
+
+ Internationalized packages usually have many `po/LL.po' files, where
+LL gives an ISO 639 two-letter code identifying the language. Unless
+translations have been forbidden at `configure' time by using the
+`--disable-nls' switch, all available translations are installed
+together with the package. However, the environment variable `LINGUAS'
+may be set, prior to configuration, to limit the installed set.
+`LINGUAS' should then contain a space separated list of two-letter
+codes, stating which languages are allowed.
+
+1.3 Using This Package
+======================
+
+As a user, if your language has been installed for this package, you
+only have to set the `LANG' environment variable to the appropriate
+`LL_CC' combination. Here `LL' is an ISO 639 two-letter language code,
+and `CC' is an ISO 3166 two-letter country code. For example, let's
+suppose that you speak German and live in Germany. At the shell
+prompt, merely execute `setenv LANG de_DE' (in `csh'),
+`export LANG; LANG=de_DE' (in `sh') or `export LANG=de_DE' (in `bash').
+This can be done from your `.login' or `.profile' file, once and for
+all.
+
+ You might think that the country code specification is redundant.
+But in fact, some languages have dialects in different countries. For
+example, `de_AT' is used for Austria, and `pt_BR' for Brazil. The
+country code serves to distinguish the dialects.
+
+ The locale naming convention of `LL_CC', with `LL' denoting the
+language and `CC' denoting the country, is the one use on systems based
+on GNU libc. On other systems, some variations of this scheme are
+used, such as `LL' or `LL_CC.ENCODING'. You can get the list of
+locales supported by your system for your language by running the
+command `locale -a | grep '^LL''.
+
+ Not all programs have translations for all languages. By default, an
+English message is shown in place of a nonexistent translation. If you
+understand other languages, you can set up a priority list of languages.
+This is done through a different environment variable, called
+`LANGUAGE'. GNU `gettext' gives preference to `LANGUAGE' over `LANG'
+for the purpose of message handling, but you still need to have `LANG'
+set to the primary language; this is required by other parts of the
+system libraries. For example, some Swedish users who would rather
+read translations in German than English for when Swedish is not
+available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'.
+
+ Special advice for Norwegian users: The language code for Norwegian
+bokma*l changed from `no' to `nb' recently (in 2003). During the
+transition period, while some message catalogs for this language are
+installed under `nb' and some older ones under `no', it's recommended
+for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and
+older translations are used.
+
+ In the `LANGUAGE' environment variable, but not in the `LANG'
+environment variable, `LL_CC' combinations can be abbreviated as `LL'
+to denote the language's main dialect. For example, `de' is equivalent
+to `de_DE' (German as spoken in Germany), and `pt' to `pt_PT'
+(Portuguese as spoken in Portugal) in this context.
+
+1.4 Translating Teams
+=====================
+
+For the Free Translation Project to be a success, we need interested
+people who like their own language and write it well, and who are also
+able to synergize with other translators speaking the same language.
+Each translation team has its own mailing list. The up-to-date list of
+teams can be found at the Free Translation Project's homepage,
+`http://www.iro.umontreal.ca/contrib/po/HTML/', in the "National teams"
+area.
+
+ If you'd like to volunteer to _work_ at translating messages, you
+should become a member of the translating team for your own language.
+The subscribing address is _not_ the same as the list itself, it has
+`-request' appended. For example, speakers of Swedish can send a
+message to `sv-request@xxxxxx', having this message body:
+
+ subscribe
+
+ Keep in mind that team members are expected to participate
+_actively_ in translations, or at solving translational difficulties,
+rather than merely lurking around. If your team does not exist yet and
+you want to start one, or if you are unsure about what to do or how to
+get started, please write to `translation@xxxxxxxxxxxxxxxx' to reach the
+coordinator for all translator teams.
+
+ The English team is special. It works at improving and uniformizing
+the terminology in use. Proven linguistic skills are praised more than
+programming skills, here.
+
+1.5 Available Packages
+======================
+
+Languages are not equally supported in all packages. The following
+matrix shows the current state of internationalization, as of October
+2006. The matrix shows, in regard of each package, for which languages
+PO files have been submitted to translation coordination, with a
+translation percentage of at least 50%.
+
+ Ready PO files af am ar az be bg bs ca cs cy da de el en en_GB eo
+ +----------------------------------------------------+
+ GNUnet | [] |
+ a2ps | [] [] [] [] [] |
+ aegis | () |
+ ant-phone | () |
+ anubis | [] |
+ ap-utils | |
+ aspell | [] [] [] [] [] |
+ bash | [] [] [] |
+ batchelor | [] |
+ bfd | |
+ bibshelf | [] |
+ binutils | [] |
+ bison | [] [] |
+ bison-runtime | |
+ bluez-pin | [] [] [] [] [] |
+ cflow | [] |
+ clisp | [] [] |
+ console-tools | [] [] |
+ coreutils | [] [] [] |
+ cpio | |
+ cpplib | [] [] [] |
+ cryptonit | [] |
+ darkstat | [] () [] |
+ dialog | [] [] [] [] [] [] |
+ diffutils | [] [] [] [] [] [] |
+ doodle | [] |
+ e2fsprogs | [] [] |
+ enscript | [] [] [] [] |
+ error | [] [] [] [] |
+ fetchmail | [] [] () [] |
+ fileutils | [] [] |
+ findutils | [] [] [] |
+ flex | [] [] [] |
+ fslint | [] |
+ gas | |
+ gawk | [] [] [] |
+ gbiff | [] |
+ gcal | [] |
+ gcc | [] |
+ gettext-examples | [] [] [] [] [] |
+ gettext-runtime | [] [] [] [] [] |
+ gettext-tools | [] [] |
+ gimp-print | [] [] [] [] |
+ gip | [] |
+ gliv | [] |
+ glunarclock | [] |
+ gmult | [] [] |
+ gnubiff | () |
+ gnucash | () () [] |
+ gnucash-glossary | [] () |
+ gnuedu | |
+ gnulib | [] [] [] [] [] [] |
+ gnunet-gtk | |
+ gnutls | |
+ gpe-aerial | [] [] |
+ gpe-beam | [] [] |
+ gpe-calendar | |
+ gpe-clock | [] [] |
+ gpe-conf | [] [] |
+ gpe-contacts | |
+ gpe-edit | [] |
+ gpe-filemanager | |
+ gpe-go | [] |
+ gpe-login | [] [] |
+ gpe-ownerinfo | [] [] |
+ gpe-package | |
+ gpe-sketchbook | [] [] |
+ gpe-su | [] [] |
+ gpe-taskmanager | [] [] |
+ gpe-timesheet | [] |
+ gpe-today | [] [] |
+ gpe-todo | |
+ gphoto2 | [] [] [] [] |
+ gprof | [] [] |
+ gpsdrive | () () |
+ gramadoir | [] [] |
+ grep | [] [] [] [] [] [] |
+ gretl | |
+ gsasl | |
+ gss | |
+ gst-plugins | [] [] [] [] |
+ gst-plugins-base | [] [] [] |
+ gst-plugins-good | [] [] [] [] [] [] [] |
+ gstreamer | [] [] [] [] [] [] [] |
+ gtick | () |
+ gtkam | [] [] [] |
+ gtkorphan | [] [] |
+ gtkspell | [] [] [] [] |
+ gutenprint | [] |
+ hello | [] [] [] [] [] |
+ id-utils | [] [] |
+ impost | |
+ indent | [] [] [] |
+ iso_3166 | [] [] |
+ iso_3166_2 | |
+ iso_4217 | [] |
+ iso_639 | [] [] |
+ jpilot | [] |
+ jtag | |
+ jwhois | |
+ kbd | [] [] [] [] |
+ keytouch | |
+ keytouch-editor | |
+ keytouch-keyboa... | |
+ latrine | () |
+ ld | [] |
+ leafpad | [] [] [] [] [] |
+ libc | [] [] [] [] [] |
+ libexif | [] |
+ libextractor | [] |
+ libgpewidget | [] [] [] |
+ libgpg-error | [] |
+ libgphoto2 | [] [] |
+ libgphoto2_port | [] [] |
+ libgsasl | |
+ libiconv | [] [] |
+ libidn | [] [] |
+ lifelines | [] () |
+ lilypond | [] |
+ lingoteach | |
+ lynx | [] [] [] [] |
+ m4 | [] [] [] [] |
+ mailutils | [] |
+ make | [] [] |
+ man-db | [] () [] [] |
+ minicom | [] [] [] |
+ mysecretdiary | [] [] |
+ nano | [] [] [] |
+ nano_1_0 | [] () [] [] |
+ opcodes | [] |
+ parted | |
+ pilot-qof | [] |
+ psmisc | [] |
+ pwdutils | |
+ python | |
+ qof | |
+ radius | [] |
+ recode | [] [] [] [] [] [] |
+ rpm | [] [] |
+ screem | |
+ scrollkeeper | [] [] [] [] [] [] [] [] |
+ sed | [] [] [] |
+ sh-utils | [] [] |
+ shared-mime-info | [] [] [] [] |
+ sharutils | [] [] [] [] [] [] |
+ shishi | |
+ silky | |
+ skencil | [] () |
+ sketch | [] () |
+ solfege | |
+ soundtracker | [] [] |
+ sp | [] |
+ stardict | [] |
+ system-tools-ba... | [] [] [] [] [] [] [] [] [] |
+ tar | [] |
+ texinfo | [] [] [] |
+ textutils | [] [] [] |
+ tin | () () |
+ tp-robot | [] |
+ tuxpaint | [] [] [] [] [] |
+ unicode-han-tra... | |
+ unicode-transla... | |
+ util-linux | [] [] [] [] |
+ vorbis-tools | [] [] [] [] |
+ wastesedge | () |
+ wdiff | [] [] [] [] |
+ wget | [] [] |
+ xchat | [] [] [] [] [] [] |
+ xkeyboard-config | |
+ xpad | [] [] |
+ +----------------------------------------------------+
+ af am ar az be bg bs ca cs cy da de el en en_GB eo
+ 10 0 1 2 9 22 1 42 41 2 60 95 16 1 17 16
+
+ es et eu fa fi fr ga gl gu he hi hr hu id is it
+ +--------------------------------------------------+
+ GNUnet | |
+ a2ps | [] [] [] () |
+ aegis | |
+ ant-phone | [] |
+ anubis | [] |
+ ap-utils | [] [] |
+ aspell | [] [] [] |
+ bash | [] [] [] |
+ batchelor | [] [] |
+ bfd | [] |
+ bibshelf | [] [] [] |
+ binutils | [] [] [] |
+ bison | [] [] [] [] [] [] |
+ bison-runtime | [] [] [] [] [] |
+ bluez-pin | [] [] [] [] [] |
+ cflow | [] |
+ clisp | [] [] |
+ console-tools | |
+ coreutils | [] [] [] [] [] [] |
+ cpio | [] [] [] |
+ cpplib | [] [] |
+ cryptonit | [] |
+ darkstat | [] () [] [] [] |
+ dialog | [] [] [] [] [] [] [] [] |
+ diffutils | [] [] [] [] [] [] [] [] [] |
+ doodle | [] [] |
+ e2fsprogs | [] [] [] |
+ enscript | [] [] [] |
+ error | [] [] [] [] [] |
+ fetchmail | [] |
+ fileutils | [] [] [] [] [] [] |
+ findutils | [] [] [] [] |
+ flex | [] [] [] |
+ fslint | [] |
+ gas | [] [] |
+ gawk | [] [] [] [] |
+ gbiff | [] |
+ gcal | [] [] |
+ gcc | [] |
+ gettext-examples | [] [] [] [] [] [] |
+ gettext-runtime | [] [] [] [] [] [] |
+ gettext-tools | [] [] [] |
+ gimp-print | [] [] |
+ gip | [] [] [] |
+ gliv | () |
+ glunarclock | [] [] [] |
+ gmult | [] [] [] |
+ gnubiff | () () |
+ gnucash | () () () |
+ gnucash-glossary | [] [] |
+ gnuedu | [] |
+ gnulib | [] [] [] [] [] [] [] [] |
+ gnunet-gtk | |
+ gnutls | |
+ gpe-aerial | [] [] |
+ gpe-beam | [] [] |
+ gpe-calendar | |
+ gpe-clock | [] [] [] [] |
+ gpe-conf | [] |
+ gpe-contacts | [] [] |
+ gpe-edit | [] [] [] [] |
+ gpe-filemanager | [] |
+ gpe-go | [] [] [] |
+ gpe-login | [] [] [] |
+ gpe-ownerinfo | [] [] [] [] [] |
+ gpe-package | [] |
+ gpe-sketchbook | [] [] |
+ gpe-su | [] [] [] [] |
+ gpe-taskmanager | [] [] [] |
+ gpe-timesheet | [] [] [] [] |
+ gpe-today | [] [] [] [] |
+ gpe-todo | [] |
+ gphoto2 | [] [] [] [] [] |
+ gprof | [] [] [] [] |
+ gpsdrive | () () [] () |
+ gramadoir | [] [] |
+ grep | [] [] [] [] [] [] [] [] [] [] [] [] |
+ gretl | [] [] [] |
+ gsasl | [] [] |
+ gss | [] |
+ gst-plugins | [] [] [] |
+ gst-plugins-base | [] [] |
+ gst-plugins-good | [] [] [] |
+ gstreamer | [] [] [] |
+ gtick | [] |
+ gtkam | [] [] [] [] |
+ gtkorphan | [] [] |
+ gtkspell | [] [] [] [] [] [] |
+ gutenprint | [] |
+ hello | [] [] [] [] [] [] [] [] [] [] [] [] [] |
+ id-utils | [] [] [] [] [] |
+ impost | [] [] |
+ indent | [] [] [] [] [] [] [] [] [] [] |
+ iso_3166 | [] [] [] |
+ iso_3166_2 | [] |
+ iso_4217 | [] [] [] [] |
+ iso_639 | [] [] [] [] [] |
+ jpilot | [] [] |
+ jtag | [] |
+ jwhois | [] [] [] [] [] |
+ kbd | [] [] |
+ keytouch | [] |
+ keytouch-editor | [] |
+ keytouch-keyboa... | [] |
+ latrine | [] [] [] |
+ ld | [] [] |
+ leafpad | [] [] [] [] [] [] |
+ libc | [] [] [] [] [] |
+ libexif | [] |
+ libextractor | [] |
+ libgpewidget | [] [] [] [] [] |
+ libgpg-error | |
+ libgphoto2 | [] [] [] |
+ libgphoto2_port | [] [] |
+ libgsasl | [] [] |
+ libiconv | [] [] |
+ libidn | [] [] |
+ lifelines | () |
+ lilypond | [] |
+ lingoteach | [] [] [] |
+ lynx | [] [] [] |
+ m4 | [] [] [] [] |
+ mailutils | [] [] |
+ make | [] [] [] [] [] [] [] [] |
+ man-db | () |
+ minicom | [] [] [] [] |
+ mysecretdiary | [] [] [] |
+ nano | [] [] [] [] [] [] |
+ nano_1_0 | [] [] [] [] [] |
+ opcodes | [] [] [] [] |
+ parted | [] [] [] [] |
+ pilot-qof | |
+ psmisc | [] [] [] |
+ pwdutils | |
+ python | |
+ qof | [] |
+ radius | [] [] |
+ recode | [] [] [] [] [] [] [] [] |
+ rpm | [] [] |
+ screem | |
+ scrollkeeper | [] [] [] |
+ sed | [] [] [] [] [] |
+ sh-utils | [] [] [] [] [] [] [] |
+ shared-mime-info | [] [] [] [] [] [] |
+ sharutils | [] [] [] [] [] [] [] [] |
+ shishi | |
+ silky | [] |
+ skencil | [] [] |
+ sketch | [] [] |
+ solfege | [] |
+ soundtracker | [] [] [] |
+ sp | [] |
+ stardict | [] |
+ system-tools-ba... | [] [] [] [] [] [] [] [] |
+ tar | [] [] [] [] [] [] [] |
+ texinfo | [] [] |
+ textutils | [] [] [] [] [] |
+ tin | [] () |
+ tp-robot | [] [] [] [] |
+ tuxpaint | [] [] |
+ unicode-han-tra... | |
+ unicode-transla... | [] [] |
+ util-linux | [] [] [] [] [] [] [] |
+ vorbis-tools | [] [] |
+ wastesedge | () |
+ wdiff | [] [] [] [] [] [] [] [] |
+ wget | [] [] [] [] [] [] [] [] |
+ xchat | [] [] [] [] [] [] [] [] |
+ xkeyboard-config | [] [] [] [] |
+ xpad | [] [] [] |
+ +--------------------------------------------------+
+ es et eu fa fi fr ga gl gu he hi hr hu id is it
+ 88 22 14 2 40 115 61 14 1 8 1 6 59 31 0 52
+
+ ja ko ku ky lg lt lv mk mn ms mt nb ne nl nn no
+ +-------------------------------------------------+
+ GNUnet | |
+ a2ps | () [] [] () |
+ aegis | () |
+ ant-phone | [] |
+ anubis | [] [] [] |
+ ap-utils | [] |
+ aspell | [] [] |
+ bash | [] |
+ batchelor | [] [] |
+ bfd | |
+ bibshelf | [] |
+ binutils | |
+ bison | [] [] [] |
+ bison-runtime | [] [] [] |
+ bluez-pin | [] [] [] |
+ cflow | |
+ clisp | [] |
+ console-tools | |
+ coreutils | [] |
+ cpio | |
+ cpplib | [] |
+ cryptonit | [] |
+ darkstat | [] [] |
+ dialog | [] [] |
+ diffutils | [] [] [] |
+ doodle | |
+ e2fsprogs | [] |
+ enscript | [] |
+ error | [] |
+ fetchmail | [] [] |
+ fileutils | [] [] |
+ findutils | [] |
+ flex | [] [] |
+ fslint | [] [] |
+ gas | |
+ gawk | [] [] |
+ gbiff | [] |
+ gcal | |
+ gcc | |
+ gettext-examples | [] [] |
+ gettext-runtime | [] [] [] |
+ gettext-tools | [] [] |
+ gimp-print | [] [] |
+ gip | [] [] |
+ gliv | [] |
+ glunarclock | [] [] |
+ gmult | [] [] |
+ gnubiff | |
+ gnucash | () () |
+ gnucash-glossary | [] |
+ gnuedu | |
+ gnulib | [] [] [] [] |
+ gnunet-gtk | |
+ gnutls | |
+ gpe-aerial | [] |
+ gpe-beam | [] |
+ gpe-calendar | [] |
+ gpe-clock | [] [] [] |
+ gpe-conf | [] [] |
+ gpe-contacts | [] |
+ gpe-edit | [] [] [] |
+ gpe-filemanager | [] [] |
+ gpe-go | [] [] [] |
+ gpe-login | [] [] [] |
+ gpe-ownerinfo | [] [] |
+ gpe-package | [] [] |
+ gpe-sketchbook | [] [] |
+ gpe-su | [] [] [] |
+ gpe-taskmanager | [] [] [] [] |
+ gpe-timesheet | [] |
+ gpe-today | [] [] |
+ gpe-todo | [] |
+ gphoto2 | [] [] |
+ gprof | |
+ gpsdrive | () () () |
+ gramadoir | () |
+ grep | [] [] [] [] |
+ gretl | |
+ gsasl | [] |
+ gss | |
+ gst-plugins | [] |
+ gst-plugins-base | |
+ gst-plugins-good | [] |
+ gstreamer | [] |
+ gtick | |
+ gtkam | [] |
+ gtkorphan | [] |
+ gtkspell | [] [] |
+ gutenprint | |
+ hello | [] [] [] [] [] [] |
+ id-utils | [] |
+ impost | |
+ indent | [] [] |
+ iso_3166 | [] |
+ iso_3166_2 | [] |
+ iso_4217 | [] [] [] |
+ iso_639 | [] [] |
+ jpilot | () () () |
+ jtag | |
+ jwhois | [] |
+ kbd | [] |
+ keytouch | [] |
+ keytouch-editor | |
+ keytouch-keyboa... | |
+ latrine | [] |
+ ld | |
+ leafpad | [] [] |
+ libc | [] [] [] [] [] |
+ libexif | |
+ libextractor | |
+ libgpewidget | [] |
+ libgpg-error | |
+ libgphoto2 | [] |
+ libgphoto2_port | [] |
+ libgsasl | [] |
+ libiconv | |
+ libidn | [] [] |
+ lifelines | [] |
+ lilypond | |
+ lingoteach | [] |
+ lynx | [] [] |
+ m4 | [] [] |
+ mailutils | |
+ make | [] [] [] |
+ man-db | () |
+ minicom | [] |
+ mysecretdiary | [] |
+ nano | [] [] [] |
+ nano_1_0 | [] [] [] |
+ opcodes | [] |
+ parted | [] [] |
+ pilot-qof | |
+ psmisc | [] [] [] |
+ pwdutils | |
+ python | |
+ qof | |
+ radius | |
+ recode | [] |
+ rpm | [] [] |
+ screem | [] |
+ scrollkeeper | [] [] [] [] |
+ sed | [] [] |
+ sh-utils | [] [] |
+ shared-mime-info | [] [] [] [] [] |
+ sharutils | [] [] |
+ shishi | |
+ silky | [] |
+ skencil | |
+ sketch | |
+ solfege | |
+ soundtracker | |
+ sp | () |
+ stardict | [] [] |
+ system-tools-ba... | [] [] [] [] |
+ tar | [] [] [] |
+ texinfo | [] [] [] |
+ textutils | [] [] [] |
+ tin | |
+ tp-robot | [] |
+ tuxpaint | [] |
+ unicode-han-tra... | |
+ unicode-transla... | |
+ util-linux | [] [] |
+ vorbis-tools | [] |
+ wastesedge | [] |
+ wdiff | [] [] |
+ wget | [] [] |
+ xchat | [] [] [] [] |
+ xkeyboard-config | [] |
+ xpad | [] [] [] |
+ +-------------------------------------------------+
+ ja ko ku ky lg lt lv mk mn ms mt nb ne nl nn no
+ 52 24 2 2 1 3 0 2 3 21 0 15 1 97 5 1
+
+ nso or pa pl pt pt_BR rm ro ru rw sk sl sq sr sv ta
+ +------------------------------------------------------+
+ GNUnet | |
+ a2ps | () [] [] [] [] [] [] |
+ aegis | () () |
+ ant-phone | [] [] |
+ anubis | [] [] [] |
+ ap-utils | () |
+ aspell | [] [] |
+ bash | [] [] [] |
+ batchelor | [] [] |
+ bfd | |
+ bibshelf | [] |
+ binutils | [] [] |
+ bison | [] [] [] [] [] |
+ bison-runtime | [] [] [] [] |
+ bluez-pin | [] [] [] [] [] [] [] [] [] |
+ cflow | [] |
+ clisp | [] |
+ console-tools | [] |
+ coreutils | [] [] [] [] |
+ cpio | [] [] [] |
+ cpplib | [] |
+ cryptonit | [] [] |
+ darkstat | [] [] [] [] [] [] |
+ dialog | [] [] [] [] [] [] [] [] [] |
+ diffutils | [] [] [] [] [] [] |
+ doodle | [] [] |
+ e2fsprogs | [] [] |
+ enscript | [] [] [] [] [] |
+ error | [] [] [] [] |
+ fetchmail | [] [] [] |
+ fileutils | [] [] [] [] [] |
+ findutils | [] [] [] [] [] [] |
+ flex | [] [] [] [] [] |
+ fslint | [] [] [] [] |
+ gas | |
+ gawk | [] [] [] [] |
+ gbiff | [] |
+ gcal | [] |
+ gcc | [] |
+ gettext-examples | [] [] [] [] [] [] [] [] |
+ gettext-runtime | [] [] [] [] [] [] [] [] |
+ gettext-tools | [] [] [] [] [] [] [] |
+ gimp-print | [] [] |
+ gip | [] [] [] [] |
+ gliv | [] [] [] [] |
+ glunarclock | [] [] [] [] [] [] |
+ gmult | [] [] [] [] |
+ gnubiff | () |
+ gnucash | () [] |
+ gnucash-glossary | [] [] [] |
+ gnuedu | |
+ gnulib | [] [] [] [] [] |
+ gnunet-gtk | [] |
+ gnutls | [] [] |
+ gpe-aerial | [] [] [] [] [] [] [] |
+ gpe-beam | [] [] [] [] [] [] [] |
+ gpe-calendar | [] |
+ gpe-clock | [] [] [] [] [] [] [] [] |
+ gpe-conf | [] [] [] [] [] [] [] |
+ gpe-contacts | [] [] [] [] [] |
+ gpe-edit | [] [] [] [] [] [] [] [] |
+ gpe-filemanager | [] [] |
+ gpe-go | [] [] [] [] [] [] |
+ gpe-login | [] [] [] [] [] [] [] [] |
+ gpe-ownerinfo | [] [] [] [] [] [] [] [] |
+ gpe-package | [] [] |
+ gpe-sketchbook | [] [] [] [] [] [] [] [] |
+ gpe-su | [] [] [] [] [] [] [] [] |
+ gpe-taskmanager | [] [] [] [] [] [] [] [] |
+ gpe-timesheet | [] [] [] [] [] [] [] [] |
+ gpe-today | [] [] [] [] [] [] [] [] |
+ gpe-todo | [] [] [] [] |
+ gphoto2 | [] [] [] [] [] |
+ gprof | [] [] [] |
+ gpsdrive | [] [] [] |
+ gramadoir | [] [] |
+ grep | [] [] [] [] [] [] [] [] |
+ gretl | [] |
+ gsasl | [] [] [] |
+ gss | [] [] [] |
+ gst-plugins | [] [] [] [] |
+ gst-plugins-base | [] |
+ gst-plugins-good | [] [] [] [] |
+ gstreamer | [] [] [] |
+ gtick | [] |
+ gtkam | [] [] [] [] |
+ gtkorphan | [] |
+ gtkspell | [] [] [] [] [] [] [] [] |
+ gutenprint | [] |
+ hello | [] [] [] [] [] [] [] [] |
+ id-utils | [] [] [] [] |
+ impost | [] |
+ indent | [] [] [] [] [] [] |
+ iso_3166 | [] [] [] [] [] [] |
+ iso_3166_2 | |
+ iso_4217 | [] [] [] [] |
+ iso_639 | [] [] [] [] |
+ jpilot | |
+ jtag | [] |
+ jwhois | [] [] [] [] |
+ kbd | [] [] [] |
+ keytouch | [] |
+ keytouch-editor | [] |
+ keytouch-keyboa... | [] |
+ latrine | [] [] |
+ ld | [] |
+ leafpad | [] [] [] [] [] [] |
+ libc | [] [] [] [] [] |
+ libexif | [] |
+ libextractor | [] [] |
+ libgpewidget | [] [] [] [] [] [] [] |
+ libgpg-error | [] [] |
+ libgphoto2 | [] |
+ libgphoto2_port | [] [] [] |
+ libgsasl | [] [] [] [] |
+ libiconv | [] [] |
+ libidn | [] [] () |
+ lifelines | [] [] |
+ lilypond | |
+ lingoteach | [] |
+ lynx | [] [] [] |
+ m4 | [] [] [] [] [] |
+ mailutils | [] [] [] [] |
+ make | [] [] [] [] |
+ man-db | [] [] |
+ minicom | [] [] [] [] [] |
+ mysecretdiary | [] [] [] [] |
+ nano | [] [] [] |
+ nano_1_0 | [] [] [] [] |
+ opcodes | [] [] |
+ parted | [] |
+ pilot-qof | [] |
+ psmisc | [] [] |
+ pwdutils | [] [] |
+ python | |
+ qof | [] [] |
+ radius | [] [] |
+ recode | [] [] [] [] [] [] [] |
+ rpm | [] [] [] [] |
+ screem | |
+ scrollkeeper | [] [] [] [] [] [] [] |
+ sed | [] [] [] [] [] [] [] [] [] |
+ sh-utils | [] [] [] |
+ shared-mime-info | [] [] [] [] [] |
+ sharutils | [] [] [] [] |
+ shishi | [] |
+ silky | [] |
+ skencil | [] [] [] |
+ sketch | [] [] [] |
+ solfege | [] |
+ soundtracker | [] [] |
+ sp | |
+ stardict | [] [] [] |
+ system-tools-ba... | [] [] [] [] [] [] [] [] [] |
+ tar | [] [] [] [] [] |
+ texinfo | [] [] [] [] |
+ textutils | [] [] [] |
+ tin | () |
+ tp-robot | [] |
+ tuxpaint | [] [] [] [] [] |
+ unicode-han-tra... | |
+ unicode-transla... | |
+ util-linux | [] [] [] [] |
+ vorbis-tools | [] [] |
+ wastesedge | |
+ wdiff | [] [] [] [] [] [] |
+ wget | [] [] [] [] |
+ xchat | [] [] [] [] [] [] [] |
+ xkeyboard-config | [] [] |
+ xpad | [] [] [] |
+ +------------------------------------------------------+
+ nso or pa pl pt pt_BR rm ro ru rw sk sl sq sr sv ta
+ 0 2 3 58 30 54 5 73 72 4 40 46 11 50 128 2
+
+ tg th tk tr uk ven vi wa xh zh_CN zh_HK zh_TW zu
+ +---------------------------------------------------+
+ GNUnet | [] | 2
+ a2ps | [] [] [] | 19
+ aegis | | 0
+ ant-phone | [] [] | 6
+ anubis | [] [] [] | 11
+ ap-utils | () [] | 4
+ aspell | [] [] [] | 15
+ bash | [] | 11
+ batchelor | [] [] | 9
+ bfd | | 1
+ bibshelf | [] | 7
+ binutils | [] [] [] | 9
+ bison | [] [] [] | 19
+ bison-runtime | [] [] [] | 15
+ bluez-pin | [] [] [] [] [] [] | 28
+ cflow | [] [] | 5
+ clisp | | 6
+ console-tools | [] [] | 5
+ coreutils | [] [] | 16
+ cpio | [] [] [] | 9
+ cpplib | [] [] [] [] | 11
+ cryptonit | | 5
+ darkstat | [] () () | 15
+ dialog | [] [] [] [] [] | 30
+ diffutils | [] [] [] [] | 28
+ doodle | [] | 6
+ e2fsprogs | [] [] | 10
+ enscript | [] [] [] | 16
+ error | [] [] [] [] | 18
+ fetchmail | [] [] | 12
+ fileutils | [] [] [] | 18
+ findutils | [] [] [] | 17
+ flex | [] [] | 15
+ fslint | [] | 9
+ gas | [] | 3
+ gawk | [] [] | 15
+ gbiff | [] | 5
+ gcal | [] | 5
+ gcc | [] [] [] | 6
+ gettext-examples | [] [] [] [] [] [] | 27
+ gettext-runtime | [] [] [] [] [] [] | 28
+ gettext-tools | [] [] [] [] [] | 19
+ gimp-print | [] [] | 12
+ gip | [] [] | 12
+ gliv | [] [] | 8
+ glunarclock | [] [] [] | 15
+ gmult | [] [] [] [] | 15
+ gnubiff | [] | 1
+ gnucash | () | 2
+ gnucash-glossary | [] [] | 9
+ gnuedu | [] | 2
+ gnulib | [] [] [] [] [] | 28
+ gnunet-gtk | | 1
+ gnutls | | 2
+ gpe-aerial | [] [] | 14
+ gpe-beam | [] [] | 14
+ gpe-calendar | [] | 3
+ gpe-clock | [] [] [] [] | 21
+ gpe-conf | [] [] | 14
+ gpe-contacts | [] [] | 10
+ gpe-edit | [] [] [] [] | 20
+ gpe-filemanager | [] | 6
+ gpe-go | [] [] | 15
+ gpe-login | [] [] [] [] [] | 21
+ gpe-ownerinfo | [] [] [] [] | 21
+ gpe-package | [] | 6
+ gpe-sketchbook | [] [] | 16
+ gpe-su | [] [] [] | 20
+ gpe-taskmanager | [] [] [] | 20
+ gpe-timesheet | [] [] [] [] | 18
+ gpe-today | [] [] [] [] [] | 21
+ gpe-todo | [] | 7
+ gphoto2 | [] [] [] [] | 20
+ gprof | [] [] | 11
+ gpsdrive | | 4
+ gramadoir | [] | 7
+ grep | [] [] [] [] | 34
+ gretl | | 4
+ gsasl | [] [] | 8
+ gss | [] | 5
+ gst-plugins | [] [] [] | 15
+ gst-plugins-base | [] [] [] | 9
+ gst-plugins-good | [] [] [] [] [] | 20
+ gstreamer | [] [] [] | 17
+ gtick | [] | 3
+ gtkam | [] | 13
+ gtkorphan | [] | 7
+ gtkspell | [] [] [] [] [] [] | 26
+ gutenprint | | 3
+ hello | [] [] [] [] [] | 37
+ id-utils | [] [] | 14
+ impost | [] | 4
+ indent | [] [] [] [] | 25
+ iso_3166 | [] [] [] [] | 16
+ iso_3166_2 | | 2
+ iso_4217 | [] [] | 14
+ iso_639 | [] | 14
+ jpilot | [] [] [] [] | 7
+ jtag | [] | 3
+ jwhois | [] [] [] | 13
+ kbd | [] [] | 12
+ keytouch | [] | 4
+ keytouch-editor | | 2
+ keytouch-keyboa... | [] | 3
+ latrine | [] [] | 8
+ ld | [] [] [] [] | 8
+ leafpad | [] [] [] [] | 23
+ libc | [] [] [] | 23
+ libexif | [] | 4
+ libextractor | [] | 5
+ libgpewidget | [] [] [] | 19
+ libgpg-error | [] | 4
+ libgphoto2 | [] | 8
+ libgphoto2_port | [] [] [] | 11
+ libgsasl | [] | 8
+ libiconv | [] | 7
+ libidn | [] [] | 10
+ lifelines | | 4
+ lilypond | | 2
+ lingoteach | [] | 6
+ lynx | [] [] [] | 15
+ m4 | [] [] [] | 18
+ mailutils | [] | 8
+ make | [] [] [] | 20
+ man-db | [] | 6
+ minicom | [] | 14
+ mysecretdiary | [] [] | 12
+ nano | [] [] | 17
+ nano_1_0 | [] [] [] | 18
+ opcodes | [] [] | 10
+ parted | [] [] [] | 10
+ pilot-qof | [] | 3
+ psmisc | [] | 10
+ pwdutils | [] | 3
+ python | | 0
+ qof | [] | 4
+ radius | [] | 6
+ recode | [] [] [] | 25
+ rpm | [] [] [] [] | 14
+ screem | [] | 2
+ scrollkeeper | [] [] [] [] | 26
+ sed | [] [] [] | 22
+ sh-utils | [] | 15
+ shared-mime-info | [] [] [] [] | 24
+ sharutils | [] [] [] | 23
+ shishi | | 1
+ silky | [] | 4
+ skencil | [] | 7
+ sketch | | 6
+ solfege | | 2
+ soundtracker | [] [] | 9
+ sp | [] | 3
+ stardict | [] [] [] [] | 11
+ system-tools-ba... | [] [] [] [] [] [] [] | 37
+ tar | [] [] [] [] | 20
+ texinfo | [] [] [] | 15
+ textutils | [] [] [] | 17
+ tin | | 1
+ tp-robot | [] [] [] | 10
+ tuxpaint | [] [] [] | 16
+ unicode-han-tra... | | 0
+ unicode-transla... | | 2
+ util-linux | [] [] [] | 20
+ vorbis-tools | [] [] | 11
+ wastesedge | | 1
+ wdiff | [] [] | 22
+ wget | [] [] [] | 19
+ xchat | [] [] [] [] | 29
+ xkeyboard-config | [] [] [] [] | 11
+ xpad | [] [] [] | 14
+ +---------------------------------------------------+
+ 77 teams tg th tk tr uk ven vi wa xh zh_CN zh_HK zh_TW zu
+ 170 domains 0 1 1 77 39 0 136 10 1 48 5 54 0 2028
+
+ Some counters in the preceding matrix are higher than the number of
+visible blocks let us expect. This is because a few extra PO files are
+used for implementing regional variants of languages, or language
+dialects.
+
+ For a PO file in the matrix above to be effective, the package to
+which it applies should also have been internationalized and
+distributed as such by its maintainer. There might be an observable
+lag between the mere existence a PO file and its wide availability in a
+distribution.
+
+ If October 2006 seems to be old, you may fetch a more recent copy of
+this `ABOUT-NLS' file on most GNU archive sites. The most up-to-date
+matrix with full percentage details can be found at
+`http://www.iro.umontreal.ca/contrib/po/HTML/matrix.html'.
+
+1.6 Using `gettext' in new packages
+===================================
+
+If you are writing a freely available program and want to
+internationalize it you are welcome to use GNU `gettext' in your
+package. Of course you have to respect the GNU Library General Public
+License which covers the use of the GNU `gettext' library. This means
+in particular that even non-free programs can use `libintl' as a shared
+library, whereas only free software can use `libintl' as a static
+library or use modified versions of `libintl'.
+
+ Once the sources are changed appropriately and the setup can handle
+the use of `gettext' the only thing missing are the translations. The
+Free Translation Project is also available for packages which are not
+developed inside the GNU project. Therefore the information given above
+applies also for every other Free Software Project. Contact
+`translation@xxxxxxxxxxxxxxxx' to make the `.pot' files available to
+the translation teams.
+
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2008-01-09 20:46:27 UTC (rev 1118)
+++ trunk/ChangeLog 2008-01-10 06:39:28 UTC (rev 1119)
@@ -1,3 +1,10 @@
+2008-01-09 gettextize <bug-gnu-gettext@xxxxxxx>
+
+ * Makefile.am (SUBDIRS): Add po.
+ (ACLOCAL_AMFLAGS): New variable.
+ (EXTRA_DIST): Add config.rpath, m4/ChangeLog.
+ * configure.ac (AC_CONFIG_FILES): Add po/Makefile.in.
+
VHFFS 4.0.0
Sylvain Rochet
- A lot of bugs fixed
Modified: trunk/Makefile.am
===================================================================
--- trunk/Makefile.am 2008-01-09 20:46:27 UTC (rev 1118)
+++ trunk/Makefile.am 2008-01-10 06:39:28 UTC (rev 1119)
@@ -10,8 +10,7 @@
vhffs-panel vhffs-public vhffs-robots vhffs-shells vhffs-tests vhffs-themes vhffs-tools $(SUB_VHFFS_FS)
-EXTRA_DIST = vhffs-forum vhffs-irc vhffs-packages \
- vhffs-rfc vhffs-tests
+EXTRA_DIST = config.rpath m4/ChangeLog vhffs-forum vhffs-irc vhffs-packages vhffs-tests
help:
@echo "Help for VHFFS makefile"
@@ -35,3 +34,5 @@
dist-hook:
rm -rf `find $(distdir)/ -name '.svn'`
+
+ACLOCAL_AMFLAGS = -I m4
Added: trunk/config.rpath
===================================================================
--- trunk/config.rpath (rev 0)
+++ trunk/config.rpath 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,614 @@
+#! /bin/sh
+# Output a system dependent set of variables, describing how to set the
+# run time search path of shared libraries in an executable.
+#
+# Copyright 1996-2006 Free Software Foundation, Inc.
+# Taken from GNU libtool, 2001
+# Originally by Gordon Matzigkeit <gord@xxxxxxxxxxxxxx>, 1996
+#
+# This file is free software; the Free Software Foundation gives
+# unlimited permission to copy and/or distribute it, with or without
+# modifications, as long as this notice is preserved.
+#
+# The first argument passed to this file is the canonical host specification,
+# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
+# or
+# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
+# The environment variables CC, GCC, LDFLAGS, LD, with_gnu_ld
+# should be set by the caller.
+#
+# The set of defined variables is at the end of this script.
+
+# Known limitations:
+# - On IRIX 6.5 with CC="cc", the run time search patch must not be longer
+# than 256 bytes, otherwise the compiler driver will dump core. The only
+# known workaround is to choose shorter directory names for the build
+# directory and/or the installation directory.
+
+# All known linkers require a `.a' archive for static linking (except MSVC,
+# which needs '.lib').
+libext=a
+shrext=.so
+
+host="$1"
+host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
+host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
+host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
+
+# Code taken from libtool.m4's _LT_CC_BASENAME.
+
+for cc_temp in $CC""; do
+ case $cc_temp in
+ compile | *[\\/]compile | ccache | *[\\/]ccache ) ;;
+ distcc | *[\\/]distcc | purify | *[\\/]purify ) ;;
+ \-*) ;;
+ *) break;;
+ esac
+done
+cc_basename=`echo "$cc_temp" | sed -e 's%^.*/%%'`
+
+# Code taken from libtool.m4's AC_LIBTOOL_PROG_COMPILER_PIC.
+
+wl=
+if test "$GCC" = yes; then
+ wl='-Wl,'
+else
+ case "$host_os" in
+ aix*)
+ wl='-Wl,'
+ ;;
+ darwin*)
+ case $cc_basename in
+ xlc*)
+ wl='-Wl,'
+ ;;
+ esac
+ ;;
+ mingw* | pw32* | os2*)
+ ;;
+ hpux9* | hpux10* | hpux11*)
+ wl='-Wl,'
+ ;;
+ irix5* | irix6* | nonstopux*)
+ wl='-Wl,'
+ ;;
+ newsos6)
+ ;;
+ linux*)
+ case $cc_basename in
+ icc* | ecc*)
+ wl='-Wl,'
+ ;;
+ pgcc | pgf77 | pgf90)
+ wl='-Wl,'
+ ;;
+ ccc*)
+ wl='-Wl,'
+ ;;
+ como)
+ wl='-lopt='
+ ;;
+ *)
+ case `$CC -V 2>&1 | sed 5q` in
+ *Sun\ C*)
+ wl='-Wl,'
+ ;;
+ esac
+ ;;
+ esac
+ ;;
+ osf3* | osf4* | osf5*)
+ wl='-Wl,'
+ ;;
+ sco3.2v5*)
+ ;;
+ solaris*)
+ wl='-Wl,'
+ ;;
+ sunos4*)
+ wl='-Qoption ld '
+ ;;
+ sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
+ wl='-Wl,'
+ ;;
+ sysv4*MP*)
+ ;;
+ unicos*)
+ wl='-Wl,'
+ ;;
+ uts4*)
+ ;;
+ esac
+fi
+
+# Code taken from libtool.m4's AC_LIBTOOL_PROG_LD_SHLIBS.
+
+hardcode_libdir_flag_spec=
+hardcode_libdir_separator=
+hardcode_direct=no
+hardcode_minus_L=no
+
+case "$host_os" in
+ cygwin* | mingw* | pw32*)
+ # FIXME: the MSVC++ port hasn't been tested in a loooong time
+ # When not using gcc, we currently assume that we are using
+ # Microsoft Visual C++.
+ if test "$GCC" != yes; then
+ with_gnu_ld=no
+ fi
+ ;;
+ interix*)
+ # we just hope/assume this is gcc and not c89 (= MSVC++)
+ with_gnu_ld=yes
+ ;;
+ openbsd*)
+ with_gnu_ld=no
+ ;;
+esac
+
+ld_shlibs=yes
+if test "$with_gnu_ld" = yes; then
+ # Set some defaults for GNU ld with shared library support. These
+ # are reset later if shared libraries are not supported. Putting them
+ # here allows them to be overridden if necessary.
+ # Unlike libtool, we use -rpath here, not --rpath, since the documented
+ # option of GNU ld is called -rpath, not --rpath.
+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+ case "$host_os" in
+ aix3* | aix4* | aix5*)
+ # On AIX/PPC, the GNU linker is very broken
+ if test "$host_cpu" != ia64; then
+ ld_shlibs=no
+ fi
+ ;;
+ amigaos*)
+ hardcode_libdir_flag_spec='-L$libdir'
+ hardcode_minus_L=yes
+ # Samuel A. Falvo II <kc5tja@xxxxxxxxxxxxxxxxxxxxxxxx> reports
+ # that the semantics of dynamic libraries on AmigaOS, at least up
+ # to version 4, is to share data among multiple programs linked
+ # with the same dynamic library. Since this doesn't match the
+ # behavior of shared libraries on other platforms, we cannot use
+ # them.
+ ld_shlibs=no
+ ;;
+ beos*)
+ if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
+ :
+ else
+ ld_shlibs=no
+ fi
+ ;;
+ cygwin* | mingw* | pw32*)
+ # hardcode_libdir_flag_spec is actually meaningless, as there is
+ # no search path for DLLs.
+ hardcode_libdir_flag_spec='-L$libdir'
+ if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
+ :
+ else
+ ld_shlibs=no
+ fi
+ ;;
+ interix3*)
+ hardcode_direct=no
+ hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
+ ;;
+ linux*)
+ if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
+ :
+ else
+ ld_shlibs=no
+ fi
+ ;;
+ netbsd*)
+ ;;
+ solaris*)
+ if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then
+ ld_shlibs=no
+ elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
+ :
+ else
+ ld_shlibs=no
+ fi
+ ;;
+ sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
+ case `$LD -v 2>&1` in
+ *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*)
+ ld_shlibs=no
+ ;;
+ *)
+ if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
+ hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`'
+ else
+ ld_shlibs=no
+ fi
+ ;;
+ esac
+ ;;
+ sunos4*)
+ hardcode_direct=yes
+ ;;
+ *)
+ if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
+ :
+ else
+ ld_shlibs=no
+ fi
+ ;;
+ esac
+ if test "$ld_shlibs" = no; then
+ hardcode_libdir_flag_spec=
+ fi
+else
+ case "$host_os" in
+ aix3*)
+ # Note: this linker hardcodes the directories in LIBPATH if there
+ # are no directories specified by -L.
+ hardcode_minus_L=yes
+ if test "$GCC" = yes; then
+ # Neither direct hardcoding nor static linking is supported with a
+ # broken collect2.
+ hardcode_direct=unsupported
+ fi
+ ;;
+ aix4* | aix5*)
+ if test "$host_cpu" = ia64; then
+ # On IA64, the linker does run time linking by default, so we don't
+ # have to do anything special.
+ aix_use_runtimelinking=no
+ else
+ aix_use_runtimelinking=no
+ # Test if we are trying to use run time linking or normal
+ # AIX style linking. If -brtl is somewhere in LDFLAGS, we
+ # need to do runtime linking.
+ case $host_os in aix4.[23]|aix4.[23].*|aix5*)
+ for ld_flag in $LDFLAGS; do
+ if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
+ aix_use_runtimelinking=yes
+ break
+ fi
+ done
+ ;;
+ esac
+ fi
+ hardcode_direct=yes
+ hardcode_libdir_separator=':'
+ if test "$GCC" = yes; then
+ case $host_os in aix4.[012]|aix4.[012].*)
+ collect2name=`${CC} -print-prog-name=collect2`
+ if test -f "$collect2name" && \
+ strings "$collect2name" | grep resolve_lib_name >/dev/null
+ then
+ # We have reworked collect2
+ hardcode_direct=yes
+ else
+ # We have old collect2
+ hardcode_direct=unsupported
+ hardcode_minus_L=yes
+ hardcode_libdir_flag_spec='-L$libdir'
+ hardcode_libdir_separator=
+ fi
+ ;;
+ esac
+ fi
+ # Begin _LT_AC_SYS_LIBPATH_AIX.
+ echo 'int main () { return 0; }' > conftest.c
+ ${CC} ${LDFLAGS} conftest.c -o conftest
+ aix_libpath=`dump -H conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; }
+}'`
+ if test -z "$aix_libpath"; then
+ aix_libpath=`dump -HX64 conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; }
+}'`
+ fi
+ if test -z "$aix_libpath"; then
+ aix_libpath="/usr/lib:/lib"
+ fi
+ rm -f conftest.c conftest
+ # End _LT_AC_SYS_LIBPATH_AIX.
+ if test "$aix_use_runtimelinking" = yes; then
+ hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
+ else
+ if test "$host_cpu" = ia64; then
+ hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib'
+ else
+ hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
+ fi
+ fi
+ ;;
+ amigaos*)
+ hardcode_libdir_flag_spec='-L$libdir'
+ hardcode_minus_L=yes
+ # see comment about different semantics on the GNU ld section
+ ld_shlibs=no
+ ;;
+ bsdi[45]*)
+ ;;
+ cygwin* | mingw* | pw32*)
+ # When not using gcc, we currently assume that we are using
+ # Microsoft Visual C++.
+ # hardcode_libdir_flag_spec is actually meaningless, as there is
+ # no search path for DLLs.
+ hardcode_libdir_flag_spec=' '
+ libext=lib
+ ;;
+ darwin* | rhapsody*)
+ hardcode_direct=no
+ if test "$GCC" = yes ; then
+ :
+ else
+ case $cc_basename in
+ xlc*)
+ ;;
+ *)
+ ld_shlibs=no
+ ;;
+ esac
+ fi
+ ;;
+ dgux*)
+ hardcode_libdir_flag_spec='-L$libdir'
+ ;;
+ freebsd1*)
+ ld_shlibs=no
+ ;;
+ freebsd2.2*)
+ hardcode_libdir_flag_spec='-R$libdir'
+ hardcode_direct=yes
+ ;;
+ freebsd2*)
+ hardcode_direct=yes
+ hardcode_minus_L=yes
+ ;;
+ freebsd* | kfreebsd*-gnu | dragonfly*)
+ hardcode_libdir_flag_spec='-R$libdir'
+ hardcode_direct=yes
+ ;;
+ hpux9*)
+ hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
+ hardcode_libdir_separator=:
+ hardcode_direct=yes
+ # hardcode_minus_L: Not really in the search PATH,
+ # but as the default location of the library.
+ hardcode_minus_L=yes
+ ;;
+ hpux10*)
+ if test "$with_gnu_ld" = no; then
+ hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
+ hardcode_libdir_separator=:
+ hardcode_direct=yes
+ # hardcode_minus_L: Not really in the search PATH,
+ # but as the default location of the library.
+ hardcode_minus_L=yes
+ fi
+ ;;
+ hpux11*)
+ if test "$with_gnu_ld" = no; then
+ hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
+ hardcode_libdir_separator=:
+ case $host_cpu in
+ hppa*64*|ia64*)
+ hardcode_direct=no
+ ;;
+ *)
+ hardcode_direct=yes
+ # hardcode_minus_L: Not really in the search PATH,
+ # but as the default location of the library.
+ hardcode_minus_L=yes
+ ;;
+ esac
+ fi
+ ;;
+ irix5* | irix6* | nonstopux*)
+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+ hardcode_libdir_separator=:
+ ;;
+ netbsd*)
+ hardcode_libdir_flag_spec='-R$libdir'
+ hardcode_direct=yes
+ ;;
+ newsos6)
+ hardcode_direct=yes
+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+ hardcode_libdir_separator=:
+ ;;
+ openbsd*)
+ hardcode_direct=yes
+ if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
+ hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
+ else
+ case "$host_os" in
+ openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*)
+ hardcode_libdir_flag_spec='-R$libdir'
+ ;;
+ *)
+ hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
+ ;;
+ esac
+ fi
+ ;;
+ os2*)
+ hardcode_libdir_flag_spec='-L$libdir'
+ hardcode_minus_L=yes
+ ;;
+ osf3*)
+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+ hardcode_libdir_separator=:
+ ;;
+ osf4* | osf5*)
+ if test "$GCC" = yes; then
+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+ else
+ # Both cc and cxx compiler support -rpath directly
+ hardcode_libdir_flag_spec='-rpath $libdir'
+ fi
+ hardcode_libdir_separator=:
+ ;;
+ solaris*)
+ hardcode_libdir_flag_spec='-R$libdir'
+ ;;
+ sunos4*)
+ hardcode_libdir_flag_spec='-L$libdir'
+ hardcode_direct=yes
+ hardcode_minus_L=yes
+ ;;
+ sysv4)
+ case $host_vendor in
+ sni)
+ hardcode_direct=yes # is this really true???
+ ;;
+ siemens)
+ hardcode_direct=no
+ ;;
+ motorola)
+ hardcode_direct=no #Motorola manual says yes, but my tests say they lie
+ ;;
+ esac
+ ;;
+ sysv4.3*)
+ ;;
+ sysv4*MP*)
+ if test -d /usr/nec; then
+ ld_shlibs=yes
+ fi
+ ;;
+ sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7*)
+ ;;
+ sysv5* | sco3.2v5* | sco5v6*)
+ hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`'
+ hardcode_libdir_separator=':'
+ ;;
+ uts4*)
+ hardcode_libdir_flag_spec='-L$libdir'
+ ;;
+ *)
+ ld_shlibs=no
+ ;;
+ esac
+fi
+
+# Check dynamic linker characteristics
+# Code taken from libtool.m4's AC_LIBTOOL_SYS_DYNAMIC_LINKER.
+libname_spec='lib$name'
+case "$host_os" in
+ aix3*)
+ ;;
+ aix4* | aix5*)
+ ;;
+ amigaos*)
+ ;;
+ beos*)
+ ;;
+ bsdi[45]*)
+ ;;
+ cygwin* | mingw* | pw32*)
+ shrext=.dll
+ ;;
+ darwin* | rhapsody*)
+ shrext=.dylib
+ ;;
+ dgux*)
+ ;;
+ freebsd1*)
+ ;;
+ kfreebsd*-gnu)
+ ;;
+ freebsd* | dragonfly*)
+ ;;
+ gnu*)
+ ;;
+ hpux9* | hpux10* | hpux11*)
+ case $host_cpu in
+ ia64*)
+ shrext=.so
+ ;;
+ hppa*64*)
+ shrext=.sl
+ ;;
+ *)
+ shrext=.sl
+ ;;
+ esac
+ ;;
+ interix3*)
+ ;;
+ irix5* | irix6* | nonstopux*)
+ case "$host_os" in
+ irix5* | nonstopux*)
+ libsuff= shlibsuff=
+ ;;
+ *)
+ case $LD in
+ *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= ;;
+ *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;;
+ *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;;
+ *) libsuff= shlibsuff= ;;
+ esac
+ ;;
+ esac
+ ;;
+ linux*oldld* | linux*aout* | linux*coff*)
+ ;;
+ linux*)
+ ;;
+ knetbsd*-gnu)
+ ;;
+ netbsd*)
+ ;;
+ newsos6)
+ ;;
+ nto-qnx*)
+ ;;
+ openbsd*)
+ ;;
+ os2*)
+ libname_spec='$name'
+ shrext=.dll
+ ;;
+ osf3* | osf4* | osf5*)
+ ;;
+ solaris*)
+ ;;
+ sunos4*)
+ ;;
+ sysv4 | sysv4.3*)
+ ;;
+ sysv4*MP*)
+ ;;
+ sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
+ ;;
+ uts4*)
+ ;;
+esac
+
+sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
+escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"`
+shlibext=`echo "$shrext" | sed -e 's,^\.,,'`
+escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
+
+LC_ALL=C sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <<EOF
+
+# How to pass a linker flag through the compiler.
+wl="$escaped_wl"
+
+# Static library suffix (normally "a").
+libext="$libext"
+
+# Shared library suffix (normally "so").
+shlibext="$shlibext"
+
+# Flag to hardcode \$libdir into a binary during linking.
+# This must work even if \$libdir does not exist.
+hardcode_libdir_flag_spec="$escaped_hardcode_libdir_flag_spec"
+
+# Whether we need a single -rpath flag with a separated argument.
+hardcode_libdir_separator="$hardcode_libdir_separator"
+
+# Set to yes if using DIR/libNAME.so during linking hardcodes DIR into the
+# resulting binary.
+hardcode_direct="$hardcode_direct"
+
+# Set to yes if using the -LDIR flag during linking hardcodes DIR into the
+# resulting binary.
+hardcode_minus_L="$hardcode_minus_L"
+
+EOF
Property changes on: trunk/config.rpath
___________________________________________________________________
Name: svn:executable
+ *
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2008-01-09 20:46:27 UTC (rev 1118)
+++ trunk/configure.ac 2008-01-10 06:39:28 UTC (rev 1119)
@@ -128,15 +128,6 @@
)
AC_SUBST(LEDIR)
-dnl l10n
-AC_ARG_WITH(intl-path,
- AC_HELP_STRING([--with-intl-path=path],
- [Complete path for localization files (/usr/share/vhffs/intl)]),
- INTLDIR=$withval,
- INTLDIR=/usr/share/vhffs/intl
-)
-AC_SUBST(INTLDIR)
-
dnl documentation
AC_ARG_WITH(doc-path,
AC_HELP_STRING([--with-doc-path=path],
@@ -279,6 +270,7 @@
AC_FUNC_FORK
AC_CHECK_FUNCS([gettimeofday])
+AM_GNU_GETTEXT([external])
# -- Files to generate
@@ -287,7 +279,7 @@
AC_CONFIG_SUBDIRS([vhffs-fs])
fi
-AC_CONFIG_FILES([
+AC_CONFIG_FILES([ vhffs-intl/Makefile.in
vhffs-test-dependencies],
[chmod ug+x $ac_file]
)
@@ -306,8 +298,6 @@
vhffs-backend/src/Makefile
vhffs-compat/Makefile
vhffs-doc/Makefile
- vhffs-intl/Makefile
- vhffs-intl/result/Makefile
vhffs-jabber/Makefile
vhffs-listengine/Makefile
vhffs-listengine/src/Makefile
Added: trunk/m4/ChangeLog
===================================================================
--- trunk/m4/ChangeLog (rev 0)
+++ trunk/m4/ChangeLog 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,11 @@
+2008-01-09 gettextize <bug-gnu-gettext@xxxxxxx>
+
+ * gettext.m4: New file, from gettext-0.16.1.
+ * iconv.m4: New file, from gettext-0.16.1.
+ * lib-ld.m4: New file, from gettext-0.16.1.
+ * lib-link.m4: New file, from gettext-0.16.1.
+ * lib-prefix.m4: New file, from gettext-0.16.1.
+ * nls.m4: New file, from gettext-0.16.1.
+ * po.m4: New file, from gettext-0.16.1.
+ * progtest.m4: New file, from gettext-0.16.1.
+
Added: trunk/m4/gettext.m4
===================================================================
--- trunk/m4/gettext.m4 (rev 0)
+++ trunk/m4/gettext.m4 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,419 @@
+# gettext.m4 serial 59 (gettext-0.16.1)
+dnl Copyright (C) 1995-2006 Free Software Foundation, Inc.
+dnl This file is free software; the Free Software Foundation
+dnl gives unlimited permission to copy and/or distribute it,
+dnl with or without modifications, as long as this notice is preserved.
+dnl
+dnl This file can can be used in projects which are not available under
+dnl the GNU General Public License or the GNU Library General Public
+dnl License but which still want to provide support for the GNU gettext
+dnl functionality.
+dnl Please note that the actual code of the GNU gettext library is covered
+dnl by the GNU Library General Public License, and the rest of the GNU
+dnl gettext package package is covered by the GNU General Public License.
+dnl They are *not* in the public domain.
+
+dnl Authors:
+dnl Ulrich Drepper <drepper@xxxxxxxxxx>, 1995-2000.
+dnl Bruno Haible <haible@xxxxxxxxxxxxxx>, 2000-2006.
+
+dnl Macro to add for using GNU gettext.
+
+dnl Usage: AM_GNU_GETTEXT([INTLSYMBOL], [NEEDSYMBOL], [INTLDIR]).
+dnl INTLSYMBOL can be one of 'external', 'no-libtool', 'use-libtool'. The
+dnl default (if it is not specified or empty) is 'no-libtool'.
+dnl INTLSYMBOL should be 'external' for packages with no intl directory,
+dnl and 'no-libtool' or 'use-libtool' for packages with an intl directory.
+dnl If INTLSYMBOL is 'use-libtool', then a libtool library
+dnl $(top_builddir)/intl/libintl.la will be created (shared and/or static,
+dnl depending on --{enable,disable}-{shared,static} and on the presence of
+dnl AM-DISABLE-SHARED). If INTLSYMBOL is 'no-libtool', a static library
+dnl $(top_builddir)/intl/libintl.a will be created.
+dnl If NEEDSYMBOL is specified and is 'need-ngettext', then GNU gettext
+dnl implementations (in libc or libintl) without the ngettext() function
+dnl will be ignored. If NEEDSYMBOL is specified and is
+dnl 'need-formatstring-macros', then GNU gettext implementations that don't
+dnl support the ISO C 99 <inttypes.h> formatstring macros will be ignored.
+dnl INTLDIR is used to find the intl libraries. If empty,
+dnl the value `$(top_builddir)/intl/' is used.
+dnl
+dnl The result of the configuration is one of three cases:
+dnl 1) GNU gettext, as included in the intl subdirectory, will be compiled
+dnl and used.
+dnl Catalog format: GNU --> install in $(datadir)
+dnl Catalog extension: .mo after installation, .gmo in source tree
+dnl 2) GNU gettext has been found in the system's C library.
+dnl Catalog format: GNU --> install in $(datadir)
+dnl Catalog extension: .mo after installation, .gmo in source tree
+dnl 3) No internationalization, always use English msgid.
+dnl Catalog format: none
+dnl Catalog extension: none
+dnl If INTLSYMBOL is 'external', only cases 2 and 3 can occur.
+dnl The use of .gmo is historical (it was needed to avoid overwriting the
+dnl GNU format catalogs when building on a platform with an X/Open gettext),
+dnl but we keep it in order not to force irrelevant filename changes on the
+dnl maintainers.
+dnl
+AC_DEFUN([AM_GNU_GETTEXT],
+[
+ dnl Argument checking.
+ ifelse([$1], [], , [ifelse([$1], [external], , [ifelse([$1], [no-libtool], , [ifelse([$1], [use-libtool], ,
+ [errprint([ERROR: invalid first argument to AM_GNU_GETTEXT
+])])])])])
+ ifelse([$2], [], , [ifelse([$2], [need-ngettext], , [ifelse([$2], [need-formatstring-macros], ,
+ [errprint([ERROR: invalid second argument to AM_GNU_GETTEXT
+])])])])
+ define([gt_included_intl],
+ ifelse([$1], [external],
+ ifdef([AM_GNU_GETTEXT_][INTL_SUBDIR], [yes], [no]),
+ [yes]))
+ define([gt_libtool_suffix_prefix], ifelse([$1], [use-libtool], [l], []))
+ gt_NEEDS_INIT
+ AM_GNU_GETTEXT_NEED([$2])
+
+ AC_REQUIRE([AM_PO_SUBDIRS])dnl
+ ifelse(gt_included_intl, yes, [
+ AC_REQUIRE([AM_INTL_SUBDIR])dnl
+ ])
+
+ dnl Prerequisites of AC_LIB_LINKFLAGS_BODY.
+ AC_REQUIRE([AC_LIB_PREPARE_PREFIX])
+ AC_REQUIRE([AC_LIB_RPATH])
+
+ dnl Sometimes libintl requires libiconv, so first search for libiconv.
+ dnl Ideally we would do this search only after the
+ dnl if test "$USE_NLS" = "yes"; then
+ dnl if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then
+ dnl tests. But if configure.in invokes AM_ICONV after AM_GNU_GETTEXT
+ dnl the configure script would need to contain the same shell code
+ dnl again, outside any 'if'. There are two solutions:
+ dnl - Invoke AM_ICONV_LINKFLAGS_BODY here, outside any 'if'.
+ dnl - Control the expansions in more detail using AC_PROVIDE_IFELSE.
+ dnl Since AC_PROVIDE_IFELSE is only in autoconf >= 2.52 and not
+ dnl documented, we avoid it.
+ ifelse(gt_included_intl, yes, , [
+ AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY])
+ ])
+
+ dnl Sometimes, on MacOS X, libintl requires linking with CoreFoundation.
+ gt_INTL_MACOSX
+
+ dnl Set USE_NLS.
+ AC_REQUIRE([AM_NLS])
+
+ ifelse(gt_included_intl, yes, [
+ BUILD_INCLUDED_LIBINTL=no
+ USE_INCLUDED_LIBINTL=no
+ ])
+ LIBINTL=
+ LTLIBINTL=
+ POSUB=
+
+ dnl Add a version number to the cache macros.
+ case " $gt_needs " in
+ *" need-formatstring-macros "*) gt_api_version=3 ;;
+ *" need-ngettext "*) gt_api_version=2 ;;
+ *) gt_api_version=1 ;;
+ esac
+ gt_func_gnugettext_libc="gt_cv_func_gnugettext${gt_api_version}_libc"
+ gt_func_gnugettext_libintl="gt_cv_func_gnugettext${gt_api_version}_libintl"
+
+ dnl If we use NLS figure out what method
+ if test "$USE_NLS" = "yes"; then
+ gt_use_preinstalled_gnugettext=no
+ ifelse(gt_included_intl, yes, [
+ AC_MSG_CHECKING([whether included gettext is requested])
+ AC_ARG_WITH(included-gettext,
+ [ --with-included-gettext use the GNU gettext library included here],
+ nls_cv_force_use_gnu_gettext=$withval,
+ nls_cv_force_use_gnu_gettext=no)
+ AC_MSG_RESULT($nls_cv_force_use_gnu_gettext)
+
+ nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext"
+ if test "$nls_cv_force_use_gnu_gettext" != "yes"; then
+ ])
+ dnl User does not insist on using GNU NLS library. Figure out what
+ dnl to use. If GNU gettext is available we use this. Else we have
+ dnl to fall back to GNU NLS library.
+
+ if test $gt_api_version -ge 3; then
+ gt_revision_test_code='
+#ifndef __GNU_GETTEXT_SUPPORTED_REVISION
+#define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1)
+#endif
+changequote(,)dnl
+typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1];
+changequote([,])dnl
+'
+ else
+ gt_revision_test_code=
+ fi
+ if test $gt_api_version -ge 2; then
+ gt_expression_test_code=' + * ngettext ("", "", 0)'
+ else
+ gt_expression_test_code=
+ fi
+
+ AC_CACHE_CHECK([for GNU gettext in libc], [$gt_func_gnugettext_libc],
+ [AC_TRY_LINK([#include <libintl.h>
+$gt_revision_test_code
+extern int _nl_msg_cat_cntr;
+extern int *_nl_domain_bindings;],
+ [bindtextdomain ("", "");
+return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_domain_bindings],
+ [eval "$gt_func_gnugettext_libc=yes"],
+ [eval "$gt_func_gnugettext_libc=no"])])
+
+ if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then
+ dnl Sometimes libintl requires libiconv, so first search for libiconv.
+ ifelse(gt_included_intl, yes, , [
+ AM_ICONV_LINK
+ ])
+ dnl Search for libintl and define LIBINTL, LTLIBINTL and INCINTL
+ dnl accordingly. Don't use AC_LIB_LINKFLAGS_BODY([intl],[iconv])
+ dnl because that would add "-liconv" to LIBINTL and LTLIBINTL
+ dnl even if libiconv doesn't exist.
+ AC_LIB_LINKFLAGS_BODY([intl])
+ AC_CACHE_CHECK([for GNU gettext in libintl],
+ [$gt_func_gnugettext_libintl],
+ [gt_save_CPPFLAGS="$CPPFLAGS"
+ CPPFLAGS="$CPPFLAGS $INCINTL"
+ gt_save_LIBS="$LIBS"
+ LIBS="$LIBS $LIBINTL"
+ dnl Now see whether libintl exists and does not depend on libiconv.
+ AC_TRY_LINK([#include <libintl.h>
+$gt_revision_test_code
+extern int _nl_msg_cat_cntr;
+extern
+#ifdef __cplusplus
+"C"
+#endif
+const char *_nl_expand_alias (const char *);],
+ [bindtextdomain ("", "");
+return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("")],
+ [eval "$gt_func_gnugettext_libintl=yes"],
+ [eval "$gt_func_gnugettext_libintl=no"])
+ dnl Now see whether libintl exists and depends on libiconv.
+ if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" != yes; } && test -n "$LIBICONV"; then
+ LIBS="$LIBS $LIBICONV"
+ AC_TRY_LINK([#include <libintl.h>
+$gt_revision_test_code
+extern int _nl_msg_cat_cntr;
+extern
+#ifdef __cplusplus
+"C"
+#endif
+const char *_nl_expand_alias (const char *);],
+ [bindtextdomain ("", "");
+return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("")],
+ [LIBINTL="$LIBINTL $LIBICONV"
+ LTLIBINTL="$LTLIBINTL $LTLIBICONV"
+ eval "$gt_func_gnugettext_libintl=yes"
+ ])
+ fi
+ CPPFLAGS="$gt_save_CPPFLAGS"
+ LIBS="$gt_save_LIBS"])
+ fi
+
+ dnl If an already present or preinstalled GNU gettext() is found,
+ dnl use it. But if this macro is used in GNU gettext, and GNU
+ dnl gettext is already preinstalled in libintl, we update this
+ dnl libintl. (Cf. the install rule in intl/Makefile.in.)
+ if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \
+ || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; } \
+ && test "$PACKAGE" != gettext-runtime \
+ && test "$PACKAGE" != gettext-tools; }; then
+ gt_use_preinstalled_gnugettext=yes
+ else
+ dnl Reset the values set by searching for libintl.
+ LIBINTL=
+ LTLIBINTL=
+ INCINTL=
+ fi
+
+ ifelse(gt_included_intl, yes, [
+ if test "$gt_use_preinstalled_gnugettext" != "yes"; then
+ dnl GNU gettext is not found in the C library.
+ dnl Fall back on included GNU gettext library.
+ nls_cv_use_gnu_gettext=yes
+ fi
+ fi
+
+ if test "$nls_cv_use_gnu_gettext" = "yes"; then
+ dnl Mark actions used to generate GNU NLS library.
+ BUILD_INCLUDED_LIBINTL=yes
+ USE_INCLUDED_LIBINTL=yes
+ LIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LIBICONV $LIBTHREAD"
+ LTLIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LTLIBICONV $LTLIBTHREAD"
+ LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'`
+ fi
+
+ CATOBJEXT=
+ if test "$gt_use_preinstalled_gnugettext" = "yes" \
+ || test "$nls_cv_use_gnu_gettext" = "yes"; then
+ dnl Mark actions to use GNU gettext tools.
+ CATOBJEXT=.gmo
+ fi
+ ])
+
+ if test -n "$INTL_MACOSX_LIBS"; then
+ if test "$gt_use_preinstalled_gnugettext" = "yes" \
+ || test "$nls_cv_use_gnu_gettext" = "yes"; then
+ dnl Some extra flags are needed during linking.
+ LIBINTL="$LIBINTL $INTL_MACOSX_LIBS"
+ LTLIBINTL="$LTLIBINTL $INTL_MACOSX_LIBS"
+ fi
+ fi
+
+ if test "$gt_use_preinstalled_gnugettext" = "yes" \
+ || test "$nls_cv_use_gnu_gettext" = "yes"; then
+ AC_DEFINE(ENABLE_NLS, 1,
+ [Define to 1 if translation of program messages to the user's native language
+ is requested.])
+ else
+ USE_NLS=no
+ fi
+ fi
+
+ AC_MSG_CHECKING([whether to use NLS])
+ AC_MSG_RESULT([$USE_NLS])
+ if test "$USE_NLS" = "yes"; then
+ AC_MSG_CHECKING([where the gettext function comes from])
+ if test "$gt_use_preinstalled_gnugettext" = "yes"; then
+ if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then
+ gt_source="external libintl"
+ else
+ gt_source="libc"
+ fi
+ else
+ gt_source="included intl directory"
+ fi
+ AC_MSG_RESULT([$gt_source])
+ fi
+
+ if test "$USE_NLS" = "yes"; then
+
+ if test "$gt_use_preinstalled_gnugettext" = "yes"; then
+ if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then
+ AC_MSG_CHECKING([how to link with libintl])
+ AC_MSG_RESULT([$LIBINTL])
+ AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCINTL])
+ fi
+
+ dnl For backward compatibility. Some packages may be using this.
+ AC_DEFINE(HAVE_GETTEXT, 1,
+ [Define if the GNU gettext() function is already present or preinstalled.])
+ AC_DEFINE(HAVE_DCGETTEXT, 1,
+ [Define if the GNU dcgettext() function is already present or preinstalled.])
+ fi
+
+ dnl We need to process the po/ directory.
+ POSUB=po
+ fi
+
+ ifelse(gt_included_intl, yes, [
+ dnl If this is used in GNU gettext we have to set BUILD_INCLUDED_LIBINTL
+ dnl to 'yes' because some of the testsuite requires it.
+ if test "$PACKAGE" = gettext-runtime || test "$PACKAGE" = gettext-tools; then
+ BUILD_INCLUDED_LIBINTL=yes
+ fi
+
+ dnl Make all variables we use known to autoconf.
+ AC_SUBST(BUILD_INCLUDED_LIBINTL)
+ AC_SUBST(USE_INCLUDED_LIBINTL)
+ AC_SUBST(CATOBJEXT)
+
+ dnl For backward compatibility. Some configure.ins may be using this.
+ nls_cv_header_intl=
+ nls_cv_header_libgt=
+
+ dnl For backward compatibility. Some Makefiles may be using this.
+ DATADIRNAME=share
+ AC_SUBST(DATADIRNAME)
+
+ dnl For backward compatibility. Some Makefiles may be using this.
+ INSTOBJEXT=.mo
+ AC_SUBST(INSTOBJEXT)
+
+ dnl For backward compatibility. Some Makefiles may be using this.
+ GENCAT=gencat
+ AC_SUBST(GENCAT)
+
+ dnl For backward compatibility. Some Makefiles may be using this.
+ INTLOBJS=
+ if test "$USE_INCLUDED_LIBINTL" = yes; then
+ INTLOBJS="\$(GETTOBJS)"
+ fi
+ AC_SUBST(INTLOBJS)
+
+ dnl Enable libtool support if the surrounding package wishes it.
+ INTL_LIBTOOL_SUFFIX_PREFIX=gt_libtool_suffix_prefix
+ AC_SUBST(INTL_LIBTOOL_SUFFIX_PREFIX)
+ ])
+
+ dnl For backward compatibility. Some Makefiles may be using this.
+ INTLLIBS="$LIBINTL"
+ AC_SUBST(INTLLIBS)
+
+ dnl Make all documented variables known to autoconf.
+ AC_SUBST(LIBINTL)
+ AC_SUBST(LTLIBINTL)
+ AC_SUBST(POSUB)
+])
+
+
+dnl Checks for special options needed on MacOS X.
+dnl Defines INTL_MACOSX_LIBS.
+AC_DEFUN([gt_INTL_MACOSX],
+[
+ dnl Check for API introduced in MacOS X 10.2.
+ AC_CACHE_CHECK([for CFPreferencesCopyAppValue],
+ gt_cv_func_CFPreferencesCopyAppValue,
+ [gt_save_LIBS="$LIBS"
+ LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation"
+ AC_TRY_LINK([#include <CoreFoundation/CFPreferences.h>],
+ [CFPreferencesCopyAppValue(NULL, NULL)],
+ [gt_cv_func_CFPreferencesCopyAppValue=yes],
+ [gt_cv_func_CFPreferencesCopyAppValue=no])
+ LIBS="$gt_save_LIBS"])
+ if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then
+ AC_DEFINE([HAVE_CFPREFERENCESCOPYAPPVALUE], 1,
+ [Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in the CoreFoundation framework.])
+ fi
+ dnl Check for API introduced in MacOS X 10.3.
+ AC_CACHE_CHECK([for CFLocaleCopyCurrent], gt_cv_func_CFLocaleCopyCurrent,
+ [gt_save_LIBS="$LIBS"
+ LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation"
+ AC_TRY_LINK([#include <CoreFoundation/CFLocale.h>], [CFLocaleCopyCurrent();],
+ [gt_cv_func_CFLocaleCopyCurrent=yes],
+ [gt_cv_func_CFLocaleCopyCurrent=no])
+ LIBS="$gt_save_LIBS"])
+ if test $gt_cv_func_CFLocaleCopyCurrent = yes; then
+ AC_DEFINE([HAVE_CFLOCALECOPYCURRENT], 1,
+ [Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the CoreFoundation framework.])
+ fi
+ INTL_MACOSX_LIBS=
+ if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then
+ INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation"
+ fi
+ AC_SUBST([INTL_MACOSX_LIBS])
+])
+
+
+dnl gt_NEEDS_INIT ensures that the gt_needs variable is initialized.
+m4_define([gt_NEEDS_INIT],
+[
+ m4_divert_text([DEFAULTS], [gt_needs=])
+ m4_define([gt_NEEDS_INIT], [])
+])
+
+
+dnl Usage: AM_GNU_GETTEXT_NEED([NEEDSYMBOL])
+AC_DEFUN([AM_GNU_GETTEXT_NEED],
+[
+ m4_divert_text([INIT_PREPARE], [gt_needs="$gt_needs $1"])
+])
+
+
+dnl Usage: AM_GNU_GETTEXT_VERSION([gettext-version])
+AC_DEFUN([AM_GNU_GETTEXT_VERSION], [])
Added: trunk/m4/iconv.m4
===================================================================
--- trunk/m4/iconv.m4 (rev 0)
+++ trunk/m4/iconv.m4 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,101 @@
+# iconv.m4 serial AM4 (gettext-0.11.3)
+dnl Copyright (C) 2000-2002 Free Software Foundation, Inc.
+dnl This file is free software; the Free Software Foundation
+dnl gives unlimited permission to copy and/or distribute it,
+dnl with or without modifications, as long as this notice is preserved.
+
+dnl From Bruno Haible.
+
+AC_DEFUN([AM_ICONV_LINKFLAGS_BODY],
+[
+ dnl Prerequisites of AC_LIB_LINKFLAGS_BODY.
+ AC_REQUIRE([AC_LIB_PREPARE_PREFIX])
+ AC_REQUIRE([AC_LIB_RPATH])
+
+ dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV
+ dnl accordingly.
+ AC_LIB_LINKFLAGS_BODY([iconv])
+])
+
+AC_DEFUN([AM_ICONV_LINK],
+[
+ dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and
+ dnl those with the standalone portable GNU libiconv installed).
+
+ dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV
+ dnl accordingly.
+ AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY])
+
+ dnl Add $INCICONV to CPPFLAGS before performing the following checks,
+ dnl because if the user has installed libiconv and not disabled its use
+ dnl via --without-libiconv-prefix, he wants to use it. The first
+ dnl AC_TRY_LINK will then fail, the second AC_TRY_LINK will succeed.
+ am_save_CPPFLAGS="$CPPFLAGS"
+ AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCICONV])
+
+ AC_CACHE_CHECK(for iconv, am_cv_func_iconv, [
+ am_cv_func_iconv="no, consider installing GNU libiconv"
+ am_cv_lib_iconv=no
+ AC_TRY_LINK([#include <stdlib.h>
+#include <iconv.h>],
+ [iconv_t cd = iconv_open("","");
+ iconv(cd,NULL,NULL,NULL,NULL);
+ iconv_close(cd);],
+ am_cv_func_iconv=yes)
+ if test "$am_cv_func_iconv" != yes; then
+ am_save_LIBS="$LIBS"
+ LIBS="$LIBS $LIBICONV"
+ AC_TRY_LINK([#include <stdlib.h>
+#include <iconv.h>],
+ [iconv_t cd = iconv_open("","");
+ iconv(cd,NULL,NULL,NULL,NULL);
+ iconv_close(cd);],
+ am_cv_lib_iconv=yes
+ am_cv_func_iconv=yes)
+ LIBS="$am_save_LIBS"
+ fi
+ ])
+ if test "$am_cv_func_iconv" = yes; then
+ AC_DEFINE(HAVE_ICONV, 1, [Define if you have the iconv() function.])
+ fi
+ if test "$am_cv_lib_iconv" = yes; then
+ AC_MSG_CHECKING([how to link with libiconv])
+ AC_MSG_RESULT([$LIBICONV])
+ else
+ dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV
+ dnl either.
+ CPPFLAGS="$am_save_CPPFLAGS"
+ LIBICONV=
+ LTLIBICONV=
+ fi
+ AC_SUBST(LIBICONV)
+ AC_SUBST(LTLIBICONV)
+])
+
+AC_DEFUN([AM_ICONV],
+[
+ AM_ICONV_LINK
+ if test "$am_cv_func_iconv" = yes; then
+ AC_MSG_CHECKING([for iconv declaration])
+ AC_CACHE_VAL(am_cv_proto_iconv, [
+ AC_TRY_COMPILE([
+#include <stdlib.h>
+#include <iconv.h>
+extern
+#ifdef __cplusplus
+"C"
+#endif
+#if defined(__STDC__) || defined(__cplusplus)
+size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
+#else
+size_t iconv();
+#endif
+], [], am_cv_proto_iconv_arg1="", am_cv_proto_iconv_arg1="const")
+ am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"])
+ am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'`
+ AC_MSG_RESULT([$]{ac_t:-
+ }[$]am_cv_proto_iconv)
+ AC_DEFINE_UNQUOTED(ICONV_CONST, $am_cv_proto_iconv_arg1,
+ [Define as const if the declaration of iconv() needs const.])
+ fi
+])
Added: trunk/m4/lib-ld.m4
===================================================================
--- trunk/m4/lib-ld.m4 (rev 0)
+++ trunk/m4/lib-ld.m4 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,110 @@
+# lib-ld.m4 serial 3 (gettext-0.13)
+dnl Copyright (C) 1996-2003 Free Software Foundation, Inc.
+dnl This file is free software; the Free Software Foundation
+dnl gives unlimited permission to copy and/or distribute it,
+dnl with or without modifications, as long as this notice is preserved.
+
+dnl Subroutines of libtool.m4,
+dnl with replacements s/AC_/AC_LIB/ and s/lt_cv/acl_cv/ to avoid collision
+dnl with libtool.m4.
+
+dnl From libtool-1.4. Sets the variable with_gnu_ld to yes or no.
+AC_DEFUN([AC_LIB_PROG_LD_GNU],
+[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], acl_cv_prog_gnu_ld,
+[# I'd rather use --version here, but apparently some GNU ld's only accept -v.
+case `$LD -v 2>&1 </dev/null` in
+*GNU* | *'with BFD'*)
+ acl_cv_prog_gnu_ld=yes ;;
+*)
+ acl_cv_prog_gnu_ld=no ;;
+esac])
+with_gnu_ld=$acl_cv_prog_gnu_ld
+])
+
+dnl From libtool-1.4. Sets the variable LD.
+AC_DEFUN([AC_LIB_PROG_LD],
+[AC_ARG_WITH(gnu-ld,
+[ --with-gnu-ld assume the C compiler uses GNU ld [default=no]],
+test "$withval" = no || with_gnu_ld=yes, with_gnu_ld=no)
+AC_REQUIRE([AC_PROG_CC])dnl
+AC_REQUIRE([AC_CANONICAL_HOST])dnl
+# Prepare PATH_SEPARATOR.
+# The user is always right.
+if test "${PATH_SEPARATOR+set}" != set; then
+ echo "#! /bin/sh" >conf$$.sh
+ echo "exit 0" >>conf$$.sh
+ chmod +x conf$$.sh
+ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
+ PATH_SEPARATOR=';'
+ else
+ PATH_SEPARATOR=:
+ fi
+ rm -f conf$$.sh
+fi
+ac_prog=ld
+if test "$GCC" = yes; then
+ # Check if gcc -print-prog-name=ld gives a path.
+ AC_MSG_CHECKING([for ld used by GCC])
+ case $host in
+ *-*-mingw*)
+ # gcc leaves a trailing carriage return which upsets mingw
+ ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
+ *)
+ ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
+ esac
+ case $ac_prog in
+ # Accept absolute paths.
+ [[\\/]* | [A-Za-z]:[\\/]*)]
+ [re_direlt='/[^/][^/]*/\.\./']
+ # Canonicalize the path of ld
+ ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'`
+ while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
+ ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
+ done
+ test -z "$LD" && LD="$ac_prog"
+ ;;
+ "")
+ # If it fails, then pretend we aren't using GCC.
+ ac_prog=ld
+ ;;
+ *)
+ # If it is relative, then search for the first ld in PATH.
+ with_gnu_ld=unknown
+ ;;
+ esac
+elif test "$with_gnu_ld" = yes; then
+ AC_MSG_CHECKING([for GNU ld])
+else
+ AC_MSG_CHECKING([for non-GNU ld])
+fi
+AC_CACHE_VAL(acl_cv_path_LD,
+[if test -z "$LD"; then
+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
+ for ac_dir in $PATH; do
+ test -z "$ac_dir" && ac_dir=.
+ if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
+ acl_cv_path_LD="$ac_dir/$ac_prog"
+ # Check to see if the program is GNU ld. I'd rather use --version,
+ # but apparently some GNU ld's only accept -v.
+ # Break only if it was the GNU/non-GNU ld that we prefer.
+ case `"$acl_cv_path_LD" -v 2>&1 < /dev/null` in
+ *GNU* | *'with BFD'*)
+ test "$with_gnu_ld" != no && break ;;
+ *)
+ test "$with_gnu_ld" != yes && break ;;
+ esac
+ fi
+ done
+ IFS="$ac_save_ifs"
+else
+ acl_cv_path_LD="$LD" # Let the user override the test with a path.
+fi])
+LD="$acl_cv_path_LD"
+if test -n "$LD"; then
+ AC_MSG_RESULT($LD)
+else
+ AC_MSG_RESULT(no)
+fi
+test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
+AC_LIB_PROG_LD_GNU
+])
Added: trunk/m4/lib-link.m4
===================================================================
--- trunk/m4/lib-link.m4 (rev 0)
+++ trunk/m4/lib-link.m4 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,644 @@
+# lib-link.m4 serial 9 (gettext-0.16)
+dnl Copyright (C) 2001-2006 Free Software Foundation, Inc.
+dnl This file is free software; the Free Software Foundation
+dnl gives unlimited permission to copy and/or distribute it,
+dnl with or without modifications, as long as this notice is preserved.
+
+dnl From Bruno Haible.
+
+AC_PREREQ(2.50)
+
+dnl AC_LIB_LINKFLAGS(name [, dependencies]) searches for libname and
+dnl the libraries corresponding to explicit and implicit dependencies.
+dnl Sets and AC_SUBSTs the LIB${NAME} and LTLIB${NAME} variables and
+dnl augments the CPPFLAGS variable.
+AC_DEFUN([AC_LIB_LINKFLAGS],
+[
+ AC_REQUIRE([AC_LIB_PREPARE_PREFIX])
+ AC_REQUIRE([AC_LIB_RPATH])
+ define([Name],[translit([$1],[./-], [___])])
+ define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-],
+ [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])])
+ AC_CACHE_CHECK([how to link with lib[]$1], [ac_cv_lib[]Name[]_libs], [
+ AC_LIB_LINKFLAGS_BODY([$1], [$2])
+ ac_cv_lib[]Name[]_libs="$LIB[]NAME"
+ ac_cv_lib[]Name[]_ltlibs="$LTLIB[]NAME"
+ ac_cv_lib[]Name[]_cppflags="$INC[]NAME"
+ ])
+ LIB[]NAME="$ac_cv_lib[]Name[]_libs"
+ LTLIB[]NAME="$ac_cv_lib[]Name[]_ltlibs"
+ INC[]NAME="$ac_cv_lib[]Name[]_cppflags"
+ AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME)
+ AC_SUBST([LIB]NAME)
+ AC_SUBST([LTLIB]NAME)
+ dnl Also set HAVE_LIB[]NAME so that AC_LIB_HAVE_LINKFLAGS can reuse the
+ dnl results of this search when this library appears as a dependency.
+ HAVE_LIB[]NAME=yes
+ undefine([Name])
+ undefine([NAME])
+])
+
+dnl AC_LIB_HAVE_LINKFLAGS(name, dependencies, includes, testcode)
+dnl searches for libname and the libraries corresponding to explicit and
+dnl implicit dependencies, together with the specified include files and
+dnl the ability to compile and link the specified testcode. If found, it
+dnl sets and AC_SUBSTs HAVE_LIB${NAME}=yes and the LIB${NAME} and
+dnl LTLIB${NAME} variables and augments the CPPFLAGS variable, and
+dnl #defines HAVE_LIB${NAME} to 1. Otherwise, it sets and AC_SUBSTs
+dnl HAVE_LIB${NAME}=no and LIB${NAME} and LTLIB${NAME} to empty.
+AC_DEFUN([AC_LIB_HAVE_LINKFLAGS],
+[
+ AC_REQUIRE([AC_LIB_PREPARE_PREFIX])
+ AC_REQUIRE([AC_LIB_RPATH])
+ define([Name],[translit([$1],[./-], [___])])
+ define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-],
+ [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])])
+
+ dnl Search for lib[]Name and define LIB[]NAME, LTLIB[]NAME and INC[]NAME
+ dnl accordingly.
+ AC_LIB_LINKFLAGS_BODY([$1], [$2])
+
+ dnl Add $INC[]NAME to CPPFLAGS before performing the following checks,
+ dnl because if the user has installed lib[]Name and not disabled its use
+ dnl via --without-lib[]Name-prefix, he wants to use it.
+ ac_save_CPPFLAGS="$CPPFLAGS"
+ AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME)
+
+ AC_CACHE_CHECK([for lib[]$1], [ac_cv_lib[]Name], [
+ ac_save_LIBS="$LIBS"
+ LIBS="$LIBS $LIB[]NAME"
+ AC_TRY_LINK([$3], [$4], [ac_cv_lib[]Name=yes], [ac_cv_lib[]Name=no])
+ LIBS="$ac_save_LIBS"
+ ])
+ if test "$ac_cv_lib[]Name" = yes; then
+ HAVE_LIB[]NAME=yes
+ AC_DEFINE([HAVE_LIB]NAME, 1, [Define if you have the $1 library.])
+ AC_MSG_CHECKING([how to link with lib[]$1])
+ AC_MSG_RESULT([$LIB[]NAME])
+ else
+ HAVE_LIB[]NAME=no
+ dnl If $LIB[]NAME didn't lead to a usable library, we don't need
+ dnl $INC[]NAME either.
+ CPPFLAGS="$ac_save_CPPFLAGS"
+ LIB[]NAME=
+ LTLIB[]NAME=
+ fi
+ AC_SUBST([HAVE_LIB]NAME)
+ AC_SUBST([LIB]NAME)
+ AC_SUBST([LTLIB]NAME)
+ undefine([Name])
+ undefine([NAME])
+])
+
+dnl Determine the platform dependent parameters needed to use rpath:
+dnl libext, shlibext, hardcode_libdir_flag_spec, hardcode_libdir_separator,
+dnl hardcode_direct, hardcode_minus_L.
+AC_DEFUN([AC_LIB_RPATH],
+[
+ dnl Tell automake >= 1.10 to complain if config.rpath is missing.
+ m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([config.rpath])])
+ AC_REQUIRE([AC_PROG_CC]) dnl we use $CC, $GCC, $LDFLAGS
+ AC_REQUIRE([AC_LIB_PROG_LD]) dnl we use $LD, $with_gnu_ld
+ AC_REQUIRE([AC_CANONICAL_HOST]) dnl we use $host
+ AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT]) dnl we use $ac_aux_dir
+ AC_CACHE_CHECK([for shared library run path origin], acl_cv_rpath, [
+ CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \
+ ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh
+ . ./conftest.sh
+ rm -f ./conftest.sh
+ acl_cv_rpath=done
+ ])
+ wl="$acl_cv_wl"
+ libext="$acl_cv_libext"
+ shlibext="$acl_cv_shlibext"
+ hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec"
+ hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator"
+ hardcode_direct="$acl_cv_hardcode_direct"
+ hardcode_minus_L="$acl_cv_hardcode_minus_L"
+ dnl Determine whether the user wants rpath handling at all.
+ AC_ARG_ENABLE(rpath,
+ [ --disable-rpath do not hardcode runtime library paths],
+ :, enable_rpath=yes)
+])
+
+dnl AC_LIB_LINKFLAGS_BODY(name [, dependencies]) searches for libname and
+dnl the libraries corresponding to explicit and implicit dependencies.
+dnl Sets the LIB${NAME}, LTLIB${NAME} and INC${NAME} variables.
+AC_DEFUN([AC_LIB_LINKFLAGS_BODY],
+[
+ AC_REQUIRE([AC_LIB_PREPARE_MULTILIB])
+ define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-],
+ [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])])
+ dnl By default, look in $includedir and $libdir.
+ use_additional=yes
+ AC_LIB_WITH_FINAL_PREFIX([
+ eval additional_includedir=\"$includedir\"
+ eval additional_libdir=\"$libdir\"
+ ])
+ AC_LIB_ARG_WITH([lib$1-prefix],
+[ --with-lib$1-prefix[=DIR] search for lib$1 in DIR/include and DIR/lib
+ --without-lib$1-prefix don't search for lib$1 in includedir and libdir],
+[
+ if test "X$withval" = "Xno"; then
+ use_additional=no
+ else
+ if test "X$withval" = "X"; then
+ AC_LIB_WITH_FINAL_PREFIX([
+ eval additional_includedir=\"$includedir\"
+ eval additional_libdir=\"$libdir\"
+ ])
+ else
+ additional_includedir="$withval/include"
+ additional_libdir="$withval/$acl_libdirstem"
+ fi
+ fi
+])
+ dnl Search the library and its dependencies in $additional_libdir and
+ dnl $LDFLAGS. Using breadth-first-seach.
+ LIB[]NAME=
+ LTLIB[]NAME=
+ INC[]NAME=
+ rpathdirs=
+ ltrpathdirs=
+ names_already_handled=
+ names_next_round='$1 $2'
+ while test -n "$names_next_round"; do
+ names_this_round="$names_next_round"
+ names_next_round=
+ for name in $names_this_round; do
+ already_handled=
+ for n in $names_already_handled; do
+ if test "$n" = "$name"; then
+ already_handled=yes
+ break
+ fi
+ done
+ if test -z "$already_handled"; then
+ names_already_handled="$names_already_handled $name"
+ dnl See if it was already located by an earlier AC_LIB_LINKFLAGS
+ dnl or AC_LIB_HAVE_LINKFLAGS call.
+ uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'`
+ eval value=\"\$HAVE_LIB$uppername\"
+ if test -n "$value"; then
+ if test "$value" = yes; then
+ eval value=\"\$LIB$uppername\"
+ test -z "$value" || LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$value"
+ eval value=\"\$LTLIB$uppername\"
+ test -z "$value" || LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$value"
+ else
+ dnl An earlier call to AC_LIB_HAVE_LINKFLAGS has determined
+ dnl that this library doesn't exist. So just drop it.
+ :
+ fi
+ else
+ dnl Search the library lib$name in $additional_libdir and $LDFLAGS
+ dnl and the already constructed $LIBNAME/$LTLIBNAME.
+ found_dir=
+ found_la=
+ found_so=
+ found_a=
+ if test $use_additional = yes; then
+ if test -n "$shlibext" \
+ && { test -f "$additional_libdir/lib$name.$shlibext" \
+ || { test "$shlibext" = dll \
+ && test -f "$additional_libdir/lib$name.dll.a"; }; }; then
+ found_dir="$additional_libdir"
+ if test -f "$additional_libdir/lib$name.$shlibext"; then
+ found_so="$additional_libdir/lib$name.$shlibext"
+ else
+ found_so="$additional_libdir/lib$name.dll.a"
+ fi
+ if test -f "$additional_libdir/lib$name.la"; then
+ found_la="$additional_libdir/lib$name.la"
+ fi
+ else
+ if test -f "$additional_libdir/lib$name.$libext"; then
+ found_dir="$additional_libdir"
+ found_a="$additional_libdir/lib$name.$libext"
+ if test -f "$additional_libdir/lib$name.la"; then
+ found_la="$additional_libdir/lib$name.la"
+ fi
+ fi
+ fi
+ fi
+ if test "X$found_dir" = "X"; then
+ for x in $LDFLAGS $LTLIB[]NAME; do
+ AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
+ case "$x" in
+ -L*)
+ dir=`echo "X$x" | sed -e 's/^X-L//'`
+ if test -n "$shlibext" \
+ && { test -f "$dir/lib$name.$shlibext" \
+ || { test "$shlibext" = dll \
+ && test -f "$dir/lib$name.dll.a"; }; }; then
+ found_dir="$dir"
+ if test -f "$dir/lib$name.$shlibext"; then
+ found_so="$dir/lib$name.$shlibext"
+ else
+ found_so="$dir/lib$name.dll.a"
+ fi
+ if test -f "$dir/lib$name.la"; then
+ found_la="$dir/lib$name.la"
+ fi
+ else
+ if test -f "$dir/lib$name.$libext"; then
+ found_dir="$dir"
+ found_a="$dir/lib$name.$libext"
+ if test -f "$dir/lib$name.la"; then
+ found_la="$dir/lib$name.la"
+ fi
+ fi
+ fi
+ ;;
+ esac
+ if test "X$found_dir" != "X"; then
+ break
+ fi
+ done
+ fi
+ if test "X$found_dir" != "X"; then
+ dnl Found the library.
+ LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$found_dir -l$name"
+ if test "X$found_so" != "X"; then
+ dnl Linking with a shared library. We attempt to hardcode its
+ dnl directory into the executable's runpath, unless it's the
+ dnl standard /usr/lib.
+ if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/$acl_libdirstem"; then
+ dnl No hardcoding is needed.
+ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so"
+ else
+ dnl Use an explicit option to hardcode DIR into the resulting
+ dnl binary.
+ dnl Potentially add DIR to ltrpathdirs.
+ dnl The ltrpathdirs will be appended to $LTLIBNAME at the end.
+ haveit=
+ for x in $ltrpathdirs; do
+ if test "X$x" = "X$found_dir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ ltrpathdirs="$ltrpathdirs $found_dir"
+ fi
+ dnl The hardcoding into $LIBNAME is system dependent.
+ if test "$hardcode_direct" = yes; then
+ dnl Using DIR/libNAME.so during linking hardcodes DIR into the
+ dnl resulting binary.
+ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so"
+ else
+ if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then
+ dnl Use an explicit option to hardcode DIR into the resulting
+ dnl binary.
+ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so"
+ dnl Potentially add DIR to rpathdirs.
+ dnl The rpathdirs will be appended to $LIBNAME at the end.
+ haveit=
+ for x in $rpathdirs; do
+ if test "X$x" = "X$found_dir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ rpathdirs="$rpathdirs $found_dir"
+ fi
+ else
+ dnl Rely on "-L$found_dir".
+ dnl But don't add it if it's already contained in the LDFLAGS
+ dnl or the already constructed $LIBNAME
+ haveit=
+ for x in $LDFLAGS $LIB[]NAME; do
+ AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
+ if test "X$x" = "X-L$found_dir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir"
+ fi
+ if test "$hardcode_minus_L" != no; then
+ dnl FIXME: Not sure whether we should use
+ dnl "-L$found_dir -l$name" or "-L$found_dir $found_so"
+ dnl here.
+ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so"
+ else
+ dnl We cannot use $hardcode_runpath_var and LD_RUN_PATH
+ dnl here, because this doesn't fit in flags passed to the
+ dnl compiler. So give up. No hardcoding. This affects only
+ dnl very old systems.
+ dnl FIXME: Not sure whether we should use
+ dnl "-L$found_dir -l$name" or "-L$found_dir $found_so"
+ dnl here.
+ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name"
+ fi
+ fi
+ fi
+ fi
+ else
+ if test "X$found_a" != "X"; then
+ dnl Linking with a static library.
+ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_a"
+ else
+ dnl We shouldn't come here, but anyway it's good to have a
+ dnl fallback.
+ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir -l$name"
+ fi
+ fi
+ dnl Assume the include files are nearby.
+ additional_includedir=
+ case "$found_dir" in
+ */$acl_libdirstem | */$acl_libdirstem/)
+ basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'`
+ additional_includedir="$basedir/include"
+ ;;
+ esac
+ if test "X$additional_includedir" != "X"; then
+ dnl Potentially add $additional_includedir to $INCNAME.
+ dnl But don't add it
+ dnl 1. if it's the standard /usr/include,
+ dnl 2. if it's /usr/local/include and we are using GCC on Linux,
+ dnl 3. if it's already present in $CPPFLAGS or the already
+ dnl constructed $INCNAME,
+ dnl 4. if it doesn't exist as a directory.
+ if test "X$additional_includedir" != "X/usr/include"; then
+ haveit=
+ if test "X$additional_includedir" = "X/usr/local/include"; then
+ if test -n "$GCC"; then
+ case $host_os in
+ linux* | gnu* | k*bsd*-gnu) haveit=yes;;
+ esac
+ fi
+ fi
+ if test -z "$haveit"; then
+ for x in $CPPFLAGS $INC[]NAME; do
+ AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
+ if test "X$x" = "X-I$additional_includedir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ if test -d "$additional_includedir"; then
+ dnl Really add $additional_includedir to $INCNAME.
+ INC[]NAME="${INC[]NAME}${INC[]NAME:+ }-I$additional_includedir"
+ fi
+ fi
+ fi
+ fi
+ fi
+ dnl Look for dependencies.
+ if test -n "$found_la"; then
+ dnl Read the .la file. It defines the variables
+ dnl dlname, library_names, old_library, dependency_libs, current,
+ dnl age, revision, installed, dlopen, dlpreopen, libdir.
+ save_libdir="$libdir"
+ case "$found_la" in
+ */* | *\\*) . "$found_la" ;;
+ *) . "./$found_la" ;;
+ esac
+ libdir="$save_libdir"
+ dnl We use only dependency_libs.
+ for dep in $dependency_libs; do
+ case "$dep" in
+ -L*)
+ additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'`
+ dnl Potentially add $additional_libdir to $LIBNAME and $LTLIBNAME.
+ dnl But don't add it
+ dnl 1. if it's the standard /usr/lib,
+ dnl 2. if it's /usr/local/lib and we are using GCC on Linux,
+ dnl 3. if it's already present in $LDFLAGS or the already
+ dnl constructed $LIBNAME,
+ dnl 4. if it doesn't exist as a directory.
+ if test "X$additional_libdir" != "X/usr/$acl_libdirstem"; then
+ haveit=
+ if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem"; then
+ if test -n "$GCC"; then
+ case $host_os in
+ linux* | gnu* | k*bsd*-gnu) haveit=yes;;
+ esac
+ fi
+ fi
+ if test -z "$haveit"; then
+ haveit=
+ for x in $LDFLAGS $LIB[]NAME; do
+ AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
+ if test "X$x" = "X-L$additional_libdir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ if test -d "$additional_libdir"; then
+ dnl Really add $additional_libdir to $LIBNAME.
+ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$additional_libdir"
+ fi
+ fi
+ haveit=
+ for x in $LDFLAGS $LTLIB[]NAME; do
+ AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
+ if test "X$x" = "X-L$additional_libdir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ if test -d "$additional_libdir"; then
+ dnl Really add $additional_libdir to $LTLIBNAME.
+ LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$additional_libdir"
+ fi
+ fi
+ fi
+ fi
+ ;;
+ -R*)
+ dir=`echo "X$dep" | sed -e 's/^X-R//'`
+ if test "$enable_rpath" != no; then
+ dnl Potentially add DIR to rpathdirs.
+ dnl The rpathdirs will be appended to $LIBNAME at the end.
+ haveit=
+ for x in $rpathdirs; do
+ if test "X$x" = "X$dir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ rpathdirs="$rpathdirs $dir"
+ fi
+ dnl Potentially add DIR to ltrpathdirs.
+ dnl The ltrpathdirs will be appended to $LTLIBNAME at the end.
+ haveit=
+ for x in $ltrpathdirs; do
+ if test "X$x" = "X$dir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ ltrpathdirs="$ltrpathdirs $dir"
+ fi
+ fi
+ ;;
+ -l*)
+ dnl Handle this in the next round.
+ names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'`
+ ;;
+ *.la)
+ dnl Handle this in the next round. Throw away the .la's
+ dnl directory; it is already contained in a preceding -L
+ dnl option.
+ names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'`
+ ;;
+ *)
+ dnl Most likely an immediate library name.
+ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$dep"
+ LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$dep"
+ ;;
+ esac
+ done
+ fi
+ else
+ dnl Didn't find the library; assume it is in the system directories
+ dnl known to the linker and runtime loader. (All the system
+ dnl directories known to the linker should also be known to the
+ dnl runtime loader, otherwise the system is severely misconfigured.)
+ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name"
+ LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-l$name"
+ fi
+ fi
+ fi
+ done
+ done
+ if test "X$rpathdirs" != "X"; then
+ if test -n "$hardcode_libdir_separator"; then
+ dnl Weird platform: only the last -rpath option counts, the user must
+ dnl pass all path elements in one option. We can arrange that for a
+ dnl single library, but not when more than one $LIBNAMEs are used.
+ alldirs=
+ for found_dir in $rpathdirs; do
+ alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir"
+ done
+ dnl Note: hardcode_libdir_flag_spec uses $libdir and $wl.
+ acl_save_libdir="$libdir"
+ libdir="$alldirs"
+ eval flag=\"$hardcode_libdir_flag_spec\"
+ libdir="$acl_save_libdir"
+ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag"
+ else
+ dnl The -rpath options are cumulative.
+ for found_dir in $rpathdirs; do
+ acl_save_libdir="$libdir"
+ libdir="$found_dir"
+ eval flag=\"$hardcode_libdir_flag_spec\"
+ libdir="$acl_save_libdir"
+ LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag"
+ done
+ fi
+ fi
+ if test "X$ltrpathdirs" != "X"; then
+ dnl When using libtool, the option that works for both libraries and
+ dnl executables is -R. The -R options are cumulative.
+ for found_dir in $ltrpathdirs; do
+ LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-R$found_dir"
+ done
+ fi
+])
+
+dnl AC_LIB_APPENDTOVAR(VAR, CONTENTS) appends the elements of CONTENTS to VAR,
+dnl unless already present in VAR.
+dnl Works only for CPPFLAGS, not for LIB* variables because that sometimes
+dnl contains two or three consecutive elements that belong together.
+AC_DEFUN([AC_LIB_APPENDTOVAR],
+[
+ for element in [$2]; do
+ haveit=
+ for x in $[$1]; do
+ AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
+ if test "X$x" = "X$element"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ [$1]="${[$1]}${[$1]:+ }$element"
+ fi
+ done
+])
+
+dnl For those cases where a variable contains several -L and -l options
+dnl referring to unknown libraries and directories, this macro determines the
+dnl necessary additional linker options for the runtime path.
+dnl AC_LIB_LINKFLAGS_FROM_LIBS([LDADDVAR], [LIBSVALUE], [USE-LIBTOOL])
+dnl sets LDADDVAR to linker options needed together with LIBSVALUE.
+dnl If USE-LIBTOOL evaluates to non-empty, linking with libtool is assumed,
+dnl otherwise linking without libtool is assumed.
+AC_DEFUN([AC_LIB_LINKFLAGS_FROM_LIBS],
+[
+ AC_REQUIRE([AC_LIB_RPATH])
+ AC_REQUIRE([AC_LIB_PREPARE_MULTILIB])
+ $1=
+ if test "$enable_rpath" != no; then
+ if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then
+ dnl Use an explicit option to hardcode directories into the resulting
+ dnl binary.
+ rpathdirs=
+ next=
+ for opt in $2; do
+ if test -n "$next"; then
+ dir="$next"
+ dnl No need to hardcode the standard /usr/lib.
+ if test "X$dir" != "X/usr/$acl_libdirstem"; then
+ rpathdirs="$rpathdirs $dir"
+ fi
+ next=
+ else
+ case $opt in
+ -L) next=yes ;;
+ -L*) dir=`echo "X$opt" | sed -e 's,^X-L,,'`
+ dnl No need to hardcode the standard /usr/lib.
+ if test "X$dir" != "X/usr/$acl_libdirstem"; then
+ rpathdirs="$rpathdirs $dir"
+ fi
+ next= ;;
+ *) next= ;;
+ esac
+ fi
+ done
+ if test "X$rpathdirs" != "X"; then
+ if test -n ""$3""; then
+ dnl libtool is used for linking. Use -R options.
+ for dir in $rpathdirs; do
+ $1="${$1}${$1:+ }-R$dir"
+ done
+ else
+ dnl The linker is used for linking directly.
+ if test -n "$hardcode_libdir_separator"; then
+ dnl Weird platform: only the last -rpath option counts, the user
+ dnl must pass all path elements in one option.
+ alldirs=
+ for dir in $rpathdirs; do
+ alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$dir"
+ done
+ acl_save_libdir="$libdir"
+ libdir="$alldirs"
+ eval flag=\"$hardcode_libdir_flag_spec\"
+ libdir="$acl_save_libdir"
+ $1="$flag"
+ else
+ dnl The -rpath options are cumulative.
+ for dir in $rpathdirs; do
+ acl_save_libdir="$libdir"
+ libdir="$dir"
+ eval flag=\"$hardcode_libdir_flag_spec\"
+ libdir="$acl_save_libdir"
+ $1="${$1}${$1:+ }$flag"
+ done
+ fi
+ fi
+ fi
+ fi
+ fi
+ AC_SUBST([$1])
+])
Added: trunk/m4/lib-prefix.m4
===================================================================
--- trunk/m4/lib-prefix.m4 (rev 0)
+++ trunk/m4/lib-prefix.m4 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,185 @@
+# lib-prefix.m4 serial 5 (gettext-0.15)
+dnl Copyright (C) 2001-2005 Free Software Foundation, Inc.
+dnl This file is free software; the Free Software Foundation
+dnl gives unlimited permission to copy and/or distribute it,
+dnl with or without modifications, as long as this notice is preserved.
+
+dnl From Bruno Haible.
+
+dnl AC_LIB_ARG_WITH is synonymous to AC_ARG_WITH in autoconf-2.13, and
+dnl similar to AC_ARG_WITH in autoconf 2.52...2.57 except that is doesn't
+dnl require excessive bracketing.
+ifdef([AC_HELP_STRING],
+[AC_DEFUN([AC_LIB_ARG_WITH], [AC_ARG_WITH([$1],[[$2]],[$3],[$4])])],
+[AC_DEFUN([AC_][LIB_ARG_WITH], [AC_ARG_WITH([$1],[$2],[$3],[$4])])])
+
+dnl AC_LIB_PREFIX adds to the CPPFLAGS and LDFLAGS the flags that are needed
+dnl to access previously installed libraries. The basic assumption is that
+dnl a user will want packages to use other packages he previously installed
+dnl with the same --prefix option.
+dnl This macro is not needed if only AC_LIB_LINKFLAGS is used to locate
+dnl libraries, but is otherwise very convenient.
+AC_DEFUN([AC_LIB_PREFIX],
+[
+ AC_BEFORE([$0], [AC_LIB_LINKFLAGS])
+ AC_REQUIRE([AC_PROG_CC])
+ AC_REQUIRE([AC_CANONICAL_HOST])
+ AC_REQUIRE([AC_LIB_PREPARE_MULTILIB])
+ AC_REQUIRE([AC_LIB_PREPARE_PREFIX])
+ dnl By default, look in $includedir and $libdir.
+ use_additional=yes
+ AC_LIB_WITH_FINAL_PREFIX([
+ eval additional_includedir=\"$includedir\"
+ eval additional_libdir=\"$libdir\"
+ ])
+ AC_LIB_ARG_WITH([lib-prefix],
+[ --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib
+ --without-lib-prefix don't search for libraries in includedir and libdir],
+[
+ if test "X$withval" = "Xno"; then
+ use_additional=no
+ else
+ if test "X$withval" = "X"; then
+ AC_LIB_WITH_FINAL_PREFIX([
+ eval additional_includedir=\"$includedir\"
+ eval additional_libdir=\"$libdir\"
+ ])
+ else
+ additional_includedir="$withval/include"
+ additional_libdir="$withval/$acl_libdirstem"
+ fi
+ fi
+])
+ if test $use_additional = yes; then
+ dnl Potentially add $additional_includedir to $CPPFLAGS.
+ dnl But don't add it
+ dnl 1. if it's the standard /usr/include,
+ dnl 2. if it's already present in $CPPFLAGS,
+ dnl 3. if it's /usr/local/include and we are using GCC on Linux,
+ dnl 4. if it doesn't exist as a directory.
+ if test "X$additional_includedir" != "X/usr/include"; then
+ haveit=
+ for x in $CPPFLAGS; do
+ AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
+ if test "X$x" = "X-I$additional_includedir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ if test "X$additional_includedir" = "X/usr/local/include"; then
+ if test -n "$GCC"; then
+ case $host_os in
+ linux* | gnu* | k*bsd*-gnu) haveit=yes;;
+ esac
+ fi
+ fi
+ if test -z "$haveit"; then
+ if test -d "$additional_includedir"; then
+ dnl Really add $additional_includedir to $CPPFLAGS.
+ CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }-I$additional_includedir"
+ fi
+ fi
+ fi
+ fi
+ dnl Potentially add $additional_libdir to $LDFLAGS.
+ dnl But don't add it
+ dnl 1. if it's the standard /usr/lib,
+ dnl 2. if it's already present in $LDFLAGS,
+ dnl 3. if it's /usr/local/lib and we are using GCC on Linux,
+ dnl 4. if it doesn't exist as a directory.
+ if test "X$additional_libdir" != "X/usr/$acl_libdirstem"; then
+ haveit=
+ for x in $LDFLAGS; do
+ AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
+ if test "X$x" = "X-L$additional_libdir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem"; then
+ if test -n "$GCC"; then
+ case $host_os in
+ linux*) haveit=yes;;
+ esac
+ fi
+ fi
+ if test -z "$haveit"; then
+ if test -d "$additional_libdir"; then
+ dnl Really add $additional_libdir to $LDFLAGS.
+ LDFLAGS="${LDFLAGS}${LDFLAGS:+ }-L$additional_libdir"
+ fi
+ fi
+ fi
+ fi
+ fi
+])
+
+dnl AC_LIB_PREPARE_PREFIX creates variables acl_final_prefix,
+dnl acl_final_exec_prefix, containing the values to which $prefix and
+dnl $exec_prefix will expand at the end of the configure script.
+AC_DEFUN([AC_LIB_PREPARE_PREFIX],
+[
+ dnl Unfortunately, prefix and exec_prefix get only finally determined
+ dnl at the end of configure.
+ if test "X$prefix" = "XNONE"; then
+ acl_final_prefix="$ac_default_prefix"
+ else
+ acl_final_prefix="$prefix"
+ fi
+ if test "X$exec_prefix" = "XNONE"; then
+ acl_final_exec_prefix='${prefix}'
+ else
+ acl_final_exec_prefix="$exec_prefix"
+ fi
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ eval acl_final_exec_prefix=\"$acl_final_exec_prefix\"
+ prefix="$acl_save_prefix"
+])
+
+dnl AC_LIB_WITH_FINAL_PREFIX([statement]) evaluates statement, with the
+dnl variables prefix and exec_prefix bound to the values they will have
+dnl at the end of the configure script.
+AC_DEFUN([AC_LIB_WITH_FINAL_PREFIX],
+[
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+ $1
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+])
+
+dnl AC_LIB_PREPARE_MULTILIB creates a variable acl_libdirstem, containing
+dnl the basename of the libdir, either "lib" or "lib64".
+AC_DEFUN([AC_LIB_PREPARE_MULTILIB],
+[
+ dnl There is no formal standard regarding lib and lib64. The current
+ dnl practice is that on a system supporting 32-bit and 64-bit instruction
+ dnl sets or ABIs, 64-bit libraries go under $prefix/lib64 and 32-bit
+ dnl libraries go under $prefix/lib. We determine the compiler's default
+ dnl mode by looking at the compiler's library search path. If at least
+ dnl of its elements ends in /lib64 or points to a directory whose absolute
+ dnl pathname ends in /lib64, we assume a 64-bit ABI. Otherwise we use the
+ dnl default, namely "lib".
+ acl_libdirstem=lib
+ searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'`
+ if test -n "$searchpath"; then
+ acl_save_IFS="${IFS= }"; IFS=":"
+ for searchdir in $searchpath; do
+ if test -d "$searchdir"; then
+ case "$searchdir" in
+ */lib64/ | */lib64 ) acl_libdirstem=lib64 ;;
+ *) searchdir=`cd "$searchdir" && pwd`
+ case "$searchdir" in
+ */lib64 ) acl_libdirstem=lib64 ;;
+ esac ;;
+ esac
+ fi
+ done
+ IFS="$acl_save_IFS"
+ fi
+])
Added: trunk/m4/nls.m4
===================================================================
--- trunk/m4/nls.m4 (rev 0)
+++ trunk/m4/nls.m4 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,31 @@
+# nls.m4 serial 3 (gettext-0.15)
+dnl Copyright (C) 1995-2003, 2005-2006 Free Software Foundation, Inc.
+dnl This file is free software; the Free Software Foundation
+dnl gives unlimited permission to copy and/or distribute it,
+dnl with or without modifications, as long as this notice is preserved.
+dnl
+dnl This file can can be used in projects which are not available under
+dnl the GNU General Public License or the GNU Library General Public
+dnl License but which still want to provide support for the GNU gettext
+dnl functionality.
+dnl Please note that the actual code of the GNU gettext library is covered
+dnl by the GNU Library General Public License, and the rest of the GNU
+dnl gettext package package is covered by the GNU General Public License.
+dnl They are *not* in the public domain.
+
+dnl Authors:
+dnl Ulrich Drepper <drepper@xxxxxxxxxx>, 1995-2000.
+dnl Bruno Haible <haible@xxxxxxxxxxxxxx>, 2000-2003.
+
+AC_PREREQ(2.50)
+
+AC_DEFUN([AM_NLS],
+[
+ AC_MSG_CHECKING([whether NLS is requested])
+ dnl Default is enabled NLS
+ AC_ARG_ENABLE(nls,
+ [ --disable-nls do not use Native Language Support],
+ USE_NLS=$enableval, USE_NLS=yes)
+ AC_MSG_RESULT($USE_NLS)
+ AC_SUBST(USE_NLS)
+])
Added: trunk/m4/po.m4
===================================================================
--- trunk/m4/po.m4 (rev 0)
+++ trunk/m4/po.m4 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,428 @@
+# po.m4 serial 13 (gettext-0.15)
+dnl Copyright (C) 1995-2006 Free Software Foundation, Inc.
+dnl This file is free software; the Free Software Foundation
+dnl gives unlimited permission to copy and/or distribute it,
+dnl with or without modifications, as long as this notice is preserved.
+dnl
+dnl This file can can be used in projects which are not available under
+dnl the GNU General Public License or the GNU Library General Public
+dnl License but which still want to provide support for the GNU gettext
+dnl functionality.
+dnl Please note that the actual code of the GNU gettext library is covered
+dnl by the GNU Library General Public License, and the rest of the GNU
+dnl gettext package package is covered by the GNU General Public License.
+dnl They are *not* in the public domain.
+
+dnl Authors:
+dnl Ulrich Drepper <drepper@xxxxxxxxxx>, 1995-2000.
+dnl Bruno Haible <haible@xxxxxxxxxxxxxx>, 2000-2003.
+
+AC_PREREQ(2.50)
+
+dnl Checks for all prerequisites of the po subdirectory.
+AC_DEFUN([AM_PO_SUBDIRS],
+[
+ AC_REQUIRE([AC_PROG_MAKE_SET])dnl
+ AC_REQUIRE([AC_PROG_INSTALL])dnl
+ AC_REQUIRE([AM_PROG_MKDIR_P])dnl defined by automake
+ AC_REQUIRE([AM_NLS])dnl
+
+ dnl Perform the following tests also if --disable-nls has been given,
+ dnl because they are needed for "make dist" to work.
+
+ dnl Search for GNU msgfmt in the PATH.
+ dnl The first test excludes Solaris msgfmt and early GNU msgfmt versions.
+ dnl The second test excludes FreeBSD msgfmt.
+ AM_PATH_PROG_WITH_TEST(MSGFMT, msgfmt,
+ [$ac_dir/$ac_word --statistics /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 &&
+ (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)],
+ :)
+ AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT)
+
+ dnl Test whether it is GNU msgfmt >= 0.15.
+changequote(,)dnl
+ case `$MSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in
+ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) MSGFMT_015=: ;;
+ *) MSGFMT_015=$MSGFMT ;;
+ esac
+changequote([,])dnl
+ AC_SUBST([MSGFMT_015])
+changequote(,)dnl
+ case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in
+ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;;
+ *) GMSGFMT_015=$GMSGFMT ;;
+ esac
+changequote([,])dnl
+ AC_SUBST([GMSGFMT_015])
+
+ dnl Search for GNU xgettext 0.12 or newer in the PATH.
+ dnl The first test excludes Solaris xgettext and early GNU xgettext versions.
+ dnl The second test excludes FreeBSD xgettext.
+ AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext,
+ [$ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 &&
+ (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)],
+ :)
+ dnl Remove leftover from FreeBSD xgettext call.
+ rm -f messages.po
+
+ dnl Test whether it is GNU xgettext >= 0.15.
+changequote(,)dnl
+ case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in
+ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;;
+ *) XGETTEXT_015=$XGETTEXT ;;
+ esac
+changequote([,])dnl
+ AC_SUBST([XGETTEXT_015])
+
+ dnl Search for GNU msgmerge 0.11 or newer in the PATH.
+ AM_PATH_PROG_WITH_TEST(MSGMERGE, msgmerge,
+ [$ac_dir/$ac_word --update -q /dev/null /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1], :)
+
+ dnl Installation directories.
+ dnl Autoconf >= 2.60 defines localedir. For older versions of autoconf, we
+ dnl have to define it here, so that it can be used in po/Makefile.
+ test -n "$localedir" || localedir='${datadir}/locale'
+ AC_SUBST([localedir])
+
+ AC_CONFIG_COMMANDS([po-directories], [[
+ for ac_file in $CONFIG_FILES; do
+ # Support "outfile[:infile[:infile...]]"
+ case "$ac_file" in
+ *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
+ esac
+ # PO directories have a Makefile.in generated from Makefile.in.in.
+ case "$ac_file" in */Makefile.in)
+ # Adjust a relative srcdir.
+ ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'`
+ ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`"
+ ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'`
+ # In autoconf-2.13 it is called $ac_given_srcdir.
+ # In autoconf-2.50 it is called $srcdir.
+ test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir"
+ case "$ac_given_srcdir" in
+ .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;;
+ /*) top_srcdir="$ac_given_srcdir" ;;
+ *) top_srcdir="$ac_dots$ac_given_srcdir" ;;
+ esac
+ # Treat a directory as a PO directory if and only if it has a
+ # POTFILES.in file. This allows packages to have multiple PO
+ # directories under different names or in different locations.
+ if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then
+ rm -f "$ac_dir/POTFILES"
+ test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES"
+ cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES"
+ POMAKEFILEDEPS="POTFILES.in"
+ # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend
+ # on $ac_dir but don't depend on user-specified configuration
+ # parameters.
+ if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then
+ # The LINGUAS file contains the set of available languages.
+ if test -n "$OBSOLETE_ALL_LINGUAS"; then
+ test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete"
+ fi
+ ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"`
+ # Hide the ALL_LINGUAS assigment from automake < 1.5.
+ eval 'ALL_LINGUAS''=$ALL_LINGUAS_'
+ POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS"
+ else
+ # The set of available languages was given in configure.in.
+ # Hide the ALL_LINGUAS assigment from automake < 1.5.
+ eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS'
+ fi
+ # Compute POFILES
+ # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po)
+ # Compute UPDATEPOFILES
+ # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update)
+ # Compute DUMMYPOFILES
+ # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop)
+ # Compute GMOFILES
+ # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo)
+ case "$ac_given_srcdir" in
+ .) srcdirpre= ;;
+ *) srcdirpre='$(srcdir)/' ;;
+ esac
+ POFILES=
+ UPDATEPOFILES=
+ DUMMYPOFILES=
+ GMOFILES=
+ for lang in $ALL_LINGUAS; do
+ POFILES="$POFILES $srcdirpre$lang.po"
+ UPDATEPOFILES="$UPDATEPOFILES $lang.po-update"
+ DUMMYPOFILES="$DUMMYPOFILES $lang.nop"
+ GMOFILES="$GMOFILES $srcdirpre$lang.gmo"
+ done
+ # CATALOGS depends on both $ac_dir and the user's LINGUAS
+ # environment variable.
+ INST_LINGUAS=
+ if test -n "$ALL_LINGUAS"; then
+ for presentlang in $ALL_LINGUAS; do
+ useit=no
+ if test "%UNSET%" != "$LINGUAS"; then
+ desiredlanguages="$LINGUAS"
+ else
+ desiredlanguages="$ALL_LINGUAS"
+ fi
+ for desiredlang in $desiredlanguages; do
+ # Use the presentlang catalog if desiredlang is
+ # a. equal to presentlang, or
+ # b. a variant of presentlang (because in this case,
+ # presentlang can be used as a fallback for messages
+ # which are not translated in the desiredlang catalog).
+ case "$desiredlang" in
+ "$presentlang"*) useit=yes;;
+ esac
+ done
+ if test $useit = yes; then
+ INST_LINGUAS="$INST_LINGUAS $presentlang"
+ fi
+ done
+ fi
+ CATALOGS=
+ if test -n "$INST_LINGUAS"; then
+ for lang in $INST_LINGUAS; do
+ CATALOGS="$CATALOGS $lang.gmo"
+ done
+ fi
+ test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile"
+ sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile"
+ for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do
+ if test -f "$f"; then
+ case "$f" in
+ *.orig | *.bak | *~) ;;
+ *) cat "$f" >> "$ac_dir/Makefile" ;;
+ esac
+ fi
+ done
+ fi
+ ;;
+ esac
+ done]],
+ [# Capture the value of obsolete ALL_LINGUAS because we need it to compute
+ # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it
+ # from automake < 1.5.
+ eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"'
+ # Capture the value of LINGUAS because we need it to compute CATALOGS.
+ LINGUAS="${LINGUAS-%UNSET%}"
+ ])
+])
+
+dnl Postprocesses a Makefile in a directory containing PO files.
+AC_DEFUN([AM_POSTPROCESS_PO_MAKEFILE],
+[
+ # When this code is run, in config.status, two variables have already been
+ # set:
+ # - OBSOLETE_ALL_LINGUAS is the value of LINGUAS set in configure.in,
+ # - LINGUAS is the value of the environment variable LINGUAS at configure
+ # time.
+
+changequote(,)dnl
+ # Adjust a relative srcdir.
+ ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'`
+ ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`"
+ ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'`
+ # In autoconf-2.13 it is called $ac_given_srcdir.
+ # In autoconf-2.50 it is called $srcdir.
+ test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir"
+ case "$ac_given_srcdir" in
+ .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;;
+ /*) top_srcdir="$ac_given_srcdir" ;;
+ *) top_srcdir="$ac_dots$ac_given_srcdir" ;;
+ esac
+
+ # Find a way to echo strings without interpreting backslash.
+ if test "X`(echo '\t') 2>/dev/null`" = 'X\t'; then
+ gt_echo='echo'
+ else
+ if test "X`(printf '%s\n' '\t') 2>/dev/null`" = 'X\t'; then
+ gt_echo='printf %s\n'
+ else
+ echo_func () {
+ cat <<EOT
+$*
+EOT
+ }
+ gt_echo='echo_func'
+ fi
+ fi
+
+ # A sed script that extracts the value of VARIABLE from a Makefile.
+ sed_x_variable='
+# Test if the hold space is empty.
+x
+s/P/P/
+x
+ta
+# Yes it was empty. Look if we have the expected variable definition.
+/^[ ]*VARIABLE[ ]*=/{
+ # Seen the first line of the variable definition.
+ s/^[ ]*VARIABLE[ ]*=//
+ ba
+}
+bd
+:a
+# Here we are processing a line from the variable definition.
+# Remove comment, more precisely replace it with a space.
+s/#.*$/ /
+# See if the line ends in a backslash.
+tb
+:b
+s/\\$//
+# Print the line, without the trailing backslash.
+p
+tc
+# There was no trailing backslash. The end of the variable definition is
+# reached. Clear the hold space.
+s/^.*$//
+x
+bd
+:c
+# A trailing backslash means that the variable definition continues in the
+# next line. Put a nonempty string into the hold space to indicate this.
+s/^.*$/P/
+x
+:d
+'
+changequote([,])dnl
+
+ # Set POTFILES to the value of the Makefile variable POTFILES.
+ sed_x_POTFILES=`$gt_echo "$sed_x_variable" | sed -e '/^ *#/d' -e 's/VARIABLE/POTFILES/g'`
+ POTFILES=`sed -n -e "$sed_x_POTFILES" < "$ac_file"`
+ # Compute POTFILES_DEPS as
+ # $(foreach file, $(POTFILES), $(top_srcdir)/$(file))
+ POTFILES_DEPS=
+ for file in $POTFILES; do
+ POTFILES_DEPS="$POTFILES_DEPS "'$(top_srcdir)/'"$file"
+ done
+ POMAKEFILEDEPS=""
+
+ if test -n "$OBSOLETE_ALL_LINGUAS"; then
+ test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete"
+ fi
+ if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then
+ # The LINGUAS file contains the set of available languages.
+ ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"`
+ POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS"
+ else
+ # Set ALL_LINGUAS to the value of the Makefile variable LINGUAS.
+ sed_x_LINGUAS=`$gt_echo "$sed_x_variable" | sed -e '/^ *#/d' -e 's/VARIABLE/LINGUAS/g'`
+ ALL_LINGUAS_=`sed -n -e "$sed_x_LINGUAS" < "$ac_file"`
+ fi
+ # Hide the ALL_LINGUAS assigment from automake < 1.5.
+ eval 'ALL_LINGUAS''=$ALL_LINGUAS_'
+ # Compute POFILES
+ # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po)
+ # Compute UPDATEPOFILES
+ # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update)
+ # Compute DUMMYPOFILES
+ # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop)
+ # Compute GMOFILES
+ # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo)
+ # Compute PROPERTIESFILES
+ # as $(foreach lang, $(ALL_LINGUAS), $(top_srcdir)/$(DOMAIN)_$(lang).properties)
+ # Compute CLASSFILES
+ # as $(foreach lang, $(ALL_LINGUAS), $(top_srcdir)/$(DOMAIN)_$(lang).class)
+ # Compute QMFILES
+ # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).qm)
+ # Compute MSGFILES
+ # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(frob $(lang)).msg)
+ # Compute RESOURCESDLLFILES
+ # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(frob $(lang))/$(DOMAIN).resources.dll)
+ case "$ac_given_srcdir" in
+ .) srcdirpre= ;;
+ *) srcdirpre='$(srcdir)/' ;;
+ esac
+ POFILES=
+ UPDATEPOFILES=
+ DUMMYPOFILES=
+ GMOFILES=
+ PROPERTIESFILES=
+ CLASSFILES=
+ QMFILES=
+ MSGFILES=
+ RESOURCESDLLFILES=
+ for lang in $ALL_LINGUAS; do
+ POFILES="$POFILES $srcdirpre$lang.po"
+ UPDATEPOFILES="$UPDATEPOFILES $lang.po-update"
+ DUMMYPOFILES="$DUMMYPOFILES $lang.nop"
+ GMOFILES="$GMOFILES $srcdirpre$lang.gmo"
+ PROPERTIESFILES="$PROPERTIESFILES \$(top_srcdir)/\$(DOMAIN)_$lang.properties"
+ CLASSFILES="$CLASSFILES \$(top_srcdir)/\$(DOMAIN)_$lang.class"
+ QMFILES="$QMFILES $srcdirpre$lang.qm"
+ frobbedlang=`echo $lang | sed -e 's/\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'`
+ MSGFILES="$MSGFILES $srcdirpre$frobbedlang.msg"
+ frobbedlang=`echo $lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$/-Latn/' -e 's/@cyrillic$/-Cyrl/' -e 's/^sr-SP$/sr-SP-Latn/' -e 's/^uz-UZ$/uz-UZ-Latn/'`
+ RESOURCESDLLFILES="$RESOURCESDLLFILES $srcdirpre$frobbedlang/\$(DOMAIN).resources.dll"
+ done
+ # CATALOGS depends on both $ac_dir and the user's LINGUAS
+ # environment variable.
+ INST_LINGUAS=
+ if test -n "$ALL_LINGUAS"; then
+ for presentlang in $ALL_LINGUAS; do
+ useit=no
+ if test "%UNSET%" != "$LINGUAS"; then
+ desiredlanguages="$LINGUAS"
+ else
+ desiredlanguages="$ALL_LINGUAS"
+ fi
+ for desiredlang in $desiredlanguages; do
+ # Use the presentlang catalog if desiredlang is
+ # a. equal to presentlang, or
+ # b. a variant of presentlang (because in this case,
+ # presentlang can be used as a fallback for messages
+ # which are not translated in the desiredlang catalog).
+ case "$desiredlang" in
+ "$presentlang"*) useit=yes;;
+ esac
+ done
+ if test $useit = yes; then
+ INST_LINGUAS="$INST_LINGUAS $presentlang"
+ fi
+ done
+ fi
+ CATALOGS=
+ JAVACATALOGS=
+ QTCATALOGS=
+ TCLCATALOGS=
+ CSHARPCATALOGS=
+ if test -n "$INST_LINGUAS"; then
+ for lang in $INST_LINGUAS; do
+ CATALOGS="$CATALOGS $lang.gmo"
+ JAVACATALOGS="$JAVACATALOGS \$(DOMAIN)_$lang.properties"
+ QTCATALOGS="$QTCATALOGS $lang.qm"
+ frobbedlang=`echo $lang | sed -e 's/\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'`
+ TCLCATALOGS="$TCLCATALOGS $frobbedlang.msg"
+ frobbedlang=`echo $lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$/-Latn/' -e 's/@cyrillic$/-Cyrl/' -e 's/^sr-SP$/sr-SP-Latn/' -e 's/^uz-UZ$/uz-UZ-Latn/'`
+ CSHARPCATALOGS="$CSHARPCATALOGS $frobbedlang/\$(DOMAIN).resources.dll"
+ done
+ fi
+
+ sed -e "s|@POTFILES_DEPS@|$POTFILES_DEPS|g" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@PROPERTIESFILES@|$PROPERTIESFILES|g" -e "s|@CLASSFILES@|$CLASSFILES|g" -e "s|@QMFILES@|$QMFILES|g" -e "s|@MSGFILES@|$MSGFILES|g" -e "s|@RESOURCESDLLFILES@|$RESOURCESDLLFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@JAVACATALOGS@|$JAVACATALOGS|g" -e "s|@QTCATALOGS@|$QTCATALOGS|g" -e "s|@TCLCATALOGS@|$TCLCATALOGS|g" -e "s|@CSHARPCATALOGS@|$CSHARPCATALOGS|g" -e 's,^#distdir:,distdir:,' < "$ac_file" > "$ac_file.tmp"
+ if grep -l '@TCLCATALOGS@' "$ac_file" > /dev/null; then
+ # Add dependencies that cannot be formulated as a simple suffix rule.
+ for lang in $ALL_LINGUAS; do
+ frobbedlang=`echo $lang | sed -e 's/\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'`
+ cat >> "$ac_file.tmp" <<EOF
+$frobbedlang.msg: $lang.po
+ @echo "\$(MSGFMT) -c --tcl -d \$(srcdir) -l $lang $srcdirpre$lang.po"; \
+ \$(MSGFMT) -c --tcl -d "\$(srcdir)" -l $lang $srcdirpre$lang.po || { rm -f "\$(srcdir)/$frobbedlang.msg"; exit 1; }
+EOF
+ done
+ fi
+ if grep -l '@CSHARPCATALOGS@' "$ac_file" > /dev/null; then
+ # Add dependencies that cannot be formulated as a simple suffix rule.
+ for lang in $ALL_LINGUAS; do
+ frobbedlang=`echo $lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$/-Latn/' -e 's/@cyrillic$/-Cyrl/' -e 's/^sr-SP$/sr-SP-Latn/' -e 's/^uz-UZ$/uz-UZ-Latn/'`
+ cat >> "$ac_file.tmp" <<EOF
+$frobbedlang/\$(DOMAIN).resources.dll: $lang.po
+ @echo "\$(MSGFMT) -c --csharp -d \$(srcdir) -l $lang $srcdirpre$lang.po -r \$(DOMAIN)"; \
+ \$(MSGFMT) -c --csharp -d "\$(srcdir)" -l $lang $srcdirpre$lang.po -r "\$(DOMAIN)" || { rm -f "\$(srcdir)/$frobbedlang.msg"; exit 1; }
+EOF
+ done
+ fi
+ if test -n "$POMAKEFILEDEPS"; then
+ cat >> "$ac_file.tmp" <<EOF
+Makefile: $POMAKEFILEDEPS
+EOF
+ fi
+ mv "$ac_file.tmp" "$ac_file"
+])
Added: trunk/m4/progtest.m4
===================================================================
--- trunk/m4/progtest.m4 (rev 0)
+++ trunk/m4/progtest.m4 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,92 @@
+# progtest.m4 serial 4 (gettext-0.14.2)
+dnl Copyright (C) 1996-2003, 2005 Free Software Foundation, Inc.
+dnl This file is free software; the Free Software Foundation
+dnl gives unlimited permission to copy and/or distribute it,
+dnl with or without modifications, as long as this notice is preserved.
+dnl
+dnl This file can can be used in projects which are not available under
+dnl the GNU General Public License or the GNU Library General Public
+dnl License but which still want to provide support for the GNU gettext
+dnl functionality.
+dnl Please note that the actual code of the GNU gettext library is covered
+dnl by the GNU Library General Public License, and the rest of the GNU
+dnl gettext package package is covered by the GNU General Public License.
+dnl They are *not* in the public domain.
+
+dnl Authors:
+dnl Ulrich Drepper <drepper@xxxxxxxxxx>, 1996.
+
+AC_PREREQ(2.50)
+
+# Search path for a program which passes the given test.
+
+dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR,
+dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]])
+AC_DEFUN([AM_PATH_PROG_WITH_TEST],
+[
+# Prepare PATH_SEPARATOR.
+# The user is always right.
+if test "${PATH_SEPARATOR+set}" != set; then
+ echo "#! /bin/sh" >conf$$.sh
+ echo "exit 0" >>conf$$.sh
+ chmod +x conf$$.sh
+ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
+ PATH_SEPARATOR=';'
+ else
+ PATH_SEPARATOR=:
+ fi
+ rm -f conf$$.sh
+fi
+
+# Find out how to test for executable files. Don't use a zero-byte file,
+# as systems may use methods other than mode bits to determine executability.
+cat >conf$$.file <<_ASEOF
+#! /bin/sh
+exit 0
+_ASEOF
+chmod +x conf$$.file
+if test -x conf$$.file >/dev/null 2>&1; then
+ ac_executable_p="test -x"
+else
+ ac_executable_p="test -f"
+fi
+rm -f conf$$.file
+
+# Extract the first word of "$2", so it can be a program name with args.
+set dummy $2; ac_word=[$]2
+AC_MSG_CHECKING([for $ac_word])
+AC_CACHE_VAL(ac_cv_path_$1,
+[case "[$]$1" in
+ [[\\/]]* | ?:[[\\/]]*)
+ ac_cv_path_$1="[$]$1" # Let the user override the test with a path.
+ ;;
+ *)
+ ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR
+ for ac_dir in ifelse([$5], , $PATH, [$5]); do
+ IFS="$ac_save_IFS"
+ test -z "$ac_dir" && ac_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then
+ echo "$as_me: trying $ac_dir/$ac_word..." >&AS_MESSAGE_LOG_FD
+ if [$3]; then
+ ac_cv_path_$1="$ac_dir/$ac_word$ac_exec_ext"
+ break 2
+ fi
+ fi
+ done
+ done
+ IFS="$ac_save_IFS"
+dnl If no 4th arg is given, leave the cache variable unset,
+dnl so AC_PATH_PROGS will keep looking.
+ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4"
+])dnl
+ ;;
+esac])dnl
+$1="$ac_cv_path_$1"
+if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then
+ AC_MSG_RESULT([$]$1)
+else
+ AC_MSG_RESULT(no)
+fi
+AC_SUBST($1)dnl
+])
Modified: trunk/vhffs-api/src/Vhffs/Conf.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Conf.pm 2008-01-09 20:46:27 UTC (rev 1118)
+++ trunk/vhffs-api/src/Vhffs/Conf.pm 2008-01-10 06:39:28 UTC (rev 1119)
@@ -208,4 +208,10 @@
return Vhffs::Functions::strtoboolean( $Config{'global'}{'use_vhffsfs'} );
}
+sub get_available_languages
+{
+ return split /\s/, $Config{'global'}{'available_languages'} if(defined $Config{'global'}{'available_languages'});
+ return (en_US);
+}
+
1;
Deleted: trunk/vhffs-api/src/Vhffs/Intl.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Intl.pm 2008-01-09 20:46:27 UTC (rev 1118)
+++ trunk/vhffs-api/src/Vhffs/Intl.pm 2008-01-10 06:39:28 UTC (rev 1119)
@@ -1,92 +0,0 @@
-# Copyright (c) vhffs project and its contributors
-# All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1. Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#2. Redistributions in binary form must reproduce the above copyright
-# notice, this list of conditions and the following disclaimer in
-# the documentation and/or other materials provided with the
-# distribution.
-#3. Neither the name of vhffs nor the names of its contributors
-# may be used to endorse or promote products derived from this
-# software without specific prior written permission.
-#
-#THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-#"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-#LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
-#FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-#COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-#INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
-#BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-#LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
-#CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
-# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
-# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-# POSSIBILITY OF SUCH DAMAGE.
-
-package Vhffs::Intl;
-
-use strict;
-use utf8;
-use Vhffs::Main;
-
-sub get_languages
-{
- my $vhffs = shift;
- my $langs;
- my @langs;
- my $file;
- my $dir = $vhffs->get_config->get_intldir;
-
- opendir( DIR , $dir );
- my @files = readdir( DIR );
-
- foreach( @files )
- {
- next if( ! -d $dir."/".$_ ); #next if the file is not a directory
- #languages files are in a directory
- next if( /^\./ ); #next if found language is .svn or . or ..
- push( @langs , $_ );
- }
-
- closedir( DIR );
- return \@langs;
-}
-
-1;
-
-__END__
-
-=head1 NAME
-
-Vhffs::Intl - Intl class of Vhffs API
-
-=head1 SYNOPSIS
-
- use Vhffs::Intl;
- my $langs = $get_languages;
- foreach $l ( @$langs )
- {
- echo $l;
- }
-
-=head1 DESCRIPTION
-Functions around intl
-
-=head1 METHODS
-
-=head1 SEE ALSO
-Vhffs::User, Vhffs::Group, Vhffs::Panel::Main
-
-=head1 AUTHOR
-
- Julien Delange <julien at gunnm dot org>
-
-=head1 COPYRIGHT
-
- Copyright 2005 by Julien Delange
-
Modified: trunk/vhffs-api/src/Vhffs/Makefile.am
===================================================================
--- trunk/vhffs-api/src/Vhffs/Makefile.am 2008-01-09 20:46:27 UTC (rev 1118)
+++ trunk/vhffs-api/src/Vhffs/Makefile.am 2008-01-10 06:39:28 UTC (rev 1119)
@@ -10,7 +10,6 @@
Debug.pm \
Functions.pm \
Group.pm \
- Intl.pm \
Listengine.pm \
Mailings.pm \
Main.pm \
@@ -68,7 +67,8 @@
-e 's,%PERL%,$(PERL),g' \
-e 's,'%VHFFS_LIB_DIR%',$(VHFFS_LIBDIR),g' \
-e 's,'%VHFFS_REVISION%",$(revision),g" \
- -e 's,'%VHFFS_BOTS_DIR%',$(botsdir),g'
+ -e 's,'%VHFFS_BOTS_DIR%',$(botsdir),g' \
+ -e 's,'%localedir%',$(localedir),g'
install-data-hook:
Modified: trunk/vhffs-api/src/Vhffs/Object.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Object.pm 2008-01-09 20:46:27 UTC (rev 1118)
+++ trunk/vhffs-api/src/Vhffs/Object.pm 2008-01-10 06:39:28 UTC (rev 1119)
@@ -394,7 +394,7 @@
$self->set_refuse_reason( '' );
# TODO: write a beautiful module for INTL
- bindtextdomain('vhffs', $vhffs->get_config->get_intldir);
+ bindtextdomain('vhffs', '%localedir%');
textdomain('vhffs');
my $prevlocale = setlocale( LC_ALL );
@@ -443,7 +443,7 @@
$self->set_refuse_reason( $reason );
# TODO: write a beautiful module for INTL
- bindtextdomain('vhffs', $vhffs->get_config->get_intldir);
+ bindtextdomain('vhffs', '%localedir%');
textdomain('vhffs');
my $prevlocale = setlocale( LC_ALL );
@@ -489,7 +489,7 @@
my $user = $self->get_user;
# TODO: write a beautiful module for INTL
- bindtextdomain('vhffs', $vhffs->get_config->get_intldir);
+ bindtextdomain('vhffs', '%localedir%');
textdomain('vhffs');
my $prevlocale = setlocale( LC_ALL );
Modified: trunk/vhffs-api/src/Vhffs/Panel/Commons.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Panel/Commons.pm 2008-01-09 20:46:27 UTC (rev 1118)
+++ trunk/vhffs-api/src/Vhffs/Panel/Commons.pm 2008-01-10 06:39:28 UTC (rev 1119)
@@ -175,7 +175,7 @@
} else {
$result->{data} = $dbh->selectall_arrayref($sql, { Slice => {} }, @{$params});
}
- ($result->{total_count}) = @{$dbh->selectrow_arrayref('SELECT COUNT(*) '.$conditions, undef, @{$params})};
+ ($result->{total_count}) = @{$dbh->selectrow_arrayref('SELECT COUNT(*) '.$conditions, undef, @$params)};
return $result;
}
Modified: trunk/vhffs-api/src/Vhffs/Panel/Main.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Panel/Main.pm 2008-01-09 20:46:27 UTC (rev 1118)
+++ trunk/vhffs-api/src/Vhffs/Panel/Main.pm 2008-01-10 06:39:28 UTC (rev 1119)
@@ -242,39 +242,18 @@
my $vhffs = shift;
return -1 if( ! defined $vhffs );
- my @langs;
-
- my $dir = $vhffs->get_config->get_intldir;
- return undef if( ! ( defined $dir ) );
-
-# push @langs , "en_US";
-
- opendir( DIR , $dir) or return @langs;
- my @files = readdir( DIR );
- foreach( @files )
- {
- next if( /^\./);
- if( -d $dir."/".$_ )
- {
- push @langs , $_;
- }
- }
- closedir( DIR );
-
- return @langs;
+ return $vhffs->get_config->get_available_languages;
}
-sub select_lang
-{
- use Vhffs::Intl;
- my $panel = shift;
- my $txt = '';
- my $langs = Vhffs::Intl::get_languages( $panel->{vhffs} );
- foreach my $l ( @{$langs} )
+sub select_lang {
+ my $self = shift;
+ my @langs = $self->{vhffs}->get_config->get_available_languages;
+ my $txt = '';
+ foreach my $l ( @langs )
{
- $txt .= "<a href=\"auth.pl?lang=".$l."\"><img src=\"/themes/".$panel->{theme}."/images/".$l.".png\" alt=\"".$l."language\"/></a>";
+ $txt .= "<a href=\"auth.pl?lang=".$l."\"><img src=\"/themes/".$self->{theme}."/images/".$l.".png\" alt=\"".$l."language\"/></a>";
}
return $txt;
}
@@ -314,7 +293,7 @@
$this->{lang} = $lang;
setlocale(LC_ALL, $lang);
- bindtextdomain('vhffs', $config->get_intldir);
+ bindtextdomain('vhffs', '%localedir%');
textdomain('vhffs');
# theme cookie
Modified: trunk/vhffs-api/src/Vhffs/User.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/User.pm 2008-01-09 20:46:27 UTC (rev 1118)
+++ trunk/vhffs-api/src/Vhffs/User.pm 2008-01-10 06:39:28 UTC (rev 1119)
@@ -312,7 +312,7 @@
my $vhffs = $self->{main};
# TODO: write a beautiful module for INTL
- bindtextdomain('vhffs', $vhffs->get_config->get_intldir);
+ bindtextdomain('vhffs', '%localedir%');
textdomain('vhffs');
my $prevlocale = setlocale( LC_ALL );
Modified: trunk/vhffs-backend/Makefile.am
===================================================================
--- trunk/vhffs-backend/Makefile.am 2008-01-09 20:46:27 UTC (rev 1118)
+++ trunk/vhffs-backend/Makefile.am 2008-01-10 06:39:28 UTC (rev 1119)
@@ -2,16 +2,21 @@
SUBDIRS=src
+# If you add files to this, you've to modify install-data-hook
config_DATA = conf/vhffs.conf.dist
configdir = @CONFDIR@
CONF_FILE = @CONFDIR@/vhffs.conf
+do_sed = $(SED) --in-place -e 's!%localedir%!$(localedir)!g'
+
install-data-hook:
- @if test -f $(DESTDIR)$(CONF_FILE) ; then \
+ @$(do_sed) $(DESTDIR)$(configdir)/vhffs.conf.dist; \
+ if test -f $(DESTDIR)$(CONF_FILE) ; then \
echo "$@ will not overwrite existing $(DESTDIR)$(CONF_FILE)" ; \
else \
echo "$(INSTALL_DATA) vhffs.conf $(DESTDIR)$(CONF_FILE)"; \
$(INSTALL_DATA) $(config_DATA) $(DESTDIR)$(CONF_FILE); \
+ $(do_sed) $(DESTDIR)$(CONF_FILE); \
fi
endif
Modified: trunk/vhffs-backend/conf/vhffs.conf.dist.in
===================================================================
--- trunk/vhffs-backend/conf/vhffs.conf.dist.in 2008-01-09 20:46:27 UTC (rev 1118)
+++ trunk/vhffs-backend/conf/vhffs.conf.dist.in 2008-01-10 06:39:28 UTC (rev 1119)
@@ -22,8 +22,8 @@
# Directory which contains templates
templatedir = @TEMPLATESDIR@
- # Directory which contains internationalisation stuff
- intldir = @INTLDIR@/
+ # Available languages on this platform
+ available_languages = en_US fr_FR es_ES
# The default language
default_language = en_US
Property changes on: trunk/vhffs-intl
___________________________________________________________________
Name: svn:ignore
- Makefile.in
Makefile
template_strings.pl
+ Makefile.in
Makefile
template_strings.pl
*.gmo
Added: trunk/vhffs-intl/ChangeLog
===================================================================
--- trunk/vhffs-intl/ChangeLog (rev 0)
+++ trunk/vhffs-intl/ChangeLog 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,12 @@
+2008-01-09 gettextize <bug-gnu-gettext@xxxxxxx>
+
+ * Makefile.in.in: New file, from gettext-0.16.1.
+ * boldquot.sed: New file, from gettext-0.16.1.
+ * en@boldquot.header: New file, from gettext-0.16.1.
+ * en@quot.header: New file, from gettext-0.16.1.
+ * insert-header.sin: New file, from gettext-0.16.1.
+ * quot.sed: New file, from gettext-0.16.1.
+ * remove-potcdate.sin: New file, from gettext-0.16.1.
+ * Rules-quot: New file, from gettext-0.16.1.
+ * POTFILES.in: New file.
+
Deleted: trunk/vhffs-intl/DOC
===================================================================
--- trunk/vhffs-intl/DOC 2008-01-09 20:46:27 UTC (rev 1118)
+++ trunk/vhffs-intl/DOC 2008-01-10 06:39:28 UTC (rev 1119)
@@ -1,73 +0,0 @@
-extraction des strings :
-
- xgettext -L Perl -d vhffs -s -o vhffs.pot `find /vhffs -name "*.pl"`
-
-
- (attention au domaine, mais j'ai fait en sorte de ne pas casser tout le fr.po)
- cd vhffs-intl
- ./createpo.sh (C'est-à-dire la ligne suivante :)
- # xgettext -L Perl -d .. -s -o src/vhffs.pot `find ../ -name "*.p[lm]"`
-
- Note : j'ai ensuite essayé de modifier quelques chaînes et d'en ajouter,
- la même commande a permis de mettre le .pot à jour sans tout casser.
-
-
-creation d'un fichier de traduction :
-
- msginit -l fr_FR -o french.po -i vhffs.pot
-
- cd vhffs-intl/src
- mkdir de
- msginit -l de_DE -o de/de.po -i vhffs.pot
-
-
-mise à jour d'un fichier de traduction : (Par KiBi)
-
- cd vhffs-intl/src
- msgmerge fr/fr.po vhffs.pot -o fr/fr.po.new
- # On s'assure de n'avoir rien cassé,
- # diff -u fr/fr.po fr/fr.po.new # est notre ami
- # On complète la traduction
-
- Note : Je me demande si avoir src/{vhffs.pot,fr.po,es.po,...} dans le
- même répertoire ne serait pas suffisant, plutôt que de créer
- des sous-répertoires pour chaque langue.
-
-
-compilation du fichier .po en binaire utilisable par gettext :
-
- msgfmt -c -v -o vhffs.mo french.po
-
-
-copiage :
-
- mkdir -p fr_FR/LC_MESSAGES
- cp vhffs.mo fr_FR/LC_MESSAGES
-
-
-et en Perl :
-
-#!/usr/bin/perl
-
-require 5.004;
-use POSIX;
-use strict;
-use locale;
-use Locale::gettext;
-
-# soit du fichier a utiliser, on peux utiliser l'info venant du browser
-# ou venant d'un choix par l'utilisateur
-setlocale(LC_ALL, "fr_FR");
-
-# on specifie que les fichiers de traduc sont dans /vhffs/vhffs-panel/intl/
-bindtextdomain("panel", "/vhffs/vhffs-panel/intl");
-
-# et que les fichiers se nomment panel(.mo)
-textdomain("panel");
-
-# et voila !
-print gettext("Hello World!\n");
-
-
-source :
-http://oriya.sarovar.org/docs/gettext/
Added: trunk/vhffs-intl/LINGUAS
===================================================================
--- trunk/vhffs-intl/LINGUAS (rev 0)
+++ trunk/vhffs-intl/LINGUAS 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,4 @@
+en_US
+fr_FR
+es_ES
+de_DE
Deleted: trunk/vhffs-intl/Makefile.am
===================================================================
--- trunk/vhffs-intl/Makefile.am 2008-01-09 20:46:27 UTC (rev 1118)
+++ trunk/vhffs-intl/Makefile.am 2008-01-10 06:39:28 UTC (rev 1119)
@@ -1 +0,0 @@
-SUBDIRS = result
Added: trunk/vhffs-intl/Makefile.in.in
===================================================================
--- trunk/vhffs-intl/Makefile.in.in (rev 0)
+++ trunk/vhffs-intl/Makefile.in.in 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,408 @@
+# Makefile for PO directory in any package using GNU gettext.
+# Copyright (C) 1995-1997, 2000-2006 by Ulrich Drepper <drepper@xxxxxxxxxxxxxx>
+#
+# This file can be copied and used freely without restrictions. It can
+# be used in projects which are not available under the GNU General Public
+# License but which still want to provide support for the GNU gettext
+# functionality.
+# Please note that the actual code of GNU gettext is covered by the GNU
+# General Public License and is *not* in the public domain.
+#
+# Origin: gettext-0.16
+
+PACKAGE = @PACKAGE@
+VERSION = @VERSION@
+PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+
+SHELL = /bin/sh
+@SET_MAKE@
+
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+VPATH = @srcdir@
+
+prefix = @prefix@
+exec_prefix = @exec_prefix@
+datarootdir = @datarootdir@
+datadir = @datadir@
+localedir = @localedir@
+gettextsrcdir = $(datadir)/gettext/po
+
+INSTALL = @INSTALL@
+INSTALL_DATA = @INSTALL_DATA@
+
+# We use $(mkdir_p).
+# In automake <= 1.9.x, $(mkdir_p) is defined either as "mkdir -p --" or as
+# "$(mkinstalldirs)" or as "$(install_sh) -d". For these automake versions,
+# @install_sh@ does not start with $(SHELL), so we add it.
+# In automake >= 1.10, @mkdir_p@ is derived from ${MKDIR_P}, which is defined
+# either as "/path/to/mkdir -p" or ".../install-sh -c -d". For these automake
+# versions, $(mkinstalldirs) and $(install_sh) are unused.
+mkinstalldirs = $(SHELL) @install_sh@ -d
+install_sh = $(SHELL) @install_sh@
+MKDIR_P = @MKDIR_P@
+mkdir_p = @mkdir_p@
+
+GMSGFMT_ = @GMSGFMT@
+GMSGFMT_no = @GMSGFMT@
+GMSGFMT_yes = @GMSGFMT_015@
+GMSGFMT = $(GMSGFMT_$(USE_MSGCTXT))
+MSGFMT_ = @MSGFMT@
+MSGFMT_no = @MSGFMT@
+MSGFMT_yes = @MSGFMT_015@
+MSGFMT = $(MSGFMT_$(USE_MSGCTXT))
+XGETTEXT_ = @XGETTEXT@
+XGETTEXT_no = @XGETTEXT@
+XGETTEXT_yes = @XGETTEXT_015@
+XGETTEXT = $(XGETTEXT_$(USE_MSGCTXT))
+MSGMERGE = msgmerge --no-fuzzy-matching
+MSGMERGE_UPDATE = @MSGMERGE@ --update
+MSGINIT = msginit
+MSGCONV = msgconv
+MSGFILTER = msgfilter
+
+POFILES = @POFILES@
+GMOFILES = @GMOFILES@
+UPDATEPOFILES = @UPDATEPOFILES@
+DUMMYPOFILES = @DUMMYPOFILES@
+DISTFILES.common = Makefile.in.in remove-potcdate.sin \
+$(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3)
+DISTFILES = $(DISTFILES.common) Makevars POTFILES.in \
+$(POFILES) $(GMOFILES) \
+$(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3)
+
+POTFILES = \
+
+CATALOGS = @CATALOGS@
+
+# Makevars gets inserted here. (Don't remove this line!)
+
+.SUFFIXES:
+.SUFFIXES: .po .gmo .mo .sed .sin .nop .po-create .po-update
+
+.po.mo:
+ @echo "$(MSGFMT) -c -o $@ $<"; \
+ $(MSGFMT) -c -o t-$@ $< && mv t-$@ $@
+
+.po.gmo:
+ @lang=`echo $* | sed -e 's,.*/,,'`; \
+ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \
+ echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o $${lang}.gmo $${lang}.po"; \
+ cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo
+
+.sin.sed:
+ sed -e '/^#/d' $< > t-$@
+ mv t-$@ $@
+
+
+all: all-@USE_NLS@
+
+all-yes: stamp-po
+all-no:
+
+# $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no
+# internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because
+# we don't want to bother translators with empty POT files). We assume that
+# LINGUAS is empty in this case, i.e. $(POFILES) and $(GMOFILES) are empty.
+# In this case, stamp-po is a nop (i.e. a phony target).
+
+# stamp-po is a timestamp denoting the last time at which the CATALOGS have
+# been loosely updated. Its purpose is that when a developer or translator
+# checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS,
+# "make" will update the $(DOMAIN).pot and the $(CATALOGS), but subsequent
+# invocations of "make" will do nothing. This timestamp would not be necessary
+# if updating the $(CATALOGS) would always touch them; however, the rule for
+# $(POFILES) has been designed to not touch files that don't need to be
+# changed.
+stamp-po: $(srcdir)/$(DOMAIN).pot
+ test ! -f $(srcdir)/$(DOMAIN).pot || \
+ test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES)
+ @test ! -f $(srcdir)/$(DOMAIN).pot || { \
+ echo "touch stamp-po" && \
+ echo timestamp > stamp-poT && \
+ mv stamp-poT stamp-po; \
+ }
+
+# Note: Target 'all' must not depend on target '$(DOMAIN).pot-update',
+# otherwise packages like GCC can not be built if only parts of the source
+# have been downloaded.
+
+# This target rebuilds $(DOMAIN).pot; it is an expensive operation.
+# Note that $(DOMAIN).pot is not touched if it doesn't need to be changed.
+$(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed
+ if test -n '$(MSGID_BUGS_ADDRESS)' || test '$(PACKAGE_BUGREPORT)' = '@'PACKAGE_BUGREPORT'@'; then \
+ msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \
+ else \
+ msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \
+ fi; \
+ $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \
+ --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \
+ --files-from=$(srcdir)/POTFILES.in \
+ --copyright-holder='$(COPYRIGHT_HOLDER)' \
+ --msgid-bugs-address="$$msgid_bugs_address"
+ test ! -f $(DOMAIN).po || { \
+ if test -f $(srcdir)/$(DOMAIN).pot; then \
+ sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \
+ sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \
+ if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \
+ rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \
+ else \
+ rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \
+ mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \
+ fi; \
+ else \
+ mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \
+ fi; \
+ }
+
+# This rule has no dependencies: we don't need to update $(DOMAIN).pot at
+# every "make" invocation, only create it when it is missing.
+# Only "make $(DOMAIN).pot-update" or "make dist" will force an update.
+$(srcdir)/$(DOMAIN).pot:
+ $(MAKE) $(DOMAIN).pot-update
+
+# This target rebuilds a PO file if $(DOMAIN).pot has changed.
+# Note that a PO file is not touched if it doesn't need to be changed.
+$(POFILES): $(srcdir)/$(DOMAIN).pot
+ @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \
+ if test -f "$(srcdir)/$${lang}.po"; then \
+ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \
+ echo "$${cdcmd}$(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot"; \
+ cd $(srcdir) && $(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot; \
+ else \
+ $(MAKE) $${lang}.po-create; \
+ fi
+
+
+install: install-exec install-data
+install-exec:
+install-data: install-data-@USE_NLS@
+ if test "$(PACKAGE)" = "gettext-tools"; then \
+ $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \
+ for file in $(DISTFILES.common) Makevars.template; do \
+ $(INSTALL_DATA) $(srcdir)/$$file \
+ $(DESTDIR)$(gettextsrcdir)/$$file; \
+ done; \
+ for file in Makevars; do \
+ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \
+ done; \
+ else \
+ : ; \
+ fi
+install-data-no: all
+install-data-yes: all
+ $(mkdir_p) $(DESTDIR)$(datadir)
+ @catalogs='$(CATALOGS)'; \
+ for cat in $$catalogs; do \
+ cat=`basename $$cat`; \
+ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \
+ dir=$(localedir)/$$lang/LC_MESSAGES; \
+ $(mkdir_p) $(DESTDIR)$$dir; \
+ if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \
+ $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \
+ echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \
+ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \
+ if test -n "$$lc"; then \
+ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \
+ link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \
+ mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
+ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
+ (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \
+ for file in *; do \
+ if test -f $$file; then \
+ ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \
+ fi; \
+ done); \
+ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
+ else \
+ if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \
+ :; \
+ else \
+ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \
+ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
+ fi; \
+ fi; \
+ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \
+ ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \
+ ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \
+ cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \
+ echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \
+ fi; \
+ done; \
+ done
+
+install-strip: install
+
+installdirs: installdirs-exec installdirs-data
+installdirs-exec:
+installdirs-data: installdirs-data-@USE_NLS@
+ if test "$(PACKAGE)" = "gettext-tools"; then \
+ $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \
+ else \
+ : ; \
+ fi
+installdirs-data-no:
+installdirs-data-yes:
+ $(mkdir_p) $(DESTDIR)$(datadir)
+ @catalogs='$(CATALOGS)'; \
+ for cat in $$catalogs; do \
+ cat=`basename $$cat`; \
+ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \
+ dir=$(localedir)/$$lang/LC_MESSAGES; \
+ $(mkdir_p) $(DESTDIR)$$dir; \
+ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \
+ if test -n "$$lc"; then \
+ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \
+ link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \
+ mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
+ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
+ (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \
+ for file in *; do \
+ if test -f $$file; then \
+ ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \
+ fi; \
+ done); \
+ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
+ else \
+ if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \
+ :; \
+ else \
+ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \
+ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
+ fi; \
+ fi; \
+ fi; \
+ done; \
+ done
+
+# Define this as empty until I found a useful application.
+installcheck:
+
+uninstall: uninstall-exec uninstall-data
+uninstall-exec:
+uninstall-data: uninstall-data-@USE_NLS@
+ if test "$(PACKAGE)" = "gettext-tools"; then \
+ for file in $(DISTFILES.common) Makevars.template; do \
+ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \
+ done; \
+ else \
+ : ; \
+ fi
+uninstall-data-no:
+uninstall-data-yes:
+ catalogs='$(CATALOGS)'; \
+ for cat in $$catalogs; do \
+ cat=`basename $$cat`; \
+ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \
+ for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \
+ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \
+ done; \
+ done
+
+check: all
+
+info dvi ps pdf html tags TAGS ctags CTAGS ID:
+
+mostlyclean:
+ rm -f remove-potcdate.sed
+ rm -f stamp-poT
+ rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po
+ rm -fr *.o
+
+clean: mostlyclean
+
+distclean: clean
+ rm -f Makefile Makefile.in POTFILES *.mo
+
+maintainer-clean: distclean
+ @echo "This command is intended for maintainers to use;"
+ @echo "it deletes files that may require special tools to rebuild."
+ rm -f stamp-po $(GMOFILES)
+
+distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
+dist distdir:
+ $(MAKE) update-po
+ @$(MAKE) dist2
+# This is a separate target because 'update-po' must be executed before.
+dist2: stamp-po $(DISTFILES)
+ dists="$(DISTFILES)"; \
+ if test "$(PACKAGE)" = "gettext-tools"; then \
+ dists="$$dists Makevars.template"; \
+ fi; \
+ if test -f $(srcdir)/$(DOMAIN).pot; then \
+ dists="$$dists $(DOMAIN).pot stamp-po"; \
+ fi; \
+ if test -f $(srcdir)/ChangeLog; then \
+ dists="$$dists ChangeLog"; \
+ fi; \
+ for i in 0 1 2 3 4 5 6 7 8 9; do \
+ if test -f $(srcdir)/ChangeLog.$$i; then \
+ dists="$$dists ChangeLog.$$i"; \
+ fi; \
+ done; \
+ if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \
+ for file in $$dists; do \
+ if test -f $$file; then \
+ cp -p $$file $(distdir) || exit 1; \
+ else \
+ cp -p $(srcdir)/$$file $(distdir) || exit 1; \
+ fi; \
+ done
+
+update-po: Makefile
+ $(MAKE) $(DOMAIN).pot-update
+ test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES)
+ $(MAKE) update-gmo
+
+# General rule for creating PO files.
+
+.nop.po-create:
+ @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \
+ echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \
+ exit 1
+
+# General rule for updating PO files.
+
+.nop.po-update:
+ @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \
+ if test "$(PACKAGE)" = "gettext-tools"; then PATH=`pwd`/../src:$$PATH; fi; \
+ tmpdir=`pwd`; \
+ echo "$$lang:"; \
+ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \
+ echo "$${cdcmd}$(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \
+ cd $(srcdir); \
+ if $(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$tmpdir/$$lang.new.po; then \
+ if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \
+ rm -f $$tmpdir/$$lang.new.po; \
+ else \
+ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \
+ :; \
+ else \
+ echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \
+ exit 1; \
+ fi; \
+ fi; \
+ else \
+ echo "msgmerge for $$lang.po failed!" 1>&2; \
+ rm -f $$tmpdir/$$lang.new.po; \
+ fi
+
+$(DUMMYPOFILES):
+
+update-gmo: Makefile $(GMOFILES)
+ @:
+
+# Recreates the POFILES.in file
+update-pofiles:
+ find $(top_builddir) -name '*.tmpl' | xargs perl -ne 'if(/<TMPL_I18N\s+KEY="([^"]+)/i) { print "gettext(\"$$1\");\n"; }' > template_strings.pl
+ find $(top_builddir) -name '*.p[ml]' | sed s!^$(top_builddir)/!! > POTFILES.in
+
+Makefile: Makefile.in.in Makevars $(top_builddir)/config.status @POMAKEFILEDEPS@
+ cd $(top_builddir) \
+ && $(SHELL) ./config.status $(subdir)/$@.in po-directories
+
+force:
+
+# Tell versions [3.59,3.63) of GNU make not to export all variables.
+# Otherwise a system limit (for SysV at least) may be exceeded.
+.NOEXPORT:
Added: trunk/vhffs-intl/Makevars
===================================================================
--- trunk/vhffs-intl/Makevars (rev 0)
+++ trunk/vhffs-intl/Makevars 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,41 @@
+# Makefile variables for PO directory in any package using GNU gettext.
+
+# Usually the message domain is the same as the package name.
+DOMAIN = $(PACKAGE)
+
+# These two variables depend on the location of this directory.
+subdir = vhffs-intl
+top_builddir = ..
+
+# These options get passed to xgettext.
+XGETTEXT_OPTIONS = -L Perl -s
+
+# This is the copyright holder that gets inserted into the header of the
+# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding
+# package. (Note that the msgstr strings, extracted from the package's
+# sources, belong to the copyright holder of the package.) Translators are
+# expected to transfer the copyright for their translations to this person
+# or entity, or to disclaim their copyright. The empty string stands for
+# the public domain; in this case the translators are expected to disclaim
+# their copyright.
+COPYRIGHT_HOLDER = VHFFS Project and its contributors.
+
+# This is the email address or URL to which the translators shall report
+# bugs in the untranslated strings:
+# - Strings which are not entire sentences, see the maintainer guidelines
+# in the GNU gettext documentation, section 'Preparing Strings'.
+# - Strings which use unclear terms or require additional context to be
+# understood.
+# - Strings which make invalid assumptions about notation of date, time or
+# money.
+# - Pluralisation problems.
+# - Incorrect English spelling.
+# - Incorrect formatting.
+# It can be your email address, or a mailing list address where translators
+# can write to without being subscribed, or the URL of a web page through
+# which the translators can contact you.
+MSGID_BUGS_ADDRESS =vhffs-dev@xxxxxxxxx
+
+# This is the list of locale categories, beyond LC_MESSAGES, for which the
+# message catalogs shall be used. It is usually empty.
+EXTRA_LOCALE_CATEGORIES =
Added: trunk/vhffs-intl/POTFILES.in
===================================================================
--- trunk/vhffs-intl/POTFILES.in (rev 0)
+++ trunk/vhffs-intl/POTFILES.in 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,297 @@
+vhffs-packages/oldbuildwithdput.pl
+vhffs-public/user.pl
+vhffs-public/lastgroups.pl
+vhffs-public/lastusers.pl
+vhffs-public/allwebsites.pl
+vhffs-public/usersearch.pl
+vhffs-public/groupsearch.pl
+vhffs-public/index.pl
+vhffs-public/group.pl
+vhffs-public/websitesearch.pl
+vhffs-public/allgroups.pl
+vhffs-public/rss/lastgroups.pl
+vhffs-public/rss/lastusers.pl
+vhffs-public/getavatar.pl
+vhffs-panel/subscribe.pl
+vhffs-panel/panel.pl
+vhffs-panel/ajax/help.pl
+vhffs-panel/mailinglist/delete.pl
+vhffs-panel/mailinglist/prefs.pl
+vhffs-panel/mailinglist/index.pl
+vhffs-panel/mailinglist/create.pl
+vhffs-panel/svn/delete.pl
+vhffs-panel/svn/prefs.pl
+vhffs-panel/svn/index.pl
+vhffs-panel/svn/create.pl
+vhffs-panel/history.pl
+vhffs-panel/user/delete.pl
+vhffs-panel/user/prefs.pl
+vhffs-panel/dns/delete.pl
+vhffs-panel/dns/prefs.pl
+vhffs-panel/dns/index.pl
+vhffs-panel/dns/create.pl
+vhffs-panel/acl/view.pl
+vhffs-panel/pgsql/delete.pl
+vhffs-panel/pgsql/prefs.pl
+vhffs-panel/pgsql/index.pl
+vhffs-panel/pgsql/create.pl
+vhffs-panel/show_code.pl
+vhffs-panel/alert_submit.pl
+vhffs-panel/group/delete.pl
+vhffs-panel/group/history.pl
+vhffs-panel/group/view.pl
+vhffs-panel/group/prefs.pl
+vhffs-panel/group/index.pl
+vhffs-panel/group/create.pl
+vhffs-panel/repository/delete.pl
+vhffs-panel/repository/prefs.pl
+vhffs-panel/repository/index.pl
+vhffs-panel/repository/create.pl
+vhffs-panel/alert.pl
+vhffs-panel/admin/mailinglist/index.pl
+vhffs-panel/admin/mailinglist/search.pl
+vhffs-panel/admin/mailinglist/list.pl
+vhffs-panel/admin/svn/index.pl
+vhffs-panel/admin/svn/search.pl
+vhffs-panel/admin/svn/list.pl
+vhffs-panel/admin/broadcast.pl
+vhffs-panel/admin/stats.pl
+vhffs-panel/admin/user/index.pl
+vhffs-panel/admin/user/search.pl
+vhffs-panel/admin/user/list.pl
+vhffs-panel/admin/dns/index.pl
+vhffs-panel/admin/dns/search.pl
+vhffs-panel/admin/dns/list.pl
+vhffs-panel/admin/moderation_submit.pl
+vhffs-panel/admin/moderation.pl
+vhffs-panel/admin/pgsql/index.pl
+vhffs-panel/admin/pgsql/search.pl
+vhffs-panel/admin/pgsql/list.pl
+vhffs-panel/admin/index.pl
+vhffs-panel/admin/broadcast_submit.pl
+vhffs-panel/admin/broadcast_delete.pl
+vhffs-panel/admin/group/index.pl
+vhffs-panel/admin/group/search.pl
+vhffs-panel/admin/group/list.pl
+vhffs-panel/admin/broadcast_list.pl
+vhffs-panel/admin/repository/index.pl
+vhffs-panel/admin/repository/search.pl
+vhffs-panel/admin/repository/list.pl
+vhffs-panel/admin/git/index.pl
+vhffs-panel/admin/git/search.pl
+vhffs-panel/admin/git/list.pl
+vhffs-panel/admin/su.pl
+vhffs-panel/admin/object/edit_submit.pl
+vhffs-panel/admin/object/delete_avatar.pl
+vhffs-panel/admin/object/edit.pl
+vhffs-panel/admin/object/search.pl
+vhffs-panel/admin/object/list.pl
+vhffs-panel/admin/broadcast_view.pl
+vhffs-panel/admin/web/index.pl
+vhffs-panel/admin/web/search.pl
+vhffs-panel/admin/web/list.pl
+vhffs-panel/admin/mysql/index.pl
+vhffs-panel/admin/mysql/search.pl
+vhffs-panel/admin/mysql/list.pl
+vhffs-panel/admin/cvs/index.pl
+vhffs-panel/admin/cvs/search.pl
+vhffs-panel/admin/cvs/list.pl
+vhffs-panel/admin/mail/index.pl
+vhffs-panel/admin/mail/search.pl
+vhffs-panel/admin/mail/list.pl
+vhffs-panel/git/delete.pl
+vhffs-panel/git/prefs.pl
+vhffs-panel/git/index.pl
+vhffs-panel/git/create.pl
+vhffs-panel/object/upavatar.pl
+vhffs-panel/object/quickdelete.pl
+vhffs-panel/object/resubmit.pl
+vhffs-panel/web/delete.pl
+vhffs-panel/web/prefs.pl
+vhffs-panel/web/index.pl
+vhffs-panel/web/create.pl
+vhffs-panel/auth.pl
+vhffs-panel/lost.pl
+vhffs-panel/mysql/delete.pl
+vhffs-panel/mysql/prefs.pl
+vhffs-panel/mysql/index.pl
+vhffs-panel/mysql/create.pl
+vhffs-panel/getavatar.pl
+vhffs-panel/cvs/delete.pl
+vhffs-panel/cvs/prefs.pl
+vhffs-panel/cvs/index.pl
+vhffs-panel/cvs/create.pl
+vhffs-panel/mail/delete.pl
+vhffs-panel/mail/prefs.pl
+vhffs-panel/mail/index.pl
+vhffs-panel/mail/create.pl
+vhffs-panel/lost_ack.pl
+vhffs-intl/template_strings.pl
+vhffs-intl/extra_strings.pl
+vhffs-tests/src/Functions.pl
+vhffs-tests/src/Vhffs/Tests/Main.pm
+vhffs-tests/src/Vhffs/Tests/Utils.pm
+vhffs-compat/updatedb.pl
+vhffs-backend/src/mirror/mx1-mirror.pl
+vhffs-backend/src/mirror/mx2-mirror.pl
+vhffs-backend/src/mirror/nss-mirror.pl
+vhffs-backend/src/mirror/mydns-mirror.pl
+vhffs-listengine/src/listengine.pl
+vhffs-api/src/Vhffs/Main.pm
+vhffs-api/src/Vhffs/User.pm
+vhffs-api/src/Vhffs/Object.pm
+vhffs-api/src/Vhffs/Panel/Commons.pm
+vhffs-api/src/Vhffs/Panel/Main.pm
+vhffs-api/src/Vhffs/Panel/Svn.pm
+vhffs-api/src/Vhffs/Panel/User.pm
+vhffs-api/src/Vhffs/Panel/Object.pm
+vhffs-api/src/Vhffs/Panel/Mail.pm
+vhffs-api/src/Vhffs/Panel/Admin.pm
+vhffs-api/src/Vhffs/Panel/Web.pm
+vhffs-api/src/Vhffs/Panel/Menu.pm
+vhffs-api/src/Vhffs/Panel/Cvs.pm
+vhffs-api/src/Vhffs/Panel/Avatar.pm
+vhffs-api/src/Vhffs/Panel/Repository.pm
+vhffs-api/src/Vhffs/Panel/Group.pm
+vhffs-api/src/Vhffs/Panel/Mysql.pm
+vhffs-api/src/Vhffs/Panel/Template.pm
+vhffs-api/src/Vhffs/Panel/Pgsql.pm
+vhffs-api/src/Vhffs/Panel/DNS.pm
+vhffs-api/src/Vhffs/Panel/Git.pm
+vhffs-api/src/Vhffs/Panel/MailingList.pm
+vhffs-api/src/Vhffs/Conf.pm
+vhffs-api/src/Vhffs/Mailings.pm
+vhffs-api/src/Vhffs/Robots.pm
+vhffs-api/src/Vhffs/Debug.pm
+vhffs-api/src/Vhffs/Robots/Svn.pm
+vhffs-api/src/Vhffs/Robots/User.pm
+vhffs-api/src/Vhffs/Robots/Mail.pm
+vhffs-api/src/Vhffs/Robots/Web.pm
+vhffs-api/src/Vhffs/Robots/Cvs.pm
+vhffs-api/src/Vhffs/Robots/Repository.pm
+vhffs-api/src/Vhffs/Robots/Group.pm
+vhffs-api/src/Vhffs/Robots/Mailing.pm
+vhffs-api/src/Vhffs/Robots/Mysql.pm
+vhffs-api/src/Vhffs/Robots/Pgsql.pm
+vhffs-api/src/Vhffs/Robots/Git.pm
+vhffs-api/src/Vhffs/Services/Svn.pm
+vhffs-api/src/Vhffs/Services/MailUser.pm
+vhffs-api/src/Vhffs/Services/Mail.pm
+vhffs-api/src/Vhffs/Services/Web.pm
+vhffs-api/src/Vhffs/Services/Cvs.pm
+vhffs-api/src/Vhffs/Services/Repository.pm
+vhffs-api/src/Vhffs/Services/MailGroup.pm
+vhffs-api/src/Vhffs/Services/Mysql.pm
+vhffs-api/src/Vhffs/Services/Pgsql.pm
+vhffs-api/src/Vhffs/Services/DNS.pm
+vhffs-api/src/Vhffs/Services/Git.pm
+vhffs-api/src/Vhffs/Services/MailingList.pm
+vhffs-api/src/Vhffs/Services.pm
+vhffs-api/src/Vhffs/Group.pm
+vhffs-api/src/Vhffs/ObjectFactory.pm
+vhffs-api/src/Vhffs/Constants.pm
+vhffs-api/src/Vhffs/Acl.pm
+vhffs-api/src/Vhffs/Listengine.pm
+vhffs-api/src/Vhffs/Stats.pm
+vhffs-api/src/Vhffs/Functions.pm
+vhffs-api/src/examples/hashdomain.pl
+vhffs-api/src/examples/show_last_users.pl
+vhffs-api/src/examples/create_dir.pl
+vhffs-api/src/examples/create_mail.pl
+vhffs-api/src/examples/create_cvs.pl
+vhffs-api/src/examples/show_dumper_cvs.pl
+vhffs-api/src/examples/show_mail_per_group.pl
+vhffs-api/src/examples/list_themes.pl
+vhffs-api/src/examples/show_mail_conf.pl
+vhffs-api/src/examples/print_domain.pl
+vhffs-api/src/examples/show_dns_per_user.pl
+vhffs-api/src/examples/stats.pl
+vhffs-api/src/examples/show_acl_per_object.pl
+vhffs-api/src/examples/hash_webdir.pl
+vhffs-api/src/examples/hashpopuser.pl
+vhffs-api/src/examples/create_forward.pl
+vhffs-api/src/examples/create_dns.pl
+vhffs-api/src/examples/delbox.pl
+vhffs-api/src/examples/create_postgres.pl
+vhffs-api/src/examples/create_repository.pl
+vhffs-api/src/examples/create_cvs_panel.pl
+vhffs-api/src/examples/add_acl_dns.pl
+vhffs-api/src/examples/generate_password.pl
+vhffs-api/src/examples/create_group_by_panel.pl
+vhffs-api/src/examples/show_dns_per_group.pl
+vhffs-api/src/examples/create_list.pl
+vhffs-api/src/examples/modify_acl.pl
+vhffs-api/src/examples/show_dumper_user.pl
+vhffs-api/src/examples/show_dumper_object.pl
+vhffs-api/src/examples/create_box.pl
+vhffs-api/src/examples/create_group.pl
+vhffs-api/src/examples/create_panel_mail.pl
+vhffs-api/src/examples/create_user.pl
+vhffs-api/src/examples/add_acl.pl
+vhffs-api/src/examples/show_groups_per_user.pl
+vhffs-api/src/examples/mailuser.pl
+vhffs-api/src/examples/create_mysql_panel.pl
+vhffs-api/src/examples/get_list.pl
+vhffs-api/src/examples/hashhome_example.pl
+vhffs-api/src/examples/show_members_from_list.pl
+vhffs-api/src/examples/join_group.pl
+vhffs-api/src/examples/create_web_panel.pl
+vhffs-api/src/examples/create_web.pl
+vhffs-api/src/examples/modify_user.pl
+vhffs-api/src/examples/show_dumper_group.pl
+vhffs-api/src/examples/delete_acl.pl
+vhffs-api/src/examples/create_mysql.pl
+vhffs-api/src/examples/mailuser_add_box.pl
+vhffs-api/src/examples/perm_for_user.pl
+vhffs-jabber/vhffspipe.pl
+vhffs-robots/src/mailinglist_create.pl
+vhffs-robots/src/object_cleanup.pl
+vhffs-robots/src/svn_create.pl
+vhffs-robots/src/cvs_create.pl
+vhffs-robots/src/group_delete.pl
+vhffs-robots/src/repository_stats.pl
+vhffs-robots/src/user_cleanup.pl
+vhffs-robots/src/cvs_viewvcconf.pl
+vhffs-robots/src/user_group.pl
+vhffs-robots/src/cvs_fixperms.pl
+vhffs-robots/src/mysql_delete.pl
+vhffs-robots/src/repository_create.pl
+vhffs-robots/src/repository_delete.pl
+vhffs-robots/src/web_stats.pl
+vhffs-robots/src/user_getquota.pl
+vhffs-robots/src/mailing.pl
+vhffs-robots/src/mail_create.pl
+vhffs-robots/src/mailinglist_delete.pl
+vhffs-robots/src/pgsql_modify.pl
+vhffs-robots/src/mysql_create.pl
+vhffs-robots/src/repository_getquota.pl
+vhffs-robots/src/group_setquota.pl
+vhffs-robots/src/git_create.pl
+vhffs-robots/src/repository_setquota.pl
+vhffs-robots/src/mail_createboxes.pl
+vhffs-robots/src/listengine_publicarchives.pl
+vhffs-robots/src/user_create.pl
+vhffs-robots/src/mysql_dump.pl
+vhffs-robots/src/svn_public.pl
+vhffs-robots/src/web_create.pl
+vhffs-robots/src/mysql_modify.pl
+vhffs-robots/src/svn_viewvcconf.pl
+vhffs-robots/src/git_delete.pl
+vhffs-robots/src/pgsql_dump.pl
+vhffs-robots/src/group_create.pl
+vhffs-robots/src/dns_create.pl
+vhffs-robots/src/svn_delete.pl
+vhffs-robots/src/pgsql_create.pl
+vhffs-robots/src/web_delete.pl
+vhffs-robots/src/dns_delete.pl
+vhffs-robots/src/svn_websvn.pl
+vhffs-robots/src/user_delete.pl
+vhffs-robots/src/mail_delete.pl
+vhffs-robots/src/pgsql_delete.pl
+vhffs-robots/src/user_setquota.pl
+vhffs-robots/src/group_getquota.pl
+vhffs-robots/src/git_public.pl
+vhffs-robots/src/mail_deleteboxes.pl
+vhffs-robots/src/cvs_delete.pl
+vhffs-robots/misc/svn_post-commit.pl
+vhffs-irc/modobot.pl
Added: trunk/vhffs-intl/Rules-quot
===================================================================
--- trunk/vhffs-intl/Rules-quot (rev 0)
+++ trunk/vhffs-intl/Rules-quot 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,47 @@
+# Special Makefile rules for English message catalogs with quotation marks.
+
+DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot
+
+.SUFFIXES: .insert-header .po-update-en
+
+en@xxxxxxx-create:
+ $(MAKE) en@xxxxxxx-update
+en@xxxxxxxxxxx-create:
+ $(MAKE) en@xxxxxxxxxxx-update
+
+en@xxxxxxx-update: en@xxxxxxx-update-en
+en@xxxxxxxxxxx-update: en@xxxxxxxxxxx-update-en
+
+.insert-header.po-update-en:
+ @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \
+ if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/src && pwd`; export GETTEXTLIBDIR; fi; \
+ tmpdir=`pwd`; \
+ echo "$$lang:"; \
+ ll=`echo $$lang | sed -e 's/@.*//'`; \
+ LC_ALL=C; export LC_ALL; \
+ cd $(srcdir); \
+ if $(MSGINIT) -i $(DOMAIN).pot --no-translator -l $$ll -o - 2>/dev/null | sed -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | $(MSGFILTER) sed -f `echo $$lang | sed -e 's/.*@//'`.sed 2>/dev/null > $$tmpdir/$$lang.new.po; then \
+ if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \
+ rm -f $$tmpdir/$$lang.new.po; \
+ else \
+ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \
+ :; \
+ else \
+ echo "creation of $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \
+ exit 1; \
+ fi; \
+ fi; \
+ else \
+ echo "creation of $$lang.po failed!" 1>&2; \
+ rm -f $$tmpdir/$$lang.new.po; \
+ fi
+
+en@quot.insert-header: insert-header.sin
+ sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header
+
+en@boldquot.insert-header: insert-header.sin
+ sed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' $(srcdir)/insert-header.sin > en@boldquot.insert-header
+
+mostlyclean: mostlyclean-quot
+mostlyclean-quot:
+ rm -f *.insert-header
Added: trunk/vhffs-intl/boldquot.sed
===================================================================
--- trunk/vhffs-intl/boldquot.sed (rev 0)
+++ trunk/vhffs-intl/boldquot.sed 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,10 @@
+s/"\([^"]*\)"/“\1”/g
+s/`\([^`']*\)'/‘\1’/g
+s/ '\([^`']*\)' / ‘\1’ /g
+s/ '\([^`']*\)'$/ ‘\1’/g
+s/^'\([^`']*\)' /‘\1’ /g
+s/“”/""/g
+s/“/“[1m/g
+s/”/[0m”/g
+s/‘/‘[1m/g
+s/’/[0m’/g
Deleted: trunk/vhffs-intl/compile_po.sh
===================================================================
--- trunk/vhffs-intl/compile_po.sh 2008-01-09 20:46:27 UTC (rev 1118)
+++ trunk/vhffs-intl/compile_po.sh 2008-01-10 06:39:28 UTC (rev 1119)
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-# I'm not a shell programmer, if this can be done
-# with variables so we can easily add translation
-# do it...
-
-echo 'French'
-msgfmt --check --verbose --output-file result/fr_FR/LC_MESSAGES/vhffs.mo src/fr.po
-echo 'Spanish'
-msgfmt --check --verbose --output-file result/es_ES/LC_MESSAGES/vhffs.mo src/es.po
-echo 'English'
-msgfmt --check --verbose --output-file result/en_US/LC_MESSAGES/vhffs.mo src/en.po
-
-echo 'German'
-msgfmt --check --verbose --output-file result/de_DE/LC_MESSAGES/vhffs.mo src/de.po
Deleted: trunk/vhffs-intl/createpot.sh
===================================================================
--- trunk/vhffs-intl/createpot.sh 2008-01-09 20:46:27 UTC (rev 1118)
+++ trunk/vhffs-intl/createpot.sh 2008-01-10 06:39:28 UTC (rev 1119)
@@ -1,4 +0,0 @@
-#!/bin/sh
-find .. -name '*.tmpl' | xargs perl -ne 'if(/<TMPL_I18N\s+KEY="([^"]+)/i) { print "gettext(\"$1\");\n"; }' > template_strings.pl
-xgettext -L Perl -d .. -s -o src/vhffs.pot `find ../ -name "*.p[lm]"`
-
Added: trunk/vhffs-intl/de_DE.po
===================================================================
--- trunk/vhffs-intl/de_DE.po (rev 0)
+++ trunk/vhffs-intl/de_DE.po 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,4747 @@
+# German translation for vhffs-intl
+# Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007
+# This file is distributed under the same license as the vhffs-intl package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2007.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: vhffs-intl\n"
+"Report-Msgid-Bugs-To: vhffs-dev@xxxxxxxxx\n"
+"POT-Creation-Date: 2008-01-09 21:38+0100\n"
+"PO-Revision-Date: 2007-11-17 20:22+0000\n"
+"Last-Translator: Bruno Marmier <bruno@xxxxxxxxxx>\n"
+"Language-Team: German <vhffs-dev@xxxxxxxxx>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2007-11-17 22:48+0000\n"
+"X-Generator: Launchpad (build Unknown)\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:68
+msgid "\t\t\t\t RIGHT can be subscriber or admin\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:148 vhffs-api/src/Vhffs/Listengine.pm:164
+#: vhffs-api/src/Vhffs/Listengine.pm:167 vhffs-api/src/Vhffs/Listengine.pm:442
+msgid "\n"
+msgstr "\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:425
+#, perl-format
+msgid ""
+" %s-request@%s\n"
+"with the following subject :\n"
+" \"subscription accept %s %s\" \n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:428
+#, perl-format
+msgid ""
+" %s-request@%s\n"
+"with the following subject :\n"
+" \"subscription refuse %s %s\" \n"
+msgstr ""
+
+#: vhffs-public/groupsearch.pl:79
+#, perl-format
+msgid "%d group(s) found"
+msgstr ""
+
+#: vhffs-public/usersearch.pl:80
+#, perl-format
+msgid "%d user(s) found"
+msgstr ""
+
+#: vhffs-public/websitesearch.pl:78
+#, perl-format
+msgid "%d websites(s) found"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:296
+#, perl-format
+msgid "%s has been added"
+msgstr "%s ist hinzugefügt worden"
+
+#: vhffs-panel/mailinglist/prefs.pl:294
+#, perl-format
+msgid "%s is already a member of this list"
+msgstr "%s ist schon Mitglied der Liste"
+
+#: vhffs-panel/mail/prefs.pl:195
+#, perl-format
+msgid "%s is not a correct mail address"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:292
+#, perl-format
+msgid "%s is not a valid mail"
+msgstr ""
+
+#: vhffs-public/index.pl:65
+#, perl-format
+msgid "%s public area"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:710
+#, perl-format
+msgid "%s's Panel"
+msgstr "%s Panel"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:150 vhffs-api/src/Vhffs/Listengine.pm:169
+#: vhffs-api/src/Vhffs/Listengine.pm:444
+#, perl-format
+msgid "%s-request@%s with subject \"help\"\n"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:312
+#, perl-format
+msgid "@ represents the origin (%s)"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:299
+msgid ""
+"A CNAME, A or AAAA record with the same name already exists for this domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:113
+msgid "A Record deleted"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:108
+msgid "A Record updated"
+msgstr "A Eintrag aktualisiert"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:404
+#, perl-format
+msgid ""
+"A mail to moderate is on the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:421
+#, perl-format
+msgid ""
+"A new person wants to subscribe to the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:136
+msgid "A record added"
+msgstr "A Eintrag hinzugefügt"
+
+#: vhffs-panel/dns/prefs.pl:125
+msgid "AAAA Record deleted"
+msgstr "AAAA Eintrag abgelöst"
+
+#: vhffs-panel/dns/prefs.pl:120
+msgid "AAAA Record updated"
+msgstr "AAAA Eintrag aktualisiert"
+
+#: vhffs-panel/dns/prefs.pl:131
+msgid "AAAA record added"
+msgstr "AAAA Eintrag hinzugefügt"
+
+#: vhffs-panel/acl/view.pl:99
+msgid "ACL Administration"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:93
+msgid "ACL added"
+msgstr "ACL hinzugefügt"
+
+#: vhffs-panel/acl/view.pl:95
+msgid "ACL deleted"
+msgstr "ACL abgelöst"
+
+#: vhffs-panel/acl/view.pl:94
+msgid "ACL updated"
+msgstr "ACL aktualisiert"
+
+#: vhffs-panel/admin/moderation.pl:89 vhffs-panel/admin/moderation.pl:116
+msgid "Accept"
+msgstr "Akzeptieren"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:185 vhffs-api/src/Vhffs/Panel/Main.pm:206
+msgid "Access denied"
+msgstr "Zugriff verweigert"
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:68
+msgid "Access to panel"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:111
+msgid "Accounts"
+msgstr "Konten"
+
+#: vhffs-panel/user/prefs.pl:411
+#, perl-format
+msgid "Activate %s@%s email"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:120 vhffs-intl/extra_strings.pl:25
+#: vhffs-api/src/Vhffs/Panel/Object.pm:125
+msgid "Activated"
+msgstr "Aktiviert"
+
+#: vhffs-panel/group/prefs.pl:150 vhffs-panel/group/prefs.pl:240
+msgid "Add"
+msgstr "Hinzufügen"
+
+#: vhffs-panel/dns/prefs.pl:265
+msgid "Add !"
+msgstr "Hinzufügen"
+
+#: vhffs-panel/dns/prefs.pl:278
+msgid "Add a CNAME field to your domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:270
+msgid "Add a MX field to your domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:286
+msgid "Add a NS field to your domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:292
+msgid "Add a SRV record to your domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:304
+msgid "Add a TXT record"
+msgstr "TXT Eintrag hinzufügen"
+
+#: vhffs-panel/mail/prefs.pl:122 vhffs-panel/mail/prefs.pl:132
+msgid "Add a forward on this domain"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:131
+msgid "Add a popbox to this domain"
+msgstr "Pop mailbox an diesem Domain hinzufügen"
+
+#: vhffs-panel/group/prefs.pl:239
+msgid "Add a user in this group"
+msgstr "Benutzer an dieser Gruppe hinzufügen"
+
+#: vhffs-panel/dns/prefs.pl:238
+msgid "Add an A record"
+msgstr "A Eintrag hinzufügen"
+
+#: vhffs-panel/dns/prefs.pl:239
+msgid "Add an AAAA record"
+msgstr "AAAA Eintrag hinzufügen"
+
+#: vhffs-panel/mail/prefs.pl:113
+msgid "Add an account"
+msgstr "Konto hinzufügen"
+
+#: vhffs-panel/mailinglist/prefs.pl:148
+msgid "Add members"
+msgstr "Mitglieder hinzufügen"
+
+#: vhffs-panel/mailinglist/prefs.pl:150
+msgid "Add them !"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:230 vhffs-panel/user/prefs.pl:307
+msgid "Address"
+msgstr "Adresse"
+
+#: vhffs-panel/web/create.pl:96
+msgid "Address (ServerName directive)"
+msgstr "Adresse (ServerName directive)"
+
+#: vhffs-panel/web/prefs.pl:95
+msgid "Address (Servername)"
+msgstr "Adresse (Servername)"
+
+#: vhffs-panel/user/prefs.pl:138
+msgid "Address is not correct !"
+msgstr "Adresse ist nich richtig!"
+
+#: vhffs-panel/mailinglist/prefs.pl:149
+msgid "Addresses (one per line)"
+msgstr "Adressen (eine per Linie)"
+
+#: vhffs-intl/template_strings.pl:56
+msgid "Admin"
+msgstr "Admin"
+
+#: vhffs-panel/cvs/prefs.pl:107
+msgid "Admin CVS Repository"
+msgstr "Admin CVS Repository"
+
+#: vhffs-panel/repository/prefs.pl:81
+msgid "Admin Download repository"
+msgstr "Admin Download repository"
+
+#: vhffs-panel/git/prefs.pl:96
+msgid "Admin Git Repository"
+msgstr "Admin Git Repository"
+
+#: vhffs-panel/svn/prefs.pl:104 vhffs-panel/dns/prefs.pl:245
+#: vhffs-panel/git/prefs.pl:112 vhffs-panel/web/prefs.pl:103
+#: vhffs-panel/mail/prefs.pl:143
+msgid "Admin Rights on this object (ACL)"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:87
+msgid "Admin Subversion Repository"
+msgstr "Admin Subversion Repository"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:426
+msgid "Admin account"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Object.pm:96
+msgid "Admin part"
+msgstr ""
+
+#: vhffs-panel/admin/index.pl:55 vhffs-api/src/Vhffs/Panel/Main.pm:427
+#: vhffs-api/src/Vhffs/Panel/Main.pm:430
+msgid "Administration"
+msgstr "Administration"
+
+#: vhffs-panel/mailinglist/prefs.pl:99
+#, perl-format
+msgid "Administration for list %s"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:63
+msgid "Administrator"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:116
+msgid "Admins only"
+msgstr "Nur admins"
+
+#: vhffs-panel/alert_submit.pl:64
+msgid "Alert on Vhffs platform"
+msgstr ""
+
+#: vhffs-public/allwebsites.pl:74 vhffs-public/allgroups.pl:74
+msgid "All"
+msgstr "Alle"
+
+#: vhffs-panel/dns/prefs.pl:232
+msgid "All A TYPE for your domain name"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:233
+msgid "All AAAA TYPE for your domain name"
+msgstr "Alle AAAA TYPE für ihres Domain"
+
+#: vhffs-panel/dns/prefs.pl:277
+msgid "All CNAME TYPE for your domain name"
+msgstr "Alle CNAME TYPE für ihres Domain"
+
+#: vhffs-panel/dns/prefs.pl:235
+msgid "All CNAME for your domain name"
+msgstr "Alle CNAME für ihres Domain"
+
+#: vhffs-intl/template_strings.pl:10
+msgid "All Groups"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:234 vhffs-panel/dns/prefs.pl:269
+msgid "All MX TYPE for your domain name"
+msgstr "Alle MX TYPE für ihres Domain"
+
+#: vhffs-panel/dns/prefs.pl:285
+msgid "All NS TYPE for your domain name"
+msgstr "Alle NS TYPE für ihres Domain"
+
+#: vhffs-panel/dns/prefs.pl:291
+msgid "All SRV records for your domain name"
+msgstr "Alle SRV Einträge für ihres Domain"
+
+#: vhffs-panel/admin/svn/list.pl:67
+msgid "All Subversion repositories lists"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:305
+msgid "All TXT records for your domain name"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:16
+msgid "All Websites"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:48
+msgid "All commands can be sent as mail subject.\n"
+msgstr ""
+
+#: vhffs-panel/admin/git/list.pl:69
+msgid "All git repositories lists"
+msgstr ""
+
+#: vhffs-public/allgroups.pl:72
+#, perl-format
+msgid "All groups on %s"
+msgstr "Alle Gruppen auf %s"
+
+#: vhffs-panel/admin/broadcast_list.pl:77
+msgid "All mailings sent to hosted"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:50
+msgid ""
+"All mails with commands must be sent on YOURLIST-request@xxxxxxxxxx list.\n"
+msgstr ""
+
+#: vhffs-panel/admin/object/list.pl:85
+msgid "All objects List"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:257
+msgid "All users in this group"
+msgstr "Alle Benutzer in dieser Gruppe"
+
+#: vhffs-public/allwebsites.pl:72
+#, perl-format
+msgid "All websites on %s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:251
+msgid "An MX record with the same name already exists for this domain"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:274
+msgid "An NS record with the same name already exists for this domain"
+msgstr ""
+
+#: vhffs-panel/cvs/prefs.pl:87 vhffs-panel/cvs/prefs.pl:100
+msgid "An error occured during CVS repository update"
+msgstr "Während die CVS Repository Aktualisierung ist ein Fehler aufgetreten"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:493
+#, perl-format
+msgid ""
+"An error occured during your approval of subscription of:\n"
+" %s\n"
+"into the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:194
+#, perl-format
+msgid ""
+"An error occured during your subscription to the following list:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:217
+msgid "An error occured while adding the box"
+msgstr "Whärend der Erstellung des Mailbox ist ein Fehler aufgetreten."
+
+#: vhffs-panel/user/prefs.pl:219
+msgid "An error occured while adding the box (anti-spam adding)"
+msgstr ""
+"Whärend der Erstellung des Mailbox (Anti-spam Hinzufügung) ist ein Fehler "
+"aufgetreten."
+
+#: vhffs-panel/user/prefs.pl:221
+msgid "An error occured while adding the box (anti-virus adding)"
+msgstr ""
+"Whärend der Erstellung des Mailbox (Anti-virus Hinzufügung) ist ein Fehler "
+"aufgetreten."
+
+#: vhffs-panel/user/prefs.pl:266
+msgid "An error occured while adding the forwarding"
+msgstr ""
+
+#: vhffs-panel/user/delete.pl:83
+msgid "An error occured while applying changes. This user will NOT be deleted"
+msgstr ""
+"Whärend die Änderungen ist ein Fehler aufgetreten. Dieser Benutzer wird "
+"NICHT abgelöst"
+
+#: vhffs-panel/web/delete.pl:92
+msgid ""
+"An error occured while applying changes. This web area will NOT be deleted"
+msgstr ""
+"Whärend die Änderungen ist ein Fehler aufgetreten. Diees Webarea wird NICHT "
+"abgelöst"
+
+#: vhffs-panel/git/create.pl:88
+msgid "An error occured while creating the git repository"
+msgstr "Während der Erstellung des GIT Repository ist ein Fehler aufgetreten"
+
+#: vhffs-panel/mail/create.pl:83
+msgid "An error occured while creating the mail area"
+msgstr ""
+
+#: vhffs-panel/repository/create.pl:84
+msgid ""
+"An error occured while creating the object. Check that this group doesn't "
+"already have a download repository"
+msgstr ""
+
+#: vhffs-panel/dns/create.pl:60
+msgid ""
+"An error occured while creating the object. The domain is not correct or "
+"aleady exists in Vhffs database"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:92 vhffs-panel/cvs/create.pl:92
+msgid "An error occured while creating the object.It probably already exists"
+msgstr ""
+"Während der Erstellung dieses Objektes ist ein Fehler aufgetreten. "
+"Möglicherweise existiert schon das Objekt."
+
+#: vhffs-panel/svn/create.pl:88
+msgid "An error occured while creating the svn repository"
+msgstr "Während der Erstellung des SVN Repository ist ein Fehler aufgetreten"
+
+#: vhffs-panel/cvs/delete.pl:93
+msgid "An error occured while deleting the CVS repository"
+msgstr "Während der Ablösung des CVS Repository ist ein Fehler aufgetreten."
+
+#: vhffs-panel/repository/delete.pl:95
+msgid "An error occured while deleting the Download repository"
+msgstr ""
+"Während der Ablösung des Download Repository ist ein Fehler aufgetreten."
+
+#: vhffs-panel/svn/delete.pl:94
+msgid "An error occured while deleting the Subversion repository"
+msgstr ""
+"Während der Ablösung des Subversion Repository ist ein Fehler aufgetreten."
+
+#: vhffs-panel/git/delete.pl:99
+msgid "An error occured while deleting the git repository"
+msgstr "Während der Ablösung des GIT Repository ist ein Fehler aufgetreten."
+
+#: vhffs-panel/admin/broadcast_delete.pl:96
+msgid "An error occured while deleting this mailing"
+msgstr "Während der Ablösung des Mailing ist ein Fehler aufgetreten."
+
+#: vhffs-panel/object/quickdelete.pl:96
+msgid "An error occured while deleting this object."
+msgstr "Während der Ablösung dieses Objektes ist ein Fehler aufgetreten."
+
+#: vhffs-api/src/Vhffs/Robots/Mysql.pm:109
+msgid "An error occured while granting privileges to an admin user"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:275
+msgid "An error occured while the forwarding"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:285
+#, perl-format
+msgid ""
+"An error occured while updating language for the following address: %s.\n"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:197
+msgid "An error occured while updating the mail domain"
+msgstr "Während der Aktualisierung des Mail Domain ist ein Fehler aufgetreten"
+
+#: vhffs-panel/admin/object/edit_submit.pl:91
+msgid "An error occured while updating the object"
+msgstr ""
+
+#: vhffs-panel/group/delete.pl:83 vhffs-panel/group/prefs.pl:95
+msgid "An error occured while updating the project"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:188
+msgid "An error occured while updating the user account"
+msgstr ""
+
+#: vhffs-panel/object/resubmit.pl:103
+msgid "An error occured while updating this object."
+msgstr "Während der Aktualisierung dieses Objektes ist ein Fehler aufgetreten."
+
+#: vhffs-panel/svn/prefs.pl:98
+msgid "Are you SURE you want DELETE this subversion repository ?"
+msgstr "Sind Sie SICHER Sie wollen das Subversion Repository ablösen ?"
+
+#: vhffs-panel/mail/prefs.pl:137
+msgid "Are you SURE you want DELETE this Mail Area ?"
+msgstr "Sind Sie SICHER Sie wollen das Mail Area ablösen ?"
+
+#: vhffs-panel/mysql/prefs.pl:112
+msgid "Are you SURE you want DELETE this MySQL database ?"
+msgstr "Sind Sie SICHER dass Sie dieses MySQL Datenbank ABLÖSEN wollen ?"
+
+#: vhffs-panel/pgsql/prefs.pl:100
+msgid "Are you SURE you want DELETE this PostgreSQL database ?"
+msgstr "Sind Sie SICHER dass Sie dieses PostgreSQL Datenbank ABLÖSEN wollen ?"
+
+#: vhffs-panel/web/prefs.pl:110
+msgid "Are you SURE you want DELETE this Web Area ?"
+msgstr "Sind Sie SICHER dass Sie dieses Webarea ABLÖSEN wollen ?"
+
+#: vhffs-panel/cvs/prefs.pl:117
+msgid "Are you SURE you want DELETE this cvs repository ?"
+msgstr "Sind Sie SICHER dass Sie dieses CVS Repository ABLÖSEN wollen ?"
+
+#: vhffs-panel/dns/prefs.pl:253
+msgid "Are you SURE you want DELETE this domain ?"
+msgstr "Sind Sie SICHER dass Sie dieses Domain ABLÖSEN wollen ?"
+
+#: vhffs-panel/repository/prefs.pl:90
+msgid "Are you SURE you want DELETE this download repository ?"
+msgstr "Sind Sie SICHER dass Sie dieses Download Repository ABLÖSEN wollen ?"
+
+#: vhffs-panel/git/prefs.pl:106
+msgid "Are you SURE you want DELETE this git repository?"
+msgstr "Sind Sie SICHER dass Sie dieses GIT Repository ABLÖSEN wollen ?"
+
+#: vhffs-panel/mailinglist/prefs.pl:180
+msgid "Are you SURE you want DELETE this mailing list ?"
+msgstr "Sind Sie SICHER dass Sie diese Mailingliste ABLÖSEN wollen ?"
+
+#: vhffs-panel/group/prefs.pl:214
+msgid "Are you SURE you want DELETE this project ?"
+msgstr "Sind Sie SICHER dass Sie dieses Projekt ABLÖSEN wollen ?"
+
+#: vhffs-panel/user/prefs.pl:327
+msgid "Are you SURE you want DELETE this user?"
+msgstr "Sind Sie SICHER dass Sie diesen Benutzer ABLÖSEN wollen ?"
+
+#: vhffs-panel/admin/object/delete_avatar.pl:100
+msgid "Avatar deleted"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:195
+#: vhffs-api/src/Vhffs/Panel/Object.pm:199
+msgid "Avatar management"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_list.pl:96
+#: vhffs-panel/admin/broadcast_view.pl:97
+msgid "Awaiting sending"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:191 vhffs-panel/subscribe.pl:232
+msgid "Back to Login"
+msgstr "Zurück zur Anmeldung"
+
+#: vhffs-panel/lost.pl:59 vhffs-intl/template_strings.pl:45
+msgid "Back to login page"
+msgstr "Zurück zur Anmeldungseite"
+
+#: vhffs-panel/pgsql/prefs.pl:126 vhffs-panel/mysql/prefs.pl:137
+msgid "Bad password, should be at least 3 chars"
+msgstr "Ungültiges Passwort. Muss mindestens auf 3 Zeichen bestehen"
+
+#: vhffs-panel/dns/create.pl:73
+msgid ""
+"Be careful ! You must give the reason why you want to host this domain on "
+"our servers."
+msgstr ""
+
+#: vhffs-panel/web/create.pl:97
+msgid ""
+"Be careful, if you want create www.domain.tld, you should create a webspace "
+"with domain.tld as servername. VHFFS redirect all request from www.domain."
+"tld to domain.tld"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_view.pl:89
+msgid "Body"
+msgstr "Textkörper"
+
+#: vhffs-panel/mail/prefs.pl:272
+#, perl-format
+msgid "Box %s deleted"
+msgstr "Briefkaste %s abgelöst"
+
+#: vhffs-panel/mail/prefs.pl:239
+msgid "Box password updated"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:216
+msgid "Box successfully added"
+msgstr ""
+
+#: vhffs-panel/lost.pl:56
+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-public/user.pl:60 vhffs-public/user.pl:64 vhffs-public/group.pl:72
+#: vhffs-panel/mailinglist/delete.pl:79 vhffs-panel/mailinglist/prefs.pl:210
+#: vhffs-panel/mailinglist/prefs.pl:235 vhffs-panel/mailinglist/prefs.pl:256
+#: vhffs-panel/mailinglist/prefs.pl:276 vhffs-panel/mailinglist/create.pl:81
+#: vhffs-panel/svn/delete.pl:73 vhffs-panel/svn/prefs.pl:66
+#: vhffs-panel/svn/prefs.pl:139 vhffs-panel/svn/create.pl:79
+#: vhffs-panel/history.pl:84 vhffs-panel/user/prefs.pl:114
+#: vhffs-panel/user/prefs.pl:469 vhffs-panel/dns/delete.pl:79
+#: vhffs-panel/dns/prefs.pl:76 vhffs-panel/dns/create.pl:49
+#: vhffs-panel/acl/view.pl:85 vhffs-panel/pgsql/delete.pl:81
+#: vhffs-panel/pgsql/prefs.pl:121 vhffs-panel/pgsql/create.pl:82
+#: vhffs-panel/group/prefs.pl:84 vhffs-panel/group/prefs.pl:105
+#: vhffs-panel/group/prefs.pl:123 vhffs-panel/group/prefs.pl:164
+#: vhffs-panel/repository/prefs.pl:68 vhffs-panel/repository/create.pl:77
+#: vhffs-panel/admin/moderation_submit.pl:77
+#: vhffs-panel/admin/broadcast_submit.pl:84
+#: vhffs-panel/admin/broadcast_delete.pl:84
+#: vhffs-panel/admin/object/edit_submit.pl:78
+#: vhffs-panel/admin/object/delete_avatar.pl:82
+#: vhffs-panel/admin/object/edit.pl:80 vhffs-panel/admin/broadcast_view.pl:79
+#: vhffs-panel/git/delete.pl:74 vhffs-panel/git/prefs.pl:70
+#: vhffs-panel/git/create.pl:79 vhffs-panel/object/quickdelete.pl:63
+#: vhffs-panel/object/resubmit.pl:63 vhffs-panel/object/resubmit.pl:87
+#: vhffs-panel/web/prefs.pl:130 vhffs-panel/web/create.pl:77
+#: vhffs-panel/mysql/delete.pl:75 vhffs-panel/mysql/prefs.pl:70
+#: vhffs-panel/mysql/prefs.pl:132 vhffs-panel/mysql/create.pl:82
+#: vhffs-panel/cvs/delete.pl:74 vhffs-panel/cvs/prefs.pl:67
+#: vhffs-panel/cvs/prefs.pl:80 vhffs-panel/cvs/create.pl:80
+#: vhffs-panel/mail/delete.pl:75 vhffs-panel/mail/prefs.pl:185
+#: vhffs-panel/mail/prefs.pl:212 vhffs-panel/mail/prefs.pl:233
+#: vhffs-panel/mail/prefs.pl:268 vhffs-panel/mail/prefs.pl:284
+#: vhffs-panel/mail/prefs.pl:300 vhffs-panel/mail/prefs.pl:315
+#: vhffs-panel/mail/create.pl:74
+#, perl-format
+msgid "CGI Error !"
+msgstr "CGI Fehler !"
+
+#: vhffs-panel/repository/delete.pl:74
+#, perl-format
+msgid "CGI Error ! %s"
+msgstr "CGI Fehler ! %s"
+
+#: vhffs-panel/git/prefs.pl:169
+msgid "CGI error !"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:175
+msgid "CNAME Record added"
+msgstr "CNAME Eintrag hinzugefügt"
+
+#: vhffs-panel/dns/prefs.pl:170
+msgid "CNAME Record deleted"
+msgstr "CNAME Eintrag abgelöst"
+
+#: vhffs-panel/dns/prefs.pl:166
+msgid "CNAME Record updated"
+msgstr "CNAME Eintrag aktualisiert"
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:67 vhffs-api/src/Vhffs/Panel/Menu.pm:116
+msgid "CVS"
+msgstr "CVS"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:188
+msgid "CVS Admin"
+msgstr "CVS Admin"
+
+#: vhffs-intl/template_strings.pl:28
+msgid "CVS Repositories for this group"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:41
+msgid "CVS Repository"
+msgstr "CVS Repository"
+
+#: vhffs-panel/admin/cvs/list.pl:76
+msgid "CVS Root"
+msgstr "CVS Root"
+
+#: vhffs-panel/cvs/index.pl:60
+#, perl-format
+msgid "CVS repositories for %s"
+msgstr "CVS Repositories für %s"
+
+#: vhffs-panel/admin/cvs/index.pl:56
+msgid "CVS repositories' administration"
+msgstr ""
+
+#: vhffs-panel/cvs/prefs.pl:85 vhffs-panel/cvs/prefs.pl:98
+msgid "CVS repository updated"
+msgstr "CVS Repository aktualisiert"
+
+#: vhffs-panel/admin/stats.pl:120
+msgid "CVS stats"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:113
+msgid "Can destroy this service"
+msgstr "Darf ablösen"
+
+#: vhffs-panel/acl/view.pl:112
+msgid "Can manage ACL for this service"
+msgstr "Darf ACL bestimmen"
+
+#: vhffs-panel/acl/view.pl:111
+msgid "Can modify this service"
+msgstr "Darf ändern"
+
+#: vhffs-panel/acl/view.pl:110
+msgid "Can view this service"
+msgstr "Darf sehen"
+
+#: vhffs-panel/acl/view.pl:109
+msgid "Can't access"
+msgstr "Darf nicht zugreifen"
+
+#: vhffs-panel/subscribe.pl:184
+msgid "Cannot apply changes to the user"
+msgstr ""
+
+#: vhffs-panel/admin/moderation_submit.pl:94
+msgid "Cannot apply modifications"
+msgstr ""
+
+#: vhffs-panel/mailinglist/delete.pl:103
+msgid "Cannot commit changes on this object, will NOT be deleted"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:352
+msgid ""
+"Cannot create or fetch session file, please check that /tmp is readable and "
+"writeable"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:174
+msgid "Cannot create user, the username you entered already exists"
+msgstr ""
+
+#: vhffs-panel/admin/object/delete_avatar.pl:96
+msgid "Cannot delete this avatar"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit_submit.pl:82
+#: vhffs-panel/admin/object/delete_avatar.pl:86
+#: vhffs-panel/admin/object/edit.pl:85
+msgid "Cannot fetch object"
+msgstr ""
+
+#: vhffs-panel/object/upavatar.pl:101
+msgid "Cannot find object"
+msgstr ""
+
+#: vhffs-panel/history.pl:89
+msgid "Cannot get information on this object"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:71
+#, perl-format
+msgid "Cannot get informations on object #%d"
+msgstr ""
+
+#: vhffs-panel/mailinglist/delete.pl:83 vhffs-panel/svn/prefs.pl:71
+#: vhffs-panel/user/prefs.pl:73 vhffs-panel/dns/delete.pl:83
+#: vhffs-panel/dns/prefs.pl:81 vhffs-panel/pgsql/prefs.pl:68
+#: vhffs-panel/repository/prefs.pl:71 vhffs-panel/git/prefs.pl:75
+#: vhffs-panel/web/prefs.pl:74 vhffs-panel/mysql/prefs.pl:75
+#: vhffs-panel/cvs/prefs.pl:70
+msgid "Cannot get informations on this object"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:74
+msgid "Cannot get statistics"
+msgstr ""
+
+#: vhffs-panel/cvs/delete.pl:78
+msgid "Cannot retrieve informations about this CVS repository"
+msgstr ""
+
+#: vhffs-panel/repository/delete.pl:78
+msgid "Cannot retrieve informations about this Download repository"
+msgstr ""
+
+#: vhffs-panel/svn/delete.pl:77 vhffs-panel/git/delete.pl:78
+msgid "Cannot retrieve informations about this repository"
+msgstr ""
+
+#: vhffs-panel/alert_submit.pl:72
+msgid "Cannot send message, CGI error..."
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:105
+msgid "Catchall address"
+msgstr "Catchall Adresse"
+
+#: vhffs-panel/mail/prefs.pl:199
+msgid "Catchall address successfully changed"
+msgstr "Catchall Adresse erfolgreich geändert"
+
+#: vhffs-panel/mail/prefs.pl:180
+msgid "Catchall isn't enabled on this platform"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:108
+msgid "Catchall mail"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:78
+msgid "Change Forward"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:80
+msgid "Change Password"
+msgstr "Passwort ändern"
+
+#: vhffs-panel/mail/prefs.pl:130
+msgid "Change catchall forward"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:57
+msgid "Change rights"
+msgstr "Berechtigungen ändern"
+
+#: vhffs-panel/user/prefs.pl:237
+msgid "Change spam protection status for your account\n"
+msgstr ""
+
+#: vhffs-panel/admin/su.pl:72 vhffs-api/src/Vhffs/Panel/Admin.pm:94
+msgid "Change user-id"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:248
+msgid "Changed anti-virus status for your account\n"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:228 vhffs-panel/user/prefs.pl:306
+msgid "City"
+msgstr "Stadt"
+
+#: vhffs-panel/user/prefs.pl:126
+msgid "City is not correct !"
+msgstr "Stadt ist nicht korrekt"
+
+#: vhffs-panel/mailinglist/prefs.pl:109
+msgid "Closed"
+msgstr "Geschlossen"
+
+#: vhffs-panel/subscribe.pl:238
+msgid "Code confirmation"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:107
+msgid "Codes do not match"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:310
+msgid "Confirm Password"
+msgstr "Bestätige Passwort"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:241
+msgid "Confirmation code was wrong.\n"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:240
+msgid "Confirmation code, contact administrator team if you can't read it"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:237
+msgid "Could not change box password"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:252
+#, perl-format
+msgid "Could not update antivirus status for box %s"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:245
+#, perl-format
+msgid "Could not update spam status for box %s"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:229 vhffs-panel/user/prefs.pl:308
+msgid "Country"
+msgstr "Country"
+
+#: vhffs-panel/user/prefs.pl:135
+msgid "Country is not correct !"
+msgstr "Land ist nicht korrekt !"
+
+#: vhffs-panel/cvs/create.pl:100
+msgid "Create a CVS Repository"
+msgstr "CVS Repository erstellen"
+
+#: vhffs-panel/dns/create.pl:68
+msgid "Create a DNS"
+msgstr "DNS erstellen"
+
+#: vhffs-panel/repository/create.pl:91
+msgid "Create a Download Repository"
+msgstr "Download Repository erstellen"
+
+#: vhffs-panel/mysql/create.pl:100
+msgid "Create a MySQL database"
+msgstr "MySQL Datenbank erstellen"
+
+#: vhffs-panel/pgsql/create.pl:100
+msgid "Create a PostgreSQL database"
+msgstr "PostgreSQL Datenbank erstellen"
+
+#: vhffs-panel/group/create.pl:84
+msgid "Create a Project"
+msgstr "Neues Projekt erstellen"
+
+#: vhffs-panel/svn/create.pl:95
+msgid "Create a Subversion Repository"
+msgstr "Subversion Repository erstellen"
+
+#: vhffs-panel/git/create.pl:95
+msgid "Create a git Repository"
+msgstr "Git Repository erstellen"
+
+#: vhffs-panel/mail/create.pl:90
+msgid "Create a mail space"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:100
+msgid "Create a new mailing list"
+msgstr "Neue Mailingliste erstellen"
+
+#: vhffs-panel/web/create.pl:95
+msgid "Create a web space"
+msgstr ""
+
+#: vhffs-panel/group/index.pl:63
+msgid "Create new project"
+msgstr "Neues Projekt erstellen"
+
+#: vhffs-panel/admin/object/edit.pl:121 vhffs-intl/extra_strings.pl:24
+#: vhffs-api/src/Vhffs/Panel/Object.pm:126
+msgid "Created"
+msgstr "Erzeugt"
+
+#: vhffs-panel/admin/object/edit.pl:119
+#: vhffs-api/src/Vhffs/Panel/Object.pm:124
+msgid "Creating error"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:23
+msgid "Creation error"
+msgstr "Erstellungsfehler"
+
+#: vhffs-panel/user/prefs.pl:337 vhffs-panel/group/prefs.pl:247
+msgid "Current avatar"
+msgstr "Aktuelles Avatar"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:450
+msgid "Current group:"
+msgstr "Aktuelle Gruppe"
+
+#: vhffs-panel/admin/pgsql/list.pl:76 vhffs-panel/admin/mysql/list.pl:82
+msgid "DB Name"
+msgstr "DB Name"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:293
+msgid "DNS Admin"
+msgstr "DNS Admin"
+
+#: vhffs-panel/dns/prefs.pl:227
+#, perl-format
+msgid "DNS Administration - %s"
+msgstr ""
+
+#: vhffs-panel/dns/create.pl:74
+msgid "DNS servers:"
+msgstr "DNS servers:"
+
+#: vhffs-panel/admin/stats.pl:112
+msgid "DNS stats"
+msgstr ""
+
+#: vhffs-panel/admin/dns/index.pl:56
+msgid "DNS' administration"
+msgstr ""
+
+#: vhffs-panel/ajax/help.pl:49 vhffs-api/src/Vhffs/Panel/DNS.pm:162
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:198 vhffs-api/src/Vhffs/Panel/DNS.pm:210
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:228 vhffs-api/src/Vhffs/Panel/DNS.pm:240
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:252 vhffs-api/src/Vhffs/Panel/DNS.pm:264
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:275 vhffs-api/src/Vhffs/Panel/DNS.pm:287
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:300 vhffs-api/src/Vhffs/Panel/DNS.pm:316
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:331 vhffs-api/src/Vhffs/Panel/DNS.pm:343
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:355
+msgid "Database error"
+msgstr "Datenbankfehler"
+
+#: vhffs-panel/pgsql/delete.pl:85
+msgid "Database will NOT be deleted !"
+msgstr "Datenbank wird NICHT abgelöst !"
+
+#: vhffs-panel/pgsql/delete.pl:97
+msgid "Database will be DELETE"
+msgstr "Datenbank WIRD abgelöst"
+
+#: vhffs-panel/group/history.pl:77 vhffs-panel/admin/broadcast_view.pl:86
+msgid "Date"
+msgstr "Datum"
+
+#: vhffs-panel/admin/object/edit.pl:96 vhffs-api/src/Vhffs/Panel/Object.pm:100
+msgid "Date of creation"
+msgstr "Erstellungsdatum"
+
+#: vhffs-panel/acl/view.pl:107 vhffs-panel/acl/view.pl:108
+msgid "Default"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:183 vhffs-panel/svn/prefs.pl:101
+#: vhffs-panel/user/prefs.pl:330 vhffs-panel/dns/prefs.pl:256
+#: vhffs-panel/dns/prefs.pl:313 vhffs-panel/dns/prefs.pl:325
+#: vhffs-panel/dns/prefs.pl:338 vhffs-panel/dns/prefs.pl:350
+#: vhffs-panel/dns/prefs.pl:366 vhffs-panel/dns/prefs.pl:377
+#: vhffs-panel/dns/prefs.pl:393 vhffs-panel/pgsql/prefs.pl:103
+#: vhffs-panel/group/prefs.pl:217 vhffs-panel/group/index.pl:65
+#: vhffs-panel/repository/prefs.pl:93 vhffs-panel/git/prefs.pl:109
+#: vhffs-panel/web/prefs.pl:113 vhffs-panel/mysql/prefs.pl:115
+#: vhffs-panel/cvs/prefs.pl:120 vhffs-panel/mail/prefs.pl:140
+#: vhffs-api/src/Vhffs/Panel/Main.pm:810
+msgid "Delete"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:325
+msgid "Delete YOUR user"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:196
+#: vhffs-api/src/Vhffs/Panel/Object.pm:200
+msgid "Delete avatar for this object"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:58
+msgid "Delete from list"
+msgstr ""
+
+#: vhffs-panel/pgsql/prefs.pl:98
+msgid "Delete this PostgreSQL database"
+msgstr "PostgreSQL Datenbank ablösen"
+
+#: vhffs-panel/mysql/prefs.pl:110
+msgid "Delete this database"
+msgstr "Datenbank ablösen"
+
+#: vhffs-panel/dns/prefs.pl:251
+msgid "Delete this domain name from the VHFFS platform"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:79
+msgid "Delete this forward"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:178
+msgid "Delete this list"
+msgstr "Liste ablösen"
+
+#: vhffs-panel/mail/prefs.pl:135
+msgid "Delete this mail domain"
+msgstr "Domain ablösen"
+
+#: vhffs-panel/admin/broadcast_list.pl:89
+msgid "Delete this mailing"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:212 vhffs-panel/repository/prefs.pl:88
+#: vhffs-panel/cvs/prefs.pl:115
+msgid "Delete this project"
+msgstr "Dieses Projekt ablösen"
+
+#: vhffs-panel/svn/prefs.pl:96 vhffs-panel/git/prefs.pl:104
+msgid "Delete this repository"
+msgstr "Repository ablösen"
+
+#: vhffs-panel/web/prefs.pl:108
+msgid "Delete this web area"
+msgstr ""
+
+#: vhffs-panel/svn/create.pl:102 vhffs-panel/dns/create.pl:79
+#: vhffs-panel/pgsql/create.pl:110 vhffs-panel/group/create.pl:91
+#: vhffs-panel/repository/create.pl:98 vhffs-panel/admin/moderation.pl:88
+#: vhffs-panel/admin/object/edit.pl:98 vhffs-panel/git/create.pl:103
+#: vhffs-panel/object/resubmit.pl:128 vhffs-panel/mysql/create.pl:110
+#: vhffs-panel/cvs/create.pl:108 vhffs-intl/template_strings.pl:26
+#: vhffs-intl/template_strings.pl:39 vhffs-intl/template_strings.pl:42
+#: vhffs-api/src/Vhffs/Panel/Object.pm:102
+msgid "Description"
+msgstr "Beschreibung"
+
+#: vhffs-intl/template_strings.pl:13
+msgid "Description contains"
+msgstr ""
+
+#: vhffs-panel/web/prefs.pl:99
+msgid "Description of your webarea"
+msgstr "Beschreibung des Webareas"
+
+#: vhffs-panel/dns/prefs.pl:280
+msgid "Destination"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:71 vhffs-api/src/Vhffs/Panel/Menu.pm:120
+msgid "Dl repos"
+msgstr ""
+
+#: vhffs-panel/mail/create.pl:91
+msgid "Domain"
+msgstr "Domain"
+
+#: vhffs-panel/dns/create.pl:70 vhffs-panel/admin/dns/list.pl:75
+#: vhffs-panel/admin/mail/list.pl:75 vhffs-intl/extra_strings.pl:43
+msgid "Domain Name"
+msgstr "Domainname"
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:70 vhffs-api/src/Vhffs/Panel/Menu.pm:119
+msgid "Domain names"
+msgstr "Domainnamen"
+
+#: vhffs-panel/dns/index.pl:60
+#, perl-format
+msgid "Domain names for %s"
+msgstr "Domainnamen für %s"
+
+#: vhffs-panel/svn/prefs.pl:110 vhffs-panel/git/prefs.pl:121
+#, perl-format
+msgid ""
+"Don't forget to subscribe %s to your mailing list if you are filtering posts"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:38
+msgid "Download Repository"
+msgstr "Download Repository"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:311
+msgid "Download repositories Admin"
+msgstr ""
+
+#: vhffs-panel/repository/index.pl:60
+#, perl-format
+msgid "Download repositories for %s"
+msgstr "Download Repositories für %s"
+
+#: vhffs-panel/admin/repository/index.pl:56
+msgid "Download repositories' administration"
+msgstr ""
+
+#: vhffs-panel/admin/web/list.pl:80
+msgid "Edit"
+msgstr "Ändern"
+
+#: vhffs-panel/admin/object/edit.pl:91
+msgid "Edit Object"
+msgstr "Ojekt ändern"
+
+#: vhffs-panel/admin/object/list.pl:98
+msgid "Edit this object"
+msgstr "Dieses Objekt ändern"
+
+#: vhffs-panel/user/prefs.pl:183
+msgid "Email address changed"
+msgstr "Email Adresse aktualisiert"
+
+#: vhffs-panel/user/prefs.pl:129
+msgid "Email is not correct !"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:81
+msgid "Enable anti-spam"
+msgstr "Anti-spam aktivieren"
+
+#: vhffs-intl/template_strings.pl:84
+msgid "Enable anti-virus"
+msgstr "Anti-virus aktivieren"
+
+#: vhffs-panel/mail/prefs.pl:107
+msgid "Enter a mail address to catch all email for this domain"
+msgstr ""
+
+#: vhffs-panel/mailinglist/index.pl:53 vhffs-panel/svn/index.pl:53
+#: vhffs-panel/dns/index.pl:53 vhffs-panel/pgsql/index.pl:53
+#: vhffs-panel/repository/index.pl:53 vhffs-panel/git/index.pl:54
+#: vhffs-panel/web/index.pl:53 vhffs-panel/mysql/index.pl:53
+#: vhffs-panel/cvs/index.pl:53 vhffs-panel/mail/index.pl:53
+msgid "Error"
+msgstr "Fehler"
+
+#: vhffs-panel/admin/broadcast_submit.pl:96
+msgid "Error !"
+msgstr "Fehler !"
+
+#: vhffs-panel/user/prefs.pl:212
+msgid ""
+"Error ! You MUST provide a password in your account when you create your "
+"popable account"
+msgstr ""
+
+#: vhffs-panel/group/create.pl:74
+msgid "Error creating group (maybe a group with the same name already exists)"
+msgstr ""
+
+#: vhffs-panel/web/create.pl:86
+msgid "Error creating webarea."
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:239
+msgid "Error for spam protection\n"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:250
+msgid "Error for virus protection\n"
+msgstr "Fehler in virus Verteidigung\n"
+
+#: vhffs-panel/object/upavatar.pl:130
+msgid "Error when uploading avatar for this object"
+msgstr ""
+
+#: vhffs-panel/dns/delete.pl:96
+msgid "Error while switching state. DNS will NOT be deleted"
+msgstr ""
+
+#: vhffs-panel/group/history.pl:65 vhffs-panel/group/prefs.pl:67
+msgid "Error. This group doesn't exists"
+msgstr ""
+
+#: vhffs-panel/group/history.pl:80
+msgid "Event"
+msgstr "Ereignis"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:360
+msgid "Expired session ! Please login again"
+msgstr ""
+
+#: vhffs-panel/object/upavatar.pl:114
+msgid "Filetype not supported, only png is supported"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:51
+msgid "Fill with project's members emails"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:225 vhffs-panel/user/prefs.pl:303
+#: vhffs-intl/template_strings.pl:5 vhffs-intl/template_strings.pl:35
+msgid "Firstname"
+msgstr "Vorname"
+
+#: vhffs-panel/user/prefs.pl:120
+msgid "Firstname is not correct !"
+msgstr "Vorname ist nicht korrekt !"
+
+#: vhffs-panel/git/prefs.pl:115
+msgid "Fix permissions in this repository"
+msgstr ""
+
+#: vhffs-panel/git/prefs.pl:117
+msgid "Fix them !"
+msgstr ""
+
+#: vhffs-panel/git/prefs.pl:116
+msgid ""
+"Fixing permissions on a repository solve permission access on the "
+"repository. Can be helpful if you encounter problems"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:319
+#, perl-format
+msgid "Forward %s deleted"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:304
+#, perl-format
+msgid "Forward %s successfully updated"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:268 vhffs-panel/group/prefs.pl:191
+#: vhffs-panel/mail/prefs.pl:288
+msgid "Forward added"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:188
+msgid "Forward deleted"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:414
+#, perl-format
+msgid "Forward emails from %s@%s to %s"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:125
+msgid "Forward mail"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:277
+msgid "Forward updated"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:120
+msgid "Forwards"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:560
+msgid "Full history"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:69 vhffs-api/src/Vhffs/Panel/Menu.pm:118
+msgid "GIT"
+msgstr "GIT"
+
+#: vhffs-intl/template_strings.pl:30
+msgid "GIT Repositories for this group"
+msgstr ""
+
+#: vhffs-panel/git/index.pl:61
+#, perl-format
+msgid "GIT repositories for %s"
+msgstr "GIT Repositories für %s"
+
+#: vhffs-panel/admin/git/index.pl:57
+msgid "GIT repositories' administration"
+msgstr ""
+
+#: vhffs-panel/admin/git/list.pl:72
+msgid "GIT root"
+msgstr "GIT root"
+
+#: vhffs-panel/admin/stats.pl:133
+msgid "GIT stats"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:559 vhffs-api/src/Vhffs/Panel/Admin.pm:79
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:101
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:110
+msgid "General"
+msgstr "Allgemein"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:76 vhffs-api/src/Vhffs/Panel/Admin.pm:93
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:91
+msgid "Get Statistics"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:206
+msgid "Git Admin"
+msgstr "Git Admin"
+
+#: vhffs-panel/lost.pl:58
+msgid "Give me a new password"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:808
+msgid "Go to administration"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:85
+msgid "Go to public area"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:302
+#, perl-format
+msgid ""
+"Greetings,\n"
+"\n"
+"You've been added to the list %s on platform %s.\n"
+"\n"
+"You may get some help on listengine by sending an email to %s-request@%s "
+"with subject help.\n"
+"\n"
+"Cheers."
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/list.pl:80 vhffs-panel/admin/svn/list.pl:71
+#: vhffs-panel/admin/dns/list.pl:76 vhffs-panel/admin/moderation.pl:87
+#: vhffs-panel/admin/pgsql/list.pl:77 vhffs-panel/admin/repository/list.pl:76
+#: vhffs-panel/admin/git/list.pl:73 vhffs-panel/admin/web/list.pl:71
+#: vhffs-panel/admin/mysql/list.pl:83 vhffs-panel/admin/cvs/list.pl:77
+#: vhffs-panel/admin/mail/list.pl:76 vhffs-intl/extra_strings.pl:36
+msgid "Group"
+msgstr "Gruppe"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:546
+#, perl-format
+msgid "Group %s"
+msgstr "Gruppe %s"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:135
+msgid "Group Admin"
+msgstr "Gruppe Admin"
+
+#: vhffs-intl/template_strings.pl:66
+msgid "Group Quota"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:543
+msgid "Group error"
+msgstr "Gruppe Fehler"
+
+#: vhffs-panel/acl/view.pl:87
+msgid "Group or user not found"
+msgstr "Guppe oder Benutzer nicht gefunden"
+
+#: vhffs-panel/cvs/create.pl:104
+msgid "Group owning this CVS"
+msgstr ""
+
+#: vhffs-panel/dns/create.pl:75
+msgid "Group owning this DNS"
+msgstr ""
+
+#: vhffs-panel/svn/create.pl:98
+msgid "Group owning this Subversion repository"
+msgstr ""
+
+#: vhffs-panel/pgsql/create.pl:103 vhffs-panel/mysql/create.pl:103
+msgid "Group owning this database"
+msgstr ""
+
+#: vhffs-panel/git/create.pl:98
+msgid "Group owning this git repository"
+msgstr ""
+
+#: vhffs-panel/mail/create.pl:93
+msgid "Group owning this mail domain"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:108
+msgid "Group owning this mailing list"
+msgstr ""
+
+#: vhffs-panel/repository/create.pl:93
+msgid "Group owning this repository"
+msgstr ""
+
+#: vhffs-panel/web/create.pl:99
+msgid "Group owning this web space"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:97
+msgid "Group updated"
+msgstr "Gruppe aktualisiert"
+
+#: vhffs-panel/group/prefs.pl:293
+msgid "Group updated, please wait while quota is updated on filesystem"
+msgstr ""
+
+#: vhffs-panel/admin/group/list.pl:80 vhffs-intl/template_strings.pl:12
+#: vhffs-intl/template_strings.pl:25 vhffs-intl/template_strings.pl:38
+#: vhffs-intl/template_strings.pl:40
+msgid "Groupname"
+msgstr "Gruppenname"
+
+#: vhffs-panel/group/create.pl:66
+msgid ""
+"Groupname must contain between 3 and 12 characters, only letters or numbers "
+"in lower case"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:43 vhffs-api/src/Vhffs/Panel/Menu.pm:112
+msgid "Groups"
+msgstr "Gruppen"
+
+#: vhffs-panel/admin/stats.pl:99
+msgid "Groups stats"
+msgstr ""
+
+#: vhffs-panel/admin/group/index.pl:56
+msgid "Groups' administration"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:8
+msgid "Groups/Projects"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:181
+#, 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/Object.pm:499
+#, perl-format
+msgid ""
+"Hello %s %s,\n"
+"\n"
+"Your %s (%s) on %s has been deleted.\n"
+"\n"
+"This is because it have been refused a long time ago and you didn't\n"
+"submit an update since.\n"
+"\n"
+"For reminder, the reason of refusal was:\n"
+"%s\n"
+"\n"
+"Don't be upset, submit it again if you forgot to update it in time.\n"
+"If you need further information, just reply to this email !\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/User.pm:322
+#, perl-format
+msgid ""
+"Hello %s %s,\n"
+"\n"
+"Your account (%s) on %s has been deleted.\n"
+"\n"
+"This is because it was left unused for a long time\n"
+"\n"
+"Don't be upset, create it again and reply to this email to tell us\n"
+"why you really need to keep your account.\n"
+"If you need further information, just reply to this email !\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Object.pm:404
+#, perl-format
+msgid ""
+"Hello %s %s,\n"
+"\n"
+"Your request for a %s (%s) on %s was accepted.\n"
+"Please wait while we are creating your object.\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Object.pm:453
+#, perl-format
+msgid ""
+"Hello %s %s,\n"
+"\n"
+"Your request for a %s (%s) on %s was refused.\n"
+"\n"
+"The reason of refusal given by moderators is:\n"
+"%s\n"
+"\n"
+"You can change the description and submit it again for moderation on the\n"
+"panel. You can delete this object on the panel if you have made\n"
+"a mistake. Don't be upset, if you don't understand why your request has\n"
+"been refused, just reply to this email !\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:502
+#, perl-format
+msgid "Hello %s, welcome in VHFFS !"
+msgstr "Hello %s, Wilkommen bei VHFFS !"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:46
+msgid "Hello and welcome on listengine help\n"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:417 vhffs-panel/group/prefs.pl:233
+#: vhffs-api/src/Vhffs/Panel/Main.pm:437 vhffs-api/src/Vhffs/Panel/Main.pm:564
+#: vhffs-api/src/Vhffs/Panel/Main.pm:663 vhffs-api/src/Vhffs/Panel/Main.pm:818
+msgid "Help"
+msgstr "Hilfe"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:52
+msgid "Here are the basic listengine commands:\n"
+msgstr ""
+
+#: vhffs-panel/alert.pl:57
+msgid "Here, you can report a bug to the admin team"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:422
+#, perl-format
+msgid ""
+"His email address is:\n"
+" %s\n"
+msgstr ""
+
+#: vhffs-panel/history.pl:98 vhffs-panel/admin/object/list.pl:92
+#: vhffs-panel/admin/object/list.pl:99 vhffs-api/src/Vhffs/Panel/Main.pm:811
+msgid "History"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:198
+#: vhffs-api/src/Vhffs/Panel/Object.pm:203
+msgid "History of this object"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:434
+msgid "Home page"
+msgstr "Homepage"
+
+#: vhffs-intl/template_strings.pl:46
+msgid "Homepage of public area"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:295 vhffs-panel/dns/prefs.pl:380
+#: vhffs-panel/dns/prefs.pl:396
+msgid "Host"
+msgstr "Rechner"
+
+#: vhffs-panel/dns/prefs.pl:287
+msgid "Host of your name server"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:165
+msgid "However this list require approval for new subscribers.\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:120
+#, perl-format
+msgid "However you are (%s) already subscribed to this list.\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:69
+msgid "I've lost my password"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:263
+msgid "IP"
+msgstr "IP"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:505
+msgid ""
+"If you are new to VHFFS, you should start to read quickly the whole help "
+"available by clicking on the help button in the upper right of your screen"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:88
+msgid ""
+"If you don't asked to be subscribed to this mailing list,\n"
+"just forget this email\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:106
+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:203
+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-api/src/Vhffs/Panel/DNS.pm:197 vhffs-api/src/Vhffs/Panel/DNS.pm:209
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:239
+msgid "Invalid IP address"
+msgstr "Ungültige IP Adresse"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:227
+msgid "Invalid IP v6 address"
+msgstr "Ungültige IP v6 Adresse"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:297
+msgid "Invalid alias"
+msgstr "Ungültiges Alias"
+
+#: vhffs-panel/pgsql/create.pl:86 vhffs-panel/mysql/create.pl:86
+msgid ""
+"Invalid database name, it must contain only numbers, lowercase letters and "
+"underscore (the latter isn't allowed in first or last position) and be "
+"between 3 and 32 characters."
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:286
+msgid "Invalid destination"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:311 vhffs-api/src/Vhffs/Panel/DNS.pm:327
+msgid "Invalid destination domain name"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:298
+msgid "Invalid destination host"
+msgstr ""
+
+#: vhffs-panel/dns/create.pl:51 vhffs-panel/mail/create.pl:76
+msgid "Invalid domain name"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:263
+msgid "Invalid host"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:249 vhffs-api/src/Vhffs/Panel/DNS.pm:273
+msgid "Invalid hostname"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:85
+msgid "Invalid local part"
+msgstr ""
+
+#: vhffs-panel/git/prefs.pl:188
+msgid "Invalid mailing list address"
+msgstr ""
+
+#: vhffs-panel/pgsql/create.pl:88
+msgid "Invalid password. It must be at least 3 chars"
+msgstr ""
+
+#: vhffs-panel/mysql/create.pl:88
+msgid "Invalid password. It must contain at least 3 characters"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:312 vhffs-api/src/Vhffs/Panel/DNS.pm:328
+msgid "Invalid port"
+msgstr "Invalid port"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:194 vhffs-api/src/Vhffs/Panel/DNS.pm:224
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:341
+msgid "Invalid prefix"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:250 vhffs-api/src/Vhffs/Panel/DNS.pm:313
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:329
+msgid "Invalid priority"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:309
+msgid "Invalid protocol syntax"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:274 vhffs-panel/repository/prefs.pl:120
+msgid "Invalid quota"
+msgstr "Ungültige Quote"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:159 vhffs-api/src/Vhffs/Panel/DNS.pm:207
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:237 vhffs-api/src/Vhffs/Panel/DNS.pm:261
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:284 vhffs-api/src/Vhffs/Panel/DNS.pm:325
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:352
+msgid "Invalid record"
+msgstr "Ungültiger Eintrag"
+
+#: vhffs-panel/svn/create.pl:81 vhffs-panel/git/create.pl:81
+#: vhffs-panel/cvs/create.pl:82
+msgid ""
+"Invalid reponame. It must contain between 3 and 64 characters, only "
+"lowercase letters and numbers"
+msgstr ""
+
+#: vhffs-panel/web/create.pl:79
+msgid "Invalid servername (doesn't conform to domain names rules)"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:310
+msgid "Invalid service syntax"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:115
+msgid ""
+"Invalid username, it must contain between 3 and 12 alphanumeric characters, "
+"all in lowercase"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:314 vhffs-api/src/Vhffs/Panel/DNS.pm:330
+msgid "Invalid weight"
+msgstr "Ungültiges Gewicht"
+
+#: vhffs-panel/cvs/prefs.pl:111
+msgid "Is this CVS repository public ??"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:92 vhffs-panel/git/prefs.pl:100
+msgid "Is this a public repository ?"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:311
+msgid "Language"
+msgstr "Sprache"
+
+#: vhffs-intl/template_strings.pl:9 vhffs-intl/template_strings.pl:48
+msgid "Last Groups"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:47
+msgid "Last Users"
+msgstr ""
+
+#: vhffs-public/lastgroups.pl:58
+#, perl-format
+msgid "Last groups on %s"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:2
+msgid "Last users"
+msgstr ""
+
+#: vhffs-public/lastusers.pl:60
+#, perl-format
+msgid "Last users on %s"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:226 vhffs-panel/user/prefs.pl:304
+#: vhffs-intl/template_strings.pl:6 vhffs-intl/template_strings.pl:36
+msgid "Lastname"
+msgstr "Nachname"
+
+#: vhffs-panel/user/prefs.pl:123
+msgid "Lastname is not correct !"
+msgstr "Nachname ist nicht korrekt"
+
+#: vhffs-panel/dns/prefs.pl:236
+msgid "List all A reccords"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:237
+msgid "List all AAAA reccords"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:185
+msgid "List all CVS repos"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:203
+msgid "List all Git repos"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:220
+msgid "List all MySQL databases"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:237
+msgid "List all Pg databases"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:167
+msgid "List all SVN repos"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:303
+msgid "List all TXT records"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:112
+msgid "List all accounts"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:290
+msgid "List all domain names"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:308
+msgid "List all download repositories"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:121
+msgid "List all forwardings for this domain"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:132
+msgid "List all groups"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:254
+msgid "List all mail domains"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:272
+msgid "List all mailing lists"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:147
+msgid "List all members"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:96
+msgid "List all objects"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:115
+msgid "List all users"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:150
+msgid "List all webareas"
+msgstr ""
+
+#: vhffs-panel/admin/cvs/list.pl:73
+msgid "List of all CVS repositories"
+msgstr ""
+
+#: vhffs-panel/admin/repository/list.pl:72
+msgid "List of all Download repositories"
+msgstr ""
+
+#: vhffs-panel/admin/mysql/list.pl:79
+msgid "List of all MySQL databases"
+msgstr ""
+
+#: vhffs-panel/admin/pgsql/list.pl:73
+msgid "List of all PostgreSQL databases"
+msgstr ""
+
+#: vhffs-panel/admin/dns/list.pl:72
+msgid "List of all domains"
+msgstr ""
+
+#: vhffs-panel/admin/group/list.pl:73
+msgid "List of all groups"
+msgstr ""
+
+#: vhffs-panel/admin/mail/list.pl:72
+msgid "List of all mail-domain"
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/list.pl:76
+msgid "List of all mailing-list"
+msgstr ""
+
+#: vhffs-panel/admin/user/list.pl:67
+msgid "List of all users"
+msgstr ""
+
+#: vhffs-panel/admin/web/list.pl:67 vhffs-intl/template_strings.pl:49
+msgid "List of all websites"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:222
+msgid "List updated"
+msgstr "Liste aktualisiert"
+
+#: vhffs-panel/mailinglist/delete.pl:95
+msgid "List will NOT be deleted"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:166
+msgid "Listengine stats"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:124
+msgid "Local Part"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:115
+msgid "Local Part for this account"
+msgstr ""
+
+#: vhffs-panel/lost_ack.pl:75 vhffs-panel/lost_ack.pl:83
+msgid "Login"
+msgstr "Benutzername"
+
+#: vhffs-panel/auth.pl:72
+msgid "Login failed !"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:245
+msgid "Logo"
+msgstr "Logo"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:439
+msgid "Logout"
+msgstr "Abmelden"
+
+#: vhffs-intl/template_strings.pl:69 vhffs-intl/template_strings.pl:74
+msgid "MB"
+msgstr "MB"
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:73 vhffs-api/src/Vhffs/Panel/Menu.pm:122
+msgid "ML"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:152
+msgid "MX Record added"
+msgstr "MX Eintrag hinzugefügt"
+
+#: vhffs-panel/dns/prefs.pl:147
+msgid "MX Record deleted"
+msgstr "MX Eintrag abgelöst"
+
+#: vhffs-panel/dns/prefs.pl:142
+msgid "MX Record updated"
+msgstr "MX Eintrag aktualisiert"
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:72 vhffs-api/src/Vhffs/Panel/Menu.pm:121
+msgid "Mail"
+msgstr "E-Mail"
+
+#: vhffs-panel/mail/prefs.pl:101
+msgid "Mail Administration for domain "
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:44
+msgid "Mail Domain"
+msgstr "Mail Domain"
+
+#: vhffs-panel/user/prefs.pl:282
+msgid "Mail deleted"
+msgstr "Mail abgelöst"
+
+#: vhffs-panel/mail/create.pl:80
+msgid "Mail domain successfully created !"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:257
+msgid "Mail domains Admin"
+msgstr ""
+
+#: vhffs-panel/mail/index.pl:60
+#, perl-format
+msgid "Mail domains for %s"
+msgstr ""
+
+#: vhffs-panel/admin/mail/index.pl:56
+msgid "Mail domains' administration"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:107
+msgid "Mail for the list"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:139
+msgid "Mail stats"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:98
+msgid "Mail to all hosted people"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:371
+#, perl-format
+msgid "Mail with id %s"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:180
+msgid "Mailbox modified"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:223
+msgid "Mailbox successfully added"
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/list.pl:79 vhffs-intl/extra_strings.pl:45
+msgid "Mailing List"
+msgstr "Mailing Liste"
+
+#: vhffs-intl/template_strings.pl:31
+msgid "Mailing Lists for this group"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:81
+#, perl-format
+msgid "Mailing list %s@%s not found"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:157
+msgid "Mailing list address is invalid"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:275
+msgid "Mailing lists Admin"
+msgstr ""
+
+#: vhffs-panel/mailinglist/index.pl:60
+#, perl-format
+msgid "Mailing lists for %s"
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/index.pl:56
+msgid "Mailing lists' administration"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_submit.pl:92
+msgid "Mailing successfully added"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_delete.pl:92
+msgid "Mailing successfully deleted"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:99
+msgid "Manage mailings"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:146
+msgid "Manage members"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:152
+msgid "Many users matched your query. Please choose between them"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:114
+msgid "Members only"
+msgstr "Nur Mitglieder"
+
+#: vhffs-panel/mailinglist/prefs.pl:115
+msgid "Members only and moderated"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast.pl:80
+msgid "Message"
+msgstr ""
+
+#: vhffs-panel/alert_submit.pl:65
+msgid "Message sent by the following account"
+msgstr ""
+
+#: vhffs-panel/alert_submit.pl:68
+msgid "Message sent successfully"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:336 vhffs-api/src/Vhffs/Listengine.pm:353
+#, perl-format
+msgid "Message with id: %s"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:112
+msgid "Moderated for everyone"
+msgstr ""
+
+#: vhffs-panel/admin/moderation.pl:74 vhffs-api/src/Vhffs/Panel/Admin.pm:77
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:95 vhffs-api/src/Vhffs/Panel/Menu.pm:92
+msgid "Moderation"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:62
+msgid "Moderator"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:429
+msgid "Moderator account"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:126 vhffs-intl/extra_strings.pl:30
+#: vhffs-api/src/Vhffs/Panel/Object.pm:131
+msgid "Modification applied"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:125 vhffs-intl/extra_strings.pl:29
+#: vhffs-api/src/Vhffs/Panel/Object.pm:130
+msgid "Modification error"
+msgstr ""
+
+#: vhffs-panel/admin/moderation_submit.pl:98
+msgid "Modifications applied successfully"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:163 vhffs-panel/git/prefs.pl:152
+#: vhffs-panel/git/prefs.pl:197
+msgid ""
+"Modifications applied. Please wait while your repository is being updated"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:95 vhffs-panel/user/prefs.pl:314
+#: vhffs-panel/dns/prefs.pl:315 vhffs-panel/dns/prefs.pl:327
+#: vhffs-panel/dns/prefs.pl:340 vhffs-panel/dns/prefs.pl:351
+#: vhffs-panel/dns/prefs.pl:378 vhffs-panel/dns/prefs.pl:394
+#: vhffs-panel/acl/view.pl:105 vhffs-panel/pgsql/prefs.pl:97
+#: vhffs-panel/group/prefs.pl:211 vhffs-panel/group/prefs.pl:229
+#: vhffs-panel/admin/mailinglist/list.pl:88 vhffs-panel/admin/svn/list.pl:79
+#: vhffs-panel/admin/user/list.pl:79 vhffs-panel/admin/dns/list.pl:84
+#: vhffs-panel/admin/pgsql/list.pl:85 vhffs-panel/admin/group/list.pl:89
+#: vhffs-panel/admin/repository/list.pl:84 vhffs-panel/admin/git/list.pl:81
+#: vhffs-panel/admin/mysql/list.pl:92 vhffs-panel/admin/cvs/list.pl:84
+#: vhffs-panel/admin/mail/list.pl:84 vhffs-panel/git/prefs.pl:103
+#: vhffs-panel/web/prefs.pl:101 vhffs-panel/mysql/prefs.pl:109
+#: vhffs-panel/cvs/prefs.pl:114
+msgid "Modify"
+msgstr "Ändern"
+
+#: vhffs-panel/dns/prefs.pl:260
+msgid "Must we redirect the DNS on our servers ?"
+msgstr ""
+
+#: vhffs-panel/group/index.pl:54 vhffs-api/src/Vhffs/Panel/Main.pm:436
+msgid "My Projects"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:65 vhffs-api/src/Vhffs/Panel/Menu.pm:114
+msgid "MySQL"
+msgstr "MySQL"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:223
+msgid "MySQL Admin"
+msgstr "MySQL Admin"
+
+#: vhffs-panel/mysql/prefs.pl:93
+msgid "MySQL Administration"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:39
+msgid "MySQL DB"
+msgstr "MySQL DB"
+
+#: vhffs-panel/mysql/index.pl:60
+#, perl-format
+msgid "MySQL DBs for %s"
+msgstr ""
+
+#: vhffs-panel/mysql/create.pl:105
+msgid "MySQL database name "
+msgstr ""
+
+#: vhffs-panel/admin/mysql/index.pl:56
+msgid "MySQL databases' administration"
+msgstr ""
+
+#: vhffs-panel/mysql/create.pl:107
+msgid "MySQL password for this database "
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:151
+msgid "MySQL stats"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:161
+msgid "NS Record added"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:157
+msgid "NS Record deleted"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:284
+msgid "NS TYPE"
+msgstr ""
+
+#: vhffs-panel/group/history.pl:79 vhffs-panel/admin/moderation.pl:85
+msgid "Name"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:264
+msgid "Name for reccord"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:307
+msgid "Name for record"
+msgstr ""
+
+#: vhffs-panel/pgsql/prefs.pl:84 vhffs-panel/mysql/prefs.pl:95
+msgid "Name of the database"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:271
+msgid "Name of your MX"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:812
+msgid "New"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:68 vhffs-intl/template_strings.pl:73
+msgid "New Quota"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:271
+#, perl-format
+msgid "New language is: %s\n"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:94 vhffs-panel/dns/prefs.pl:262
+#: vhffs-panel/git/prefs.pl:102 vhffs-panel/cvs/prefs.pl:113
+#: vhffs-intl/template_strings.pl:83 vhffs-intl/template_strings.pl:86
+msgid "No"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:319
+msgid "No A type found"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:331
+msgid "No AAAA type found"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:358
+msgid "No CNAME available on this domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:345
+msgid "No MX reccord for this domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:371
+msgid "No NS available on this domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:387
+msgid "No SRV available on this domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:400
+msgid "No TXT available on this domain"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:345
+msgid "No cookie found, please accept the cookie and then please login again !"
+msgstr ""
+
+#: vhffs-panel/object/upavatar.pl:105
+msgid "No enough rights"
+msgstr ""
+
+#: vhffs-panel/group/history.pl:83
+msgid "No event about this group"
+msgstr ""
+
+#: vhffs-panel/history.pl:106 vhffs-panel/admin/object/edit.pl:204
+#: vhffs-api/src/Vhffs/Panel/Object.pm:208
+msgid "No event about this object"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:44
+msgid "No group"
+msgstr ""
+
+#: vhffs-public/groupsearch.pl:74
+msgid "No group found"
+msgstr ""
+
+#: vhffs-listengine/src/listengine.pl:775
+msgid "No message to moderate"
+msgstr ""
+
+#: vhffs-public/group.pl:79
+msgid "No such group"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:22
+msgid "No user"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:255
+msgid "No user for this group"
+msgstr ""
+
+#: vhffs-public/usersearch.pl:75
+msgid "No user found"
+msgstr ""
+
+#: vhffs-public/websitesearch.pl:74
+msgid "No website found"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:24
+msgid "No websites"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:329 vhffs-panel/dns/prefs.pl:255
+#: vhffs-panel/web/prefs.pl:112
+msgid "No, I'm not sure, I prefer to keep it."
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:182 vhffs-panel/svn/prefs.pl:100
+#: vhffs-panel/pgsql/prefs.pl:102 vhffs-panel/group/prefs.pl:216
+#: vhffs-panel/repository/prefs.pl:92 vhffs-panel/git/prefs.pl:108
+#: vhffs-panel/mysql/prefs.pl:114 vhffs-panel/cvs/prefs.pl:119
+#: vhffs-panel/mail/prefs.pl:139
+msgid "No, I'm not sure, I prefer to keep this project."
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:813
+msgid "None"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:61
+msgid "Normal"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:109 vhffs-panel/git/prefs.pl:120
+msgid "Notify changes on mailing-list :"
+msgstr ""
+
+#: vhffs-panel/admin/object/list.pl:88
+msgid "Object ID"
+msgstr ""
+
+#: vhffs-panel/object/quickdelete.pl:103
+msgid "Object deletion"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:94 vhffs-api/src/Vhffs/Panel/Object.pm:98
+msgid "Object id"
+msgstr ""
+
+#: vhffs-panel/object/resubmit.pl:122
+msgid "Object name"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit_submit.pl:95
+msgid "Object successfully updated"
+msgstr ""
+
+#: vhffs-panel/object/resubmit.pl:119
+msgid "Object type"
+msgstr ""
+
+#: vhffs-panel/object/upavatar.pl:97
+msgid "Object-ID error"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:106 vhffs-panel/dns/prefs.pl:247
+#: vhffs-panel/git/prefs.pl:114 vhffs-panel/web/prefs.pl:105
+#: vhffs-panel/mail/prefs.pl:145
+msgid "Ok, go to ACL admin"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast.pl:81
+msgid "Ok, send it !"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:279 vhffs-panel/repository/prefs.pl:114
+msgid "Only administrators are allowed to do this"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:463
+msgid "Only administrators can do this"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:58
+msgid "Only this list administrators can use the following commands.\n"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:111
+msgid "Open for everyone"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:113
+msgid "Open for members, moderated for non-members"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:108
+msgid "Open, approval required"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:107
+msgid "Open, no approval required"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:105 vhffs-panel/svn/prefs.pl:108
+#: vhffs-panel/git/prefs.pl:119 vhffs-intl/template_strings.pl:76
+msgid "Options"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:33 vhffs-intl/template_strings.pl:37
+msgid "Owned by"
+msgstr ""
+
+#: vhffs-panel/group/create.pl:88
+msgid "Owner"
+msgstr ""
+
+#: vhffs-panel/admin/object/list.pl:90
+msgid "Owner group"
+msgstr ""
+
+#: vhffs-panel/admin/group/list.pl:81
+msgid "Owner name"
+msgstr ""
+
+#: vhffs-panel/admin/object/list.pl:89
+msgid "Owner user"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:309 vhffs-panel/mail/prefs.pl:116
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:67
+msgid "Password"
+msgstr ""
+
+#: vhffs-panel/pgsql/prefs.pl:135 vhffs-panel/mysql/prefs.pl:146
+msgid "Password change request taken in account, please wait for processing"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:168
+msgid "Password changed"
+msgstr ""
+
+#: vhffs-panel/pgsql/prefs.pl:90 vhffs-panel/mysql/prefs.pl:101
+msgid "Password for this database"
+msgstr ""
+
+#: vhffs-panel/lost_ack.pl:82
+msgid "Password recovery failed!"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:141
+msgid "Passwords don't match"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:66 vhffs-api/src/Vhffs/Panel/Menu.pm:115
+msgid "PgSQL"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:40
+msgid "PgSQL DB"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:158
+msgid "PgSQL stats"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:324
+msgid "Platform temporary closed."
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:313
+msgid "Platform temporary closed<br/>database error"
+msgstr ""
+
+#: vhffs-panel/group/create.pl:92 vhffs-panel/object/resubmit.pl:131
+#: vhffs-panel/web/create.pl:104
+msgid ""
+"Please consider that this description is going to be displayed in the public "
+"area. So you have to write it in impersonal form. You should take care to "
+"write it with correct grammar and tenses. Take all the time you need to fill "
+"it with the best content you are able to do."
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:159
+msgid "Please enter a correct city"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:163
+msgid "Please enter a correct country"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:151
+msgid "Please enter a correct firstname"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:155
+msgid "Please enter a correct lastname"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:64
+msgid "Please enter your username and password"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:222
+msgid ""
+"Please fill in all fields, a mail containing your password will be sent to "
+"you"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:299
+msgid "Please read help of listengine\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:196
+msgid "Please try again !\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:242
+msgid "Please try again.\n"
+msgstr ""
+
+#: vhffs-panel/lost_ack.pl:74
+#, perl-format
+msgid "Please wait %s, a new password will be sent to you in a few minutes..."
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:189
+msgid ""
+"Please wait while we are creating the account, it will take some minutes"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:296 vhffs-panel/dns/prefs.pl:381
+msgid "Port"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:240
+msgid "PostgreSQL Admin"
+msgstr ""
+
+#: vhffs-panel/pgsql/prefs.pl:82
+msgid "PostgreSQL Administration"
+msgstr ""
+
+#: vhffs-panel/pgsql/index.pl:60
+#, perl-format
+msgid "PostgreSQL DBs for %s"
+msgstr ""
+
+#: vhffs-panel/pgsql/create.pl:105
+msgid "PostgreSQL database name "
+msgstr ""
+
+#: vhffs-panel/admin/pgsql/index.pl:56
+msgid "PostgreSQL databases' administration"
+msgstr ""
+
+#: vhffs-panel/pgsql/create.pl:107
+msgid "PostgreSQL password for this database "
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:110
+msgid "Posting control:"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:558
+msgid "Preferences"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:195 vhffs-api/src/Vhffs/Panel/DNS.pm:225
+msgid "Prefix already exists"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:138
+msgid "Prefix on subject"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:297 vhffs-panel/dns/prefs.pl:382
+msgid "Priority"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:272
+msgid "Priority of your MX"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:341
+msgid "Priority: "
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:207
+msgid "Project Description"
+msgstr ""
+
+#: vhffs-panel/group/history.pl:75
+msgid "Project History"
+msgstr ""
+
+#: vhffs-panel/group/create.pl:85
+msgid "Project Name"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:205
+msgid "Project Owner"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:201
+msgid "Project Preferences"
+msgstr ""
+
+#: vhffs-panel/group/create.pl:76
+msgid "Project Successfully created !"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:226
+msgid "Project contact"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:209 vhffs-panel/group/create.pl:87
+msgid "Project full name"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:451
+msgid "Project home"
+msgstr ""
+
+#: vhffs-panel/group/index.pl:62
+msgid "Projects you contribute to"
+msgstr ""
+
+#: vhffs-panel/group/index.pl:64 vhffs-panel/object/resubmit.pl:108
+#: vhffs-api/src/Vhffs/Panel/Main.pm:809
+msgid "Propose a new description"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:293
+msgid "Protocol"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:91 vhffs-panel/git/prefs.pl:99
+msgid "Public"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:136
+msgid "Public archives"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:70
+msgid "Public area is not available on this platform."
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:69
+msgid "Public area not available"
+msgstr ""
+
+#: vhffs-panel/repository/prefs.pl:85 vhffs-api/src/Vhffs/Panel/Main.pm:550
+#, perl-format
+msgid "Quota (used/total) : %s/%s"
+msgstr ""
+
+#: vhffs-public/rss/lastgroups.pl:103 vhffs-public/rss/lastusers.pl:102
+msgid "RSS infos are not published"
+msgstr ""
+
+#: vhffs-panel/admin/user/list.pl:71
+msgid "Real Name"
+msgstr ""
+
+#: vhffs-panel/object/resubmit.pl:125
+msgid "Reason of refusal"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:239
+msgid "Recopy the code"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:161 vhffs-api/src/Vhffs/Panel/DNS.pm:208
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:238 vhffs-api/src/Vhffs/Panel/DNS.pm:262
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:285 vhffs-api/src/Vhffs/Panel/DNS.pm:326
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:353
+msgid "Record does not exists"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:160
+msgid "Record type doesn't exists"
+msgstr ""
+
+#: vhffs-panel/admin/moderation.pl:90 vhffs-panel/admin/moderation.pl:117
+msgid "Refuse"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:254
+msgid "Remove"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:137
+msgid "Reply to: on list"
+msgstr ""
+
+#: vhffs-panel/svn/create.pl:96 vhffs-panel/repository/create.pl:92
+#: vhffs-panel/admin/repository/list.pl:75 vhffs-panel/git/create.pl:96
+#: vhffs-panel/cvs/create.pl:102
+msgid "Repository Name"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:71
+msgid "Repository Quota"
+msgstr ""
+
+#: vhffs-panel/repository/prefs.pl:133
+msgid "Repository updated, please wait while quota is updated on filesystem"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:263
+#, perl-format
+msgid "Rights for subscriber %s updated"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:198
+msgid "SRV Record added"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:187
+msgid "SRV Record deleted"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:183
+msgid "SRV Record updated"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:290
+msgid "SRV TYPE"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:68 vhffs-api/src/Vhffs/Panel/Menu.pm:117
+msgid "SVN"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:170
+msgid "SVN Admin"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:42
+msgid "SVN Repository"
+msgstr ""
+
+#: vhffs-panel/svn/index.pl:60
+#, perl-format
+msgid "SVN repositories for %s"
+msgstr ""
+
+#: vhffs-panel/admin/svn/index.pl:56
+msgid "SVN repositories' administration"
+msgstr ""
+
+#: vhffs-panel/admin/svn/list.pl:70
+msgid "SVN root"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:127
+msgid "SVN stats"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:141
+msgid "Save options"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:7 vhffs-intl/template_strings.pl:14
+#: vhffs-intl/template_strings.pl:20
+msgid "Search"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:11
+msgid "Search a group"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:17
+msgid "Search a website"
+msgstr ""
+
+#: vhffs-panel/admin/object/search.pl:77
+msgid "Search an object (give object_id)"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:3
+msgid "Search an user"
+msgstr ""
+
+#: vhffs-panel/admin/cvs/search.pl:78 vhffs-api/src/Vhffs/Panel/Admin.pm:186
+msgid "Search for a CVS repository"
+msgstr ""
+
+#: vhffs-panel/admin/repository/search.pl:78
+msgid "Search for a Download repository"
+msgstr ""
+
+#: vhffs-panel/admin/git/search.pl:80
+msgid "Search for a GIT repository"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:204
+msgid "Search for a Git repository"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:221
+msgid "Search for a MySQL database"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:238
+msgid "Search for a Pg database"
+msgstr ""
+
+#: vhffs-panel/admin/svn/search.pl:80 vhffs-api/src/Vhffs/Panel/Admin.pm:168
+msgid "Search for a SVN repository"
+msgstr ""
+
+#: vhffs-panel/admin/pgsql/search.pl:79 vhffs-panel/admin/mysql/search.pl:79
+msgid "Search for a database"
+msgstr ""
+
+#: vhffs-panel/admin/dns/search.pl:79 vhffs-api/src/Vhffs/Panel/Admin.pm:291
+msgid "Search for a domain name"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:309
+msgid "Search for a download repository"
+msgstr ""
+
+#: vhffs-panel/admin/group/search.pl:79 vhffs-api/src/Vhffs/Panel/Admin.pm:133
+msgid "Search for a group"
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/search.pl:78
+msgid "Search for a list"
+msgstr ""
+
+#: vhffs-panel/admin/mail/search.pl:79 vhffs-api/src/Vhffs/Panel/Admin.pm:255
+msgid "Search for a mail domain"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:273
+msgid "Search for a mailing list"
+msgstr ""
+
+#: vhffs-panel/admin/web/search.pl:79
+msgid "Search for a web area"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:151
+msgid "Search for a webarea"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:97
+msgid "Search for an object"
+msgstr ""
+
+#: vhffs-panel/admin/user/search.pl:79 vhffs-api/src/Vhffs/Panel/Admin.pm:116
+msgid "Search for an user"
+msgstr ""
+
+#: vhffs-panel/admin/group/list.pl:77
+msgid "Search result"
+msgstr ""
+
+#: vhffs-panel/admin/object/list.pl:81
+msgid "Search result "
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/list.pl:72 vhffs-panel/admin/user/list.pl:63
+#: vhffs-panel/admin/web/list.pl:63 vhffs-panel/admin/mail/list.pl:68
+msgid "Search result for"
+msgstr ""
+
+#: vhffs-panel/admin/cvs/list.pl:69
+msgid "Search result for CVS repository"
+msgstr ""
+
+#: vhffs-panel/admin/repository/list.pl:68
+msgid "Search result for Download repository"
+msgstr ""
+
+#: vhffs-panel/admin/svn/list.pl:63
+msgid "Search result for Subversion repository"
+msgstr ""
+
+#: vhffs-panel/admin/pgsql/list.pl:69 vhffs-panel/admin/mysql/list.pl:75
+msgid "Search result for database"
+msgstr ""
+
+#: vhffs-panel/admin/dns/list.pl:68
+msgid "Search result for domain"
+msgstr ""
+
+#: vhffs-panel/admin/git/list.pl:65
+msgid "Search result for git repository"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:189
+msgid "Selected mailbox doesn't exist for this mail domain"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:112 vhffs-panel/svn/create.pl:101
+#: vhffs-panel/dns/create.pl:78 vhffs-panel/pgsql/create.pl:109
+#: vhffs-panel/group/create.pl:90 vhffs-panel/repository/create.pl:97
+#: vhffs-panel/alert.pl:59 vhffs-panel/admin/broadcast_list.pl:100
+#: vhffs-panel/admin/object/edit.pl:99 vhffs-panel/admin/broadcast_view.pl:101
+#: vhffs-panel/git/create.pl:102 vhffs-panel/web/create.pl:102
+#: vhffs-panel/mysql/create.pl:109 vhffs-panel/cvs/create.pl:107
+#: vhffs-panel/mail/create.pl:96 vhffs-api/src/Vhffs/Panel/Object.pm:103
+msgid "Send"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast.pl:77
+msgid "Send an email to all hosted people"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:300
+msgid "Send an email with the subject \"help\" to the following address: \n"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:336 vhffs-panel/user/prefs.pl:338
+msgid "Send my avatar"
+msgstr ""
+
+#: vhffs-panel/admin/web/list.pl:70
+msgid "Servername"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:294
+msgid "Service"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:313
+msgid "Shell"
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/list.pl:90 vhffs-panel/admin/svn/list.pl:81
+#: vhffs-panel/admin/user/list.pl:81 vhffs-panel/admin/dns/list.pl:86
+#: vhffs-panel/admin/pgsql/list.pl:87 vhffs-panel/admin/group/list.pl:91
+#: vhffs-panel/admin/repository/list.pl:86 vhffs-panel/admin/git/list.pl:83
+#: vhffs-panel/admin/web/list.pl:82 vhffs-panel/admin/mysql/list.pl:94
+#: vhffs-panel/admin/cvs/list.pl:86 vhffs-panel/admin/mail/list.pl:86
+msgid "Show"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:50
+msgid "Signature"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:92
+msgid "Sorry, can't add or update ACL"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:247
+msgid "Spam status updated"
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/list.pl:81 vhffs-panel/admin/svn/list.pl:72
+#: vhffs-panel/admin/user/list.pl:72 vhffs-panel/admin/dns/list.pl:77
+#: vhffs-panel/admin/pgsql/list.pl:78 vhffs-panel/admin/group/list.pl:82
+#: vhffs-panel/admin/repository/list.pl:77 vhffs-panel/admin/git/list.pl:74
+#: vhffs-panel/admin/object/list.pl:91 vhffs-panel/admin/broadcast_view.pl:88
+#: vhffs-panel/admin/web/list.pl:72 vhffs-panel/admin/mysql/list.pl:84
+#: vhffs-panel/admin/cvs/list.pl:78 vhffs-panel/admin/mail/list.pl:77
+msgid "State"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:97 vhffs-api/src/Vhffs/Panel/Object.pm:101
+msgid "Status"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:664
+msgid "Stay over an icon to see its description."
+msgstr ""
+
+#: vhffs-panel/admin/su.pl:74
+msgid "Su !"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:281
+msgid "Subdomain name"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast.pl:79 vhffs-panel/admin/broadcast_view.pl:87
+msgid "Subject"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:273 vhffs-panel/dns/prefs.pl:279
+#: vhffs-panel/dns/prefs.pl:300 vhffs-panel/object/resubmit.pl:134
+msgid "Submit"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:438
+msgid "Submit a bug"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:231 vhffs-api/src/Vhffs/Panel/Commons.pm:70
+msgid "Subscribe"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:106
+msgid "Subscribe control:"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:54
+msgid "Subscribed"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:242
+#, perl-format
+msgid "Subscriber %s deleted"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:221
+msgid "Subscription"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:135
+#, perl-format
+msgid ""
+"Subscription to the following list is forbidden:\n"
+" %s\n"
+"\n"
+"Have a nice day.\n"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:29
+msgid "Subversion Repositories for this group"
+msgstr ""
+
+#: vhffs-panel/object/upavatar.pl:126
+msgid "Successfully created or updated avatar"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:122 vhffs-panel/admin/object/edit.pl:123
+#: vhffs-intl/extra_strings.pl:26 vhffs-api/src/Vhffs/Panel/Object.pm:127
+#: vhffs-api/src/Vhffs/Panel/Object.pm:128
+msgid "Suspended"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:27
+msgid "Suspended before deletion"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:203
+msgid "TXT Record added"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:214
+msgid "TXT Record deleted"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:209
+msgid "TXT Record updated"
+msgstr ""
+
+#: vhffs-panel/mail/create.pl:97
+msgid "Tell us for what purpose you want to create this mail domain"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:113
+msgid "Tell us what the use of this mailing list will be"
+msgstr ""
+
+#: vhffs-panel/web/create.pl:103
+msgid "Tell us what the use of this web space will be"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:306
+msgid "Text"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:342 vhffs-api/src/Vhffs/Panel/DNS.pm:354
+msgid "Text can't be empty"
+msgstr ""
+
+#: vhffs-panel/cvs/create.pl:89
+msgid "The CVS object was successfully created !"
+msgstr ""
+
+#: vhffs-panel/dns/create.pl:57
+msgid "The DNS object was successfully created !"
+msgstr ""
+
+#: vhffs-panel/git/create.pl:85
+msgid "The GIT object was successfully created !"
+msgstr ""
+
+#: vhffs-panel/mysql/create.pl:90
+msgid "The MySQL DB was successfully created !"
+msgstr ""
+
+#: vhffs-panel/pgsql/create.pl:90
+msgid "The PostgreSQL DB was successfully created !"
+msgstr ""
+
+#: vhffs-panel/svn/create.pl:85
+msgid "The SVN object was successfully created !"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:339
+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:246
+msgid "The avatar is an image to describe the group"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:195
+msgid "The confirmation code was wrong\n"
+msgstr ""
+
+#: vhffs-panel/pgsql/create.pl:102 vhffs-panel/mysql/create.pl:102
+#, perl-format
+msgid ""
+"The database name is prefixed by your groupname followed by an underscore (%"
+"s_dbname). The database user is the database full name (%s_dbname)."
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:181
+msgid "The email you entered fails syntax check"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:90 vhffs-panel/group/create.pl:72
+msgid "The first letter of groupname and full name must be the same"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:389
+#, perl-format
+msgid ""
+"The following address %s is not allowed to execute commands on the list %s\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:210
+#, perl-format
+msgid ""
+"The following address %s is not on the following mailing list:\n"
+" %s\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:518
+msgid ""
+"The following projects have reached or are going to reach the disk quota "
+"limit, please take a look !"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:270
+#, perl-format
+msgid ""
+"The listengine language preference was changed for the following address %"
+"s.\n"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:89
+msgid "The mailing list object was successfully created !"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:320
+msgid "The message does not exists or was moderated before you.\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:317
+#, perl-format
+msgid "The message with the following id %s"
+msgstr ""
+
+#: vhffs-panel/object/resubmit.pl:95 vhffs-panel/object/resubmit.pl:98
+msgid "The new description has been submitted"
+msgstr ""
+
+#: vhffs-panel/repository/create.pl:81
+msgid "The repository was successfully created !"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:122
+msgid ""
+"The state of you subscription was not changed, you are still subscribed\n"
+msgstr ""
+
+#: vhffs-panel/web/create.pl:83
+msgid "The webarea was successfully created !"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:312
+msgid "Theme"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:261
+msgid ""
+"There is a problem with the address you filled in your profile, unable to "
+"add forwarding"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:103
+msgid ""
+"There is no default mail domain on this platform, you have to create a mail "
+"domain before creating a mailing list"
+msgstr ""
+
+#: vhffs-panel/admin/moderation.pl:79
+msgid "There is nothing to moderate"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:412
+msgid "There is two possible usages :"
+msgstr ""
+
+#: vhffs-panel/cvs/delete.pl:86
+msgid "This CVS repository will NOT be deleted"
+msgstr ""
+
+#: vhffs-panel/cvs/delete.pl:97
+msgid "This CVS will be deleted"
+msgstr ""
+
+#: vhffs-panel/pgsql/delete.pl:73
+msgid "This DB doesn't exist in VHFFS database"
+msgstr ""
+
+#: vhffs-panel/repository/delete.pl:86
+msgid "This Download repository will NOT be deleted"
+msgstr ""
+
+#: vhffs-panel/repository/delete.pl:99
+msgid "This Download repository will be deleted"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:179 vhffs-panel/svn/prefs.pl:97
+#: vhffs-panel/dns/prefs.pl:252 vhffs-panel/pgsql/prefs.pl:99
+#: vhffs-panel/group/prefs.pl:213 vhffs-panel/repository/prefs.pl:89
+#: vhffs-panel/git/prefs.pl:105 vhffs-panel/web/prefs.pl:109
+#: vhffs-panel/mysql/prefs.pl:111 vhffs-panel/cvs/prefs.pl:116
+#: vhffs-panel/mail/prefs.pl:136
+msgid ""
+"This action is non-reversible. All services associated to this project will "
+"be DESTROYED."
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:326
+msgid "This action is non-reversible. WHEN YOU DELETE IT, YOU CANNOT CANCEL."
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:214
+msgid ""
+"This box already exists for this domain or parameters are not valid. Check "
+"your domain."
+msgstr ""
+
+#: vhffs-panel/pgsql/delete.pl:93
+msgid "This database cannot be deleted"
+msgstr ""
+
+#: vhffs-panel/mysql/delete.pl:71
+msgid "This database doesn't exist in VHFFS database"
+msgstr ""
+
+#: vhffs-panel/mysql/delete.pl:83
+msgid "This database will NOT be deleted"
+msgstr ""
+
+#: vhffs-panel/dns/delete.pl:105
+msgid "This domain will NOT be DELETED from Vhffs platform"
+msgstr ""
+
+#: vhffs-panel/dns/delete.pl:100
+msgid "This domain will be DELETED from Vhffs platform"
+msgstr ""
+
+#: vhffs-panel/git/delete.pl:90
+msgid "This git repository will NOT be deleted"
+msgstr ""
+
+#: vhffs-panel/group/delete.pl:85
+msgid "This group will be deleted"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:315
+msgid "This host is already registered for this service"
+msgstr ""
+
+#: vhffs-panel/mail/delete.pl:103
+msgid "This mail domain WILL BE DELETED"
+msgstr ""
+
+#: vhffs-panel/mail/delete.pl:91
+msgid "This mail domain will NOT be DELETED"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:104
+#, perl-format
+msgid ""
+"This mail must contains the following subject : \"confirm unsubscribe %s\"\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:86
+#, perl-format
+msgid ""
+"This mail must have the following subject : \"confirm subscribe %s\"\n"
+"On most clients it should work by just replying this email\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:405
+#, perl-format
+msgid ""
+"This mail was sent by %s with the following subject:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: vhffs-panel/object/quickdelete.pl:68 vhffs-panel/object/resubmit.pl:68
+msgid "This object does not exist"
+msgstr ""
+
+#: vhffs-panel/admin/object/delete_avatar.pl:105
+msgid "This object does not have an avatar"
+msgstr ""
+
+#: vhffs-panel/object/quickdelete.pl:86 vhffs-panel/object/quickdelete.pl:89
+msgid "This object has been deleted"
+msgstr ""
+
+#: vhffs-panel/group/history.pl:68
+msgid "This object is not functional yet. Please wait creation or moderation."
+msgstr ""
+
+#: vhffs-panel/mailinglist/delete.pl:87 vhffs-panel/group/delete.pl:72
+#: vhffs-panel/git/delete.pl:86 vhffs-panel/web/prefs.pl:80
+#: vhffs-panel/mail/delete.pl:83
+msgid "This object is not functionnal yet. Please wait creation or moderation."
+msgstr ""
+
+#: vhffs-panel/object/quickdelete.pl:72 vhffs-panel/object/resubmit.pl:72
+msgid "This object is not in refused state"
+msgstr ""
+
+#: vhffs-panel/web/delete.pl:96
+msgid "This object will BE DELETED"
+msgstr ""
+
+#: vhffs-panel/group/delete.pl:76 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:74
+msgid "This platform does not support avatar"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:314
+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:325
+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/delete.pl:98 vhffs-panel/git/delete.pl:103
+msgid "This repository will be deleted"
+msgstr ""
+
+#: vhffs-panel/svn/delete.pl:85
+msgid "This subversion repository will NOT be deleted"
+msgstr ""
+
+#: vhffs-panel/user/delete.pl:76
+msgid "This user is always in a 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/prefs.pl:112
+msgid "This user will be removed from this group as soon as possible"
+msgstr ""
+
+#: vhffs-panel/web/delete.pl:79
+msgid "This web area doesn't exist in VHFFS database"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:424
+msgid "To accept this subscriber, send a message to\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:406
+#, perl-format
+msgid ""
+"To put this post on the list, send a message to:\n"
+" %s-request@%s\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:427
+msgid "To refuse this subscriber, send a message to\n"
+msgstr ""
+
+#: vhffs-panel/ajax/help.pl:53
+msgid "Topic not found"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:94
+msgid "Total Admin Users in VHFFS database"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:121
+msgid "Total CVS in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:113
+msgid "Total DNS in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:134
+msgid "Total GIT in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:140
+msgid "Total Mail domains in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:96
+msgid "Total Moderator Users in VHFFS database"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:152
+msgid "Total MySQL in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:159
+msgid "Total PostgreSQL in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:128
+msgid "Total SVN in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:92
+msgid "Total Users in VHFFS database"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:106
+msgid "Total Web Areas in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:123
+msgid "Total activated CVS"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:115
+msgid "Total activated DNS"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:136
+msgid "Total activated GIT"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:142
+msgid "Total activated Mail domains"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:154
+msgid "Total activated MySQL"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:161
+msgid "Total activated PostgreSQL"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:130
+msgid "Total activated SVN"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:108
+msgid "Total activated Web Areas"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:102
+msgid "Total activated groups"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:169
+msgid "Total activated lists"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:100
+msgid "Total groups in database"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:146
+msgid "Total hosted boxes"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:144
+msgid "Total hosted forwards"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:167
+msgid "Total lists in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:171
+msgid "Total subscribtion for lists"
+msgstr ""
+
+#: vhffs-panel/group/history.pl:78 vhffs-panel/admin/moderation.pl:84
+msgid "Type"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:95 vhffs-api/src/Vhffs/Panel/Object.pm:99
+msgid "UID of owner"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:135
+#, perl-format
+msgid "Unable to add A record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:130
+#, perl-format
+msgid "Unable to add AAAA record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:174
+#, perl-format
+msgid "Unable to add CNAME record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:151
+#, perl-format
+msgid "Unable to add MX record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:160
+#, perl-format
+msgid "Unable to add NS record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:197
+#, perl-format
+msgid "Unable to add SRV record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:202
+#, perl-format
+msgid "Unable to add TXT record: %s"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:286
+#, perl-format
+msgid "Unable to add forward %s"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:137 vhffs-panel/group/prefs.pl:171
+msgid ""
+"Unable to add user, he might already be in the group (waiting for addition "
+"or deletion)"
+msgstr ""
+
+#: vhffs-panel/pgsql/prefs.pl:131 vhffs-panel/mysql/prefs.pl:142
+msgid "Unable to apply changes"
+msgstr ""
+
+#: vhffs-panel/git/prefs.pl:149 vhffs-panel/git/prefs.pl:194
+#: vhffs-panel/web/prefs.pl:141
+msgid "Unable to apply modifications"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:291 vhffs-panel/repository/prefs.pl:131
+msgid "Unable to apply modifications, please try again later"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:261
+#, perl-format
+msgid "Unable to change rights for subscriber %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:112
+#, perl-format
+msgid "Unable to delete A record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:124
+#, perl-format
+msgid "Unable to delete AAAA record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:169
+#, perl-format
+msgid "Unable to delete CNAME record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:146
+#, perl-format
+msgid "Unable to delete MX record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:156
+#, perl-format
+msgid "Unable to delete NS record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:186
+#, perl-format
+msgid "Unable to delete SRV record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:213
+#, perl-format
+msgid "Unable to delete TXT record: %s"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:270
+#, perl-format
+msgid "Unable to delete box %s"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:317
+#, perl-format
+msgid "Unable to delete forward %s"
+msgstr ""
+
+#: vhffs-panel/mail/delete.pl:99
+msgid "Unable to delete this domain"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:196 vhffs-api/src/Vhffs/Panel/DNS.pm:226
+msgid ""
+"Unable to find default redirection address, please contact administrators"
+msgstr ""
+
+#: vhffs-panel/cvs/index.pl:63
+msgid "Unable to get CVS repositories"
+msgstr ""
+
+#: vhffs-panel/dns/index.pl:63
+msgid "Unable to get DNS"
+msgstr ""
+
+#: vhffs-panel/git/index.pl:64
+msgid "Unable to get GIT repositories"
+msgstr ""
+
+#: vhffs-panel/mysql/index.pl:63
+msgid "Unable to get MySQL databases."
+msgstr ""
+
+#: vhffs-panel/pgsql/index.pl:63
+msgid "Unable to get PgSQL databases"
+msgstr ""
+
+#: vhffs-panel/svn/index.pl:63
+msgid "Unable to get SVN repositories"
+msgstr ""
+
+#: vhffs-panel/mail/delete.pl:79 vhffs-panel/mail/prefs.pl:74
+#, perl-format
+msgid "Unable to get information on mail domain %s"
+msgstr ""
+
+#: vhffs-panel/mail/index.pl:63
+msgid "Unable to get mail domains"
+msgstr ""
+
+#: vhffs-panel/mailinglist/index.pl:63
+msgid "Unable to get mailing lists"
+msgstr ""
+
+#: vhffs-panel/repository/index.pl:63
+msgid "Unable to get repositories"
+msgstr ""
+
+#: vhffs-panel/web/index.pl:63
+msgid "Unable to get webareas"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:107
+#, perl-format
+msgid "Unable to modify A record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:119
+#, perl-format
+msgid "Unable to modify AAAA record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:165
+#, perl-format
+msgid "Unable to modify CNAME record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:141
+#, perl-format
+msgid "Unable to modify MX record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:182
+#, perl-format
+msgid "Unable to modify SRV record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:208
+#, perl-format
+msgid "Unable to modify TXT record: %s"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:302
+#, perl-format
+msgid "Unable to modify forward %s"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:114
+msgid "Unable to remove user from group"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:220
+msgid "Unable to save object"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:168
+msgid "Unable to update repository"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:475
+msgid "Unable to update user, please try again later"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:298
+msgid ""
+"Unknow command\n"
+"\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Functions.pm:448 vhffs-api/src/Vhffs/Functions.pm:453
+msgid "Unknown"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:163 vhffs-api/src/Vhffs/Panel/DNS.pm:199
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:211 vhffs-api/src/Vhffs/Panel/DNS.pm:229
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:241 vhffs-api/src/Vhffs/Panel/DNS.pm:253
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:265 vhffs-api/src/Vhffs/Panel/DNS.pm:276
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:288 vhffs-api/src/Vhffs/Panel/DNS.pm:301
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:317 vhffs-api/src/Vhffs/Panel/DNS.pm:332
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:344 vhffs-api/src/Vhffs/Panel/DNS.pm:356
+msgid "Unknown error"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_list.pl:104
+#: vhffs-panel/admin/broadcast_view.pl:105
+msgid "Unknown status"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:240
+#, perl-format
+msgid "Unsubscribe for the list %s was not complete.\n"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:244 vhffs-intl/template_strings.pl:87
+msgid "Update"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:64
+msgid "Update Permissions"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:70 vhffs-intl/template_strings.pl:75
+msgid "Update Quota"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:248
+msgid "Update avatar"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:144
+msgid "Update signature"
+msgstr ""
+
+#: vhffs-panel/object/upavatar.pl:118
+msgid "Uploaded file is too big. The maximum size is 20 Kbytes."
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:240
+#, perl-format
+msgid "Use @ for origin (%s)"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:413
+#, 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:424
+msgid "Use anti-spam protection"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:432
+msgid "Use anti-virus protection"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:67 vhffs-intl/template_strings.pl:72
+msgid "Used Quota"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:103 vhffs-panel/admin/moderation.pl:86
+#: vhffs-intl/extra_strings.pl:35
+msgid "User"
+msgstr "Benutzer"
+
+#: vhffs-panel/admin/su.pl:96
+#, perl-format
+msgid "User %s does not exist"
+msgstr "Benutzer %s existiert nicht"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:118
+msgid "User Admin"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:297 vhffs-api/src/Vhffs/Panel/Main.pm:435
+msgid "User Preferences"
+msgstr "Benutzer Einstellungen"
+
+#: vhffs-panel/subscribe.pl:188
+msgid "User Successfully created"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:432
+msgid "User account"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:368
+msgid "User does not exist"
+msgstr "Der Benutzer existiert nicht"
+
+#: vhffs-panel/auth.pl:74
+msgid "User is not active yet"
+msgstr "Der Benutzer ist nicht aktiv"
+
+#: vhffs-panel/group/prefs.pl:144
+msgid "User not found"
+msgstr "Benutzer nicht gefunden"
+
+#: vhffs-panel/user/prefs.pl:477
+msgid "User successfully updated"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:134 vhffs-panel/group/prefs.pl:168
+msgid "User will be added as soon as possible"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:59
+msgid "User's Permissions"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:60
+msgid "User's permissions"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:223 vhffs-panel/user/prefs.pl:301
+#: vhffs-panel/group/prefs.pl:238 vhffs-panel/admin/user/list.pl:70
+#: vhffs-panel/admin/su.pl:73 vhffs-panel/lost.pl:57
+#: vhffs-intl/template_strings.pl:4 vhffs-intl/template_strings.pl:34
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:65
+msgid "Username"
+msgstr "Benutzername:"
+
+#: vhffs-panel/pgsql/prefs.pl:87 vhffs-panel/mysql/prefs.pl:98
+msgid "Username for this database"
+msgstr "Benutzername für diese Datenbank"
+
+#: vhffs-panel/group/prefs.pl:256 vhffs-intl/template_strings.pl:1
+#: vhffs-intl/template_strings.pl:21 vhffs-intl/template_strings.pl:41
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:111
+msgid "Users"
+msgstr "Benutzer"
+
+#: vhffs-panel/admin/stats.pl:91
+msgid "Users stats"
+msgstr "Benutzer Statistiken"
+
+#: vhffs-panel/admin/user/index.pl:56
+msgid "Users' administration"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:117 vhffs-intl/extra_strings.pl:21
+#: vhffs-api/src/Vhffs/Panel/Object.pm:122
+msgid "Validation refused"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:89
+msgid "Vhffs Statistics"
+msgstr "Vhffs Statistiken"
+
+#: vhffs-intl/template_strings.pl:32
+msgid "View Archives"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_view.pl:85
+msgid "View mailing"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_list.pl:90
+msgid "View this mailing"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:254
+msgid "Virus status updated"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:105
+msgid "WEB stats"
+msgstr "Web statistiken"
+
+#: vhffs-intl/template_strings.pl:52
+msgid "Waiting for confirmation"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:118 vhffs-intl/extra_strings.pl:22
+#: vhffs-api/src/Vhffs/Panel/Object.pm:123
+msgid "Waiting for creation"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:55
+msgid "Waiting for deletion"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:124 vhffs-intl/extra_strings.pl:28
+#: vhffs-api/src/Vhffs/Panel/Object.pm:129
+msgid "Waiting for modification"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:116 vhffs-intl/template_strings.pl:53
+#: vhffs-intl/extra_strings.pl:20 vhffs-api/src/Vhffs/Panel/Object.pm:121
+msgid "Waiting for validation"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:149
+msgid "Wanted shell is not in the shell list"
+msgstr ""
+
+#: vhffs-panel/alert.pl:56
+msgid "Warn the admin team"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:65 vhffs-intl/template_strings.pl:77
+msgid ""
+"Warning, password change isn't immediate, you've to check periodically to "
+"see if it's done"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:481
+#, perl-format
+msgid ""
+"We confirm that you REFUSED the subscription of:\n"
+" %s\n"
+"\n"
+"to the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:457
+#, perl-format
+msgid ""
+"We confirm that you accepted the subscription of:\n"
+" %s\n"
+"\n"
+"to the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:227
+#, perl-format
+msgid "We offer you the possibility to forward emails from %s@%s."
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:443
+#, perl-format
+msgid "We offer you the possibility to have one email box on the domain %s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:64 vhffs-api/src/Vhffs/Panel/Menu.pm:113
+msgid "Web"
+msgstr "Web"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:153
+msgid "Web Admin"
+msgstr ""
+
+#: vhffs-panel/web/prefs.pl:93
+msgid "Web Area Administration"
+msgstr ""
+
+#: vhffs-panel/web/prefs.pl:143
+msgid "Web area successfully modified"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:37
+msgid "Webarea"
+msgstr ""
+
+#: vhffs-panel/web/index.pl:60
+#, perl-format
+msgid "Webareas for %s"
+msgstr ""
+
+#: vhffs-panel/admin/web/index.pl:56
+msgid "Webareas' administration"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:19
+msgid "Website description"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:18
+msgid "Website name"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:15
+msgid "Websites"
+msgstr ""
+
+#: vhffs-public/group.pl:99 vhffs-intl/template_strings.pl:27
+msgid "Websites for this group"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:298 vhffs-panel/dns/prefs.pl:383
+msgid "Weight"
+msgstr "Gewicht"
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:62
+#, perl-format
+msgid "Welcome on %s"
+msgstr "%s, Wilkommen"
+
+#: vhffs-panel/mailinglist/delete.pl:107
+msgid "Will be DELETED in a few minutes"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:127 vhffs-intl/extra_strings.pl:31
+#: vhffs-api/src/Vhffs/Panel/Object.pm:132
+msgid "Will be deleted"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:81
+#, perl-format
+msgid "Woah, %s users and %s groups already trust %s"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:93 vhffs-panel/dns/prefs.pl:261
+#: vhffs-panel/git/prefs.pl:101 vhffs-panel/cvs/prefs.pl:112
+#: vhffs-intl/template_strings.pl:82 vhffs-intl/template_strings.pl:85
+msgid "Yes"
+msgstr "Ja"
+
+#: vhffs-panel/mailinglist/prefs.pl:181 vhffs-panel/svn/prefs.pl:99
+#: vhffs-panel/user/prefs.pl:328 vhffs-panel/dns/prefs.pl:254
+#: vhffs-panel/pgsql/prefs.pl:101 vhffs-panel/group/prefs.pl:215
+#: vhffs-panel/repository/prefs.pl:91 vhffs-panel/git/prefs.pl:107
+#: vhffs-panel/web/prefs.pl:111 vhffs-panel/mysql/prefs.pl:113
+#: vhffs-panel/cvs/prefs.pl:118 vhffs-panel/mail/prefs.pl:138
+msgid "Yes I'm sure of what I do"
+msgstr "Ja, ich bin sicher was ich mache"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:227
+msgid "You are not a subscriber on this list.\n"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:271
+msgid "You are not allowed to add members (ACL rights)"
+msgstr ""
+
+#: vhffs-panel/object/quickdelete.pl:77 vhffs-panel/object/resubmit.pl:77
+msgid "You are not allowed to do it, you don't own this object"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:251
+msgid "You are not allowed to manager subscribers' rights (ACL rights)"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:177 vhffs-panel/mail/prefs.pl:207
+#: vhffs-panel/mail/prefs.pl:225 vhffs-panel/mail/prefs.pl:265
+#: vhffs-panel/mail/prefs.pl:279 vhffs-panel/mail/prefs.pl:295
+#: vhffs-panel/mail/prefs.pl:311
+msgid "You are not allowed to modify this object"
+msgstr ""
+
+#: vhffs-panel/web/prefs.pl:125
+msgid "You are not allowed to modify this web area"
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/search.pl:71
+#: vhffs-panel/admin/mailinglist/list.pl:63 vhffs-panel/admin/svn/search.pl:73
+#: vhffs-panel/admin/svn/list.pl:55 vhffs-panel/admin/broadcast.pl:70
+#: vhffs-panel/admin/stats.pl:82 vhffs-panel/admin/user/search.pl:72
+#: vhffs-panel/admin/user/list.pl:55 vhffs-panel/admin/dns/search.pl:72
+#: vhffs-panel/admin/dns/list.pl:59 vhffs-panel/admin/pgsql/search.pl:72
+#: vhffs-panel/admin/pgsql/list.pl:60 vhffs-panel/admin/group/search.pl:72
+#: vhffs-panel/admin/group/list.pl:65 vhffs-panel/admin/broadcast_list.pl:71
+#: vhffs-panel/admin/repository/search.pl:71
+#: vhffs-panel/admin/repository/list.pl:59 vhffs-panel/admin/git/search.pl:73
+#: vhffs-panel/admin/git/list.pl:56 vhffs-panel/admin/object/edit_submit.pl:74
+#: vhffs-panel/admin/object/delete_avatar.pl:78
+#: vhffs-panel/admin/object/edit.pl:74 vhffs-panel/admin/object/search.pl:71
+#: vhffs-panel/admin/object/list.pl:72 vhffs-panel/admin/broadcast_view.pl:73
+#: vhffs-panel/admin/web/search.pl:72 vhffs-panel/admin/web/list.pl:54
+#: vhffs-panel/admin/mysql/search.pl:72 vhffs-panel/admin/mysql/list.pl:66
+#: vhffs-panel/admin/cvs/search.pl:71 vhffs-panel/admin/cvs/list.pl:60
+#: vhffs-panel/admin/mail/search.pl:72 vhffs-panel/admin/mail/list.pl:59
+msgid "You are not allowed to see it"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:186 vhffs-api/src/Vhffs/Panel/Main.pm:207
+msgid "You are not granted to access this page"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:119
+#, perl-format
+msgid ""
+"You asked to be subscribed to the following list:\n"
+"\n"
+"%s\n"
+"\n"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:105 vhffs-panel/dns/prefs.pl:246
+#: vhffs-panel/git/prefs.pl:113 vhffs-panel/web/prefs.pl:104
+#: vhffs-panel/mail/prefs.pl:144
+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.pm:49
+msgid "You can also send a command list in the mail body.\n"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:110
+msgid "You cannot remove the owner of the group"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:89
+msgid "You cannot subscribe to VHFFS"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:226
+#, perl-format
+msgid "You cannot unsubscribe from the list %s\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:211
+msgid "You demand was refused\n"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:87
+msgid "You do not own this domain !"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:182
+#, perl-format
+msgid ""
+"You have been successfully removed from the following list:\n"
+" %s\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:255
+#, perl-format
+msgid "You have been successfully removed from the list %s.\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:147 vhffs-api/src/Vhffs/Listengine.pm:163
+#, perl-format
+msgid ""
+"You have been successfully subscribed to the following mailing list:\n"
+" %s\n"
+msgstr ""
+
+#: vhffs-panel/web/prefs.pl:135
+msgid "You have to enter a description"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:284 vhffs-panel/repository/prefs.pl:125
+msgid "You have to enter a quota greater than the current used quota"
+msgstr ""
+
+#: vhffs-panel/mailinglist/index.pl:54 vhffs-panel/svn/index.pl:54
+#: vhffs-panel/dns/index.pl:54 vhffs-panel/pgsql/index.pl:54
+#: vhffs-panel/repository/index.pl:54 vhffs-panel/git/index.pl:55
+#: vhffs-panel/web/index.pl:54 vhffs-panel/mysql/index.pl:54
+#: vhffs-panel/cvs/index.pl:54 vhffs-panel/mail/index.pl:54
+msgid "You have to select a group first"
+msgstr ""
+
+#: vhffs-panel/auth.pl:105
+msgid "You left your VHFFS session!"
+msgstr ""
+
+#: vhffs-panel/lost.pl:55
+msgid "You lost your password? You're a bad guy!"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:149 vhffs-api/src/Vhffs/Listengine.pm:168
+#: vhffs-api/src/Vhffs/Listengine.pm:443
+msgid "You may get some help on listengine by sending an email to\n"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:204
+msgid "You must choose a method for your mail"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:85 vhffs-api/src/Vhffs/Listengine.pm:103
+msgid "You must confirm your request by sending a confirmation email\n"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:143
+msgid "You must declare a valid mail address"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:123
+msgid "You must declare your city"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:119
+msgid "You must declare your country"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:131
+msgid "You must declare your firstname"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:135
+msgid "You must declare your lastname"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:139
+msgid "You must declare your mail address"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:111
+msgid "You must declare your username"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:127
+msgid "You must declare your zipcode"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:83 vhffs-panel/svn/create.pl:83
+#: vhffs-panel/dns/create.pl:53 vhffs-panel/pgsql/create.pl:84
+#: vhffs-panel/group/prefs.pl:86 vhffs-panel/group/create.pl:68
+#: vhffs-panel/repository/create.pl:79 vhffs-panel/git/create.pl:83
+#: vhffs-panel/object/resubmit.pl:90 vhffs-panel/web/create.pl:81
+#: vhffs-panel/mysql/create.pl:84 vhffs-panel/cvs/create.pl:84
+#: vhffs-panel/mail/create.pl:78
+msgid "You must enter a description"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:88 vhffs-panel/group/create.pl:70
+msgid "You must enter a full name"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:126
+msgid "You must enter an username"
+msgstr ""
+
+#: vhffs-panel/group/view.pl:55
+msgid "You must specify a project name"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:281
+msgid "You need to enter at least one new member"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:166
+msgid "You will receive an email with the decision of administrators.\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:375
+msgid "You're are not allowed to browse panel"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:62 vhffs-panel/svn/create.pl:63
+#: vhffs-panel/dns/create.pl:34 vhffs-panel/pgsql/create.pl:63
+#: vhffs-panel/group/delete.pl:68 vhffs-panel/group/history.pl:71
+#: vhffs-panel/group/prefs.pl:78 vhffs-panel/group/prefs.pl:108
+#: vhffs-panel/group/prefs.pl:119 vhffs-panel/group/prefs.pl:160
+#: vhffs-panel/group/prefs.pl:177 vhffs-panel/repository/create.pl:64
+#: vhffs-panel/admin/moderation_submit.pl:67
+#: vhffs-panel/admin/moderation.pl:70 vhffs-panel/admin/broadcast_submit.pl:79
+#: vhffs-panel/admin/broadcast_delete.pl:79 vhffs-panel/git/create.pl:64
+#: vhffs-panel/web/prefs.pl:84 vhffs-panel/web/create.pl:63
+#: vhffs-panel/mysql/create.pl:63 vhffs-panel/cvs/create.pl:64
+#: vhffs-panel/mail/create.pl:60
+msgid "You're not allowed to do this (ACL rights)"
+msgstr ""
+
+#: vhffs-panel/mailinglist/delete.pl:91 vhffs-panel/mailinglist/prefs.pl:84
+#: vhffs-panel/mailinglist/prefs.pl:205 vhffs-panel/mailinglist/prefs.pl:230
+#: vhffs-panel/svn/delete.pl:81 vhffs-panel/svn/prefs.pl:76
+#: vhffs-panel/svn/prefs.pl:134 vhffs-panel/user/prefs.pl:78
+#: vhffs-panel/user/prefs.pl:84 vhffs-panel/dns/delete.pl:87
+#: vhffs-panel/dns/prefs.pl:86 vhffs-panel/dns/prefs.pl:95
+#: vhffs-panel/pgsql/delete.pl:77 vhffs-panel/pgsql/prefs.pl:71
+#: vhffs-panel/pgsql/prefs.pl:115 vhffs-panel/group/prefs.pl:70
+#: vhffs-panel/repository/delete.pl:82 vhffs-panel/repository/prefs.pl:74
+#: vhffs-panel/git/delete.pl:82 vhffs-panel/git/prefs.pl:80
+#: vhffs-panel/git/prefs.pl:142 vhffs-panel/git/prefs.pl:164
+#: vhffs-panel/web/delete.pl:83 vhffs-panel/mysql/delete.pl:79
+#: vhffs-panel/mysql/prefs.pl:80 vhffs-panel/cvs/delete.pl:82
+#: vhffs-panel/cvs/prefs.pl:73 vhffs-panel/cvs/prefs.pl:78
+#: vhffs-panel/cvs/prefs.pl:94 vhffs-panel/mail/delete.pl:87
+#: vhffs-panel/mail/prefs.pl:77
+msgid ""
+"You're not allowed to do this, object is not in active state or you don't "
+"have enough ACL rights"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:89
+msgid "You're not allowed to manage this object's ACL"
+msgstr ""
+
+#: vhffs-panel/history.pl:94 vhffs-panel/acl/view.pl:76
+msgid "You're not allowed to view this object's ACL"
+msgstr ""
+
+#: vhffs-panel/admin/su.pl:65
+msgid "You're not an administrator"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Object.pm:512
+#, perl-format
+msgid "Your %s (%s) on %s has been deleted due to lack of updates"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/User.pm:333
+#, perl-format
+msgid ""
+"Your account (%s) on %s has been deleted because it was unused for a long "
+"time"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:243
+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-panel/alert.pl:58
+msgid "Your message"
+msgstr ""
+
+#: vhffs-panel/group/index.pl:61
+msgid "Your projects"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Object.pm:416
+#, perl-format
+msgid "Your request for a %s (%s) on %s was accepted"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Object.pm:466
+#, perl-format
+msgid "Your request for a %s (%s) on %s was refused"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:441
+#, perl-format
+msgid ""
+"Your subscription was accepted to the following mailing list:\n"
+" %s\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:469
+#, perl-format
+msgid ""
+"Your subscription was refused to the following mailing list:\n"
+" %s\n"
+"\n"
+"Have a nice day.\n"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:242
+msgid ""
+"Your username. It must contains only alphanumeric characters in lowercase, "
+"its length must be between 3 and 12 chars"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:147
+msgid "Your zipcode is not correct! Please enter a correct zipcode"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:227 vhffs-panel/user/prefs.pl:305
+msgid "Zipcode"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:132
+msgid "Zipcode is not correct !"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:301
+#, perl-format
+msgid "[%s] You've been added to the list %s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:355
+msgid "cannot be removed from the list\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:319
+msgid "cannot be removed.\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:53
+msgid "help\t\t - show this help\n"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:17
+msgid "help_user_admin"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:13
+msgid "help_user_bug"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:12
+msgid "help_user_help"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:14
+msgid "help_user_logout"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:11
+msgid "help_user_preferences"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:16
+msgid "help_user_project"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:15
+msgid "help_user_projects"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:372
+#, perl-format
+msgid "in the moderation queue of the list %s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:56
+msgid "lang [fr|us|es]\t - set listengine language\n"
+msgstr ""
+
+#: vhffs-listengine/src/listengine.pl:965
+#, perl-format
+msgid "listengine - list of messages to moderate for %s"
+msgstr ""
+
+#: vhffs-listengine/src/listengine.pl:848
+#: vhffs-listengine/src/listengine.pl:870
+#: vhffs-listengine/src/listengine.pl:881
+msgid "listengine help"
+msgstr ""
+
+#: vhffs-listengine/src/listengine.pl:913
+#: vhffs-listengine/src/listengine.pl:924
+#: vhffs-listengine/src/listengine.pl:940
+#: vhffs-listengine/src/listengine.pl:952
+#: vhffs-listengine/src/listengine.pl:979
+#: vhffs-listengine/src/listengine.pl:990
+msgid "listengine moderation"
+msgstr ""
+
+#: vhffs-listengine/src/listengine.pl:898
+msgid "listengine result command"
+msgstr ""
+
+#: vhffs-listengine/src/listengine.pl:1031
+msgid "listengine: unknown command"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:224 vhffs-panel/user/prefs.pl:302
+msgid "mail"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:61
+msgid "moderate XXXXX\t\t\t - accept the message with message-id XXXXX\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:62
+msgid ""
+"moderate accept XXXXX\t\t\t - accept the message with message-id XXXXX\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:64
+msgid "moderate list\t\t\t - give the message list for moderation\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:63
+msgid ""
+"moderate refused XXXXX\t\t\t - refuse the message with message-id XXXXX\n"
+msgstr ""
+
+#: vhffs-panel/web/create.pl:90
+msgid "new site"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:113
+#: vhffs-api/src/Vhffs/Panel/Object.pm:118
+msgid "no date"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Object.pm:380
+msgid "no reason given"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:318 vhffs-api/src/Vhffs/Listengine.pm:354
+#, perl-format
+msgid "present in the moderation queue for the list %s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:54
+msgid "subscribe\t - subscribe the shipper to the list\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:59
+msgid ""
+"subscription accept XXXXX\t\t - accept the subscription with key XXXXX\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:60
+msgid ""
+"subscription refuse XXXXX\t\t - refuse the subscription with key XXXXX\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:55
+msgid "unsubscribe\t - unsubscribe from this list\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:69
+msgid "user info user@xxxxxxxxxx\t\t - show user information\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:67
+msgid "user right RIGHT user@xxxxxxxxxx\t - change right for this user\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:66
+msgid ""
+"user subscribe user@xxxxxxxxxx\t\t - register the user user@xxxxxxxxxx on "
+"the list\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:65
+msgid ""
+"user unsubscribe user@xxxxxxxxxx\t - delete user user@xxxxxxxxxx from list\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:337
+#, perl-format
+msgid "was removed from the moderation queue from the list %s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:373
+msgid "was sent on the list.\n"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:23
+msgid "website(s)"
+msgstr ""
+
+#: vhffs-panel/group/create.pl:86
+msgid ""
+"with only lowercase alphanumerical letters, no space, from 3 to 12 characters"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:407
+#, perl-format
+msgid ""
+"with the following subject :\n"
+" \"moderate %s\" \n"
+msgstr ""
+
+#~ msgid "Box sucessfully added"
+#~ msgstr "Briefkasten erfolgreich hinzugefügt"
+
+#~ msgid "CGI ERROR"
+#~ msgstr "CGI ERROR"
+
+#~ msgid "CGI ERROR !"
+#~ msgstr "CGI ERROR !"
+
+#~ msgid "CGI ERROR!"
+#~ msgstr "CGI ERROR!"
+
+#~ msgid "CGI Error!"
+#~ msgstr "CGI Fehler !"
+
+#~ msgid "CGI error"
+#~ msgstr "CGI Fehler"
+
+#~ msgid "CGI problem"
+#~ msgstr "CGI Problem"
+
+#~ msgid "CVS repository for this group"
+#~ msgstr "CVS Repository für diese Gruppe"
+
+#~ msgid "GIT repository for this group"
+#~ msgstr "GIT Repository für diese Gruppe"
+
+#~ msgid "Go on login page"
+#~ msgstr "Zur Anmeldungseite"
+
+#~ msgid "User sucessfuly updated"
+#~ msgstr "Benutzer erfolgreich aktualisiert"
+
+#~ msgid "Website for this group"
+#~ msgstr "Website für die Gruppe"
Added: trunk/vhffs-intl/en@boldquot.header
===================================================================
--- trunk/vhffs-intl/en@boldquot.header (rev 0)
+++ trunk/vhffs-intl/en@boldquot.header 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,25 @@
+# All this catalog "translates" are quotation characters.
+# The msgids must be ASCII and therefore cannot contain real quotation
+# characters, only substitutes like grave accent (0x60), apostrophe (0x27)
+# and double quote (0x22). These substitutes look strange; see
+# http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
+#
+# This catalog translates grave accent (0x60) and apostrophe (0x27) to
+# left single quotation mark (U+2018) and right single quotation mark (U+2019).
+# It also translates pairs of apostrophe (0x27) to
+# left single quotation mark (U+2018) and right single quotation mark (U+2019)
+# and pairs of quotation mark (0x22) to
+# left double quotation mark (U+201C) and right double quotation mark (U+201D).
+#
+# When output to an UTF-8 terminal, the quotation characters appear perfectly.
+# When output to an ISO-8859-1 terminal, the single quotation marks are
+# transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to
+# grave/acute accent (by libiconv), and the double quotation marks are
+# transliterated to 0x22.
+# When output to an ASCII terminal, the single quotation marks are
+# transliterated to apostrophes, and the double quotation marks are
+# transliterated to 0x22.
+#
+# This catalog furthermore displays the text between the quotation marks in
+# bold face, assuming the VT100/XTerm escape sequences.
+#
Added: trunk/vhffs-intl/en@quot.header
===================================================================
--- trunk/vhffs-intl/en@quot.header (rev 0)
+++ trunk/vhffs-intl/en@quot.header 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,22 @@
+# All this catalog "translates" are quotation characters.
+# The msgids must be ASCII and therefore cannot contain real quotation
+# characters, only substitutes like grave accent (0x60), apostrophe (0x27)
+# and double quote (0x22). These substitutes look strange; see
+# http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
+#
+# This catalog translates grave accent (0x60) and apostrophe (0x27) to
+# left single quotation mark (U+2018) and right single quotation mark (U+2019).
+# It also translates pairs of apostrophe (0x27) to
+# left single quotation mark (U+2018) and right single quotation mark (U+2019)
+# and pairs of quotation mark (0x22) to
+# left double quotation mark (U+201C) and right double quotation mark (U+201D).
+#
+# When output to an UTF-8 terminal, the quotation characters appear perfectly.
+# When output to an ISO-8859-1 terminal, the single quotation marks are
+# transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to
+# grave/acute accent (by libiconv), and the double quotation marks are
+# transliterated to 0x22.
+# When output to an ASCII terminal, the single quotation marks are
+# transliterated to apostrophes, and the double quotation marks are
+# transliterated to 0x22.
+#
Added: trunk/vhffs-intl/en_US.po
===================================================================
--- trunk/vhffs-intl/en_US.po (rev 0)
+++ trunk/vhffs-intl/en_US.po 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,4704 @@
+# 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: vhffs-dev@xxxxxxxxx\n"
+"POT-Creation-Date: 2008-01-09 21:38+0100\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=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:68
+msgid "\t\t\t\t RIGHT can be subscriber or admin\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:148 vhffs-api/src/Vhffs/Listengine.pm:164
+#: vhffs-api/src/Vhffs/Listengine.pm:167 vhffs-api/src/Vhffs/Listengine.pm:442
+msgid "\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:425
+#, perl-format
+msgid ""
+" %s-request@%s\n"
+"with the following subject :\n"
+" \"subscription accept %s %s\" \n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:428
+#, perl-format
+msgid ""
+" %s-request@%s\n"
+"with the following subject :\n"
+" \"subscription refuse %s %s\" \n"
+msgstr ""
+
+#: vhffs-public/groupsearch.pl:79
+#, perl-format
+msgid "%d group(s) found"
+msgstr ""
+
+#: vhffs-public/usersearch.pl:80
+#, perl-format
+msgid "%d user(s) found"
+msgstr ""
+
+#: vhffs-public/websitesearch.pl:78
+#, perl-format
+msgid "%d websites(s) found"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:296
+#, perl-format
+msgid "%s has been added"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:294
+#, perl-format
+msgid "%s is already a member of this list"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:195
+#, perl-format
+msgid "%s is not a correct mail address"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:292
+#, perl-format
+msgid "%s is not a valid mail"
+msgstr ""
+
+#: vhffs-public/index.pl:65
+#, perl-format
+msgid "%s public area"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:710
+#, perl-format
+msgid "%s's Panel"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:150 vhffs-api/src/Vhffs/Listengine.pm:169
+#: vhffs-api/src/Vhffs/Listengine.pm:444
+#, perl-format
+msgid "%s-request@%s with subject \"help\"\n"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:312
+#, perl-format
+msgid "@ represents the origin (%s)"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:299
+msgid ""
+"A CNAME, A or AAAA record with the same name already exists for this domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:113
+msgid "A Record deleted"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:108
+msgid "A Record updated"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:404
+#, perl-format
+msgid ""
+"A mail to moderate is on the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:421
+#, perl-format
+msgid ""
+"A new person wants to subscribe to the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:136
+msgid "A record added"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:125
+msgid "AAAA Record deleted"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:120
+msgid "AAAA Record updated"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:131
+msgid "AAAA record added"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:99
+msgid "ACL Administration"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:93
+msgid "ACL added"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:95
+msgid "ACL deleted"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:94
+msgid "ACL updated"
+msgstr ""
+
+#: vhffs-panel/admin/moderation.pl:89 vhffs-panel/admin/moderation.pl:116
+msgid "Accept"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:185 vhffs-api/src/Vhffs/Panel/Main.pm:206
+msgid "Access denied"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:68
+msgid "Access to panel"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:111
+msgid "Accounts"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:411
+#, perl-format
+msgid "Activate %s@%s email"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:120 vhffs-intl/extra_strings.pl:25
+#: vhffs-api/src/Vhffs/Panel/Object.pm:125
+msgid "Activated"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:150 vhffs-panel/group/prefs.pl:240
+msgid "Add"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:265
+msgid "Add !"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:278
+msgid "Add a CNAME field to your domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:270
+msgid "Add a MX field to your domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:286
+msgid "Add a NS field to your domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:292
+msgid "Add a SRV record to your domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:304
+msgid "Add a TXT record"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:122 vhffs-panel/mail/prefs.pl:132
+msgid "Add a forward on this domain"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:131
+msgid "Add a popbox to this domain"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:239
+msgid "Add a user in this group"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:238
+msgid "Add an A record"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:239
+msgid "Add an AAAA record"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:113
+msgid "Add an account"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:148
+msgid "Add members"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:150
+msgid "Add them !"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:230 vhffs-panel/user/prefs.pl:307
+msgid "Address"
+msgstr ""
+
+#: vhffs-panel/web/create.pl:96
+msgid "Address (ServerName directive)"
+msgstr ""
+
+#: vhffs-panel/web/prefs.pl:95
+msgid "Address (Servername)"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:138
+msgid "Address is not correct !"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:149
+msgid "Addresses (one per line)"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:56
+msgid "Admin"
+msgstr ""
+
+#: vhffs-panel/cvs/prefs.pl:107
+msgid "Admin CVS Repository"
+msgstr ""
+
+#: vhffs-panel/repository/prefs.pl:81
+msgid "Admin Download repository"
+msgstr ""
+
+#: vhffs-panel/git/prefs.pl:96
+msgid "Admin Git Repository"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:104 vhffs-panel/dns/prefs.pl:245
+#: vhffs-panel/git/prefs.pl:112 vhffs-panel/web/prefs.pl:103
+#: vhffs-panel/mail/prefs.pl:143
+msgid "Admin Rights on this object (ACL)"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:87
+msgid "Admin Subversion Repository"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:426
+msgid "Admin account"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Object.pm:96
+msgid "Admin part"
+msgstr ""
+
+#: vhffs-panel/admin/index.pl:55 vhffs-api/src/Vhffs/Panel/Main.pm:427
+#: vhffs-api/src/Vhffs/Panel/Main.pm:430
+msgid "Administration"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:99
+#, perl-format
+msgid "Administration for list %s"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:63
+msgid "Administrator"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:116
+msgid "Admins only"
+msgstr ""
+
+#: vhffs-panel/alert_submit.pl:64
+msgid "Alert on Vhffs platform"
+msgstr ""
+
+#: vhffs-public/allwebsites.pl:74 vhffs-public/allgroups.pl:74
+msgid "All"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:232
+msgid "All A TYPE for your domain name"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:233
+msgid "All AAAA TYPE for your domain name"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:277
+msgid "All CNAME TYPE for your domain name"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:235
+msgid "All CNAME for your domain name"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:10
+msgid "All Groups"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:234 vhffs-panel/dns/prefs.pl:269
+msgid "All MX TYPE for your domain name"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:285
+msgid "All NS TYPE for your domain name"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:291
+msgid "All SRV records for your domain name"
+msgstr ""
+
+#: vhffs-panel/admin/svn/list.pl:67
+msgid "All Subversion repositories lists"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:305
+msgid "All TXT records for your domain name"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:16
+msgid "All Websites"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:48
+msgid "All commands can be sent as mail subject.\n"
+msgstr ""
+
+#: vhffs-panel/admin/git/list.pl:69
+msgid "All git repositories lists"
+msgstr ""
+
+#: vhffs-public/allgroups.pl:72
+#, perl-format
+msgid "All groups on %s"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_list.pl:77
+msgid "All mailings sent to hosted"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:50
+msgid ""
+"All mails with commands must be sent on YOURLIST-request@xxxxxxxxxx list.\n"
+msgstr ""
+
+#: vhffs-panel/admin/object/list.pl:85
+msgid "All objects List"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:257
+msgid "All users in this group"
+msgstr ""
+
+#: vhffs-public/allwebsites.pl:72
+#, perl-format
+msgid "All websites on %s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:251
+msgid "An MX record with the same name already exists for this domain"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:274
+msgid "An NS record with the same name already exists for this domain"
+msgstr ""
+
+#: vhffs-panel/cvs/prefs.pl:87 vhffs-panel/cvs/prefs.pl:100
+msgid "An error occured during CVS repository update"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:493
+#, perl-format
+msgid ""
+"An error occured during your approval of subscription of:\n"
+" %s\n"
+"into the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:194
+#, perl-format
+msgid ""
+"An error occured during your subscription to the following list:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:217
+msgid "An error occured while adding the box"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:219
+msgid "An error occured while adding the box (anti-spam adding)"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:221
+msgid "An error occured while adding the box (anti-virus adding)"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:266
+msgid "An error occured while adding the forwarding"
+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/git/create.pl:88
+msgid "An error occured while creating the git repository"
+msgstr ""
+
+#: vhffs-panel/mail/create.pl:83
+msgid "An error occured while creating the mail area"
+msgstr ""
+
+#: vhffs-panel/repository/create.pl:84
+msgid ""
+"An error occured while creating the object. Check that this group doesn't "
+"already have a download repository"
+msgstr ""
+
+#: vhffs-panel/dns/create.pl:60
+msgid ""
+"An error occured while creating the object. The domain is not correct or "
+"aleady exists in Vhffs database"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:92 vhffs-panel/cvs/create.pl:92
+msgid "An error occured while creating the object.It probably already exists"
+msgstr ""
+
+#: vhffs-panel/svn/create.pl:88
+msgid "An error occured while creating the svn repository"
+msgstr ""
+
+#: vhffs-panel/cvs/delete.pl:93
+msgid "An error occured while deleting the CVS repository"
+msgstr ""
+
+#: vhffs-panel/repository/delete.pl:95
+msgid "An error occured while deleting the Download repository"
+msgstr ""
+
+#: vhffs-panel/svn/delete.pl:94
+msgid "An error occured while deleting the Subversion repository"
+msgstr ""
+
+#: vhffs-panel/git/delete.pl:99
+msgid "An error occured while deleting the git repository"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_delete.pl:96
+msgid "An error occured while deleting this mailing"
+msgstr ""
+
+#: vhffs-panel/object/quickdelete.pl:96
+msgid "An error occured while deleting this object."
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Robots/Mysql.pm:109
+msgid "An error occured while granting privileges to an admin user"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:275
+msgid "An error occured while the forwarding"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:285
+#, perl-format
+msgid ""
+"An error occured while updating language for the following address: %s.\n"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:197
+msgid "An error occured while updating the mail domain"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit_submit.pl:91
+msgid "An error occured while updating the object"
+msgstr ""
+
+#: vhffs-panel/group/delete.pl:83 vhffs-panel/group/prefs.pl:95
+msgid "An error occured while updating the project"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:188
+msgid "An error occured while updating the user account"
+msgstr ""
+
+#: vhffs-panel/object/resubmit.pl:103
+msgid "An error occured while updating this object."
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:98
+msgid "Are you SURE you want DELETE this subversion repository ?"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:137
+msgid "Are you SURE you want DELETE this Mail Area ?"
+msgstr ""
+
+#: vhffs-panel/mysql/prefs.pl:112
+msgid "Are you SURE you want DELETE this MySQL database ?"
+msgstr ""
+
+#: vhffs-panel/pgsql/prefs.pl:100
+msgid "Are you SURE you want DELETE this PostgreSQL database ?"
+msgstr ""
+
+#: vhffs-panel/web/prefs.pl:110
+msgid "Are you SURE you want DELETE this Web Area ?"
+msgstr ""
+
+#: vhffs-panel/cvs/prefs.pl:117
+msgid "Are you SURE you want DELETE this cvs repository ?"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:253
+msgid "Are you SURE you want DELETE this domain ?"
+msgstr ""
+
+#: vhffs-panel/repository/prefs.pl:90
+msgid "Are you SURE you want DELETE this download repository ?"
+msgstr ""
+
+#: vhffs-panel/git/prefs.pl:106
+msgid "Are you SURE you want DELETE this git repository?"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:180
+msgid "Are you SURE you want DELETE this mailing list ?"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:214
+msgid "Are you SURE you want DELETE this project ?"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:327
+msgid "Are you SURE you want DELETE this user?"
+msgstr ""
+
+#: vhffs-panel/admin/object/delete_avatar.pl:100
+msgid "Avatar deleted"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:195
+#: vhffs-api/src/Vhffs/Panel/Object.pm:199
+msgid "Avatar management"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_list.pl:96
+#: vhffs-panel/admin/broadcast_view.pl:97
+msgid "Awaiting sending"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:191 vhffs-panel/subscribe.pl:232
+msgid "Back to Login"
+msgstr ""
+
+#: vhffs-panel/lost.pl:59 vhffs-intl/template_strings.pl:45
+msgid "Back to login page"
+msgstr ""
+
+#: vhffs-panel/pgsql/prefs.pl:126 vhffs-panel/mysql/prefs.pl:137
+msgid "Bad password, should be at least 3 chars"
+msgstr ""
+
+#: vhffs-panel/dns/create.pl:73
+msgid ""
+"Be careful ! You must give the reason why you want to host this domain on "
+"our servers."
+msgstr ""
+
+#: vhffs-panel/web/create.pl:97
+msgid ""
+"Be careful, if you want create www.domain.tld, you should create a webspace "
+"with domain.tld as servername. VHFFS redirect all request from www.domain."
+"tld to domain.tld"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_view.pl:89
+msgid "Body"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:272
+#, perl-format
+msgid "Box %s deleted"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:239
+msgid "Box password updated"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:216
+msgid "Box successfully added"
+msgstr ""
+
+#: vhffs-panel/lost.pl:56
+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-public/user.pl:60 vhffs-public/user.pl:64 vhffs-public/group.pl:72
+#: vhffs-panel/mailinglist/delete.pl:79 vhffs-panel/mailinglist/prefs.pl:210
+#: vhffs-panel/mailinglist/prefs.pl:235 vhffs-panel/mailinglist/prefs.pl:256
+#: vhffs-panel/mailinglist/prefs.pl:276 vhffs-panel/mailinglist/create.pl:81
+#: vhffs-panel/svn/delete.pl:73 vhffs-panel/svn/prefs.pl:66
+#: vhffs-panel/svn/prefs.pl:139 vhffs-panel/svn/create.pl:79
+#: vhffs-panel/history.pl:84 vhffs-panel/user/prefs.pl:114
+#: vhffs-panel/user/prefs.pl:469 vhffs-panel/dns/delete.pl:79
+#: vhffs-panel/dns/prefs.pl:76 vhffs-panel/dns/create.pl:49
+#: vhffs-panel/acl/view.pl:85 vhffs-panel/pgsql/delete.pl:81
+#: vhffs-panel/pgsql/prefs.pl:121 vhffs-panel/pgsql/create.pl:82
+#: vhffs-panel/group/prefs.pl:84 vhffs-panel/group/prefs.pl:105
+#: vhffs-panel/group/prefs.pl:123 vhffs-panel/group/prefs.pl:164
+#: vhffs-panel/repository/prefs.pl:68 vhffs-panel/repository/create.pl:77
+#: vhffs-panel/admin/moderation_submit.pl:77
+#: vhffs-panel/admin/broadcast_submit.pl:84
+#: vhffs-panel/admin/broadcast_delete.pl:84
+#: vhffs-panel/admin/object/edit_submit.pl:78
+#: vhffs-panel/admin/object/delete_avatar.pl:82
+#: vhffs-panel/admin/object/edit.pl:80 vhffs-panel/admin/broadcast_view.pl:79
+#: vhffs-panel/git/delete.pl:74 vhffs-panel/git/prefs.pl:70
+#: vhffs-panel/git/create.pl:79 vhffs-panel/object/quickdelete.pl:63
+#: vhffs-panel/object/resubmit.pl:63 vhffs-panel/object/resubmit.pl:87
+#: vhffs-panel/web/prefs.pl:130 vhffs-panel/web/create.pl:77
+#: vhffs-panel/mysql/delete.pl:75 vhffs-panel/mysql/prefs.pl:70
+#: vhffs-panel/mysql/prefs.pl:132 vhffs-panel/mysql/create.pl:82
+#: vhffs-panel/cvs/delete.pl:74 vhffs-panel/cvs/prefs.pl:67
+#: vhffs-panel/cvs/prefs.pl:80 vhffs-panel/cvs/create.pl:80
+#: vhffs-panel/mail/delete.pl:75 vhffs-panel/mail/prefs.pl:185
+#: vhffs-panel/mail/prefs.pl:212 vhffs-panel/mail/prefs.pl:233
+#: vhffs-panel/mail/prefs.pl:268 vhffs-panel/mail/prefs.pl:284
+#: vhffs-panel/mail/prefs.pl:300 vhffs-panel/mail/prefs.pl:315
+#: vhffs-panel/mail/create.pl:74
+#, perl-format
+msgid "CGI Error !"
+msgstr ""
+
+#: vhffs-panel/repository/delete.pl:74
+#, perl-format
+msgid "CGI Error ! %s"
+msgstr ""
+
+#: vhffs-panel/git/prefs.pl:169
+msgid "CGI error !"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:175
+msgid "CNAME Record added"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:170
+msgid "CNAME Record deleted"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:166
+msgid "CNAME Record updated"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:67 vhffs-api/src/Vhffs/Panel/Menu.pm:116
+msgid "CVS"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:188
+msgid "CVS Admin"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:28
+msgid "CVS Repositories for this group"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:41
+msgid "CVS Repository"
+msgstr ""
+
+#: vhffs-panel/admin/cvs/list.pl:76
+msgid "CVS Root"
+msgstr ""
+
+#: vhffs-panel/cvs/index.pl:60
+#, perl-format
+msgid "CVS repositories for %s"
+msgstr ""
+
+#: vhffs-panel/admin/cvs/index.pl:56
+msgid "CVS repositories' administration"
+msgstr ""
+
+#: vhffs-panel/cvs/prefs.pl:85 vhffs-panel/cvs/prefs.pl:98
+msgid "CVS repository updated"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:120
+msgid "CVS stats"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:113
+msgid "Can destroy this service"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:112
+msgid "Can manage ACL for this service"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:111
+msgid "Can modify this service"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:110
+msgid "Can view this service"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:109
+msgid "Can't access"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:184
+msgid "Cannot apply changes to the user"
+msgstr ""
+
+#: vhffs-panel/admin/moderation_submit.pl:94
+msgid "Cannot apply modifications"
+msgstr ""
+
+#: vhffs-panel/mailinglist/delete.pl:103
+msgid "Cannot commit changes on this object, will NOT be deleted"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:352
+msgid ""
+"Cannot create or fetch session file, please check that /tmp is readable and "
+"writeable"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:174
+msgid "Cannot create user, the username you entered already exists"
+msgstr ""
+
+#: vhffs-panel/admin/object/delete_avatar.pl:96
+msgid "Cannot delete this avatar"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit_submit.pl:82
+#: vhffs-panel/admin/object/delete_avatar.pl:86
+#: vhffs-panel/admin/object/edit.pl:85
+msgid "Cannot fetch object"
+msgstr ""
+
+#: vhffs-panel/object/upavatar.pl:101
+msgid "Cannot find object"
+msgstr ""
+
+#: vhffs-panel/history.pl:89
+msgid "Cannot get information on this object"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:71
+#, perl-format
+msgid "Cannot get informations on object #%d"
+msgstr ""
+
+#: vhffs-panel/mailinglist/delete.pl:83 vhffs-panel/svn/prefs.pl:71
+#: vhffs-panel/user/prefs.pl:73 vhffs-panel/dns/delete.pl:83
+#: vhffs-panel/dns/prefs.pl:81 vhffs-panel/pgsql/prefs.pl:68
+#: vhffs-panel/repository/prefs.pl:71 vhffs-panel/git/prefs.pl:75
+#: vhffs-panel/web/prefs.pl:74 vhffs-panel/mysql/prefs.pl:75
+#: vhffs-panel/cvs/prefs.pl:70
+msgid "Cannot get informations on this object"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:74
+msgid "Cannot get statistics"
+msgstr ""
+
+#: vhffs-panel/cvs/delete.pl:78
+msgid "Cannot retrieve informations about this CVS repository"
+msgstr ""
+
+#: vhffs-panel/repository/delete.pl:78
+msgid "Cannot retrieve informations about this Download repository"
+msgstr ""
+
+#: vhffs-panel/svn/delete.pl:77 vhffs-panel/git/delete.pl:78
+msgid "Cannot retrieve informations about this repository"
+msgstr ""
+
+#: vhffs-panel/alert_submit.pl:72
+msgid "Cannot send message, CGI error..."
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:105
+msgid "Catchall address"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:199
+msgid "Catchall address successfully changed"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:180
+msgid "Catchall isn't enabled on this platform"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:108
+msgid "Catchall mail"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:78
+msgid "Change Forward"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:80
+msgid "Change Password"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:130
+msgid "Change catchall forward"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:57
+msgid "Change rights"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:237
+msgid "Change spam protection status for your account\n"
+msgstr ""
+
+#: vhffs-panel/admin/su.pl:72 vhffs-api/src/Vhffs/Panel/Admin.pm:94
+msgid "Change user-id"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:248
+msgid "Changed anti-virus status for your account\n"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:228 vhffs-panel/user/prefs.pl:306
+msgid "City"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:126
+msgid "City is not correct !"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:109
+msgid "Closed"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:238
+msgid "Code confirmation"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:107
+msgid "Codes do not match"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:310
+msgid "Confirm Password"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:241
+msgid "Confirmation code was wrong.\n"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:240
+msgid "Confirmation code, contact administrator team if you can't read it"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:237
+msgid "Could not change box password"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:252
+#, perl-format
+msgid "Could not update antivirus status for box %s"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:245
+#, perl-format
+msgid "Could not update spam status for box %s"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:229 vhffs-panel/user/prefs.pl:308
+msgid "Country"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:135
+msgid "Country is not correct !"
+msgstr ""
+
+#: vhffs-panel/cvs/create.pl:100
+msgid "Create a CVS Repository"
+msgstr ""
+
+#: vhffs-panel/dns/create.pl:68
+msgid "Create a DNS"
+msgstr ""
+
+#: vhffs-panel/repository/create.pl:91
+msgid "Create a Download Repository"
+msgstr ""
+
+#: vhffs-panel/mysql/create.pl:100
+msgid "Create a MySQL database"
+msgstr ""
+
+#: vhffs-panel/pgsql/create.pl:100
+msgid "Create a PostgreSQL database"
+msgstr ""
+
+#: vhffs-panel/group/create.pl:84
+msgid "Create a Project"
+msgstr ""
+
+#: vhffs-panel/svn/create.pl:95
+msgid "Create a Subversion Repository"
+msgstr ""
+
+#: vhffs-panel/git/create.pl:95
+msgid "Create a git Repository"
+msgstr ""
+
+#: vhffs-panel/mail/create.pl:90
+msgid "Create a mail space"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:100
+msgid "Create a new mailing list"
+msgstr ""
+
+#: vhffs-panel/web/create.pl:95
+msgid "Create a web space"
+msgstr ""
+
+#: vhffs-panel/group/index.pl:63
+msgid "Create new project"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:121 vhffs-intl/extra_strings.pl:24
+#: vhffs-api/src/Vhffs/Panel/Object.pm:126
+msgid "Created"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:119
+#: vhffs-api/src/Vhffs/Panel/Object.pm:124
+msgid "Creating error"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:23
+msgid "Creation error"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:337 vhffs-panel/group/prefs.pl:247
+msgid "Current avatar"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:450
+msgid "Current group:"
+msgstr ""
+
+#: vhffs-panel/admin/pgsql/list.pl:76 vhffs-panel/admin/mysql/list.pl:82
+msgid "DB Name"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:293
+msgid "DNS Admin"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:227
+#, perl-format
+msgid "DNS Administration - %s"
+msgstr ""
+
+#: vhffs-panel/dns/create.pl:74
+msgid "DNS servers:"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:112
+msgid "DNS stats"
+msgstr ""
+
+#: vhffs-panel/admin/dns/index.pl:56
+msgid "DNS' administration"
+msgstr ""
+
+#: vhffs-panel/ajax/help.pl:49 vhffs-api/src/Vhffs/Panel/DNS.pm:162
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:198 vhffs-api/src/Vhffs/Panel/DNS.pm:210
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:228 vhffs-api/src/Vhffs/Panel/DNS.pm:240
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:252 vhffs-api/src/Vhffs/Panel/DNS.pm:264
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:275 vhffs-api/src/Vhffs/Panel/DNS.pm:287
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:300 vhffs-api/src/Vhffs/Panel/DNS.pm:316
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:331 vhffs-api/src/Vhffs/Panel/DNS.pm:343
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:355
+msgid "Database error"
+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/group/history.pl:77 vhffs-panel/admin/broadcast_view.pl:86
+msgid "Date"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:96 vhffs-api/src/Vhffs/Panel/Object.pm:100
+msgid "Date of creation"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:107 vhffs-panel/acl/view.pl:108
+msgid "Default"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:183 vhffs-panel/svn/prefs.pl:101
+#: vhffs-panel/user/prefs.pl:330 vhffs-panel/dns/prefs.pl:256
+#: vhffs-panel/dns/prefs.pl:313 vhffs-panel/dns/prefs.pl:325
+#: vhffs-panel/dns/prefs.pl:338 vhffs-panel/dns/prefs.pl:350
+#: vhffs-panel/dns/prefs.pl:366 vhffs-panel/dns/prefs.pl:377
+#: vhffs-panel/dns/prefs.pl:393 vhffs-panel/pgsql/prefs.pl:103
+#: vhffs-panel/group/prefs.pl:217 vhffs-panel/group/index.pl:65
+#: vhffs-panel/repository/prefs.pl:93 vhffs-panel/git/prefs.pl:109
+#: vhffs-panel/web/prefs.pl:113 vhffs-panel/mysql/prefs.pl:115
+#: vhffs-panel/cvs/prefs.pl:120 vhffs-panel/mail/prefs.pl:140
+#: vhffs-api/src/Vhffs/Panel/Main.pm:810
+msgid "Delete"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:325
+msgid "Delete YOUR user"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:196
+#: vhffs-api/src/Vhffs/Panel/Object.pm:200
+msgid "Delete avatar for this object"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:58
+msgid "Delete from list"
+msgstr ""
+
+#: vhffs-panel/pgsql/prefs.pl:98
+msgid "Delete this PostgreSQL database"
+msgstr ""
+
+#: vhffs-panel/mysql/prefs.pl:110
+msgid "Delete this database"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:251
+msgid "Delete this domain name from the VHFFS platform"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:79
+msgid "Delete this forward"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:178
+msgid "Delete this list"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:135
+msgid "Delete this mail domain"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_list.pl:89
+msgid "Delete this mailing"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:212 vhffs-panel/repository/prefs.pl:88
+#: vhffs-panel/cvs/prefs.pl:115
+msgid "Delete this project"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:96 vhffs-panel/git/prefs.pl:104
+msgid "Delete this repository"
+msgstr ""
+
+#: vhffs-panel/web/prefs.pl:108
+msgid "Delete this web area"
+msgstr ""
+
+#: vhffs-panel/svn/create.pl:102 vhffs-panel/dns/create.pl:79
+#: vhffs-panel/pgsql/create.pl:110 vhffs-panel/group/create.pl:91
+#: vhffs-panel/repository/create.pl:98 vhffs-panel/admin/moderation.pl:88
+#: vhffs-panel/admin/object/edit.pl:98 vhffs-panel/git/create.pl:103
+#: vhffs-panel/object/resubmit.pl:128 vhffs-panel/mysql/create.pl:110
+#: vhffs-panel/cvs/create.pl:108 vhffs-intl/template_strings.pl:26
+#: vhffs-intl/template_strings.pl:39 vhffs-intl/template_strings.pl:42
+#: vhffs-api/src/Vhffs/Panel/Object.pm:102
+msgid "Description"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:13
+msgid "Description contains"
+msgstr ""
+
+#: vhffs-panel/web/prefs.pl:99
+msgid "Description of your webarea"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:280
+msgid "Destination"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:71 vhffs-api/src/Vhffs/Panel/Menu.pm:120
+msgid "Dl repos"
+msgstr ""
+
+#: vhffs-panel/mail/create.pl:91
+msgid "Domain"
+msgstr ""
+
+#: vhffs-panel/dns/create.pl:70 vhffs-panel/admin/dns/list.pl:75
+#: vhffs-panel/admin/mail/list.pl:75 vhffs-intl/extra_strings.pl:43
+msgid "Domain Name"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:70 vhffs-api/src/Vhffs/Panel/Menu.pm:119
+msgid "Domain names"
+msgstr ""
+
+#: vhffs-panel/dns/index.pl:60
+#, perl-format
+msgid "Domain names for %s"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:110 vhffs-panel/git/prefs.pl:121
+#, perl-format
+msgid ""
+"Don't forget to subscribe %s to your mailing list if you are filtering posts"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:38
+msgid "Download Repository"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:311
+msgid "Download repositories Admin"
+msgstr ""
+
+#: vhffs-panel/repository/index.pl:60
+#, perl-format
+msgid "Download repositories for %s"
+msgstr ""
+
+#: vhffs-panel/admin/repository/index.pl:56
+msgid "Download repositories' administration"
+msgstr ""
+
+#: vhffs-panel/admin/web/list.pl:80
+msgid "Edit"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:91
+msgid "Edit Object"
+msgstr ""
+
+#: vhffs-panel/admin/object/list.pl:98
+msgid "Edit this object"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:183
+msgid "Email address changed"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:129
+msgid "Email is not correct !"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:81
+msgid "Enable anti-spam"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:84
+msgid "Enable anti-virus"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:107
+msgid "Enter a mail address to catch all email for this domain"
+msgstr ""
+
+#: vhffs-panel/mailinglist/index.pl:53 vhffs-panel/svn/index.pl:53
+#: vhffs-panel/dns/index.pl:53 vhffs-panel/pgsql/index.pl:53
+#: vhffs-panel/repository/index.pl:53 vhffs-panel/git/index.pl:54
+#: vhffs-panel/web/index.pl:53 vhffs-panel/mysql/index.pl:53
+#: vhffs-panel/cvs/index.pl:53 vhffs-panel/mail/index.pl:53
+msgid "Error"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_submit.pl:96
+msgid "Error !"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:212
+msgid ""
+"Error ! You MUST provide a password in your account when you create your "
+"popable account"
+msgstr ""
+
+#: vhffs-panel/group/create.pl:74
+msgid "Error creating group (maybe a group with the same name already exists)"
+msgstr ""
+
+#: vhffs-panel/web/create.pl:86
+msgid "Error creating webarea."
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:239
+msgid "Error for spam protection\n"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:250
+msgid "Error for virus protection\n"
+msgstr ""
+
+#: vhffs-panel/object/upavatar.pl:130
+msgid "Error when uploading avatar for this object"
+msgstr ""
+
+#: vhffs-panel/dns/delete.pl:96
+msgid "Error while switching state. DNS will NOT be deleted"
+msgstr ""
+
+#: vhffs-panel/group/history.pl:65 vhffs-panel/group/prefs.pl:67
+msgid "Error. This group doesn't exists"
+msgstr ""
+
+#: vhffs-panel/group/history.pl:80
+msgid "Event"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:360
+msgid "Expired session ! Please login again"
+msgstr ""
+
+#: vhffs-panel/object/upavatar.pl:114
+msgid "Filetype not supported, only png is supported"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:51
+msgid "Fill with project's members emails"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:225 vhffs-panel/user/prefs.pl:303
+#: vhffs-intl/template_strings.pl:5 vhffs-intl/template_strings.pl:35
+msgid "Firstname"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:120
+msgid "Firstname is not correct !"
+msgstr ""
+
+#: vhffs-panel/git/prefs.pl:115
+msgid "Fix permissions in this repository"
+msgstr ""
+
+#: vhffs-panel/git/prefs.pl:117
+msgid "Fix them !"
+msgstr ""
+
+#: vhffs-panel/git/prefs.pl:116
+msgid ""
+"Fixing permissions on a repository solve permission access on the "
+"repository. Can be helpful if you encounter problems"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:319
+#, perl-format
+msgid "Forward %s deleted"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:304
+#, perl-format
+msgid "Forward %s successfully updated"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:268 vhffs-panel/group/prefs.pl:191
+#: vhffs-panel/mail/prefs.pl:288
+msgid "Forward added"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:188
+msgid "Forward deleted"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:414
+#, perl-format
+msgid "Forward emails from %s@%s to %s"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:125
+msgid "Forward mail"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:277
+msgid "Forward updated"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:120
+msgid "Forwards"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:560
+msgid "Full history"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:69 vhffs-api/src/Vhffs/Panel/Menu.pm:118
+msgid "GIT"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:30
+msgid "GIT Repositories for this group"
+msgstr ""
+
+#: vhffs-panel/git/index.pl:61
+#, perl-format
+msgid "GIT repositories for %s"
+msgstr ""
+
+#: vhffs-panel/admin/git/index.pl:57
+msgid "GIT repositories' administration"
+msgstr ""
+
+#: vhffs-panel/admin/git/list.pl:72
+msgid "GIT root"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:133
+msgid "GIT stats"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:559 vhffs-api/src/Vhffs/Panel/Admin.pm:79
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:101
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:110
+msgid "General"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:76 vhffs-api/src/Vhffs/Panel/Admin.pm:93
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:91
+msgid "Get Statistics"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:206
+msgid "Git Admin"
+msgstr ""
+
+#: vhffs-panel/lost.pl:58
+msgid "Give me a new password"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:808
+msgid "Go to administration"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:85
+msgid "Go to public area"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:302
+#, perl-format
+msgid ""
+"Greetings,\n"
+"\n"
+"You've been added to the list %s on platform %s.\n"
+"\n"
+"You may get some help on listengine by sending an email to %s-request@%s "
+"with subject help.\n"
+"\n"
+"Cheers."
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/list.pl:80 vhffs-panel/admin/svn/list.pl:71
+#: vhffs-panel/admin/dns/list.pl:76 vhffs-panel/admin/moderation.pl:87
+#: vhffs-panel/admin/pgsql/list.pl:77 vhffs-panel/admin/repository/list.pl:76
+#: vhffs-panel/admin/git/list.pl:73 vhffs-panel/admin/web/list.pl:71
+#: vhffs-panel/admin/mysql/list.pl:83 vhffs-panel/admin/cvs/list.pl:77
+#: vhffs-panel/admin/mail/list.pl:76 vhffs-intl/extra_strings.pl:36
+msgid "Group"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:546
+#, perl-format
+msgid "Group %s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:135
+msgid "Group Admin"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:66
+msgid "Group Quota"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:543
+msgid "Group error"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:87
+msgid "Group or user not found"
+msgstr ""
+
+#: vhffs-panel/cvs/create.pl:104
+msgid "Group owning this CVS"
+msgstr ""
+
+#: vhffs-panel/dns/create.pl:75
+msgid "Group owning this DNS"
+msgstr ""
+
+#: vhffs-panel/svn/create.pl:98
+msgid "Group owning this Subversion repository"
+msgstr ""
+
+#: vhffs-panel/pgsql/create.pl:103 vhffs-panel/mysql/create.pl:103
+msgid "Group owning this database"
+msgstr ""
+
+#: vhffs-panel/git/create.pl:98
+msgid "Group owning this git repository"
+msgstr ""
+
+#: vhffs-panel/mail/create.pl:93
+msgid "Group owning this mail domain"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:108
+msgid "Group owning this mailing list"
+msgstr ""
+
+#: vhffs-panel/repository/create.pl:93
+msgid "Group owning this repository"
+msgstr ""
+
+#: vhffs-panel/web/create.pl:99
+msgid "Group owning this web space"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:97
+msgid "Group updated"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:293
+msgid "Group updated, please wait while quota is updated on filesystem"
+msgstr ""
+
+#: vhffs-panel/admin/group/list.pl:80 vhffs-intl/template_strings.pl:12
+#: vhffs-intl/template_strings.pl:25 vhffs-intl/template_strings.pl:38
+#: vhffs-intl/template_strings.pl:40
+msgid "Groupname"
+msgstr ""
+
+#: vhffs-panel/group/create.pl:66
+msgid ""
+"Groupname must contain between 3 and 12 characters, only letters or numbers "
+"in lower case"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:43 vhffs-api/src/Vhffs/Panel/Menu.pm:112
+msgid "Groups"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:99
+msgid "Groups stats"
+msgstr ""
+
+#: vhffs-panel/admin/group/index.pl:56
+msgid "Groups' administration"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:8
+msgid "Groups/Projects"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:181
+#, 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/Object.pm:499
+#, perl-format
+msgid ""
+"Hello %s %s,\n"
+"\n"
+"Your %s (%s) on %s has been deleted.\n"
+"\n"
+"This is because it have been refused a long time ago and you didn't\n"
+"submit an update since.\n"
+"\n"
+"For reminder, the reason of refusal was:\n"
+"%s\n"
+"\n"
+"Don't be upset, submit it again if you forgot to update it in time.\n"
+"If you need further information, just reply to this email !\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/User.pm:322
+#, perl-format
+msgid ""
+"Hello %s %s,\n"
+"\n"
+"Your account (%s) on %s has been deleted.\n"
+"\n"
+"This is because it was left unused for a long time\n"
+"\n"
+"Don't be upset, create it again and reply to this email to tell us\n"
+"why you really need to keep your account.\n"
+"If you need further information, just reply to this email !\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Object.pm:404
+#, perl-format
+msgid ""
+"Hello %s %s,\n"
+"\n"
+"Your request for a %s (%s) on %s was accepted.\n"
+"Please wait while we are creating your object.\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Object.pm:453
+#, perl-format
+msgid ""
+"Hello %s %s,\n"
+"\n"
+"Your request for a %s (%s) on %s was refused.\n"
+"\n"
+"The reason of refusal given by moderators is:\n"
+"%s\n"
+"\n"
+"You can change the description and submit it again for moderation on the\n"
+"panel. You can delete this object on the panel if you have made\n"
+"a mistake. Don't be upset, if you don't understand why your request has\n"
+"been refused, just reply to this email !\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:502
+#, perl-format
+msgid "Hello %s, welcome in VHFFS !"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:46
+msgid "Hello and welcome on listengine help\n"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:417 vhffs-panel/group/prefs.pl:233
+#: vhffs-api/src/Vhffs/Panel/Main.pm:437 vhffs-api/src/Vhffs/Panel/Main.pm:564
+#: vhffs-api/src/Vhffs/Panel/Main.pm:663 vhffs-api/src/Vhffs/Panel/Main.pm:818
+msgid "Help"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:52
+msgid "Here are the basic listengine commands:\n"
+msgstr ""
+
+#: vhffs-panel/alert.pl:57
+msgid "Here, you can report a bug to the admin team"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:422
+#, perl-format
+msgid ""
+"His email address is:\n"
+" %s\n"
+msgstr ""
+
+#: vhffs-panel/history.pl:98 vhffs-panel/admin/object/list.pl:92
+#: vhffs-panel/admin/object/list.pl:99 vhffs-api/src/Vhffs/Panel/Main.pm:811
+msgid "History"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:198
+#: vhffs-api/src/Vhffs/Panel/Object.pm:203
+msgid "History of this object"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:434
+msgid "Home page"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:46
+msgid "Homepage of public area"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:295 vhffs-panel/dns/prefs.pl:380
+#: vhffs-panel/dns/prefs.pl:396
+msgid "Host"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:287
+msgid "Host of your name server"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:165
+msgid "However this list require approval for new subscribers.\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:120
+#, perl-format
+msgid "However you are (%s) already subscribed to this list.\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:69
+msgid "I've lost my password"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:263
+msgid "IP"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:505
+msgid ""
+"If you are new to VHFFS, you should start to read quickly the whole help "
+"available by clicking on the help button in the upper right of your screen"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:88
+msgid ""
+"If you don't asked to be subscribed to this mailing list,\n"
+"just forget this email\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:106
+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:203
+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-api/src/Vhffs/Panel/DNS.pm:197 vhffs-api/src/Vhffs/Panel/DNS.pm:209
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:239
+msgid "Invalid IP address"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:227
+msgid "Invalid IP v6 address"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:297
+msgid "Invalid alias"
+msgstr ""
+
+#: vhffs-panel/pgsql/create.pl:86 vhffs-panel/mysql/create.pl:86
+msgid ""
+"Invalid database name, it must contain only numbers, lowercase letters and "
+"underscore (the latter isn't allowed in first or last position) and be "
+"between 3 and 32 characters."
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:286
+msgid "Invalid destination"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:311 vhffs-api/src/Vhffs/Panel/DNS.pm:327
+msgid "Invalid destination domain name"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:298
+msgid "Invalid destination host"
+msgstr ""
+
+#: vhffs-panel/dns/create.pl:51 vhffs-panel/mail/create.pl:76
+msgid "Invalid domain name"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:263
+msgid "Invalid host"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:249 vhffs-api/src/Vhffs/Panel/DNS.pm:273
+msgid "Invalid hostname"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:85
+msgid "Invalid local part"
+msgstr ""
+
+#: vhffs-panel/git/prefs.pl:188
+msgid "Invalid mailing list address"
+msgstr ""
+
+#: vhffs-panel/pgsql/create.pl:88
+msgid "Invalid password. It must be at least 3 chars"
+msgstr ""
+
+#: vhffs-panel/mysql/create.pl:88
+msgid "Invalid password. It must contain at least 3 characters"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:312 vhffs-api/src/Vhffs/Panel/DNS.pm:328
+msgid "Invalid port"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:194 vhffs-api/src/Vhffs/Panel/DNS.pm:224
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:341
+msgid "Invalid prefix"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:250 vhffs-api/src/Vhffs/Panel/DNS.pm:313
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:329
+msgid "Invalid priority"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:309
+msgid "Invalid protocol syntax"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:274 vhffs-panel/repository/prefs.pl:120
+msgid "Invalid quota"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:159 vhffs-api/src/Vhffs/Panel/DNS.pm:207
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:237 vhffs-api/src/Vhffs/Panel/DNS.pm:261
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:284 vhffs-api/src/Vhffs/Panel/DNS.pm:325
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:352
+msgid "Invalid record"
+msgstr ""
+
+#: vhffs-panel/svn/create.pl:81 vhffs-panel/git/create.pl:81
+#: vhffs-panel/cvs/create.pl:82
+msgid ""
+"Invalid reponame. It must contain between 3 and 64 characters, only "
+"lowercase letters and numbers"
+msgstr ""
+
+#: vhffs-panel/web/create.pl:79
+msgid "Invalid servername (doesn't conform to domain names rules)"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:310
+msgid "Invalid service syntax"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:115
+msgid ""
+"Invalid username, it must contain between 3 and 12 alphanumeric characters, "
+"all in lowercase"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:314 vhffs-api/src/Vhffs/Panel/DNS.pm:330
+msgid "Invalid weight"
+msgstr ""
+
+#: vhffs-panel/cvs/prefs.pl:111
+msgid "Is this CVS repository public ??"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:92 vhffs-panel/git/prefs.pl:100
+msgid "Is this a public repository ?"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:311
+msgid "Language"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:9 vhffs-intl/template_strings.pl:48
+msgid "Last Groups"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:47
+msgid "Last Users"
+msgstr ""
+
+#: vhffs-public/lastgroups.pl:58
+#, perl-format
+msgid "Last groups on %s"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:2
+msgid "Last users"
+msgstr ""
+
+#: vhffs-public/lastusers.pl:60
+#, perl-format
+msgid "Last users on %s"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:226 vhffs-panel/user/prefs.pl:304
+#: vhffs-intl/template_strings.pl:6 vhffs-intl/template_strings.pl:36
+msgid "Lastname"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:123
+msgid "Lastname is not correct !"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:236
+msgid "List all A reccords"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:237
+msgid "List all AAAA reccords"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:185
+msgid "List all CVS repos"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:203
+msgid "List all Git repos"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:220
+msgid "List all MySQL databases"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:237
+msgid "List all Pg databases"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:167
+msgid "List all SVN repos"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:303
+msgid "List all TXT records"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:112
+msgid "List all accounts"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:290
+msgid "List all domain names"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:308
+msgid "List all download repositories"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:121
+msgid "List all forwardings for this domain"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:132
+msgid "List all groups"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:254
+msgid "List all mail domains"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:272
+msgid "List all mailing lists"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:147
+msgid "List all members"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:96
+msgid "List all objects"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:115
+msgid "List all users"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:150
+msgid "List all webareas"
+msgstr ""
+
+#: vhffs-panel/admin/cvs/list.pl:73
+msgid "List of all CVS repositories"
+msgstr ""
+
+#: vhffs-panel/admin/repository/list.pl:72
+msgid "List of all Download repositories"
+msgstr ""
+
+#: vhffs-panel/admin/mysql/list.pl:79
+msgid "List of all MySQL databases"
+msgstr ""
+
+#: vhffs-panel/admin/pgsql/list.pl:73
+msgid "List of all PostgreSQL databases"
+msgstr ""
+
+#: vhffs-panel/admin/dns/list.pl:72
+msgid "List of all domains"
+msgstr ""
+
+#: vhffs-panel/admin/group/list.pl:73
+msgid "List of all groups"
+msgstr ""
+
+#: vhffs-panel/admin/mail/list.pl:72
+msgid "List of all mail-domain"
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/list.pl:76
+msgid "List of all mailing-list"
+msgstr ""
+
+#: vhffs-panel/admin/user/list.pl:67
+msgid "List of all users"
+msgstr ""
+
+#: vhffs-panel/admin/web/list.pl:67 vhffs-intl/template_strings.pl:49
+msgid "List of all websites"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:222
+msgid "List updated"
+msgstr ""
+
+#: vhffs-panel/mailinglist/delete.pl:95
+msgid "List will NOT be deleted"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:166
+msgid "Listengine stats"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:124
+msgid "Local Part"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:115
+msgid "Local Part for this account"
+msgstr ""
+
+#: vhffs-panel/lost_ack.pl:75 vhffs-panel/lost_ack.pl:83
+msgid "Login"
+msgstr ""
+
+#: vhffs-panel/auth.pl:72
+msgid "Login failed !"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:245
+msgid "Logo"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:439
+msgid "Logout"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:69 vhffs-intl/template_strings.pl:74
+msgid "MB"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:73 vhffs-api/src/Vhffs/Panel/Menu.pm:122
+msgid "ML"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:152
+msgid "MX Record added"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:147
+msgid "MX Record deleted"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:142
+msgid "MX Record updated"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:72 vhffs-api/src/Vhffs/Panel/Menu.pm:121
+msgid "Mail"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:101
+msgid "Mail Administration for domain "
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:44
+msgid "Mail Domain"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:282
+msgid "Mail deleted"
+msgstr ""
+
+#: vhffs-panel/mail/create.pl:80
+msgid "Mail domain successfully created !"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:257
+msgid "Mail domains Admin"
+msgstr ""
+
+#: vhffs-panel/mail/index.pl:60
+#, perl-format
+msgid "Mail domains for %s"
+msgstr ""
+
+#: vhffs-panel/admin/mail/index.pl:56
+msgid "Mail domains' administration"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:107
+msgid "Mail for the list"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:139
+msgid "Mail stats"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:98
+msgid "Mail to all hosted people"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:371
+#, perl-format
+msgid "Mail with id %s"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:180
+msgid "Mailbox modified"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:223
+msgid "Mailbox successfully added"
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/list.pl:79 vhffs-intl/extra_strings.pl:45
+msgid "Mailing List"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:31
+msgid "Mailing Lists for this group"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:81
+#, perl-format
+msgid "Mailing list %s@%s not found"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:157
+msgid "Mailing list address is invalid"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:275
+msgid "Mailing lists Admin"
+msgstr ""
+
+#: vhffs-panel/mailinglist/index.pl:60
+#, perl-format
+msgid "Mailing lists for %s"
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/index.pl:56
+msgid "Mailing lists' administration"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_submit.pl:92
+msgid "Mailing successfully added"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_delete.pl:92
+msgid "Mailing successfully deleted"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:99
+msgid "Manage mailings"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:146
+msgid "Manage members"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:152
+msgid "Many users matched your query. Please choose between them"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:114
+msgid "Members only"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:115
+msgid "Members only and moderated"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast.pl:80
+msgid "Message"
+msgstr ""
+
+#: vhffs-panel/alert_submit.pl:65
+msgid "Message sent by the following account"
+msgstr ""
+
+#: vhffs-panel/alert_submit.pl:68
+msgid "Message sent successfully"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:336 vhffs-api/src/Vhffs/Listengine.pm:353
+#, perl-format
+msgid "Message with id: %s"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:112
+msgid "Moderated for everyone"
+msgstr ""
+
+#: vhffs-panel/admin/moderation.pl:74 vhffs-api/src/Vhffs/Panel/Admin.pm:77
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:95 vhffs-api/src/Vhffs/Panel/Menu.pm:92
+msgid "Moderation"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:62
+msgid "Moderator"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:429
+msgid "Moderator account"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:126 vhffs-intl/extra_strings.pl:30
+#: vhffs-api/src/Vhffs/Panel/Object.pm:131
+msgid "Modification applied"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:125 vhffs-intl/extra_strings.pl:29
+#: vhffs-api/src/Vhffs/Panel/Object.pm:130
+msgid "Modification error"
+msgstr ""
+
+#: vhffs-panel/admin/moderation_submit.pl:98
+msgid "Modifications applied successfully"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:163 vhffs-panel/git/prefs.pl:152
+#: vhffs-panel/git/prefs.pl:197
+msgid ""
+"Modifications applied. Please wait while your repository is being updated"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:95 vhffs-panel/user/prefs.pl:314
+#: vhffs-panel/dns/prefs.pl:315 vhffs-panel/dns/prefs.pl:327
+#: vhffs-panel/dns/prefs.pl:340 vhffs-panel/dns/prefs.pl:351
+#: vhffs-panel/dns/prefs.pl:378 vhffs-panel/dns/prefs.pl:394
+#: vhffs-panel/acl/view.pl:105 vhffs-panel/pgsql/prefs.pl:97
+#: vhffs-panel/group/prefs.pl:211 vhffs-panel/group/prefs.pl:229
+#: vhffs-panel/admin/mailinglist/list.pl:88 vhffs-panel/admin/svn/list.pl:79
+#: vhffs-panel/admin/user/list.pl:79 vhffs-panel/admin/dns/list.pl:84
+#: vhffs-panel/admin/pgsql/list.pl:85 vhffs-panel/admin/group/list.pl:89
+#: vhffs-panel/admin/repository/list.pl:84 vhffs-panel/admin/git/list.pl:81
+#: vhffs-panel/admin/mysql/list.pl:92 vhffs-panel/admin/cvs/list.pl:84
+#: vhffs-panel/admin/mail/list.pl:84 vhffs-panel/git/prefs.pl:103
+#: vhffs-panel/web/prefs.pl:101 vhffs-panel/mysql/prefs.pl:109
+#: vhffs-panel/cvs/prefs.pl:114
+msgid "Modify"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:260
+msgid "Must we redirect the DNS on our servers ?"
+msgstr ""
+
+#: vhffs-panel/group/index.pl:54 vhffs-api/src/Vhffs/Panel/Main.pm:436
+msgid "My Projects"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:65 vhffs-api/src/Vhffs/Panel/Menu.pm:114
+msgid "MySQL"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:223
+msgid "MySQL Admin"
+msgstr ""
+
+#: vhffs-panel/mysql/prefs.pl:93
+msgid "MySQL Administration"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:39
+msgid "MySQL DB"
+msgstr ""
+
+#: vhffs-panel/mysql/index.pl:60
+#, perl-format
+msgid "MySQL DBs for %s"
+msgstr ""
+
+#: vhffs-panel/mysql/create.pl:105
+msgid "MySQL database name "
+msgstr ""
+
+#: vhffs-panel/admin/mysql/index.pl:56
+msgid "MySQL databases' administration"
+msgstr ""
+
+#: vhffs-panel/mysql/create.pl:107
+msgid "MySQL password for this database "
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:151
+msgid "MySQL stats"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:161
+msgid "NS Record added"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:157
+msgid "NS Record deleted"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:284
+msgid "NS TYPE"
+msgstr ""
+
+#: vhffs-panel/group/history.pl:79 vhffs-panel/admin/moderation.pl:85
+msgid "Name"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:264
+msgid "Name for reccord"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:307
+msgid "Name for record"
+msgstr ""
+
+#: vhffs-panel/pgsql/prefs.pl:84 vhffs-panel/mysql/prefs.pl:95
+msgid "Name of the database"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:271
+msgid "Name of your MX"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:812
+msgid "New"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:68 vhffs-intl/template_strings.pl:73
+msgid "New Quota"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:271
+#, perl-format
+msgid "New language is: %s\n"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:94 vhffs-panel/dns/prefs.pl:262
+#: vhffs-panel/git/prefs.pl:102 vhffs-panel/cvs/prefs.pl:113
+#: vhffs-intl/template_strings.pl:83 vhffs-intl/template_strings.pl:86
+msgid "No"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:319
+msgid "No A type found"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:331
+msgid "No AAAA type found"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:358
+msgid "No CNAME available on this domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:345
+msgid "No MX reccord for this domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:371
+msgid "No NS available on this domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:387
+msgid "No SRV available on this domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:400
+msgid "No TXT available on this domain"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:345
+msgid "No cookie found, please accept the cookie and then please login again !"
+msgstr ""
+
+#: vhffs-panel/object/upavatar.pl:105
+msgid "No enough rights"
+msgstr ""
+
+#: vhffs-panel/group/history.pl:83
+msgid "No event about this group"
+msgstr ""
+
+#: vhffs-panel/history.pl:106 vhffs-panel/admin/object/edit.pl:204
+#: vhffs-api/src/Vhffs/Panel/Object.pm:208
+msgid "No event about this object"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:44
+msgid "No group"
+msgstr ""
+
+#: vhffs-public/groupsearch.pl:74
+msgid "No group found"
+msgstr ""
+
+#: vhffs-listengine/src/listengine.pl:775
+msgid "No message to moderate"
+msgstr ""
+
+#: vhffs-public/group.pl:79
+msgid "No such group"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:22
+msgid "No user"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:255
+msgid "No user for this group"
+msgstr ""
+
+#: vhffs-public/usersearch.pl:75
+msgid "No user found"
+msgstr ""
+
+#: vhffs-public/websitesearch.pl:74
+msgid "No website found"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:24
+msgid "No websites"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:329 vhffs-panel/dns/prefs.pl:255
+#: vhffs-panel/web/prefs.pl:112
+msgid "No, I'm not sure, I prefer to keep it."
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:182 vhffs-panel/svn/prefs.pl:100
+#: vhffs-panel/pgsql/prefs.pl:102 vhffs-panel/group/prefs.pl:216
+#: vhffs-panel/repository/prefs.pl:92 vhffs-panel/git/prefs.pl:108
+#: vhffs-panel/mysql/prefs.pl:114 vhffs-panel/cvs/prefs.pl:119
+#: vhffs-panel/mail/prefs.pl:139
+msgid "No, I'm not sure, I prefer to keep this project."
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:813
+msgid "None"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:61
+msgid "Normal"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:109 vhffs-panel/git/prefs.pl:120
+msgid "Notify changes on mailing-list :"
+msgstr ""
+
+#: vhffs-panel/admin/object/list.pl:88
+msgid "Object ID"
+msgstr ""
+
+#: vhffs-panel/object/quickdelete.pl:103
+msgid "Object deletion"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:94 vhffs-api/src/Vhffs/Panel/Object.pm:98
+msgid "Object id"
+msgstr ""
+
+#: vhffs-panel/object/resubmit.pl:122
+msgid "Object name"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit_submit.pl:95
+msgid "Object successfully updated"
+msgstr ""
+
+#: vhffs-panel/object/resubmit.pl:119
+msgid "Object type"
+msgstr ""
+
+#: vhffs-panel/object/upavatar.pl:97
+msgid "Object-ID error"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:106 vhffs-panel/dns/prefs.pl:247
+#: vhffs-panel/git/prefs.pl:114 vhffs-panel/web/prefs.pl:105
+#: vhffs-panel/mail/prefs.pl:145
+msgid "Ok, go to ACL admin"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast.pl:81
+msgid "Ok, send it !"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:279 vhffs-panel/repository/prefs.pl:114
+msgid "Only administrators are allowed to do this"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:463
+msgid "Only administrators can do this"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:58
+msgid "Only this list administrators can use the following commands.\n"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:111
+msgid "Open for everyone"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:113
+msgid "Open for members, moderated for non-members"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:108
+msgid "Open, approval required"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:107
+msgid "Open, no approval required"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:105 vhffs-panel/svn/prefs.pl:108
+#: vhffs-panel/git/prefs.pl:119 vhffs-intl/template_strings.pl:76
+msgid "Options"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:33 vhffs-intl/template_strings.pl:37
+msgid "Owned by"
+msgstr ""
+
+#: vhffs-panel/group/create.pl:88
+msgid "Owner"
+msgstr ""
+
+#: vhffs-panel/admin/object/list.pl:90
+msgid "Owner group"
+msgstr ""
+
+#: vhffs-panel/admin/group/list.pl:81
+msgid "Owner name"
+msgstr ""
+
+#: vhffs-panel/admin/object/list.pl:89
+msgid "Owner user"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:309 vhffs-panel/mail/prefs.pl:116
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:67
+msgid "Password"
+msgstr ""
+
+#: vhffs-panel/pgsql/prefs.pl:135 vhffs-panel/mysql/prefs.pl:146
+msgid "Password change request taken in account, please wait for processing"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:168
+msgid "Password changed"
+msgstr ""
+
+#: vhffs-panel/pgsql/prefs.pl:90 vhffs-panel/mysql/prefs.pl:101
+msgid "Password for this database"
+msgstr ""
+
+#: vhffs-panel/lost_ack.pl:82
+msgid "Password recovery failed!"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:141
+msgid "Passwords don't match"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:66 vhffs-api/src/Vhffs/Panel/Menu.pm:115
+msgid "PgSQL"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:40
+msgid "PgSQL DB"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:158
+msgid "PgSQL stats"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:324
+msgid "Platform temporary closed."
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:313
+msgid "Platform temporary closed<br/>database error"
+msgstr ""
+
+#: vhffs-panel/group/create.pl:92 vhffs-panel/object/resubmit.pl:131
+#: vhffs-panel/web/create.pl:104
+msgid ""
+"Please consider that this description is going to be displayed in the public "
+"area. So you have to write it in impersonal form. You should take care to "
+"write it with correct grammar and tenses. Take all the time you need to fill "
+"it with the best content you are able to do."
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:159
+msgid "Please enter a correct city"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:163
+msgid "Please enter a correct country"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:151
+msgid "Please enter a correct firstname"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:155
+msgid "Please enter a correct lastname"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:64
+msgid "Please enter your username and password"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:222
+msgid ""
+"Please fill in all fields, a mail containing your password will be sent to "
+"you"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:299
+msgid "Please read help of listengine\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:196
+msgid "Please try again !\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:242
+msgid "Please try again.\n"
+msgstr ""
+
+#: vhffs-panel/lost_ack.pl:74
+#, perl-format
+msgid "Please wait %s, a new password will be sent to you in a few minutes..."
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:189
+msgid ""
+"Please wait while we are creating the account, it will take some minutes"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:296 vhffs-panel/dns/prefs.pl:381
+msgid "Port"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:240
+msgid "PostgreSQL Admin"
+msgstr ""
+
+#: vhffs-panel/pgsql/prefs.pl:82
+msgid "PostgreSQL Administration"
+msgstr ""
+
+#: vhffs-panel/pgsql/index.pl:60
+#, perl-format
+msgid "PostgreSQL DBs for %s"
+msgstr ""
+
+#: vhffs-panel/pgsql/create.pl:105
+msgid "PostgreSQL database name "
+msgstr ""
+
+#: vhffs-panel/admin/pgsql/index.pl:56
+msgid "PostgreSQL databases' administration"
+msgstr ""
+
+#: vhffs-panel/pgsql/create.pl:107
+msgid "PostgreSQL password for this database "
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:110
+msgid "Posting control:"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:558
+msgid "Preferences"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:195 vhffs-api/src/Vhffs/Panel/DNS.pm:225
+msgid "Prefix already exists"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:138
+msgid "Prefix on subject"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:297 vhffs-panel/dns/prefs.pl:382
+msgid "Priority"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:272
+msgid "Priority of your MX"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:341
+msgid "Priority: "
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:207
+msgid "Project Description"
+msgstr ""
+
+#: vhffs-panel/group/history.pl:75
+msgid "Project History"
+msgstr ""
+
+#: vhffs-panel/group/create.pl:85
+msgid "Project Name"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:205
+msgid "Project Owner"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:201
+msgid "Project Preferences"
+msgstr ""
+
+#: vhffs-panel/group/create.pl:76
+msgid "Project Successfully created !"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:226
+msgid "Project contact"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:209 vhffs-panel/group/create.pl:87
+msgid "Project full name"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:451
+msgid "Project home"
+msgstr ""
+
+#: vhffs-panel/group/index.pl:62
+msgid "Projects you contribute to"
+msgstr ""
+
+#: vhffs-panel/group/index.pl:64 vhffs-panel/object/resubmit.pl:108
+#: vhffs-api/src/Vhffs/Panel/Main.pm:809
+msgid "Propose a new description"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:293
+msgid "Protocol"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:91 vhffs-panel/git/prefs.pl:99
+msgid "Public"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:136
+msgid "Public archives"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:70
+msgid "Public area is not available on this platform."
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:69
+msgid "Public area not available"
+msgstr ""
+
+#: vhffs-panel/repository/prefs.pl:85 vhffs-api/src/Vhffs/Panel/Main.pm:550
+#, perl-format
+msgid "Quota (used/total) : %s/%s"
+msgstr ""
+
+#: vhffs-public/rss/lastgroups.pl:103 vhffs-public/rss/lastusers.pl:102
+msgid "RSS infos are not published"
+msgstr ""
+
+#: vhffs-panel/admin/user/list.pl:71
+msgid "Real Name"
+msgstr ""
+
+#: vhffs-panel/object/resubmit.pl:125
+msgid "Reason of refusal"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:239
+msgid "Recopy the code"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:161 vhffs-api/src/Vhffs/Panel/DNS.pm:208
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:238 vhffs-api/src/Vhffs/Panel/DNS.pm:262
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:285 vhffs-api/src/Vhffs/Panel/DNS.pm:326
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:353
+msgid "Record does not exists"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:160
+msgid "Record type doesn't exists"
+msgstr ""
+
+#: vhffs-panel/admin/moderation.pl:90 vhffs-panel/admin/moderation.pl:117
+msgid "Refuse"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:254
+msgid "Remove"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:137
+msgid "Reply to: on list"
+msgstr ""
+
+#: vhffs-panel/svn/create.pl:96 vhffs-panel/repository/create.pl:92
+#: vhffs-panel/admin/repository/list.pl:75 vhffs-panel/git/create.pl:96
+#: vhffs-panel/cvs/create.pl:102
+msgid "Repository Name"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:71
+msgid "Repository Quota"
+msgstr ""
+
+#: vhffs-panel/repository/prefs.pl:133
+msgid "Repository updated, please wait while quota is updated on filesystem"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:263
+#, perl-format
+msgid "Rights for subscriber %s updated"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:198
+msgid "SRV Record added"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:187
+msgid "SRV Record deleted"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:183
+msgid "SRV Record updated"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:290
+msgid "SRV TYPE"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:68 vhffs-api/src/Vhffs/Panel/Menu.pm:117
+msgid "SVN"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:170
+msgid "SVN Admin"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:42
+msgid "SVN Repository"
+msgstr ""
+
+#: vhffs-panel/svn/index.pl:60
+#, perl-format
+msgid "SVN repositories for %s"
+msgstr ""
+
+#: vhffs-panel/admin/svn/index.pl:56
+msgid "SVN repositories' administration"
+msgstr ""
+
+#: vhffs-panel/admin/svn/list.pl:70
+msgid "SVN root"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:127
+msgid "SVN stats"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:141
+msgid "Save options"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:7 vhffs-intl/template_strings.pl:14
+#: vhffs-intl/template_strings.pl:20
+msgid "Search"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:11
+msgid "Search a group"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:17
+msgid "Search a website"
+msgstr ""
+
+#: vhffs-panel/admin/object/search.pl:77
+msgid "Search an object (give object_id)"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:3
+msgid "Search an user"
+msgstr ""
+
+#: vhffs-panel/admin/cvs/search.pl:78 vhffs-api/src/Vhffs/Panel/Admin.pm:186
+msgid "Search for a CVS repository"
+msgstr ""
+
+#: vhffs-panel/admin/repository/search.pl:78
+msgid "Search for a Download repository"
+msgstr ""
+
+#: vhffs-panel/admin/git/search.pl:80
+msgid "Search for a GIT repository"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:204
+msgid "Search for a Git repository"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:221
+msgid "Search for a MySQL database"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:238
+msgid "Search for a Pg database"
+msgstr ""
+
+#: vhffs-panel/admin/svn/search.pl:80 vhffs-api/src/Vhffs/Panel/Admin.pm:168
+msgid "Search for a SVN repository"
+msgstr ""
+
+#: vhffs-panel/admin/pgsql/search.pl:79 vhffs-panel/admin/mysql/search.pl:79
+msgid "Search for a database"
+msgstr ""
+
+#: vhffs-panel/admin/dns/search.pl:79 vhffs-api/src/Vhffs/Panel/Admin.pm:291
+msgid "Search for a domain name"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:309
+msgid "Search for a download repository"
+msgstr ""
+
+#: vhffs-panel/admin/group/search.pl:79 vhffs-api/src/Vhffs/Panel/Admin.pm:133
+msgid "Search for a group"
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/search.pl:78
+msgid "Search for a list"
+msgstr ""
+
+#: vhffs-panel/admin/mail/search.pl:79 vhffs-api/src/Vhffs/Panel/Admin.pm:255
+msgid "Search for a mail domain"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:273
+msgid "Search for a mailing list"
+msgstr ""
+
+#: vhffs-panel/admin/web/search.pl:79
+msgid "Search for a web area"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:151
+msgid "Search for a webarea"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:97
+msgid "Search for an object"
+msgstr ""
+
+#: vhffs-panel/admin/user/search.pl:79 vhffs-api/src/Vhffs/Panel/Admin.pm:116
+msgid "Search for an user"
+msgstr ""
+
+#: vhffs-panel/admin/group/list.pl:77
+msgid "Search result"
+msgstr ""
+
+#: vhffs-panel/admin/object/list.pl:81
+msgid "Search result "
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/list.pl:72 vhffs-panel/admin/user/list.pl:63
+#: vhffs-panel/admin/web/list.pl:63 vhffs-panel/admin/mail/list.pl:68
+msgid "Search result for"
+msgstr ""
+
+#: vhffs-panel/admin/cvs/list.pl:69
+msgid "Search result for CVS repository"
+msgstr ""
+
+#: vhffs-panel/admin/repository/list.pl:68
+msgid "Search result for Download repository"
+msgstr ""
+
+#: vhffs-panel/admin/svn/list.pl:63
+msgid "Search result for Subversion repository"
+msgstr ""
+
+#: vhffs-panel/admin/pgsql/list.pl:69 vhffs-panel/admin/mysql/list.pl:75
+msgid "Search result for database"
+msgstr ""
+
+#: vhffs-panel/admin/dns/list.pl:68
+msgid "Search result for domain"
+msgstr ""
+
+#: vhffs-panel/admin/git/list.pl:65
+msgid "Search result for git repository"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:189
+msgid "Selected mailbox doesn't exist for this mail domain"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:112 vhffs-panel/svn/create.pl:101
+#: vhffs-panel/dns/create.pl:78 vhffs-panel/pgsql/create.pl:109
+#: vhffs-panel/group/create.pl:90 vhffs-panel/repository/create.pl:97
+#: vhffs-panel/alert.pl:59 vhffs-panel/admin/broadcast_list.pl:100
+#: vhffs-panel/admin/object/edit.pl:99 vhffs-panel/admin/broadcast_view.pl:101
+#: vhffs-panel/git/create.pl:102 vhffs-panel/web/create.pl:102
+#: vhffs-panel/mysql/create.pl:109 vhffs-panel/cvs/create.pl:107
+#: vhffs-panel/mail/create.pl:96 vhffs-api/src/Vhffs/Panel/Object.pm:103
+msgid "Send"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast.pl:77
+msgid "Send an email to all hosted people"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:300
+msgid "Send an email with the subject \"help\" to the following address: \n"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:336 vhffs-panel/user/prefs.pl:338
+msgid "Send my avatar"
+msgstr ""
+
+#: vhffs-panel/admin/web/list.pl:70
+msgid "Servername"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:294
+msgid "Service"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:313
+msgid "Shell"
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/list.pl:90 vhffs-panel/admin/svn/list.pl:81
+#: vhffs-panel/admin/user/list.pl:81 vhffs-panel/admin/dns/list.pl:86
+#: vhffs-panel/admin/pgsql/list.pl:87 vhffs-panel/admin/group/list.pl:91
+#: vhffs-panel/admin/repository/list.pl:86 vhffs-panel/admin/git/list.pl:83
+#: vhffs-panel/admin/web/list.pl:82 vhffs-panel/admin/mysql/list.pl:94
+#: vhffs-panel/admin/cvs/list.pl:86 vhffs-panel/admin/mail/list.pl:86
+msgid "Show"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:50
+msgid "Signature"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:92
+msgid "Sorry, can't add or update ACL"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:247
+msgid "Spam status updated"
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/list.pl:81 vhffs-panel/admin/svn/list.pl:72
+#: vhffs-panel/admin/user/list.pl:72 vhffs-panel/admin/dns/list.pl:77
+#: vhffs-panel/admin/pgsql/list.pl:78 vhffs-panel/admin/group/list.pl:82
+#: vhffs-panel/admin/repository/list.pl:77 vhffs-panel/admin/git/list.pl:74
+#: vhffs-panel/admin/object/list.pl:91 vhffs-panel/admin/broadcast_view.pl:88
+#: vhffs-panel/admin/web/list.pl:72 vhffs-panel/admin/mysql/list.pl:84
+#: vhffs-panel/admin/cvs/list.pl:78 vhffs-panel/admin/mail/list.pl:77
+msgid "State"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:97 vhffs-api/src/Vhffs/Panel/Object.pm:101
+msgid "Status"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:664
+msgid "Stay over an icon to see its description."
+msgstr ""
+
+#: vhffs-panel/admin/su.pl:74
+msgid "Su !"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:281
+msgid "Subdomain name"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast.pl:79 vhffs-panel/admin/broadcast_view.pl:87
+msgid "Subject"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:273 vhffs-panel/dns/prefs.pl:279
+#: vhffs-panel/dns/prefs.pl:300 vhffs-panel/object/resubmit.pl:134
+msgid "Submit"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:438
+msgid "Submit a bug"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:231 vhffs-api/src/Vhffs/Panel/Commons.pm:70
+msgid "Subscribe"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:106
+msgid "Subscribe control:"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:54
+msgid "Subscribed"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:242
+#, perl-format
+msgid "Subscriber %s deleted"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:221
+msgid "Subscription"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:135
+#, perl-format
+msgid ""
+"Subscription to the following list is forbidden:\n"
+" %s\n"
+"\n"
+"Have a nice day.\n"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:29
+msgid "Subversion Repositories for this group"
+msgstr ""
+
+#: vhffs-panel/object/upavatar.pl:126
+msgid "Successfully created or updated avatar"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:122 vhffs-panel/admin/object/edit.pl:123
+#: vhffs-intl/extra_strings.pl:26 vhffs-api/src/Vhffs/Panel/Object.pm:127
+#: vhffs-api/src/Vhffs/Panel/Object.pm:128
+msgid "Suspended"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:27
+msgid "Suspended before deletion"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:203
+msgid "TXT Record added"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:214
+msgid "TXT Record deleted"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:209
+msgid "TXT Record updated"
+msgstr ""
+
+#: vhffs-panel/mail/create.pl:97
+msgid "Tell us for what purpose you want to create this mail domain"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:113
+msgid "Tell us what the use of this mailing list will be"
+msgstr ""
+
+#: vhffs-panel/web/create.pl:103
+msgid "Tell us what the use of this web space will be"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:306
+msgid "Text"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:342 vhffs-api/src/Vhffs/Panel/DNS.pm:354
+msgid "Text can't be empty"
+msgstr ""
+
+#: vhffs-panel/cvs/create.pl:89
+msgid "The CVS object was successfully created !"
+msgstr ""
+
+#: vhffs-panel/dns/create.pl:57
+msgid "The DNS object was successfully created !"
+msgstr ""
+
+#: vhffs-panel/git/create.pl:85
+msgid "The GIT object was successfully created !"
+msgstr ""
+
+#: vhffs-panel/mysql/create.pl:90
+msgid "The MySQL DB was successfully created !"
+msgstr ""
+
+#: vhffs-panel/pgsql/create.pl:90
+msgid "The PostgreSQL DB was successfully created !"
+msgstr ""
+
+#: vhffs-panel/svn/create.pl:85
+msgid "The SVN object was successfully created !"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:339
+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:246
+msgid "The avatar is an image to describe the group"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:195
+msgid "The confirmation code was wrong\n"
+msgstr ""
+
+#: vhffs-panel/pgsql/create.pl:102 vhffs-panel/mysql/create.pl:102
+#, perl-format
+msgid ""
+"The database name is prefixed by your groupname followed by an underscore (%"
+"s_dbname). The database user is the database full name (%s_dbname)."
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:181
+msgid "The email you entered fails syntax check"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:90 vhffs-panel/group/create.pl:72
+msgid "The first letter of groupname and full name must be the same"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:389
+#, perl-format
+msgid ""
+"The following address %s is not allowed to execute commands on the list %s\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:210
+#, perl-format
+msgid ""
+"The following address %s is not on the following mailing list:\n"
+" %s\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:518
+msgid ""
+"The following projects have reached or are going to reach the disk quota "
+"limit, please take a look !"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:270
+#, perl-format
+msgid ""
+"The listengine language preference was changed for the following address %"
+"s.\n"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:89
+msgid "The mailing list object was successfully created !"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:320
+msgid "The message does not exists or was moderated before you.\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:317
+#, perl-format
+msgid "The message with the following id %s"
+msgstr ""
+
+#: vhffs-panel/object/resubmit.pl:95 vhffs-panel/object/resubmit.pl:98
+msgid "The new description has been submitted"
+msgstr ""
+
+#: vhffs-panel/repository/create.pl:81
+msgid "The repository was successfully created !"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:122
+msgid ""
+"The state of you subscription was not changed, you are still subscribed\n"
+msgstr ""
+
+#: vhffs-panel/web/create.pl:83
+msgid "The webarea was successfully created !"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:312
+msgid "Theme"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:261
+msgid ""
+"There is a problem with the address you filled in your profile, unable to "
+"add forwarding"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:103
+msgid ""
+"There is no default mail domain on this platform, you have to create a mail "
+"domain before creating a mailing list"
+msgstr ""
+
+#: vhffs-panel/admin/moderation.pl:79
+msgid "There is nothing to moderate"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:412
+msgid "There is two possible usages :"
+msgstr ""
+
+#: vhffs-panel/cvs/delete.pl:86
+msgid "This CVS repository will NOT be deleted"
+msgstr ""
+
+#: vhffs-panel/cvs/delete.pl:97
+msgid "This CVS will be deleted"
+msgstr ""
+
+#: vhffs-panel/pgsql/delete.pl:73
+msgid "This DB doesn't exist in VHFFS database"
+msgstr ""
+
+#: vhffs-panel/repository/delete.pl:86
+msgid "This Download repository will NOT be deleted"
+msgstr ""
+
+#: vhffs-panel/repository/delete.pl:99
+msgid "This Download repository will be deleted"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:179 vhffs-panel/svn/prefs.pl:97
+#: vhffs-panel/dns/prefs.pl:252 vhffs-panel/pgsql/prefs.pl:99
+#: vhffs-panel/group/prefs.pl:213 vhffs-panel/repository/prefs.pl:89
+#: vhffs-panel/git/prefs.pl:105 vhffs-panel/web/prefs.pl:109
+#: vhffs-panel/mysql/prefs.pl:111 vhffs-panel/cvs/prefs.pl:116
+#: vhffs-panel/mail/prefs.pl:136
+msgid ""
+"This action is non-reversible. All services associated to this project will "
+"be DESTROYED."
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:326
+msgid "This action is non-reversible. WHEN YOU DELETE IT, YOU CANNOT CANCEL."
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:214
+msgid ""
+"This box already exists for this domain or parameters are not valid. Check "
+"your domain."
+msgstr ""
+
+#: vhffs-panel/pgsql/delete.pl:93
+msgid "This database cannot be deleted"
+msgstr ""
+
+#: vhffs-panel/mysql/delete.pl:71
+msgid "This database doesn't exist in VHFFS database"
+msgstr ""
+
+#: vhffs-panel/mysql/delete.pl:83
+msgid "This database will NOT be deleted"
+msgstr ""
+
+#: vhffs-panel/dns/delete.pl:105
+msgid "This domain will NOT be DELETED from Vhffs platform"
+msgstr ""
+
+#: vhffs-panel/dns/delete.pl:100
+msgid "This domain will be DELETED from Vhffs platform"
+msgstr ""
+
+#: vhffs-panel/git/delete.pl:90
+msgid "This git repository will NOT be deleted"
+msgstr ""
+
+#: vhffs-panel/group/delete.pl:85
+msgid "This group will be deleted"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:315
+msgid "This host is already registered for this service"
+msgstr ""
+
+#: vhffs-panel/mail/delete.pl:103
+msgid "This mail domain WILL BE DELETED"
+msgstr ""
+
+#: vhffs-panel/mail/delete.pl:91
+msgid "This mail domain will NOT be DELETED"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:104
+#, perl-format
+msgid ""
+"This mail must contains the following subject : \"confirm unsubscribe %s\"\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:86
+#, perl-format
+msgid ""
+"This mail must have the following subject : \"confirm subscribe %s\"\n"
+"On most clients it should work by just replying this email\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:405
+#, perl-format
+msgid ""
+"This mail was sent by %s with the following subject:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: vhffs-panel/object/quickdelete.pl:68 vhffs-panel/object/resubmit.pl:68
+msgid "This object does not exist"
+msgstr ""
+
+#: vhffs-panel/admin/object/delete_avatar.pl:105
+msgid "This object does not have an avatar"
+msgstr ""
+
+#: vhffs-panel/object/quickdelete.pl:86 vhffs-panel/object/quickdelete.pl:89
+msgid "This object has been deleted"
+msgstr ""
+
+#: vhffs-panel/group/history.pl:68
+msgid "This object is not functional yet. Please wait creation or moderation."
+msgstr ""
+
+#: vhffs-panel/mailinglist/delete.pl:87 vhffs-panel/group/delete.pl:72
+#: vhffs-panel/git/delete.pl:86 vhffs-panel/web/prefs.pl:80
+#: vhffs-panel/mail/delete.pl:83
+msgid "This object is not functionnal yet. Please wait creation or moderation."
+msgstr ""
+
+#: vhffs-panel/object/quickdelete.pl:72 vhffs-panel/object/resubmit.pl:72
+msgid "This object is not in refused state"
+msgstr ""
+
+#: vhffs-panel/web/delete.pl:96
+msgid "This object will BE DELETED"
+msgstr ""
+
+#: vhffs-panel/group/delete.pl:76 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:74
+msgid "This platform does not support avatar"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:314
+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:325
+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/delete.pl:98 vhffs-panel/git/delete.pl:103
+msgid "This repository will be deleted"
+msgstr ""
+
+#: vhffs-panel/svn/delete.pl:85
+msgid "This subversion repository will NOT be deleted"
+msgstr ""
+
+#: vhffs-panel/user/delete.pl:76
+msgid "This user is always in a 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/prefs.pl:112
+msgid "This user will be removed from this group as soon as possible"
+msgstr ""
+
+#: vhffs-panel/web/delete.pl:79
+msgid "This web area doesn't exist in VHFFS database"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:424
+msgid "To accept this subscriber, send a message to\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:406
+#, perl-format
+msgid ""
+"To put this post on the list, send a message to:\n"
+" %s-request@%s\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:427
+msgid "To refuse this subscriber, send a message to\n"
+msgstr ""
+
+#: vhffs-panel/ajax/help.pl:53
+msgid "Topic not found"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:94
+msgid "Total Admin Users in VHFFS database"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:121
+msgid "Total CVS in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:113
+msgid "Total DNS in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:134
+msgid "Total GIT in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:140
+msgid "Total Mail domains in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:96
+msgid "Total Moderator Users in VHFFS database"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:152
+msgid "Total MySQL in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:159
+msgid "Total PostgreSQL in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:128
+msgid "Total SVN in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:92
+msgid "Total Users in VHFFS database"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:106
+msgid "Total Web Areas in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:123
+msgid "Total activated CVS"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:115
+msgid "Total activated DNS"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:136
+msgid "Total activated GIT"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:142
+msgid "Total activated Mail domains"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:154
+msgid "Total activated MySQL"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:161
+msgid "Total activated PostgreSQL"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:130
+msgid "Total activated SVN"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:108
+msgid "Total activated Web Areas"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:102
+msgid "Total activated groups"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:169
+msgid "Total activated lists"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:100
+msgid "Total groups in database"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:146
+msgid "Total hosted boxes"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:144
+msgid "Total hosted forwards"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:167
+msgid "Total lists in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:171
+msgid "Total subscribtion for lists"
+msgstr ""
+
+#: vhffs-panel/group/history.pl:78 vhffs-panel/admin/moderation.pl:84
+msgid "Type"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:95 vhffs-api/src/Vhffs/Panel/Object.pm:99
+msgid "UID of owner"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:135
+#, perl-format
+msgid "Unable to add A record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:130
+#, perl-format
+msgid "Unable to add AAAA record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:174
+#, perl-format
+msgid "Unable to add CNAME record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:151
+#, perl-format
+msgid "Unable to add MX record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:160
+#, perl-format
+msgid "Unable to add NS record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:197
+#, perl-format
+msgid "Unable to add SRV record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:202
+#, perl-format
+msgid "Unable to add TXT record: %s"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:286
+#, perl-format
+msgid "Unable to add forward %s"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:137 vhffs-panel/group/prefs.pl:171
+msgid ""
+"Unable to add user, he might already be in the group (waiting for addition "
+"or deletion)"
+msgstr ""
+
+#: vhffs-panel/pgsql/prefs.pl:131 vhffs-panel/mysql/prefs.pl:142
+msgid "Unable to apply changes"
+msgstr ""
+
+#: vhffs-panel/git/prefs.pl:149 vhffs-panel/git/prefs.pl:194
+#: vhffs-panel/web/prefs.pl:141
+msgid "Unable to apply modifications"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:291 vhffs-panel/repository/prefs.pl:131
+msgid "Unable to apply modifications, please try again later"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:261
+#, perl-format
+msgid "Unable to change rights for subscriber %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:112
+#, perl-format
+msgid "Unable to delete A record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:124
+#, perl-format
+msgid "Unable to delete AAAA record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:169
+#, perl-format
+msgid "Unable to delete CNAME record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:146
+#, perl-format
+msgid "Unable to delete MX record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:156
+#, perl-format
+msgid "Unable to delete NS record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:186
+#, perl-format
+msgid "Unable to delete SRV record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:213
+#, perl-format
+msgid "Unable to delete TXT record: %s"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:270
+#, perl-format
+msgid "Unable to delete box %s"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:317
+#, perl-format
+msgid "Unable to delete forward %s"
+msgstr ""
+
+#: vhffs-panel/mail/delete.pl:99
+msgid "Unable to delete this domain"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:196 vhffs-api/src/Vhffs/Panel/DNS.pm:226
+msgid ""
+"Unable to find default redirection address, please contact administrators"
+msgstr ""
+
+#: vhffs-panel/cvs/index.pl:63
+msgid "Unable to get CVS repositories"
+msgstr ""
+
+#: vhffs-panel/dns/index.pl:63
+msgid "Unable to get DNS"
+msgstr ""
+
+#: vhffs-panel/git/index.pl:64
+msgid "Unable to get GIT repositories"
+msgstr ""
+
+#: vhffs-panel/mysql/index.pl:63
+msgid "Unable to get MySQL databases."
+msgstr ""
+
+#: vhffs-panel/pgsql/index.pl:63
+msgid "Unable to get PgSQL databases"
+msgstr ""
+
+#: vhffs-panel/svn/index.pl:63
+msgid "Unable to get SVN repositories"
+msgstr ""
+
+#: vhffs-panel/mail/delete.pl:79 vhffs-panel/mail/prefs.pl:74
+#, perl-format
+msgid "Unable to get information on mail domain %s"
+msgstr ""
+
+#: vhffs-panel/mail/index.pl:63
+msgid "Unable to get mail domains"
+msgstr ""
+
+#: vhffs-panel/mailinglist/index.pl:63
+msgid "Unable to get mailing lists"
+msgstr ""
+
+#: vhffs-panel/repository/index.pl:63
+msgid "Unable to get repositories"
+msgstr ""
+
+#: vhffs-panel/web/index.pl:63
+msgid "Unable to get webareas"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:107
+#, perl-format
+msgid "Unable to modify A record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:119
+#, perl-format
+msgid "Unable to modify AAAA record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:165
+#, perl-format
+msgid "Unable to modify CNAME record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:141
+#, perl-format
+msgid "Unable to modify MX record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:182
+#, perl-format
+msgid "Unable to modify SRV record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:208
+#, perl-format
+msgid "Unable to modify TXT record: %s"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:302
+#, perl-format
+msgid "Unable to modify forward %s"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:114
+msgid "Unable to remove user from group"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:220
+msgid "Unable to save object"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:168
+msgid "Unable to update repository"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:475
+msgid "Unable to update user, please try again later"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:298
+msgid ""
+"Unknow command\n"
+"\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Functions.pm:448 vhffs-api/src/Vhffs/Functions.pm:453
+msgid "Unknown"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:163 vhffs-api/src/Vhffs/Panel/DNS.pm:199
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:211 vhffs-api/src/Vhffs/Panel/DNS.pm:229
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:241 vhffs-api/src/Vhffs/Panel/DNS.pm:253
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:265 vhffs-api/src/Vhffs/Panel/DNS.pm:276
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:288 vhffs-api/src/Vhffs/Panel/DNS.pm:301
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:317 vhffs-api/src/Vhffs/Panel/DNS.pm:332
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:344 vhffs-api/src/Vhffs/Panel/DNS.pm:356
+msgid "Unknown error"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_list.pl:104
+#: vhffs-panel/admin/broadcast_view.pl:105
+msgid "Unknown status"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:240
+#, perl-format
+msgid "Unsubscribe for the list %s was not complete.\n"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:244 vhffs-intl/template_strings.pl:87
+msgid "Update"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:64
+msgid "Update Permissions"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:70 vhffs-intl/template_strings.pl:75
+msgid "Update Quota"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:248
+msgid "Update avatar"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:144
+msgid "Update signature"
+msgstr ""
+
+#: vhffs-panel/object/upavatar.pl:118
+msgid "Uploaded file is too big. The maximum size is 20 Kbytes."
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:240
+#, perl-format
+msgid "Use @ for origin (%s)"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:413
+#, 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:424
+msgid "Use anti-spam protection"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:432
+msgid "Use anti-virus protection"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:67 vhffs-intl/template_strings.pl:72
+msgid "Used Quota"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:103 vhffs-panel/admin/moderation.pl:86
+#: vhffs-intl/extra_strings.pl:35
+msgid "User"
+msgstr ""
+
+#: vhffs-panel/admin/su.pl:96
+#, perl-format
+msgid "User %s does not exist"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:118
+msgid "User Admin"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:297 vhffs-api/src/Vhffs/Panel/Main.pm:435
+msgid "User Preferences"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:188
+msgid "User Successfully created"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:432
+msgid "User account"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:368
+msgid "User does not exist"
+msgstr ""
+
+#: vhffs-panel/auth.pl:74
+msgid "User is not active yet"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:144
+msgid "User not found"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:477
+msgid "User successfully updated"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:134 vhffs-panel/group/prefs.pl:168
+msgid "User will be added as soon as possible"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:59
+msgid "User's Permissions"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:60
+msgid "User's permissions"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:223 vhffs-panel/user/prefs.pl:301
+#: vhffs-panel/group/prefs.pl:238 vhffs-panel/admin/user/list.pl:70
+#: vhffs-panel/admin/su.pl:73 vhffs-panel/lost.pl:57
+#: vhffs-intl/template_strings.pl:4 vhffs-intl/template_strings.pl:34
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:65
+msgid "Username"
+msgstr ""
+
+#: vhffs-panel/pgsql/prefs.pl:87 vhffs-panel/mysql/prefs.pl:98
+msgid "Username for this database"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:256 vhffs-intl/template_strings.pl:1
+#: vhffs-intl/template_strings.pl:21 vhffs-intl/template_strings.pl:41
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:111
+msgid "Users"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:91
+msgid "Users stats"
+msgstr ""
+
+#: vhffs-panel/admin/user/index.pl:56
+msgid "Users' administration"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:117 vhffs-intl/extra_strings.pl:21
+#: vhffs-api/src/Vhffs/Panel/Object.pm:122
+msgid "Validation refused"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:89
+msgid "Vhffs Statistics"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:32
+msgid "View Archives"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_view.pl:85
+msgid "View mailing"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_list.pl:90
+msgid "View this mailing"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:254
+msgid "Virus status updated"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:105
+msgid "WEB stats"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:52
+msgid "Waiting for confirmation"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:118 vhffs-intl/extra_strings.pl:22
+#: vhffs-api/src/Vhffs/Panel/Object.pm:123
+msgid "Waiting for creation"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:55
+msgid "Waiting for deletion"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:124 vhffs-intl/extra_strings.pl:28
+#: vhffs-api/src/Vhffs/Panel/Object.pm:129
+msgid "Waiting for modification"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:116 vhffs-intl/template_strings.pl:53
+#: vhffs-intl/extra_strings.pl:20 vhffs-api/src/Vhffs/Panel/Object.pm:121
+msgid "Waiting for validation"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:149
+msgid "Wanted shell is not in the shell list"
+msgstr ""
+
+#: vhffs-panel/alert.pl:56
+msgid "Warn the admin team"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:65 vhffs-intl/template_strings.pl:77
+msgid ""
+"Warning, password change isn't immediate, you've to check periodically to "
+"see if it's done"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:481
+#, perl-format
+msgid ""
+"We confirm that you REFUSED the subscription of:\n"
+" %s\n"
+"\n"
+"to the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:457
+#, perl-format
+msgid ""
+"We confirm that you accepted the subscription of:\n"
+" %s\n"
+"\n"
+"to the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:227
+#, perl-format
+msgid "We offer you the possibility to forward emails from %s@%s."
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:443
+#, perl-format
+msgid "We offer you the possibility to have one email box on the domain %s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:64 vhffs-api/src/Vhffs/Panel/Menu.pm:113
+msgid "Web"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:153
+msgid "Web Admin"
+msgstr ""
+
+#: vhffs-panel/web/prefs.pl:93
+msgid "Web Area Administration"
+msgstr ""
+
+#: vhffs-panel/web/prefs.pl:143
+msgid "Web area successfully modified"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:37
+msgid "Webarea"
+msgstr ""
+
+#: vhffs-panel/web/index.pl:60
+#, perl-format
+msgid "Webareas for %s"
+msgstr ""
+
+#: vhffs-panel/admin/web/index.pl:56
+msgid "Webareas' administration"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:19
+msgid "Website description"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:18
+msgid "Website name"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:15
+msgid "Websites"
+msgstr ""
+
+#: vhffs-public/group.pl:99 vhffs-intl/template_strings.pl:27
+msgid "Websites for this group"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:298 vhffs-panel/dns/prefs.pl:383
+msgid "Weight"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:62
+#, perl-format
+msgid "Welcome on %s"
+msgstr ""
+
+#: vhffs-panel/mailinglist/delete.pl:107
+msgid "Will be DELETED in a few minutes"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:127 vhffs-intl/extra_strings.pl:31
+#: vhffs-api/src/Vhffs/Panel/Object.pm:132
+msgid "Will be deleted"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:81
+#, perl-format
+msgid "Woah, %s users and %s groups already trust %s"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:93 vhffs-panel/dns/prefs.pl:261
+#: vhffs-panel/git/prefs.pl:101 vhffs-panel/cvs/prefs.pl:112
+#: vhffs-intl/template_strings.pl:82 vhffs-intl/template_strings.pl:85
+msgid "Yes"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:181 vhffs-panel/svn/prefs.pl:99
+#: vhffs-panel/user/prefs.pl:328 vhffs-panel/dns/prefs.pl:254
+#: vhffs-panel/pgsql/prefs.pl:101 vhffs-panel/group/prefs.pl:215
+#: vhffs-panel/repository/prefs.pl:91 vhffs-panel/git/prefs.pl:107
+#: vhffs-panel/web/prefs.pl:111 vhffs-panel/mysql/prefs.pl:113
+#: vhffs-panel/cvs/prefs.pl:118 vhffs-panel/mail/prefs.pl:138
+msgid "Yes I'm sure of what I do"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:227
+msgid "You are not a subscriber on this list.\n"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:271
+msgid "You are not allowed to add members (ACL rights)"
+msgstr ""
+
+#: vhffs-panel/object/quickdelete.pl:77 vhffs-panel/object/resubmit.pl:77
+msgid "You are not allowed to do it, you don't own this object"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:251
+msgid "You are not allowed to manager subscribers' rights (ACL rights)"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:177 vhffs-panel/mail/prefs.pl:207
+#: vhffs-panel/mail/prefs.pl:225 vhffs-panel/mail/prefs.pl:265
+#: vhffs-panel/mail/prefs.pl:279 vhffs-panel/mail/prefs.pl:295
+#: vhffs-panel/mail/prefs.pl:311
+msgid "You are not allowed to modify this object"
+msgstr ""
+
+#: vhffs-panel/web/prefs.pl:125
+msgid "You are not allowed to modify this web area"
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/search.pl:71
+#: vhffs-panel/admin/mailinglist/list.pl:63 vhffs-panel/admin/svn/search.pl:73
+#: vhffs-panel/admin/svn/list.pl:55 vhffs-panel/admin/broadcast.pl:70
+#: vhffs-panel/admin/stats.pl:82 vhffs-panel/admin/user/search.pl:72
+#: vhffs-panel/admin/user/list.pl:55 vhffs-panel/admin/dns/search.pl:72
+#: vhffs-panel/admin/dns/list.pl:59 vhffs-panel/admin/pgsql/search.pl:72
+#: vhffs-panel/admin/pgsql/list.pl:60 vhffs-panel/admin/group/search.pl:72
+#: vhffs-panel/admin/group/list.pl:65 vhffs-panel/admin/broadcast_list.pl:71
+#: vhffs-panel/admin/repository/search.pl:71
+#: vhffs-panel/admin/repository/list.pl:59 vhffs-panel/admin/git/search.pl:73
+#: vhffs-panel/admin/git/list.pl:56 vhffs-panel/admin/object/edit_submit.pl:74
+#: vhffs-panel/admin/object/delete_avatar.pl:78
+#: vhffs-panel/admin/object/edit.pl:74 vhffs-panel/admin/object/search.pl:71
+#: vhffs-panel/admin/object/list.pl:72 vhffs-panel/admin/broadcast_view.pl:73
+#: vhffs-panel/admin/web/search.pl:72 vhffs-panel/admin/web/list.pl:54
+#: vhffs-panel/admin/mysql/search.pl:72 vhffs-panel/admin/mysql/list.pl:66
+#: vhffs-panel/admin/cvs/search.pl:71 vhffs-panel/admin/cvs/list.pl:60
+#: vhffs-panel/admin/mail/search.pl:72 vhffs-panel/admin/mail/list.pl:59
+msgid "You are not allowed to see it"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:186 vhffs-api/src/Vhffs/Panel/Main.pm:207
+msgid "You are not granted to access this page"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:119
+#, perl-format
+msgid ""
+"You asked to be subscribed to the following list:\n"
+"\n"
+"%s\n"
+"\n"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:105 vhffs-panel/dns/prefs.pl:246
+#: vhffs-panel/git/prefs.pl:113 vhffs-panel/web/prefs.pl:104
+#: vhffs-panel/mail/prefs.pl:144
+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.pm:49
+msgid "You can also send a command list in the mail body.\n"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:110
+msgid "You cannot remove the owner of the group"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:89
+msgid "You cannot subscribe to VHFFS"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:226
+#, perl-format
+msgid "You cannot unsubscribe from the list %s\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:211
+msgid "You demand was refused\n"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:87
+msgid "You do not own this domain !"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:182
+#, perl-format
+msgid ""
+"You have been successfully removed from the following list:\n"
+" %s\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:255
+#, perl-format
+msgid "You have been successfully removed from the list %s.\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:147 vhffs-api/src/Vhffs/Listengine.pm:163
+#, perl-format
+msgid ""
+"You have been successfully subscribed to the following mailing list:\n"
+" %s\n"
+msgstr ""
+
+#: vhffs-panel/web/prefs.pl:135
+msgid "You have to enter a description"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:284 vhffs-panel/repository/prefs.pl:125
+msgid "You have to enter a quota greater than the current used quota"
+msgstr ""
+
+#: vhffs-panel/mailinglist/index.pl:54 vhffs-panel/svn/index.pl:54
+#: vhffs-panel/dns/index.pl:54 vhffs-panel/pgsql/index.pl:54
+#: vhffs-panel/repository/index.pl:54 vhffs-panel/git/index.pl:55
+#: vhffs-panel/web/index.pl:54 vhffs-panel/mysql/index.pl:54
+#: vhffs-panel/cvs/index.pl:54 vhffs-panel/mail/index.pl:54
+msgid "You have to select a group first"
+msgstr ""
+
+#: vhffs-panel/auth.pl:105
+msgid "You left your VHFFS session!"
+msgstr ""
+
+#: vhffs-panel/lost.pl:55
+msgid "You lost your password? You're a bad guy!"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:149 vhffs-api/src/Vhffs/Listengine.pm:168
+#: vhffs-api/src/Vhffs/Listengine.pm:443
+msgid "You may get some help on listengine by sending an email to\n"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:204
+msgid "You must choose a method for your mail"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:85 vhffs-api/src/Vhffs/Listengine.pm:103
+msgid "You must confirm your request by sending a confirmation email\n"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:143
+msgid "You must declare a valid mail address"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:123
+msgid "You must declare your city"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:119
+msgid "You must declare your country"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:131
+msgid "You must declare your firstname"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:135
+msgid "You must declare your lastname"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:139
+msgid "You must declare your mail address"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:111
+msgid "You must declare your username"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:127
+msgid "You must declare your zipcode"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:83 vhffs-panel/svn/create.pl:83
+#: vhffs-panel/dns/create.pl:53 vhffs-panel/pgsql/create.pl:84
+#: vhffs-panel/group/prefs.pl:86 vhffs-panel/group/create.pl:68
+#: vhffs-panel/repository/create.pl:79 vhffs-panel/git/create.pl:83
+#: vhffs-panel/object/resubmit.pl:90 vhffs-panel/web/create.pl:81
+#: vhffs-panel/mysql/create.pl:84 vhffs-panel/cvs/create.pl:84
+#: vhffs-panel/mail/create.pl:78
+msgid "You must enter a description"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:88 vhffs-panel/group/create.pl:70
+msgid "You must enter a full name"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:126
+msgid "You must enter an username"
+msgstr ""
+
+#: vhffs-panel/group/view.pl:55
+msgid "You must specify a project name"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:281
+msgid "You need to enter at least one new member"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:166
+msgid "You will receive an email with the decision of administrators.\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:375
+msgid "You're are not allowed to browse panel"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:62 vhffs-panel/svn/create.pl:63
+#: vhffs-panel/dns/create.pl:34 vhffs-panel/pgsql/create.pl:63
+#: vhffs-panel/group/delete.pl:68 vhffs-panel/group/history.pl:71
+#: vhffs-panel/group/prefs.pl:78 vhffs-panel/group/prefs.pl:108
+#: vhffs-panel/group/prefs.pl:119 vhffs-panel/group/prefs.pl:160
+#: vhffs-panel/group/prefs.pl:177 vhffs-panel/repository/create.pl:64
+#: vhffs-panel/admin/moderation_submit.pl:67
+#: vhffs-panel/admin/moderation.pl:70 vhffs-panel/admin/broadcast_submit.pl:79
+#: vhffs-panel/admin/broadcast_delete.pl:79 vhffs-panel/git/create.pl:64
+#: vhffs-panel/web/prefs.pl:84 vhffs-panel/web/create.pl:63
+#: vhffs-panel/mysql/create.pl:63 vhffs-panel/cvs/create.pl:64
+#: vhffs-panel/mail/create.pl:60
+msgid "You're not allowed to do this (ACL rights)"
+msgstr ""
+
+#: vhffs-panel/mailinglist/delete.pl:91 vhffs-panel/mailinglist/prefs.pl:84
+#: vhffs-panel/mailinglist/prefs.pl:205 vhffs-panel/mailinglist/prefs.pl:230
+#: vhffs-panel/svn/delete.pl:81 vhffs-panel/svn/prefs.pl:76
+#: vhffs-panel/svn/prefs.pl:134 vhffs-panel/user/prefs.pl:78
+#: vhffs-panel/user/prefs.pl:84 vhffs-panel/dns/delete.pl:87
+#: vhffs-panel/dns/prefs.pl:86 vhffs-panel/dns/prefs.pl:95
+#: vhffs-panel/pgsql/delete.pl:77 vhffs-panel/pgsql/prefs.pl:71
+#: vhffs-panel/pgsql/prefs.pl:115 vhffs-panel/group/prefs.pl:70
+#: vhffs-panel/repository/delete.pl:82 vhffs-panel/repository/prefs.pl:74
+#: vhffs-panel/git/delete.pl:82 vhffs-panel/git/prefs.pl:80
+#: vhffs-panel/git/prefs.pl:142 vhffs-panel/git/prefs.pl:164
+#: vhffs-panel/web/delete.pl:83 vhffs-panel/mysql/delete.pl:79
+#: vhffs-panel/mysql/prefs.pl:80 vhffs-panel/cvs/delete.pl:82
+#: vhffs-panel/cvs/prefs.pl:73 vhffs-panel/cvs/prefs.pl:78
+#: vhffs-panel/cvs/prefs.pl:94 vhffs-panel/mail/delete.pl:87
+#: vhffs-panel/mail/prefs.pl:77
+msgid ""
+"You're not allowed to do this, object is not in active state or you don't "
+"have enough ACL rights"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:89
+msgid "You're not allowed to manage this object's ACL"
+msgstr ""
+
+#: vhffs-panel/history.pl:94 vhffs-panel/acl/view.pl:76
+msgid "You're not allowed to view this object's ACL"
+msgstr ""
+
+#: vhffs-panel/admin/su.pl:65
+msgid "You're not an administrator"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Object.pm:512
+#, perl-format
+msgid "Your %s (%s) on %s has been deleted due to lack of updates"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/User.pm:333
+#, perl-format
+msgid ""
+"Your account (%s) on %s has been deleted because it was unused for a long "
+"time"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:243
+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-panel/alert.pl:58
+msgid "Your message"
+msgstr ""
+
+#: vhffs-panel/group/index.pl:61
+msgid "Your projects"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Object.pm:416
+#, perl-format
+msgid "Your request for a %s (%s) on %s was accepted"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Object.pm:466
+#, perl-format
+msgid "Your request for a %s (%s) on %s was refused"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:441
+#, perl-format
+msgid ""
+"Your subscription was accepted to the following mailing list:\n"
+" %s\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:469
+#, perl-format
+msgid ""
+"Your subscription was refused to the following mailing list:\n"
+" %s\n"
+"\n"
+"Have a nice day.\n"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:242
+msgid ""
+"Your username. It must contains only alphanumeric characters in lowercase, "
+"its length must be between 3 and 12 chars"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:147
+msgid "Your zipcode is not correct! Please enter a correct zipcode"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:227 vhffs-panel/user/prefs.pl:305
+msgid "Zipcode"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:132
+msgid "Zipcode is not correct !"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:301
+#, perl-format
+msgid "[%s] You've been added to the list %s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:355
+msgid "cannot be removed from the list\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:319
+msgid "cannot be removed.\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:53
+msgid "help\t\t - show this help\n"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:17
+msgid "help_user_admin"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:13
+msgid "help_user_bug"
+msgstr ""
+"<h2>Report bug</h2><p>Use this to contact administration team to 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:12
+msgid "help_user_help"
+msgstr "<h2>Global help</h2><p>Use this to acces global help and FAQ</p>"
+
+#: vhffs-intl/extra_strings.pl:14
+msgid "help_user_logout"
+msgstr "<h2>Logout</h2>Don't forget to logout when you're done"
+
+#: vhffs-intl/extra_strings.pl:11
+msgid "help_user_preferences"
+msgstr ""
+"<h2>Preferences</h2><p>Manage your preferences. Select your language and "
+"theme.</p>"
+
+#: vhffs-intl/extra_strings.pl:16
+msgid "help_user_project"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:15
+msgid "help_user_projects"
+msgstr ""
+"<h2>My projects</h2><p>Manage your existing projects and create new ones.</p>"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:372
+#, perl-format
+msgid "in the moderation queue of the list %s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:56
+msgid "lang [fr|us|es]\t - set listengine language\n"
+msgstr ""
+
+#: vhffs-listengine/src/listengine.pl:965
+#, perl-format
+msgid "listengine - list of messages to moderate for %s"
+msgstr ""
+
+#: vhffs-listengine/src/listengine.pl:848
+#: vhffs-listengine/src/listengine.pl:870
+#: vhffs-listengine/src/listengine.pl:881
+msgid "listengine help"
+msgstr ""
+
+#: vhffs-listengine/src/listengine.pl:913
+#: vhffs-listengine/src/listengine.pl:924
+#: vhffs-listengine/src/listengine.pl:940
+#: vhffs-listengine/src/listengine.pl:952
+#: vhffs-listengine/src/listengine.pl:979
+#: vhffs-listengine/src/listengine.pl:990
+msgid "listengine moderation"
+msgstr ""
+
+#: vhffs-listengine/src/listengine.pl:898
+msgid "listengine result command"
+msgstr ""
+
+#: vhffs-listengine/src/listengine.pl:1031
+msgid "listengine: unknown command"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:224 vhffs-panel/user/prefs.pl:302
+msgid "mail"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:61
+msgid "moderate XXXXX\t\t\t - accept the message with message-id XXXXX\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:62
+msgid ""
+"moderate accept XXXXX\t\t\t - accept the message with message-id XXXXX\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:64
+msgid "moderate list\t\t\t - give the message list for moderation\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:63
+msgid ""
+"moderate refused XXXXX\t\t\t - refuse the message with message-id XXXXX\n"
+msgstr ""
+
+#: vhffs-panel/web/create.pl:90
+msgid "new site"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:113
+#: vhffs-api/src/Vhffs/Panel/Object.pm:118
+msgid "no date"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Object.pm:380
+msgid "no reason given"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:318 vhffs-api/src/Vhffs/Listengine.pm:354
+#, perl-format
+msgid "present in the moderation queue for the list %s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:54
+msgid "subscribe\t - subscribe the shipper to the list\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:59
+msgid ""
+"subscription accept XXXXX\t\t - accept the subscription with key XXXXX\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:60
+msgid ""
+"subscription refuse XXXXX\t\t - refuse the subscription with key XXXXX\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:55
+msgid "unsubscribe\t - unsubscribe from this list\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:69
+msgid "user info user@xxxxxxxxxx\t\t - show user information\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:67
+msgid "user right RIGHT user@xxxxxxxxxx\t - change right for this user\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:66
+msgid ""
+"user subscribe user@xxxxxxxxxx\t\t - register the user user@xxxxxxxxxx on "
+"the list\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:65
+msgid ""
+"user unsubscribe user@xxxxxxxxxx\t - delete user user@xxxxxxxxxx from list\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:337
+#, perl-format
+msgid "was removed from the moderation queue from the list %s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:373
+msgid "was sent on the list.\n"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:23
+msgid "website(s)"
+msgstr ""
+
+#: vhffs-panel/group/create.pl:86
+msgid ""
+"with only lowercase alphanumerical letters, no space, from 3 to 12 characters"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:407
+#, perl-format
+msgid ""
+"with the following subject :\n"
+" \"moderate %s\" \n"
+msgstr ""
Added: trunk/vhffs-intl/es_ES.po
===================================================================
--- trunk/vhffs-intl/es_ES.po (rev 0)
+++ trunk/vhffs-intl/es_ES.po 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,6467 @@
+# black coffee translation of VHFFS 4.1.
+# Copyright (C) 2007 THE VHFFS 4.1'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the VHFFS 4.1 package.
+#
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: VHFFS 4.1 spanish\n"
+"Report-Msgid-Bugs-To: vhffs-dev@xxxxxxxxx\n"
+"POT-Creation-Date: 2008-01-09 21:38+0100\n"
+"PO-Revision-Date: 2007-11-02 22:46-0400\n"
+"Last-Translator: Bruno Marmier <bruno@xxxxxxxxxx>\n"
+"Language-Team: Spanish <vhffs-dev@xxxxxxxxx>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:68
+msgid "\t\t\t\t RIGHT can be subscriber or admin\n"
+msgstr "\t\t\t\t DERECHO puede ser suscriptor o administrador\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:148 vhffs-api/src/Vhffs/Listengine.pm:164
+#: vhffs-api/src/Vhffs/Listengine.pm:167 vhffs-api/src/Vhffs/Listengine.pm:442
+msgid "\n"
+msgstr "\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:425
+#, perl-format
+msgid ""
+" %s-request@%s\n"
+"with the following subject :\n"
+" \"subscription accept %s %s\" \n"
+msgstr ""
+" %s-request@%s\n"
+"con el siguiente título :\n"
+" \"subscription accept %s %s\" \n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:428
+#, perl-format
+msgid ""
+" %s-request@%s\n"
+"with the following subject :\n"
+" \"subscription refuse %s %s\" \n"
+msgstr ""
+" %s-request@%s\n"
+"con el siguiente titulo :\n"
+" \"subscription refuse %s %s\" \n"
+
+#: vhffs-public/groupsearch.pl:79
+#, perl-format
+msgid "%d group(s) found"
+msgstr ""
+
+#: vhffs-public/usersearch.pl:80
+#, perl-format
+msgid "%d user(s) found"
+msgstr ""
+
+#: vhffs-public/websitesearch.pl:78
+#, perl-format
+msgid "%d websites(s) found"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:296
+#, perl-format
+msgid "%s has been added"
+msgstr "%s ha sido añadido"
+
+#: vhffs-panel/mailinglist/prefs.pl:294
+#, perl-format
+msgid "%s is already a member of this list"
+msgstr "%s ya es miembro de esta lista"
+
+#: vhffs-panel/mail/prefs.pl:195
+#, perl-format
+msgid "%s is not a correct mail address"
+msgstr "%s no es una dirección de correo correcta"
+
+#: vhffs-panel/mailinglist/prefs.pl:292
+#, perl-format
+msgid "%s is not a valid mail"
+msgstr "%s no es una dirección de correo válida"
+
+#: vhffs-public/index.pl:65
+#, perl-format
+msgid "%s public area"
+msgstr "Zona pública %s"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:710
+#, perl-format
+msgid "%s's Panel"
+msgstr "Panel de %s"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:150 vhffs-api/src/Vhffs/Listengine.pm:169
+#: vhffs-api/src/Vhffs/Listengine.pm:444
+#, perl-format
+msgid "%s-request@%s with subject \"help\"\n"
+msgstr "%s-request@%s con el título \"help\"\n"
+
+#: vhffs-panel/dns/prefs.pl:312
+#, perl-format
+msgid "@ represents the origin (%s)"
+msgstr "@ representa el origen de (%s)"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:299
+msgid ""
+"A CNAME, A or AAAA record with the same name already exists for this domain"
+msgstr ""
+"Ya existe un registro CNAME, A o AAAA con este mismo nombre para este dominio"
+
+#: vhffs-panel/dns/prefs.pl:113
+msgid "A Record deleted"
+msgstr "Registro A borrado"
+
+#: vhffs-panel/dns/prefs.pl:108
+msgid "A Record updated"
+msgstr "Registro A modificado"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:404
+#, perl-format
+msgid ""
+"A mail to moderate is on the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+"Nuevo mensaje a revisar en la lista de correo:\n"
+" %s\n"
+"\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:421
+#, perl-format
+msgid ""
+"A new person wants to subscribe to the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+"Nueva persona pendiente de revisión para suscribirse a la lista de correo:\n"
+" %s\n"
+"\n"
+
+#: vhffs-panel/dns/prefs.pl:136
+msgid "A record added"
+msgstr "Registro A añadido"
+
+#: vhffs-panel/dns/prefs.pl:125
+msgid "AAAA Record deleted"
+msgstr "Registro AAAA borrado"
+
+#: vhffs-panel/dns/prefs.pl:120
+msgid "AAAA Record updated"
+msgstr "Registro AAAA modificado"
+
+#: vhffs-panel/dns/prefs.pl:131
+msgid "AAAA record added"
+msgstr "Registro AAAA añadido"
+
+#: vhffs-panel/acl/view.pl:99
+msgid "ACL Administration"
+msgstr "Administración ACL"
+
+#: vhffs-panel/acl/view.pl:93
+msgid "ACL added"
+msgstr "ACL añadido"
+
+#: vhffs-panel/acl/view.pl:95
+msgid "ACL deleted"
+msgstr "ACL borrado"
+
+#: vhffs-panel/acl/view.pl:94
+msgid "ACL updated"
+msgstr "ACL modificada"
+
+#: vhffs-panel/admin/moderation.pl:89 vhffs-panel/admin/moderation.pl:116
+msgid "Accept"
+msgstr "Aceptar"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:185 vhffs-api/src/Vhffs/Panel/Main.pm:206
+msgid "Access denied"
+msgstr "Acceso denegado"
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:68
+msgid "Access to panel"
+msgstr "Acceder al panel"
+
+#: vhffs-panel/mail/prefs.pl:111
+msgid "Accounts"
+msgstr "Cuentas"
+
+#: vhffs-panel/user/prefs.pl:411
+#, perl-format
+msgid "Activate %s@%s email"
+msgstr "Activar correo %s@%s"
+
+#: vhffs-panel/admin/object/edit.pl:120 vhffs-intl/extra_strings.pl:25
+#: vhffs-api/src/Vhffs/Panel/Object.pm:125
+msgid "Activated"
+msgstr "Activado"
+
+#: vhffs-panel/group/prefs.pl:150 vhffs-panel/group/prefs.pl:240
+msgid "Add"
+msgstr "Añadir"
+
+#: vhffs-panel/dns/prefs.pl:265
+msgid "Add !"
+msgstr "Añadir !"
+
+#: vhffs-panel/dns/prefs.pl:278
+msgid "Add a CNAME field to your domain"
+msgstr "Añadir un campo CNAME para este dominio"
+
+#: vhffs-panel/dns/prefs.pl:270
+msgid "Add a MX field to your domain"
+msgstr "Añadir un campo MX para este dominio"
+
+#: vhffs-panel/dns/prefs.pl:286
+msgid "Add a NS field to your domain"
+msgstr "Añadir un campo NS para este dominio"
+
+#: vhffs-panel/dns/prefs.pl:292
+msgid "Add a SRV record to your domain"
+msgstr "Añadir un campo SRV para este dominio"
+
+#: vhffs-panel/dns/prefs.pl:304
+msgid "Add a TXT record"
+msgstr "Añadir una entrada TXT"
+
+#: vhffs-panel/mail/prefs.pl:122 vhffs-panel/mail/prefs.pl:132
+msgid "Add a forward on this domain"
+msgstr "Añadir una redirección para este dominio"
+
+#: vhffs-panel/mail/prefs.pl:131
+msgid "Add a popbox to this domain"
+msgstr "Añadir un buzón pop para este dominio"
+
+#: vhffs-panel/group/prefs.pl:239
+msgid "Add a user in this group"
+msgstr "Añadir un nuevo usuario en este grupo"
+
+#: vhffs-panel/dns/prefs.pl:238
+msgid "Add an A record"
+msgstr "Añadir un registro A"
+
+#: vhffs-panel/dns/prefs.pl:239
+msgid "Add an AAAA record"
+msgstr "Añadir un registro AAAA"
+
+#: vhffs-panel/mail/prefs.pl:113
+msgid "Add an account"
+msgstr "Añadir una cuenta"
+
+#: vhffs-panel/mailinglist/prefs.pl:148
+msgid "Add members"
+msgstr "Añadir miembros"
+
+#: vhffs-panel/mailinglist/prefs.pl:150
+msgid "Add them !"
+msgstr "Añadirlos"
+
+#: vhffs-panel/subscribe.pl:230 vhffs-panel/user/prefs.pl:307
+msgid "Address"
+msgstr "Dirección"
+
+#: vhffs-panel/web/create.pl:96
+msgid "Address (ServerName directive)"
+msgstr "Dirección (directiva ServerName)"
+
+#: vhffs-panel/web/prefs.pl:95
+msgid "Address (Servername)"
+msgstr "Dirección (ServerName)"
+
+#: vhffs-panel/user/prefs.pl:138
+msgid "Address is not correct !"
+msgstr "¡Su dirección no es correcta!"
+
+#: vhffs-panel/mailinglist/prefs.pl:149
+msgid "Addresses (one per line)"
+msgstr "Direcciones (una por linea)"
+
+#: vhffs-intl/template_strings.pl:56
+msgid "Admin"
+msgstr "Admin"
+
+#: vhffs-panel/cvs/prefs.pl:107
+msgid "Admin CVS Repository"
+msgstr "Admin Repositorio CVS"
+
+#: vhffs-panel/repository/prefs.pl:81
+msgid "Admin Download repository"
+msgstr "Admin repositorio de download"
+
+#: vhffs-panel/git/prefs.pl:96
+msgid "Admin Git Repository"
+msgstr "Admin Repositorio Git"
+
+#: vhffs-panel/svn/prefs.pl:104 vhffs-panel/dns/prefs.pl:245
+#: vhffs-panel/git/prefs.pl:112 vhffs-panel/web/prefs.pl:103
+#: vhffs-panel/mail/prefs.pl:143
+msgid "Admin Rights on this object (ACL)"
+msgstr "Derechos admin sobre este objeto (ACL)"
+
+#: vhffs-panel/svn/prefs.pl:87
+msgid "Admin Subversion Repository"
+msgstr "Admin repositorio Subversion"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:426
+msgid "Admin account"
+msgstr "Cuenta Admin: "
+
+#: vhffs-api/src/Vhffs/Panel/Object.pm:96
+msgid "Admin part"
+msgstr "Parte admin"
+
+#: vhffs-panel/admin/index.pl:55 vhffs-api/src/Vhffs/Panel/Main.pm:427
+#: vhffs-api/src/Vhffs/Panel/Main.pm:430
+msgid "Administration"
+msgstr "Administración"
+
+#: vhffs-panel/mailinglist/prefs.pl:99
+#, perl-format
+msgid "Administration for list %s"
+msgstr "Administración para la lista %s"
+
+#: vhffs-intl/template_strings.pl:63
+msgid "Administrator"
+msgstr "Administrador"
+
+#: vhffs-panel/mailinglist/prefs.pl:116
+msgid "Admins only"
+msgstr "Sólo administradores"
+
+#: vhffs-panel/alert_submit.pl:64
+msgid "Alert on Vhffs platform"
+msgstr "Alarma en la plataforma Vhffs"
+
+#: vhffs-public/allwebsites.pl:74 vhffs-public/allgroups.pl:74
+msgid "All"
+msgstr "Todos"
+
+#: vhffs-panel/dns/prefs.pl:232
+msgid "All A TYPE for your domain name"
+msgstr "Todos los A TYPE para este dominio"
+
+#: vhffs-panel/dns/prefs.pl:233
+msgid "All AAAA TYPE for your domain name"
+msgstr "Todos los AAAA TYPE para este dominio"
+
+#: vhffs-panel/dns/prefs.pl:277
+msgid "All CNAME TYPE for your domain name"
+msgstr "Todos los CNAME TYPE para este dominio"
+
+#: vhffs-panel/dns/prefs.pl:235
+msgid "All CNAME for your domain name"
+msgstr "Todos los CNAME TYPE para este dominio"
+
+#: vhffs-intl/template_strings.pl:10
+msgid "All Groups"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:234 vhffs-panel/dns/prefs.pl:269
+msgid "All MX TYPE for your domain name"
+msgstr "Todos los MX TYPE para este dominio"
+
+#: vhffs-panel/dns/prefs.pl:285
+msgid "All NS TYPE for your domain name"
+msgstr "Todos los NS TYPE para este dominio"
+
+#: vhffs-panel/dns/prefs.pl:291
+msgid "All SRV records for your domain name"
+msgstr "Todos los registros SRV para este dominio"
+
+#: vhffs-panel/admin/svn/list.pl:67
+msgid "All Subversion repositories lists"
+msgstr "Todas las listas de repositorios Subversion"
+
+#: vhffs-panel/dns/prefs.pl:305
+msgid "All TXT records for your domain name"
+msgstr "Todos los registros TXT para este dominio"
+
+#: vhffs-intl/template_strings.pl:16
+msgid "All Websites"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:48
+msgid "All commands can be sent as mail subject.\n"
+msgstr "Todos los comandos pueden ser enviadas en el título del mensaje.\n"
+
+#: vhffs-panel/admin/git/list.pl:69
+msgid "All git repositories lists"
+msgstr "Todas las listas de repositorios Git"
+
+#: vhffs-public/allgroups.pl:72
+#, perl-format
+msgid "All groups on %s"
+msgstr "Todas los grupos en %s"
+
+#: vhffs-panel/admin/broadcast_list.pl:77
+msgid "All mailings sent to hosted"
+msgstr "Todos los mensajes enviados a los usuarios hospedados"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:50
+msgid ""
+"All mails with commands must be sent on YOURLIST-request@xxxxxxxxxx list.\n"
+msgstr ""
+"Todos los correos con comandos deben ser enviados a SULISTA-request@domain."
+"tld.\n"
+
+#: vhffs-panel/admin/object/list.pl:85
+msgid "All objects List"
+msgstr "Todas las listas de objetos"
+
+#: vhffs-panel/group/prefs.pl:257
+msgid "All users in this group"
+msgstr "Todos los usuarios de este grupo"
+
+#: vhffs-public/allwebsites.pl:72
+#, perl-format
+msgid "All websites on %s"
+msgstr "Todos los sitios web en %s"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:251
+msgid "An MX record with the same name already exists for this domain"
+msgstr "Ya existe un registro MX con este mismo nombre para este dominio"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:274
+msgid "An NS record with the same name already exists for this domain"
+msgstr "Ya existe un registro NS con este mismo nombre para este dominio"
+
+#: vhffs-panel/cvs/prefs.pl:87 vhffs-panel/cvs/prefs.pl:100
+msgid "An error occured during CVS repository update"
+msgstr "Un error ocurrió durante la creación del repositorio cvs."
+
+#: vhffs-api/src/Vhffs/Listengine.pm:493
+#, perl-format
+msgid ""
+"An error occured during your approval of subscription of:\n"
+" %s\n"
+"into the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+"Ocurrió un error durante la aprobación de la suscripción de:\n"
+" %s\n"
+"en la lista de correo:\n"
+" %s\n"
+"\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:194
+#, perl-format
+msgid ""
+"An error occured during your subscription to the following list:\n"
+" %s\n"
+"\n"
+msgstr ""
+"Ocurrió un error durante el proceso de suscripción a la lista:\n"
+" %s\n"
+"\n"
+
+#: vhffs-panel/user/prefs.pl:217
+msgid "An error occured while adding the box"
+msgstr "Un error ocurrió durante la creación del buzón."
+
+#: vhffs-panel/user/prefs.pl:219
+msgid "An error occured while adding the box (anti-spam adding)"
+msgstr ""
+"Un error ocurrió durante la modificación del buzón (configuración del anti-"
+"spam)"
+
+#: vhffs-panel/user/prefs.pl:221
+msgid "An error occured while adding the box (anti-virus adding)"
+msgstr ""
+"Un error ocurrió durante la modificación del buzón (configuración del anti-"
+"virus)"
+
+#: vhffs-panel/user/prefs.pl:266
+msgid "An error occured while adding the forwarding"
+msgstr "Un error ocurrió durante la creación de la redirección"
+
+#: vhffs-panel/user/delete.pl:83
+msgid "An error occured while applying changes. This user will NOT be deleted"
+msgstr ""
+"Un error ocurrió durante la modificación Esto usuario NO será destruido"
+
+#: vhffs-panel/web/delete.pl:92
+msgid ""
+"An error occured while applying changes. This web area will NOT be deleted"
+msgstr ""
+"Un error ocurrió durante la modificación Este espacio web NO será destruido"
+
+#: vhffs-panel/git/create.pl:88
+msgid "An error occured while creating the git repository"
+msgstr "Un error ocurrió durante la creación del repositorio git."
+
+#: vhffs-panel/mail/create.pl:83
+msgid "An error occured while creating the mail area"
+msgstr "Un error ocurrió durante la creación de la zona mail"
+
+#: vhffs-panel/repository/create.pl:84
+msgid ""
+"An error occured while creating the object. Check that this group doesn't "
+"already have a download repository"
+msgstr ""
+"Un error ocurrió durante la creación del objeto. Verifique que este grupo no "
+"tenga ya un repositorio de download"
+
+#: vhffs-panel/dns/create.pl:60
+msgid ""
+"An error occured while creating the object. The domain is not correct or "
+"aleady exists in Vhffs database"
+msgstr ""
+"Un error ocurrió durante la creación del objeto. El dominio no es correcto o "
+"ya existe en la base de datos Vhffs."
+
+#: vhffs-panel/mailinglist/create.pl:92 vhffs-panel/cvs/create.pl:92
+msgid "An error occured while creating the object.It probably already exists"
+msgstr ""
+"Un error ocurrió durante la creación del objeto. Probablemente ya existe."
+
+#: vhffs-panel/svn/create.pl:88
+msgid "An error occured while creating the svn repository"
+msgstr "Un error ocurrió durante la creación del repositorio svn."
+
+#: vhffs-panel/cvs/delete.pl:93
+msgid "An error occured while deleting the CVS repository"
+msgstr "Un error ocurrió durante la creación del repositorio cvs."
+
+#: vhffs-panel/repository/delete.pl:95
+msgid "An error occured while deleting the Download repository"
+msgstr "Un error ocurrió durante la destrucción del repositorio de download."
+
+#: vhffs-panel/svn/delete.pl:94
+msgid "An error occured while deleting the Subversion repository"
+msgstr "Un error ocurrió durante la destrucción del repositorio Subversion"
+
+#: vhffs-panel/git/delete.pl:99
+msgid "An error occured while deleting the git repository"
+msgstr "Un error ocurrió durante la destrucción del repositorio git"
+
+#: vhffs-panel/admin/broadcast_delete.pl:96
+msgid "An error occured while deleting this mailing"
+msgstr "Un error ocurrió durante destrucción de este mailing."
+
+#: vhffs-panel/object/quickdelete.pl:96
+msgid "An error occured while deleting this object."
+msgstr "Un error ocurrió durante la destrucción de este objeto."
+
+#: vhffs-api/src/Vhffs/Robots/Mysql.pm:109
+msgid "An error occured while granting privileges to an admin user"
+msgstr ""
+"Un error ocurrió durante el otorgamientos de privilegios a un usuario admin"
+
+#: vhffs-panel/user/prefs.pl:275
+msgid "An error occured while the forwarding"
+msgstr "Un error ocurrió durante la redirección"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:285
+#, perl-format
+msgid ""
+"An error occured while updating language for the following address: %s.\n"
+msgstr ""
+"Un error ocurrió durante la modificación del idioma para la dirección: %s.\n"
+
+#: vhffs-panel/mail/prefs.pl:197
+msgid "An error occured while updating the mail domain"
+msgstr "Un error ocurrió durante la actualización de la zona mail."
+
+#: vhffs-panel/admin/object/edit_submit.pl:91
+msgid "An error occured while updating the object"
+msgstr "Un error ocurrió durante la actualización del objeto."
+
+#: vhffs-panel/group/delete.pl:83 vhffs-panel/group/prefs.pl:95
+msgid "An error occured while updating the project"
+msgstr "Un error ocurrió durante la actualización del proyecto."
+
+#: vhffs-panel/user/prefs.pl:188
+msgid "An error occured while updating the user account"
+msgstr "Un error ocurrió durante la actualización de la cuenta de usuario."
+
+#: vhffs-panel/object/resubmit.pl:103
+msgid "An error occured while updating this object."
+msgstr "Un error ocurrió durante la actualización de este objeto."
+
+#: vhffs-panel/svn/prefs.pl:98
+msgid "Are you SURE you want DELETE this subversion repository ?"
+msgstr "¿Está SEGURO(A) que quiere DESTRUIR este repositorio subversion?"
+
+#: vhffs-panel/mail/prefs.pl:137
+msgid "Are you SURE you want DELETE this Mail Area ?"
+msgstr "¿Está SEGURO(A) que quiere DESTRUIR esta zona mail?"
+
+#: vhffs-panel/mysql/prefs.pl:112
+msgid "Are you SURE you want DELETE this MySQL database ?"
+msgstr "¿Está SEGURO(A) que quiere DESTRUIR esta base de datos MySQL?"
+
+#: vhffs-panel/pgsql/prefs.pl:100
+msgid "Are you SURE you want DELETE this PostgreSQL database ?"
+msgstr "¿Está SEGURO(A) que quiere DESTRUIR esta base de datos PostgreSQL?"
+
+#: vhffs-panel/web/prefs.pl:110
+msgid "Are you SURE you want DELETE this Web Area ?"
+msgstr "¿Está SEGURO(A) que quiere DESTRUIR esta zona web?"
+
+#: vhffs-panel/cvs/prefs.pl:117
+msgid "Are you SURE you want DELETE this cvs repository ?"
+msgstr "¿Está SEGURO(A) que quiere DESTRUIR este repositorio CVS?"
+
+#: vhffs-panel/dns/prefs.pl:253
+msgid "Are you SURE you want DELETE this domain ?"
+msgstr "¿Está SEGURO(A) que quiere DESTRUIR este dominio"
+
+#: vhffs-panel/repository/prefs.pl:90
+msgid "Are you SURE you want DELETE this download repository ?"
+msgstr "¿Está SEGURO(A) que quiere DESTRUIR este repositorio de download?"
+
+#: vhffs-panel/git/prefs.pl:106
+msgid "Are you SURE you want DELETE this git repository?"
+msgstr "¿Está SEGURO(A) que quiere DESTRUIR este repositorio git?"
+
+#: vhffs-panel/mailinglist/prefs.pl:180
+msgid "Are you SURE you want DELETE this mailing list ?"
+msgstr "¿Está SEGURO(A) que quiere DESTRUIR esta lista de correo?"
+
+#: vhffs-panel/group/prefs.pl:214
+msgid "Are you SURE you want DELETE this project ?"
+msgstr "¿Está SEGURO(A) que quiere DESTRUIR este proyecto?"
+
+#: vhffs-panel/user/prefs.pl:327
+msgid "Are you SURE you want DELETE this user?"
+msgstr "¿Está SEGURO(A) que quiere DESTRUIR este usuario?"
+
+#: vhffs-panel/admin/object/delete_avatar.pl:100
+msgid "Avatar deleted"
+msgstr "Avatar borrado"
+
+#: vhffs-panel/admin/object/edit.pl:195
+#: vhffs-api/src/Vhffs/Panel/Object.pm:199
+msgid "Avatar management"
+msgstr "Administrar avatar"
+
+#: vhffs-panel/admin/broadcast_list.pl:96
+#: vhffs-panel/admin/broadcast_view.pl:97
+msgid "Awaiting sending"
+msgstr "Envío en espera"
+
+#: vhffs-panel/subscribe.pl:191 vhffs-panel/subscribe.pl:232
+msgid "Back to Login"
+msgstr "Volver al Login"
+
+#: vhffs-panel/lost.pl:59 vhffs-intl/template_strings.pl:45
+msgid "Back to login page"
+msgstr "Volver a la página de login"
+
+#: vhffs-panel/pgsql/prefs.pl:126 vhffs-panel/mysql/prefs.pl:137
+msgid "Bad password, should be at least 3 chars"
+msgstr "Contraseña mala, debe tener por los menos 3 caracteres"
+
+#: vhffs-panel/dns/create.pl:73
+msgid ""
+"Be careful ! You must give the reason why you want to host this domain on "
+"our servers."
+msgstr ""
+"Tenga cuidado! Tiene que justificar la razón por la cual desea hospedar este "
+"dominio en nuestros servidores."
+
+#: vhffs-panel/web/create.pl:97
+msgid ""
+"Be careful, if you want create www.domain.tld, you should create a webspace "
+"with domain.tld as servername. VHFFS redirect all request from www.domain."
+"tld to domain.tld"
+msgstr ""
+"Tenga cuidado, si quiere crear www.dominio.tld, tiene que crear una zona web "
+"con el nombre de servidor dominio.tld. VHFFS redirige todos los pedidos de "
+"www.dominio.tld a dominio.tld"
+
+#: vhffs-panel/admin/broadcast_view.pl:89
+msgid "Body"
+msgstr "Cuerpo de mensaje"
+
+#: vhffs-panel/mail/prefs.pl:272
+#, perl-format
+msgid "Box %s deleted"
+msgstr "Buzón %s borrado"
+
+#: vhffs-panel/mail/prefs.pl:239
+msgid "Box password updated"
+msgstr "Contraseña del buzón modificada"
+
+#: vhffs-panel/mail/prefs.pl:216
+msgid "Box successfully added"
+msgstr ""
+
+#: vhffs-panel/lost.pl:56
+msgid ""
+"But fortunately we're smart, so just type your login here<br/>and a new "
+"password will be sent to you by email!"
+msgstr ""
+"Entre su nombre de usuario aquí<br/>y recibirá una nueva contraseña por "
+"correo!"
+
+#: vhffs-public/user.pl:60 vhffs-public/user.pl:64 vhffs-public/group.pl:72
+#: vhffs-panel/mailinglist/delete.pl:79 vhffs-panel/mailinglist/prefs.pl:210
+#: vhffs-panel/mailinglist/prefs.pl:235 vhffs-panel/mailinglist/prefs.pl:256
+#: vhffs-panel/mailinglist/prefs.pl:276 vhffs-panel/mailinglist/create.pl:81
+#: vhffs-panel/svn/delete.pl:73 vhffs-panel/svn/prefs.pl:66
+#: vhffs-panel/svn/prefs.pl:139 vhffs-panel/svn/create.pl:79
+#: vhffs-panel/history.pl:84 vhffs-panel/user/prefs.pl:114
+#: vhffs-panel/user/prefs.pl:469 vhffs-panel/dns/delete.pl:79
+#: vhffs-panel/dns/prefs.pl:76 vhffs-panel/dns/create.pl:49
+#: vhffs-panel/acl/view.pl:85 vhffs-panel/pgsql/delete.pl:81
+#: vhffs-panel/pgsql/prefs.pl:121 vhffs-panel/pgsql/create.pl:82
+#: vhffs-panel/group/prefs.pl:84 vhffs-panel/group/prefs.pl:105
+#: vhffs-panel/group/prefs.pl:123 vhffs-panel/group/prefs.pl:164
+#: vhffs-panel/repository/prefs.pl:68 vhffs-panel/repository/create.pl:77
+#: vhffs-panel/admin/moderation_submit.pl:77
+#: vhffs-panel/admin/broadcast_submit.pl:84
+#: vhffs-panel/admin/broadcast_delete.pl:84
+#: vhffs-panel/admin/object/edit_submit.pl:78
+#: vhffs-panel/admin/object/delete_avatar.pl:82
+#: vhffs-panel/admin/object/edit.pl:80 vhffs-panel/admin/broadcast_view.pl:79
+#: vhffs-panel/git/delete.pl:74 vhffs-panel/git/prefs.pl:70
+#: vhffs-panel/git/create.pl:79 vhffs-panel/object/quickdelete.pl:63
+#: vhffs-panel/object/resubmit.pl:63 vhffs-panel/object/resubmit.pl:87
+#: vhffs-panel/web/prefs.pl:130 vhffs-panel/web/create.pl:77
+#: vhffs-panel/mysql/delete.pl:75 vhffs-panel/mysql/prefs.pl:70
+#: vhffs-panel/mysql/prefs.pl:132 vhffs-panel/mysql/create.pl:82
+#: vhffs-panel/cvs/delete.pl:74 vhffs-panel/cvs/prefs.pl:67
+#: vhffs-panel/cvs/prefs.pl:80 vhffs-panel/cvs/create.pl:80
+#: vhffs-panel/mail/delete.pl:75 vhffs-panel/mail/prefs.pl:185
+#: vhffs-panel/mail/prefs.pl:212 vhffs-panel/mail/prefs.pl:233
+#: vhffs-panel/mail/prefs.pl:268 vhffs-panel/mail/prefs.pl:284
+#: vhffs-panel/mail/prefs.pl:300 vhffs-panel/mail/prefs.pl:315
+#: vhffs-panel/mail/create.pl:74
+#, perl-format
+msgid "CGI Error !"
+msgstr "Error CGI"
+
+#: vhffs-panel/repository/delete.pl:74
+#, perl-format
+msgid "CGI Error ! %s"
+msgstr "Error CGI %s"
+
+#: vhffs-panel/git/prefs.pl:169
+msgid "CGI error !"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:175
+msgid "CNAME Record added"
+msgstr "Registro CNAME añadido"
+
+#: vhffs-panel/dns/prefs.pl:170
+msgid "CNAME Record deleted"
+msgstr "Registro CNAME borrado"
+
+#: vhffs-panel/dns/prefs.pl:166
+msgid "CNAME Record updated"
+msgstr "Registro CNAME modificado"
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:67 vhffs-api/src/Vhffs/Panel/Menu.pm:116
+msgid "CVS"
+msgstr "CVS"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:188
+msgid "CVS Admin"
+msgstr "Admin CVS"
+
+#: vhffs-intl/template_strings.pl:28
+msgid "CVS Repositories for this group"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:41
+msgid "CVS Repository"
+msgstr "Repositorio CVS"
+
+#: vhffs-panel/admin/cvs/list.pl:76
+msgid "CVS Root"
+msgstr "Raíz del repositorio CVS "
+
+#: vhffs-panel/cvs/index.pl:60
+#, perl-format
+msgid "CVS repositories for %s"
+msgstr "Repositorios CVS para %s"
+
+#: vhffs-panel/admin/cvs/index.pl:56
+msgid "CVS repositories' administration"
+msgstr "Administración repositorios CVS"
+
+#: vhffs-panel/cvs/prefs.pl:85 vhffs-panel/cvs/prefs.pl:98
+msgid "CVS repository updated"
+msgstr "Repositorio CVS modificado"
+
+#: vhffs-panel/admin/stats.pl:120
+msgid "CVS stats"
+msgstr "Estadísticas CVS"
+
+#: vhffs-panel/acl/view.pl:113
+msgid "Can destroy this service"
+msgstr "Se puede destruir este servicio"
+
+#: vhffs-panel/acl/view.pl:112
+msgid "Can manage ACL for this service"
+msgstr "Se puede administrar el ACL sobre este servicio"
+
+#: vhffs-panel/acl/view.pl:111
+msgid "Can modify this service"
+msgstr "Se puede modificar este servicio"
+
+#: vhffs-panel/acl/view.pl:110
+msgid "Can view this service"
+msgstr "Se puede ver a este servicio"
+
+#: vhffs-panel/acl/view.pl:109
+msgid "Can't access"
+msgstr "No puede acceder"
+
+#: vhffs-panel/subscribe.pl:184
+msgid "Cannot apply changes to the user"
+msgstr "No puede aplicar los cambios por el usuario"
+
+#: vhffs-panel/admin/moderation_submit.pl:94
+msgid "Cannot apply modifications"
+msgstr "No puede aplicar las modificaciones"
+
+#: vhffs-panel/mailinglist/delete.pl:103
+msgid "Cannot commit changes on this object, will NOT be deleted"
+msgstr "Es imposible aplicar los cambios sobre esto objeto, NO será destruido"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:352
+msgid ""
+"Cannot create or fetch session file, please check that /tmp is readable and "
+"writeable"
+msgstr ""
+"Imposible acceder al archivo de sesión, verifique que /tmp está accesible "
+"para lectura y escritura"
+
+#: vhffs-panel/subscribe.pl:174
+msgid "Cannot create user, the username you entered already exists"
+msgstr "No se puede crear el usuario, este nombre de usuario ya existe."
+
+#: vhffs-panel/admin/object/delete_avatar.pl:96
+msgid "Cannot delete this avatar"
+msgstr "No puede borrar este avatar"
+
+#: vhffs-panel/admin/object/edit_submit.pl:82
+#: vhffs-panel/admin/object/delete_avatar.pl:86
+#: vhffs-panel/admin/object/edit.pl:85
+msgid "Cannot fetch object"
+msgstr "No se puede leer el objeto"
+
+#: vhffs-panel/object/upavatar.pl:101
+msgid "Cannot find object"
+msgstr "No se puede conseguir el objeto"
+
+#: vhffs-panel/history.pl:89
+msgid "Cannot get information on this object"
+msgstr "No se pudo obtener informaciones sobre esto objeto"
+
+#: vhffs-panel/acl/view.pl:71
+#, perl-format
+msgid "Cannot get informations on object #%d"
+msgstr "No pudo obtener informaciones sobre el objeto #%d"
+
+#: vhffs-panel/mailinglist/delete.pl:83 vhffs-panel/svn/prefs.pl:71
+#: vhffs-panel/user/prefs.pl:73 vhffs-panel/dns/delete.pl:83
+#: vhffs-panel/dns/prefs.pl:81 vhffs-panel/pgsql/prefs.pl:68
+#: vhffs-panel/repository/prefs.pl:71 vhffs-panel/git/prefs.pl:75
+#: vhffs-panel/web/prefs.pl:74 vhffs-panel/mysql/prefs.pl:75
+#: vhffs-panel/cvs/prefs.pl:70
+msgid "Cannot get informations on this object"
+msgstr "No se pudo obtener informaciones sobre esto objeto"
+
+#: vhffs-panel/admin/stats.pl:74
+msgid "Cannot get statistics"
+msgstr "No se pudo obtener estadísticas"
+
+#: vhffs-panel/cvs/delete.pl:78
+msgid "Cannot retrieve informations about this CVS repository"
+msgstr "No se pudo recuperar informaciones sobre este repositorio CVS"
+
+#: vhffs-panel/repository/delete.pl:78
+msgid "Cannot retrieve informations about this Download repository"
+msgstr "No se pudo recuperar informaciones sobre este repositorio de download"
+
+#: vhffs-panel/svn/delete.pl:77 vhffs-panel/git/delete.pl:78
+msgid "Cannot retrieve informations about this repository"
+msgstr "No se pudo recuperar informaciones sobre este repositorio"
+
+#: vhffs-panel/alert_submit.pl:72
+msgid "Cannot send message, CGI error..."
+msgstr "No se pudo enviar el mensaje, error CGI..."
+
+#: vhffs-panel/mail/prefs.pl:105
+msgid "Catchall address"
+msgstr "Dirección del catchall"
+
+#: vhffs-panel/mail/prefs.pl:199
+msgid "Catchall address successfully changed"
+msgstr "Se modificó con éxito la dirección del catchall"
+
+#: vhffs-panel/mail/prefs.pl:180
+msgid "Catchall isn't enabled on this platform"
+msgstr "Catchall no está activo en esta plataforma"
+
+#: vhffs-panel/mail/prefs.pl:108
+msgid "Catchall mail"
+msgstr "Correo Catchall"
+
+#: vhffs-intl/template_strings.pl:78
+msgid "Change Forward"
+msgstr "Cambiar la redirección"
+
+#: vhffs-intl/template_strings.pl:80
+msgid "Change Password"
+msgstr "Cambiar contraseña"
+
+#: vhffs-panel/mail/prefs.pl:130
+msgid "Change catchall forward"
+msgstr "Cambiar la redirección del catchall"
+
+#: vhffs-intl/template_strings.pl:57
+msgid "Change rights"
+msgstr "Cambiar derechos"
+
+#: vhffs-panel/user/prefs.pl:237
+msgid "Change spam protection status for your account\n"
+msgstr "Cambiar el estatus de la protección anti-spam para su cuenta\n"
+
+#: vhffs-panel/admin/su.pl:72 vhffs-api/src/Vhffs/Panel/Admin.pm:94
+msgid "Change user-id"
+msgstr "Cambiar de id de usuario"
+
+#: vhffs-panel/user/prefs.pl:248
+msgid "Changed anti-virus status for your account\n"
+msgstr "Cambiar el estatus de la protección anti-virus para su cuenta\n"
+
+#: vhffs-panel/subscribe.pl:228 vhffs-panel/user/prefs.pl:306
+msgid "City"
+msgstr "Ciudad"
+
+#: vhffs-panel/user/prefs.pl:126
+msgid "City is not correct !"
+msgstr "¡La ciudad no es correcta!"
+
+#: vhffs-panel/mailinglist/prefs.pl:109
+msgid "Closed"
+msgstr "Cerrado"
+
+#: vhffs-panel/subscribe.pl:238
+msgid "Code confirmation"
+msgstr "Código de confirmación"
+
+#: vhffs-panel/subscribe.pl:107
+msgid "Codes do not match"
+msgstr "Los códigos no corresponden"
+
+#: vhffs-panel/user/prefs.pl:310
+msgid "Confirm Password"
+msgstr "Confirmar contraseña"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:241
+msgid "Confirmation code was wrong.\n"
+msgstr "Código de confirmación incorrecto.\n"
+
+#: vhffs-panel/subscribe.pl:240
+msgid "Confirmation code, contact administrator team if you can't read it"
+msgstr ""
+"Código de confirmación, contacte el equipo de administración si no lo puede "
+"leer"
+
+#: vhffs-panel/mail/prefs.pl:237
+msgid "Could not change box password"
+msgstr "No se pudo cambiar la contraseña del buzón"
+
+#: vhffs-panel/mail/prefs.pl:252
+#, perl-format
+msgid "Could not update antivirus status for box %s"
+msgstr "No se pudo modificar el estatus del antivirus para el buzón %s"
+
+#: vhffs-panel/mail/prefs.pl:245
+#, perl-format
+msgid "Could not update spam status for box %s"
+msgstr "No se pudo modificar el estatus del antispam para el buzón %s"
+
+#: vhffs-panel/subscribe.pl:229 vhffs-panel/user/prefs.pl:308
+msgid "Country"
+msgstr "País"
+
+#: vhffs-panel/user/prefs.pl:135
+msgid "Country is not correct !"
+msgstr "¡El país no es correcto!"
+
+#: vhffs-panel/cvs/create.pl:100
+msgid "Create a CVS Repository"
+msgstr "Crear un repositorio CVS"
+
+#: vhffs-panel/dns/create.pl:68
+msgid "Create a DNS"
+msgstr "Crear un DNS"
+
+#: vhffs-panel/repository/create.pl:91
+msgid "Create a Download Repository"
+msgstr "Crear un repositorio de download"
+
+#: vhffs-panel/mysql/create.pl:100
+msgid "Create a MySQL database"
+msgstr "Crear una base de datos MySQL"
+
+#: vhffs-panel/pgsql/create.pl:100
+msgid "Create a PostgreSQL database"
+msgstr "Crear una base de datos PostgreSQL"
+
+#: vhffs-panel/group/create.pl:84
+msgid "Create a Project"
+msgstr "Crear un proyecto"
+
+#: vhffs-panel/svn/create.pl:95
+msgid "Create a Subversion Repository"
+msgstr "Crear un repositorio Subversion"
+
+#: vhffs-panel/git/create.pl:95
+msgid "Create a git Repository"
+msgstr "Crear un repositorio Git"
+
+#: vhffs-panel/mail/create.pl:90
+msgid "Create a mail space"
+msgstr "Crear un espacio mail"
+
+#: vhffs-panel/mailinglist/create.pl:100
+msgid "Create a new mailing list"
+msgstr "Crear un nuevo miembro"
+
+#: vhffs-panel/web/create.pl:95
+msgid "Create a web space"
+msgstr "Crear un espacio web"
+
+#: vhffs-panel/group/index.pl:63
+msgid "Create new project"
+msgstr "Crear un nuevo proyecto"
+
+#: vhffs-panel/admin/object/edit.pl:121 vhffs-intl/extra_strings.pl:24
+#: vhffs-api/src/Vhffs/Panel/Object.pm:126
+msgid "Created"
+msgstr "Creado"
+
+#: vhffs-panel/admin/object/edit.pl:119
+#: vhffs-api/src/Vhffs/Panel/Object.pm:124
+msgid "Creating error"
+msgstr "Error en la creación"
+
+#: vhffs-intl/extra_strings.pl:23
+msgid "Creation error"
+msgstr "Error en la creación"
+
+#: vhffs-panel/user/prefs.pl:337 vhffs-panel/group/prefs.pl:247
+msgid "Current avatar"
+msgstr "Avatar actual"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:450
+msgid "Current group:"
+msgstr "Grupo actual:"
+
+#: vhffs-panel/admin/pgsql/list.pl:76 vhffs-panel/admin/mysql/list.pl:82
+msgid "DB Name"
+msgstr "Nombre BD"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:293
+msgid "DNS Admin"
+msgstr "Admin DNS"
+
+#: vhffs-panel/dns/prefs.pl:227
+#, perl-format
+msgid "DNS Administration - %s"
+msgstr "Administración DNS - %s"
+
+#: vhffs-panel/dns/create.pl:74
+msgid "DNS servers:"
+msgstr "Servidores DNS:"
+
+#: vhffs-panel/admin/stats.pl:112
+msgid "DNS stats"
+msgstr "Estadísticas DNS"
+
+#: vhffs-panel/admin/dns/index.pl:56
+msgid "DNS' administration"
+msgstr "Administración DNS"
+
+#: vhffs-panel/ajax/help.pl:49 vhffs-api/src/Vhffs/Panel/DNS.pm:162
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:198 vhffs-api/src/Vhffs/Panel/DNS.pm:210
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:228 vhffs-api/src/Vhffs/Panel/DNS.pm:240
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:252 vhffs-api/src/Vhffs/Panel/DNS.pm:264
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:275 vhffs-api/src/Vhffs/Panel/DNS.pm:287
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:300 vhffs-api/src/Vhffs/Panel/DNS.pm:316
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:331 vhffs-api/src/Vhffs/Panel/DNS.pm:343
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:355
+msgid "Database error"
+msgstr "Error en la base de datos"
+
+#: vhffs-panel/pgsql/delete.pl:85
+msgid "Database will NOT be deleted !"
+msgstr "¡La base de datos NO será destruida!"
+
+#: vhffs-panel/pgsql/delete.pl:97
+msgid "Database will be DELETE"
+msgstr "La base de datos será DESTRUIDA"
+
+#: vhffs-panel/group/history.pl:77 vhffs-panel/admin/broadcast_view.pl:86
+msgid "Date"
+msgstr "Fecha"
+
+#: vhffs-panel/admin/object/edit.pl:96 vhffs-api/src/Vhffs/Panel/Object.pm:100
+msgid "Date of creation"
+msgstr "Fecha de creación"
+
+#: vhffs-panel/acl/view.pl:107 vhffs-panel/acl/view.pl:108
+msgid "Default"
+msgstr "Defecto"
+
+#: vhffs-panel/mailinglist/prefs.pl:183 vhffs-panel/svn/prefs.pl:101
+#: vhffs-panel/user/prefs.pl:330 vhffs-panel/dns/prefs.pl:256
+#: vhffs-panel/dns/prefs.pl:313 vhffs-panel/dns/prefs.pl:325
+#: vhffs-panel/dns/prefs.pl:338 vhffs-panel/dns/prefs.pl:350
+#: vhffs-panel/dns/prefs.pl:366 vhffs-panel/dns/prefs.pl:377
+#: vhffs-panel/dns/prefs.pl:393 vhffs-panel/pgsql/prefs.pl:103
+#: vhffs-panel/group/prefs.pl:217 vhffs-panel/group/index.pl:65
+#: vhffs-panel/repository/prefs.pl:93 vhffs-panel/git/prefs.pl:109
+#: vhffs-panel/web/prefs.pl:113 vhffs-panel/mysql/prefs.pl:115
+#: vhffs-panel/cvs/prefs.pl:120 vhffs-panel/mail/prefs.pl:140
+#: vhffs-api/src/Vhffs/Panel/Main.pm:810
+msgid "Delete"
+msgstr "Borrar"
+
+#: vhffs-panel/user/prefs.pl:325
+msgid "Delete YOUR user"
+msgstr "Destruir SU cuenta"
+
+#: vhffs-panel/admin/object/edit.pl:196
+#: vhffs-api/src/Vhffs/Panel/Object.pm:200
+msgid "Delete avatar for this object"
+msgstr "Borrar el avatar para este objeto"
+
+#: vhffs-intl/template_strings.pl:58
+msgid "Delete from list"
+msgstr "Eliminar de la lista"
+
+#: vhffs-panel/pgsql/prefs.pl:98
+msgid "Delete this PostgreSQL database"
+msgstr "Destruir esta base de datos PostgreSQL"
+
+#: vhffs-panel/mysql/prefs.pl:110
+msgid "Delete this database"
+msgstr "Destruir esta base de datos"
+
+#: vhffs-panel/dns/prefs.pl:251
+msgid "Delete this domain name from the VHFFS platform"
+msgstr "Esto dominio será destruido de la plataforma Vhffs"
+
+#: vhffs-intl/template_strings.pl:79
+msgid "Delete this forward"
+msgstr "Destruir esta redirección"
+
+#: vhffs-panel/mailinglist/prefs.pl:178
+msgid "Delete this list"
+msgstr "Destruir esta lista"
+
+#: vhffs-panel/mail/prefs.pl:135
+msgid "Delete this mail domain"
+msgstr "Destruir este dominio mail"
+
+#: vhffs-panel/admin/broadcast_list.pl:89
+msgid "Delete this mailing"
+msgstr "Destruir esta lista de correo"
+
+#: vhffs-panel/group/prefs.pl:212 vhffs-panel/repository/prefs.pl:88
+#: vhffs-panel/cvs/prefs.pl:115
+msgid "Delete this project"
+msgstr "Destruir este proyecto"
+
+#: vhffs-panel/svn/prefs.pl:96 vhffs-panel/git/prefs.pl:104
+msgid "Delete this repository"
+msgstr "Destruir esto repositorio"
+
+#: vhffs-panel/web/prefs.pl:108
+msgid "Delete this web area"
+msgstr "Destruir esta zona web"
+
+#: vhffs-panel/svn/create.pl:102 vhffs-panel/dns/create.pl:79
+#: vhffs-panel/pgsql/create.pl:110 vhffs-panel/group/create.pl:91
+#: vhffs-panel/repository/create.pl:98 vhffs-panel/admin/moderation.pl:88
+#: vhffs-panel/admin/object/edit.pl:98 vhffs-panel/git/create.pl:103
+#: vhffs-panel/object/resubmit.pl:128 vhffs-panel/mysql/create.pl:110
+#: vhffs-panel/cvs/create.pl:108 vhffs-intl/template_strings.pl:26
+#: vhffs-intl/template_strings.pl:39 vhffs-intl/template_strings.pl:42
+#: vhffs-api/src/Vhffs/Panel/Object.pm:102
+msgid "Description"
+msgstr "Descripción"
+
+#: vhffs-intl/template_strings.pl:13
+msgid "Description contains"
+msgstr ""
+
+#: vhffs-panel/web/prefs.pl:99
+msgid "Description of your webarea"
+msgstr "Descripción de la zona web"
+
+#: vhffs-panel/dns/prefs.pl:280
+msgid "Destination"
+msgstr "Destino"
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:71 vhffs-api/src/Vhffs/Panel/Menu.pm:120
+msgid "Dl repos"
+msgstr "Descarga"
+
+#: vhffs-panel/mail/create.pl:91
+msgid "Domain"
+msgstr "Dominio"
+
+#: vhffs-panel/dns/create.pl:70 vhffs-panel/admin/dns/list.pl:75
+#: vhffs-panel/admin/mail/list.pl:75 vhffs-intl/extra_strings.pl:43
+msgid "Domain Name"
+msgstr "Nombre de dominio"
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:70 vhffs-api/src/Vhffs/Panel/Menu.pm:119
+msgid "Domain names"
+msgstr "Dominios"
+
+#: vhffs-panel/dns/index.pl:60
+#, perl-format
+msgid "Domain names for %s"
+msgstr "Nombres de dominio para %s"
+
+#: vhffs-panel/svn/prefs.pl:110 vhffs-panel/git/prefs.pl:121
+#, perl-format
+msgid ""
+"Don't forget to subscribe %s to your mailing list if you are filtering posts"
+msgstr ""
+"No olvide suscribir %s a su lista de correo si está filtrando los mensajes"
+
+#: vhffs-intl/extra_strings.pl:38
+msgid "Download Repository"
+msgstr "Repositorio de download"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:311
+msgid "Download repositories Admin"
+msgstr "Admin de repositorio de download"
+
+#: vhffs-panel/repository/index.pl:60
+#, perl-format
+msgid "Download repositories for %s"
+msgstr "Repositorios de download para %s"
+
+#: vhffs-panel/admin/repository/index.pl:56
+msgid "Download repositories' administration"
+msgstr "Administración repositorios de download"
+
+#: vhffs-panel/admin/web/list.pl:80
+msgid "Edit"
+msgstr "Modificar"
+
+#: vhffs-panel/admin/object/edit.pl:91
+msgid "Edit Object"
+msgstr "Modificar objeto"
+
+#: vhffs-panel/admin/object/list.pl:98
+msgid "Edit this object"
+msgstr "Modificar este objeto"
+
+#: vhffs-panel/user/prefs.pl:183
+msgid "Email address changed"
+msgstr "La dirección de correo ha cambiado"
+
+#: vhffs-panel/user/prefs.pl:129
+msgid "Email is not correct !"
+msgstr "¡Su dirección no es correcta!"
+
+#: vhffs-intl/template_strings.pl:81
+msgid "Enable anti-spam"
+msgstr "Activar el anti-spam"
+
+#: vhffs-intl/template_strings.pl:84
+msgid "Enable anti-virus"
+msgstr "Activar el anti-virus"
+
+#: vhffs-panel/mail/prefs.pl:107
+msgid "Enter a mail address to catch all email for this domain"
+msgstr ""
+"Ingrese una dirección de correo para recibir todos los correos de este "
+"dominio"
+
+#: vhffs-panel/mailinglist/index.pl:53 vhffs-panel/svn/index.pl:53
+#: vhffs-panel/dns/index.pl:53 vhffs-panel/pgsql/index.pl:53
+#: vhffs-panel/repository/index.pl:53 vhffs-panel/git/index.pl:54
+#: vhffs-panel/web/index.pl:53 vhffs-panel/mysql/index.pl:53
+#: vhffs-panel/cvs/index.pl:53 vhffs-panel/mail/index.pl:53
+msgid "Error"
+msgstr "¡Error!"
+
+#: vhffs-panel/admin/broadcast_submit.pl:96
+msgid "Error !"
+msgstr "¡Error!"
+
+#: vhffs-panel/user/prefs.pl:212
+msgid ""
+"Error ! You MUST provide a password in your account when you create your "
+"popable account"
+msgstr ""
+"¡Error! DEBE proveer una contraseña cuando está creando una cuenta de correo"
+
+#: vhffs-panel/group/create.pl:74
+msgid "Error creating group (maybe a group with the same name already exists)"
+msgstr ""
+"Error durante la creación del grupo (posiblemente ya existe otro grupo con "
+"este mismo nombre)"
+
+#: vhffs-panel/web/create.pl:86
+msgid "Error creating webarea."
+msgstr "Error durante la creación de la zona web."
+
+#: vhffs-panel/user/prefs.pl:239
+msgid "Error for spam protection\n"
+msgstr "Error en la protección anti-spam\n"
+
+#: vhffs-panel/user/prefs.pl:250
+msgid "Error for virus protection\n"
+msgstr "Error en la protección anti-virus\n"
+
+#: vhffs-panel/object/upavatar.pl:130
+msgid "Error when uploading avatar for this object"
+msgstr "Error durante la subida del avatar para este objeto"
+
+#: vhffs-panel/dns/delete.pl:96
+msgid "Error while switching state. DNS will NOT be deleted"
+msgstr "Error durante el cambio de estado. DNS NO serán borrados"
+
+#: vhffs-panel/group/history.pl:65 vhffs-panel/group/prefs.pl:67
+msgid "Error. This group doesn't exists"
+msgstr "¡Error! Este grupo no existe"
+
+#: vhffs-panel/group/history.pl:80
+msgid "Event"
+msgstr "Evento"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:360
+msgid "Expired session ! Please login again"
+msgstr "Sesión expirada! Conectase otra vez"
+
+#: vhffs-panel/object/upavatar.pl:114
+msgid "Filetype not supported, only png is supported"
+msgstr "Tipo de archivo no soportado, solamente png es soportado"
+
+#: vhffs-intl/template_strings.pl:51
+msgid "Fill with project's members emails"
+msgstr "Llene con los correos de los miembros del proyecto"
+
+#: vhffs-panel/subscribe.pl:225 vhffs-panel/user/prefs.pl:303
+#: vhffs-intl/template_strings.pl:5 vhffs-intl/template_strings.pl:35
+msgid "Firstname"
+msgstr "Nombre"
+
+#: vhffs-panel/user/prefs.pl:120
+msgid "Firstname is not correct !"
+msgstr "¡Su nombre no es correcto!"
+
+#: vhffs-panel/git/prefs.pl:115
+msgid "Fix permissions in this repository"
+msgstr "Fijar permisos en el repositorio"
+
+#: vhffs-panel/git/prefs.pl:117
+msgid "Fix them !"
+msgstr "Fijarlas!"
+
+#: vhffs-panel/git/prefs.pl:116
+msgid ""
+"Fixing permissions on a repository solve permission access on the "
+"repository. Can be helpful if you encounter problems"
+msgstr ""
+"Fijar permisos en el repositorio permite solucionar los problemas de accesos "
+"al repositorio. Puede ser de ayuda cuando encuentre un problema"
+
+#: vhffs-panel/mail/prefs.pl:319
+#, perl-format
+msgid "Forward %s deleted"
+msgstr "Redirección %s borrado"
+
+#: vhffs-panel/mail/prefs.pl:304
+#, perl-format
+msgid "Forward %s successfully updated"
+msgstr "Redirección %s actualizada con éxito"
+
+#: vhffs-panel/user/prefs.pl:268 vhffs-panel/group/prefs.pl:191
+#: vhffs-panel/mail/prefs.pl:288
+msgid "Forward added"
+msgstr "Redirección creada"
+
+#: vhffs-panel/group/prefs.pl:188
+msgid "Forward deleted"
+msgstr "Redirección %s borrada"
+
+#: vhffs-panel/user/prefs.pl:414
+#, perl-format
+msgid "Forward emails from %s@%s to %s"
+msgstr "Redirigir los correos desde %s@%s hacia %s"
+
+#: vhffs-panel/mail/prefs.pl:125
+msgid "Forward mail"
+msgstr "Redirección"
+
+#: vhffs-panel/user/prefs.pl:277
+msgid "Forward updated"
+msgstr "Redirección modificada"
+
+#: vhffs-panel/mail/prefs.pl:120
+msgid "Forwards"
+msgstr "Redirecciones"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:560
+msgid "Full history"
+msgstr "Historial completo"
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:69 vhffs-api/src/Vhffs/Panel/Menu.pm:118
+msgid "GIT"
+msgstr "GIT"
+
+#: vhffs-intl/template_strings.pl:30
+msgid "GIT Repositories for this group"
+msgstr ""
+
+#: vhffs-panel/git/index.pl:61
+#, perl-format
+msgid "GIT repositories for %s"
+msgstr "Repositorios Git para %s"
+
+#: vhffs-panel/admin/git/index.pl:57
+msgid "GIT repositories' administration"
+msgstr "Administración repositorios Git"
+
+#: vhffs-panel/admin/git/list.pl:72
+msgid "GIT root"
+msgstr "Raíz del repositorio Git"
+
+#: vhffs-panel/admin/stats.pl:133
+msgid "GIT stats"
+msgstr "Estadísticas Git"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:559 vhffs-api/src/Vhffs/Panel/Admin.pm:79
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:101
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:110
+msgid "General"
+msgstr "General"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:76 vhffs-api/src/Vhffs/Panel/Admin.pm:93
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:91
+msgid "Get Statistics"
+msgstr "Ver estadísticas"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:206
+msgid "Git Admin"
+msgstr "Admin Git"
+
+#: vhffs-panel/lost.pl:58
+msgid "Give me a new password"
+msgstr "Pedir una nueva contraseña"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:808
+msgid "Go to administration"
+msgstr "Ir a la administración"
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:85
+msgid "Go to public area"
+msgstr "Ir a la zona pública"
+
+#: vhffs-panel/mailinglist/prefs.pl:302
+#, perl-format
+msgid ""
+"Greetings,\n"
+"\n"
+"You've been added to the list %s on platform %s.\n"
+"\n"
+"You may get some help on listengine by sending an email to %s-request@%s "
+"with subject help.\n"
+"\n"
+"Cheers."
+msgstr ""
+"Bienvenido,\n"
+"\n"
+"Acaba de ser añadido a la lista %s en la plataforma %s.\n"
+"\n"
+"Puede recibir ayuda sobre el motor de lista enviando un correo a %s-request@"
+"%s con el título help.\n"
+"\n"
+"Atentamente."
+
+#: vhffs-panel/admin/mailinglist/list.pl:80 vhffs-panel/admin/svn/list.pl:71
+#: vhffs-panel/admin/dns/list.pl:76 vhffs-panel/admin/moderation.pl:87
+#: vhffs-panel/admin/pgsql/list.pl:77 vhffs-panel/admin/repository/list.pl:76
+#: vhffs-panel/admin/git/list.pl:73 vhffs-panel/admin/web/list.pl:71
+#: vhffs-panel/admin/mysql/list.pl:83 vhffs-panel/admin/cvs/list.pl:77
+#: vhffs-panel/admin/mail/list.pl:76 vhffs-intl/extra_strings.pl:36
+msgid "Group"
+msgstr "Grupo"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:546
+#, perl-format
+msgid "Group %s"
+msgstr "Grupo %s"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:135
+msgid "Group Admin"
+msgstr "Administración grupos"
+
+#: vhffs-intl/template_strings.pl:66
+msgid "Group Quota"
+msgstr "Cuota de grupo"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:543
+msgid "Group error"
+msgstr "Error con el grupo"
+
+#: vhffs-panel/acl/view.pl:87
+msgid "Group or user not found"
+msgstr "Grupo o usuario no encontrado"
+
+#: vhffs-panel/cvs/create.pl:104
+msgid "Group owning this CVS"
+msgstr "Grupo al cual le pertenece este CVS"
+
+#: vhffs-panel/dns/create.pl:75
+msgid "Group owning this DNS"
+msgstr "Grupo al cual le pertenece este DNS"
+
+#: vhffs-panel/svn/create.pl:98
+msgid "Group owning this Subversion repository"
+msgstr "Grupo al cual le pertenece este repositorio Subversion"
+
+#: vhffs-panel/pgsql/create.pl:103 vhffs-panel/mysql/create.pl:103
+msgid "Group owning this database"
+msgstr "Grupo al cual le pertenece esta base de datos"
+
+#: vhffs-panel/git/create.pl:98
+msgid "Group owning this git repository"
+msgstr "Grupo al cual le pertenece este repositorio Git"
+
+#: vhffs-panel/mail/create.pl:93
+msgid "Group owning this mail domain"
+msgstr "Grupo al cual le pertenece este dominio mail"
+
+#: vhffs-panel/mailinglist/create.pl:108
+msgid "Group owning this mailing list"
+msgstr "Grupo al cual le pertenece esta lista de correo"
+
+#: vhffs-panel/repository/create.pl:93
+msgid "Group owning this repository"
+msgstr "Grupo al cual le pertenece este repositorio"
+
+#: vhffs-panel/web/create.pl:99
+msgid "Group owning this web space"
+msgstr "Grupo al cual le pertenece esta zona web"
+
+#: vhffs-panel/group/prefs.pl:97
+msgid "Group updated"
+msgstr "Grupo actualizado"
+
+#: vhffs-panel/group/prefs.pl:293
+msgid "Group updated, please wait while quota is updated on filesystem"
+msgstr ""
+"Grupo actualizado, por favor espere mientras se actualice la cuota en el "
+"sistema de archivo"
+
+#: vhffs-panel/admin/group/list.pl:80 vhffs-intl/template_strings.pl:12
+#: vhffs-intl/template_strings.pl:25 vhffs-intl/template_strings.pl:38
+#: vhffs-intl/template_strings.pl:40
+msgid "Groupname"
+msgstr "Nombre del grupo"
+
+#: vhffs-panel/group/create.pl:66
+msgid ""
+"Groupname must contain between 3 and 12 characters, only letters or numbers "
+"in lower case"
+msgstr ""
+"El nombre de grupo debe contener entre 3 y 12 caracteres, solamente cifras y "
+"letras en minúsculas"
+
+#: vhffs-intl/template_strings.pl:43 vhffs-api/src/Vhffs/Panel/Menu.pm:112
+msgid "Groups"
+msgstr "Grupos"
+
+#: vhffs-panel/admin/stats.pl:99
+msgid "Groups stats"
+msgstr "Estadísticas de grupos"
+
+#: vhffs-panel/admin/group/index.pl:56
+msgid "Groups' administration"
+msgstr "Administración de los grupos"
+
+#: vhffs-intl/template_strings.pl:8
+msgid "Groups/Projects"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:181
+#, 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 ""
+"Hello %s %s,\n"
+"\n"
+"You changed your email, here are your new personal information :\n"
+"\n"
+"User: %s\n"
+"Mail: %s\n"
+"\n"
+"VHFFS administrators\n"
+
+#: vhffs-api/src/Vhffs/Object.pm:499
+#, perl-format
+msgid ""
+"Hello %s %s,\n"
+"\n"
+"Your %s (%s) on %s has been deleted.\n"
+"\n"
+"This is because it have been refused a long time ago and you didn't\n"
+"submit an update since.\n"
+"\n"
+"For reminder, the reason of refusal was:\n"
+"%s\n"
+"\n"
+"Don't be upset, submit it again if you forgot to update it in time.\n"
+"If you need further information, just reply to this email !\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
+msgstr ""
+"Hello %s %s,\n"
+"\n"
+"Your %s (%s) on %s has been deleted.\n"
+"\n"
+"This is because it have been refused a long time ago and you didn't\n"
+"submit an update since.\n"
+"\n"
+"For reminder, the reason of refusal was:\n"
+"%s\n"
+"\n"
+"Don't be upset, submit it again if you forgot to update it in time.\n"
+"If you need further information, just reply to this email !\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
+
+#: vhffs-api/src/Vhffs/User.pm:322
+#, perl-format
+msgid ""
+"Hello %s %s,\n"
+"\n"
+"Your account (%s) on %s has been deleted.\n"
+"\n"
+"This is because it was left unused for a long time\n"
+"\n"
+"Don't be upset, create it again and reply to this email to tell us\n"
+"why you really need to keep your account.\n"
+"If you need further information, just reply to this email !\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s\n"
+msgstr ""
+"Hello %s %s,\n"
+"\n"
+"Your account (%s) on %s has been deleted.\n"
+"\n"
+"This is because it was left unused for a long time\n"
+"\n"
+"Don't be upset, create it again and reply to this email to tell us\n"
+"why you really need to keep your account.\n"
+"If you need further information, just reply to this email !\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s\n"
+
+#: vhffs-api/src/Vhffs/Object.pm:404
+#, perl-format
+msgid ""
+"Hello %s %s,\n"
+"\n"
+"Your request for a %s (%s) on %s was accepted.\n"
+"Please wait while we are creating your object.\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
+msgstr ""
+"Hello %s %s,\n"
+"\n"
+"Your request for a %s (%s) on %s was accepted.\n"
+"Please wait while we are creating your object.\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
+
+#: vhffs-api/src/Vhffs/Object.pm:453
+#, perl-format
+msgid ""
+"Hello %s %s,\n"
+"\n"
+"Your request for a %s (%s) on %s was refused.\n"
+"\n"
+"The reason of refusal given by moderators is:\n"
+"%s\n"
+"\n"
+"You can change the description and submit it again for moderation on the\n"
+"panel. You can delete this object on the panel if you have made\n"
+"a mistake. Don't be upset, if you don't understand why your request has\n"
+"been refused, just reply to this email !\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
+msgstr ""
+"Hello %s %s,\n"
+"\n"
+"Your request for a %s (%s) on %s was refused.\n"
+"\n"
+"The reason of refusal given by moderators is:\n"
+"%s\n"
+"\n"
+"You can change the description and submit it again for moderation on the\n"
+"panel. Puede borrar este objeto de su panel si cometió \n"
+"un error . Don't be upset, if you don't understand why your request has\n"
+"been refused, just reply to this email !\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:502
+#, perl-format
+msgid "Hello %s, welcome in VHFFS !"
+msgstr "Hola %s, bienvenido a VHFFS !"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:46
+msgid "Hello and welcome on listengine help\n"
+msgstr "Bienvenido a la ayuda de listengine\n"
+
+#: vhffs-panel/user/prefs.pl:417 vhffs-panel/group/prefs.pl:233
+#: vhffs-api/src/Vhffs/Panel/Main.pm:437 vhffs-api/src/Vhffs/Panel/Main.pm:564
+#: vhffs-api/src/Vhffs/Panel/Main.pm:663 vhffs-api/src/Vhffs/Panel/Main.pm:818
+msgid "Help"
+msgstr "Ayuda"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:52
+msgid "Here are the basic listengine commands:\n"
+msgstr "Los comandos básicos de listengine son:\n"
+
+#: vhffs-panel/alert.pl:57
+msgid "Here, you can report a bug to the admin team"
+msgstr "Reportar un bug al equipo de administración"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:422
+#, perl-format
+msgid ""
+"His email address is:\n"
+" %s\n"
+msgstr ""
+"Su dirección de correo es:\n"
+" %s\n"
+
+#: vhffs-panel/history.pl:98 vhffs-panel/admin/object/list.pl:92
+#: vhffs-panel/admin/object/list.pl:99 vhffs-api/src/Vhffs/Panel/Main.pm:811
+msgid "History"
+msgstr "Historial"
+
+#: vhffs-panel/admin/object/edit.pl:198
+#: vhffs-api/src/Vhffs/Panel/Object.pm:203
+msgid "History of this object"
+msgstr "Historial de este objeto"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:434
+msgid "Home page"
+msgstr "Home page"
+
+#: vhffs-intl/template_strings.pl:46
+msgid "Homepage of public area"
+msgstr "Portada de la zona pública"
+
+#: vhffs-panel/dns/prefs.pl:295 vhffs-panel/dns/prefs.pl:380
+#: vhffs-panel/dns/prefs.pl:396
+msgid "Host"
+msgstr "Host"
+
+#: vhffs-panel/dns/prefs.pl:287
+msgid "Host of your name server"
+msgstr "Nombre de dominio de su servidor de nombres"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:165
+msgid "However this list require approval for new subscribers.\n"
+msgstr "Sin embargo, se requiere una aprobación par los nuevos inscritos.\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:120
+#, perl-format
+msgid "However you are (%s) already subscribed to this list.\n"
+msgstr "Sin embargo, Ud. ya está suscrito (%s) a esta lista.\n"
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:69
+msgid "I've lost my password"
+msgstr "Olvide mi contraseña"
+
+#: vhffs-panel/dns/prefs.pl:263
+msgid "IP"
+msgstr "IP"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:505
+msgid ""
+"If you are new to VHFFS, you should start to read quickly the whole help "
+"available by clicking on the help button in the upper right of your screen"
+msgstr ""
+"Si es nuevo en VHFFS, debería empezar por leer la documentación disponible, "
+"haga clic en el botón de ayuda, arriba a la derecha"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:88
+msgid ""
+"If you don't asked to be subscribed to this mailing list,\n"
+"just forget this email\n"
+msgstr ""
+"Si Ud. no solicitó una suscripción a esta lista,\n"
+"simplemente no tome en cuenta este correo\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:106
+msgid ""
+"If you haven't asked to be unsubscribed from this list,\n"
+"please don't answer to this mail\n"
+msgstr ""
+"Si Ud. no solicitó su desinscripción de esta lista,\n"
+"simplemente no tome en cuenta este correo\n"
+
+#: vhffs-panel/group/prefs.pl:203
+msgid ""
+"If you want more disk space for your project, you must fill a form in the "
+"bug report section, in the menu. Don't forget to mention the name of the "
+"group."
+msgstr ""
+"Si requiere de más espacio para su proyecto, tiene que llenar un formulario "
+"en la sección reportar bug, en el menu. No olvide mencionar le nombre del "
+"grupo."
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:197 vhffs-api/src/Vhffs/Panel/DNS.pm:209
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:239
+msgid "Invalid IP address"
+msgstr "Dirección IP inválida"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:227
+msgid "Invalid IP v6 address"
+msgstr "Dirección IP v6 inválida"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:297
+msgid "Invalid alias"
+msgstr "Alias inválido"
+
+#: vhffs-panel/pgsql/create.pl:86 vhffs-panel/mysql/create.pl:86
+msgid ""
+"Invalid database name, it must contain only numbers, lowercase letters and "
+"underscore (the latter isn't allowed in first or last position) and be "
+"between 3 and 32 characters."
+msgstr ""
+"Nombre inválido para la base de datos, sólo puede contener cifras, letras en "
+"minúscula y underscore (el último no está autorizado en la primera y última "
+"posición). El nombre debe tener entre 3 y 32 caracteres."
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:286
+msgid "Invalid destination"
+msgstr "Destino inválido"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:311 vhffs-api/src/Vhffs/Panel/DNS.pm:327
+msgid "Invalid destination domain name"
+msgstr "Destino de nombre de dominio inválido"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:298
+msgid "Invalid destination host"
+msgstr "Host de destino inválido"
+
+#: vhffs-panel/dns/create.pl:51 vhffs-panel/mail/create.pl:76
+msgid "Invalid domain name"
+msgstr "Nombre de dominio inválido"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:263
+msgid "Invalid host"
+msgstr "Host inválido"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:249 vhffs-api/src/Vhffs/Panel/DNS.pm:273
+msgid "Invalid hostname"
+msgstr "Hostname inválido"
+
+#: vhffs-panel/mailinglist/create.pl:85
+msgid "Invalid local part"
+msgstr "Parte local inválida"
+
+#: vhffs-panel/git/prefs.pl:188
+msgid "Invalid mailing list address"
+msgstr "Dirección de lista de correo inválida"
+
+#: vhffs-panel/pgsql/create.pl:88
+msgid "Invalid password. It must be at least 3 chars"
+msgstr "Contraseña inválida. Debe tener por lo menos 3 caracteres"
+
+#: vhffs-panel/mysql/create.pl:88
+msgid "Invalid password. It must contain at least 3 characters"
+msgstr "Contraseña inválida. Debe contener por lo menos 3 caracteres"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:312 vhffs-api/src/Vhffs/Panel/DNS.pm:328
+msgid "Invalid port"
+msgstr "Puerto inválido"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:194 vhffs-api/src/Vhffs/Panel/DNS.pm:224
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:341
+msgid "Invalid prefix"
+msgstr "Prefijo inválido"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:250 vhffs-api/src/Vhffs/Panel/DNS.pm:313
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:329
+msgid "Invalid priority"
+msgstr "Prioridad inválida"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:309
+msgid "Invalid protocol syntax"
+msgstr "Sintaxis del protocolo inválida"
+
+#: vhffs-panel/group/prefs.pl:274 vhffs-panel/repository/prefs.pl:120
+msgid "Invalid quota"
+msgstr "Cuota inválida"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:159 vhffs-api/src/Vhffs/Panel/DNS.pm:207
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:237 vhffs-api/src/Vhffs/Panel/DNS.pm:261
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:284 vhffs-api/src/Vhffs/Panel/DNS.pm:325
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:352
+msgid "Invalid record"
+msgstr "Registro inválido"
+
+#: vhffs-panel/svn/create.pl:81 vhffs-panel/git/create.pl:81
+#: vhffs-panel/cvs/create.pl:82
+msgid ""
+"Invalid reponame. It must contain between 3 and 64 characters, only "
+"lowercase letters and numbers"
+msgstr ""
+"Nombre de repositorio inválido. Debe tener entre 3 y 64 caracteres, letras "
+"en minúsculas y cifras"
+
+#: vhffs-panel/web/create.pl:79
+msgid "Invalid servername (doesn't conform to domain names rules)"
+msgstr "Servername inválido (no cumple con las reglas de nombres de dominio)"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:310
+msgid "Invalid service syntax"
+msgstr "Sintaxis de servicio inválida"
+
+#: vhffs-panel/subscribe.pl:115
+msgid ""
+"Invalid username, it must contain between 3 and 12 alphanumeric characters, "
+"all in lowercase"
+msgstr ""
+"Nombre de usuario inválido, debe contener de 3 a 12 caracteres "
+"alfanuméricos, todos en minúscula"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:314 vhffs-api/src/Vhffs/Panel/DNS.pm:330
+msgid "Invalid weight"
+msgstr "Peso inválido"
+
+#: vhffs-panel/cvs/prefs.pl:111
+msgid "Is this CVS repository public ??"
+msgstr "¿Es un repositorio CVS público?"
+
+#: vhffs-panel/svn/prefs.pl:92 vhffs-panel/git/prefs.pl:100
+msgid "Is this a public repository ?"
+msgstr "¿Es un repositorio público?"
+
+#: vhffs-panel/user/prefs.pl:311
+msgid "Language"
+msgstr "Idioma"
+
+#: vhffs-intl/template_strings.pl:9 vhffs-intl/template_strings.pl:48
+msgid "Last Groups"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:47
+msgid "Last Users"
+msgstr ""
+
+#: vhffs-public/lastgroups.pl:58
+#, perl-format
+msgid "Last groups on %s"
+msgstr "Últimos grupos en %s"
+
+#: vhffs-intl/template_strings.pl:2
+msgid "Last users"
+msgstr "Últimos usuarios"
+
+#: vhffs-public/lastusers.pl:60
+#, perl-format
+msgid "Last users on %s"
+msgstr "Últimos usuarios en %s"
+
+#: vhffs-panel/subscribe.pl:226 vhffs-panel/user/prefs.pl:304
+#: vhffs-intl/template_strings.pl:6 vhffs-intl/template_strings.pl:36
+msgid "Lastname"
+msgstr "Apellido"
+
+#: vhffs-panel/user/prefs.pl:123
+msgid "Lastname is not correct !"
+msgstr "¡El apellido no es correcto!"
+
+#: vhffs-panel/dns/prefs.pl:236
+msgid "List all A reccords"
+msgstr "Lista de los registros A"
+
+#: vhffs-panel/dns/prefs.pl:237
+msgid "List all AAAA reccords"
+msgstr "Lista de los registros AAAA"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:185
+msgid "List all CVS repos"
+msgstr "Lista de los repositorios CVS"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:203
+msgid "List all Git repos"
+msgstr "Lista de los repositorios Git"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:220
+msgid "List all MySQL databases"
+msgstr "Lista de las bases MySQL"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:237
+msgid "List all Pg databases"
+msgstr "Lista de las bases Pg"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:167
+msgid "List all SVN repos"
+msgstr "Lista de los repositorios SVN"
+
+#: vhffs-panel/dns/prefs.pl:303
+msgid "List all TXT records"
+msgstr "Lista de los registros TXT"
+
+#: vhffs-panel/mail/prefs.pl:112
+msgid "List all accounts"
+msgstr "Lista de las cuentas usuarios"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:290
+msgid "List all domain names"
+msgstr "Lista de los nombres de dominio"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:308
+msgid "List all download repositories"
+msgstr "Lista de los repositorios de download"
+
+#: vhffs-panel/mail/prefs.pl:121
+msgid "List all forwardings for this domain"
+msgstr "Lista de las redirecciones para este dominio"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:132
+msgid "List all groups"
+msgstr "Lista de los grupos"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:254
+msgid "List all mail domains"
+msgstr "Lista de los dominios mail"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:272
+msgid "List all mailing lists"
+msgstr "Lista de las listas de correo"
+
+#: vhffs-panel/mailinglist/prefs.pl:147
+msgid "List all members"
+msgstr "Lista de los miembros"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:96
+msgid "List all objects"
+msgstr "Lista de los objetos"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:115
+msgid "List all users"
+msgstr "Lista de los usuarios"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:150
+msgid "List all webareas"
+msgstr "Lista de las zonas web"
+
+#: vhffs-panel/admin/cvs/list.pl:73
+msgid "List of all CVS repositories"
+msgstr "Lista de todos los repositorios CVS"
+
+#: vhffs-panel/admin/repository/list.pl:72
+msgid "List of all Download repositories"
+msgstr "Lista de todos los repositorios de download"
+
+#: vhffs-panel/admin/mysql/list.pl:79
+msgid "List of all MySQL databases"
+msgstr "Lista de todas las base MySQL"
+
+#: vhffs-panel/admin/pgsql/list.pl:73
+msgid "List of all PostgreSQL databases"
+msgstr "Lista de todas las base PostgreSQL"
+
+#: vhffs-panel/admin/dns/list.pl:72
+msgid "List of all domains"
+msgstr "Lista de todos los dominios"
+
+#: vhffs-panel/admin/group/list.pl:73
+msgid "List of all groups"
+msgstr "Lista de todos los grupos"
+
+#: vhffs-panel/admin/mail/list.pl:72
+msgid "List of all mail-domain"
+msgstr "Lista de todos los dominios mail"
+
+#: vhffs-panel/admin/mailinglist/list.pl:76
+msgid "List of all mailing-list"
+msgstr "Lista de todas las listas"
+
+#: vhffs-panel/admin/user/list.pl:67
+msgid "List of all users"
+msgstr "Lista de todos los usuarios"
+
+#: vhffs-panel/admin/web/list.pl:67 vhffs-intl/template_strings.pl:49
+msgid "List of all websites"
+msgstr "Lista de todas las zonas web"
+
+#: vhffs-panel/mailinglist/prefs.pl:222
+msgid "List updated"
+msgstr "Lista modificada"
+
+#: vhffs-panel/mailinglist/delete.pl:95
+msgid "List will NOT be deleted"
+msgstr "La lista NO será destruida"
+
+#: vhffs-panel/admin/stats.pl:166
+msgid "Listengine stats"
+msgstr "Estadísticas Listengine"
+
+#: vhffs-panel/mail/prefs.pl:124
+msgid "Local Part"
+msgstr "Parte local"
+
+#: vhffs-panel/mail/prefs.pl:115
+msgid "Local Part for this account"
+msgstr "Parte local de esto cuenta"
+
+#: vhffs-panel/lost_ack.pl:75 vhffs-panel/lost_ack.pl:83
+msgid "Login"
+msgstr "Login"
+
+#: vhffs-panel/auth.pl:72
+msgid "Login failed !"
+msgstr "¡Fracaso del Login!"
+
+#: vhffs-panel/group/prefs.pl:245
+msgid "Logo"
+msgstr "Logo"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:439
+msgid "Logout"
+msgstr "Desconexión"
+
+#: vhffs-intl/template_strings.pl:69 vhffs-intl/template_strings.pl:74
+msgid "MB"
+msgstr "MB"
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:73 vhffs-api/src/Vhffs/Panel/Menu.pm:122
+msgid "ML"
+msgstr "Listas"
+
+#: vhffs-panel/dns/prefs.pl:152
+msgid "MX Record added"
+msgstr "Registro MX añadido"
+
+#: vhffs-panel/dns/prefs.pl:147
+msgid "MX Record deleted"
+msgstr "Registro MX borrado"
+
+#: vhffs-panel/dns/prefs.pl:142
+msgid "MX Record updated"
+msgstr "Registro MX modificado"
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:72 vhffs-api/src/Vhffs/Panel/Menu.pm:121
+msgid "Mail"
+msgstr "Mail"
+
+#: vhffs-panel/mail/prefs.pl:101
+msgid "Mail Administration for domain "
+msgstr "Mail de administración para este dominio "
+
+#: vhffs-intl/extra_strings.pl:44
+msgid "Mail Domain"
+msgstr "Dominio mail"
+
+#: vhffs-panel/user/prefs.pl:282
+msgid "Mail deleted"
+msgstr "Cuenta de correo borrada"
+
+#: vhffs-panel/mail/create.pl:80
+msgid "Mail domain successfully created !"
+msgstr "Dominio mail creado con éxito!"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:257
+msgid "Mail domains Admin"
+msgstr "Administración de dominios mail"
+
+#: vhffs-panel/mail/index.pl:60
+#, perl-format
+msgid "Mail domains for %s"
+msgstr "Dominios mail para %s"
+
+#: vhffs-panel/admin/mail/index.pl:56
+msgid "Mail domains' administration"
+msgstr "Administración de dominios mail"
+
+#: vhffs-panel/mailinglist/create.pl:107
+msgid "Mail for the list"
+msgstr "Mail para la lista"
+
+#: vhffs-panel/admin/stats.pl:139
+msgid "Mail stats"
+msgstr "Estadísticas Mail"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:98
+msgid "Mail to all hosted people"
+msgstr "Mail a todos los usuarios"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:371
+#, perl-format
+msgid "Mail with id %s"
+msgstr "Mail con id %s"
+
+#: vhffs-panel/user/prefs.pl:180
+msgid "Mailbox modified"
+msgstr "Buzón modificado"
+
+#: vhffs-panel/user/prefs.pl:223
+msgid "Mailbox successfully added"
+msgstr "Buzón %s creado"
+
+#: vhffs-panel/admin/mailinglist/list.pl:79 vhffs-intl/extra_strings.pl:45
+msgid "Mailing List"
+msgstr "Lista de correo"
+
+#: vhffs-intl/template_strings.pl:31
+msgid "Mailing Lists for this group"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:81
+#, perl-format
+msgid "Mailing list %s@%s not found"
+msgstr "No se encontró la lista de correo %s@%s"
+
+#: vhffs-panel/svn/prefs.pl:157
+msgid "Mailing list address is invalid"
+msgstr "Dirección de la lista inválida"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:275
+msgid "Mailing lists Admin"
+msgstr "Admin listas de correo"
+
+#: vhffs-panel/mailinglist/index.pl:60
+#, perl-format
+msgid "Mailing lists for %s"
+msgstr "Lista de correo para %s"
+
+#: vhffs-panel/admin/mailinglist/index.pl:56
+msgid "Mailing lists' administration"
+msgstr "Admin listas de correo"
+
+#: vhffs-panel/admin/broadcast_submit.pl:92
+msgid "Mailing successfully added"
+msgstr "Lista de correo creada con éxito"
+
+#: vhffs-panel/admin/broadcast_delete.pl:92
+msgid "Mailing successfully deleted"
+msgstr "Lista de correo borrada con éxito"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:99
+msgid "Manage mailings"
+msgstr "Administración listas de correo"
+
+#: vhffs-panel/mailinglist/prefs.pl:146
+msgid "Manage members"
+msgstr "Administrar miembros"
+
+#: vhffs-panel/group/prefs.pl:152
+msgid "Many users matched your query. Please choose between them"
+msgstr "Varios usuarios corresponden a su búsqueda. Escoja entre ellos"
+
+#: vhffs-panel/mailinglist/prefs.pl:114
+msgid "Members only"
+msgstr "Sólo miembros"
+
+#: vhffs-panel/mailinglist/prefs.pl:115
+msgid "Members only and moderated"
+msgstr "Sólo miembros y moderado"
+
+#: vhffs-panel/admin/broadcast.pl:80
+msgid "Message"
+msgstr "Mensaje"
+
+#: vhffs-panel/alert_submit.pl:65
+msgid "Message sent by the following account"
+msgstr "Mensaje enviado por la cuenta siguiente"
+
+#: vhffs-panel/alert_submit.pl:68
+msgid "Message sent successfully"
+msgstr "Mensaje enviado con éxito"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:336 vhffs-api/src/Vhffs/Listengine.pm:353
+#, perl-format
+msgid "Message with id: %s"
+msgstr "Mensaje con el id: %s"
+
+#: vhffs-panel/mailinglist/prefs.pl:112
+msgid "Moderated for everyone"
+msgstr "Moderado para todo el mundo"
+
+#: vhffs-panel/admin/moderation.pl:74 vhffs-api/src/Vhffs/Panel/Admin.pm:77
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:95 vhffs-api/src/Vhffs/Panel/Menu.pm:92
+msgid "Moderation"
+msgstr "Moderación"
+
+#: vhffs-intl/template_strings.pl:62
+msgid "Moderator"
+msgstr "Moderador"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:429
+msgid "Moderator account"
+msgstr "Cuenta moderador:"
+
+#: vhffs-panel/admin/object/edit.pl:126 vhffs-intl/extra_strings.pl:30
+#: vhffs-api/src/Vhffs/Panel/Object.pm:131
+msgid "Modification applied"
+msgstr "Modificación realizada"
+
+#: vhffs-panel/admin/object/edit.pl:125 vhffs-intl/extra_strings.pl:29
+#: vhffs-api/src/Vhffs/Panel/Object.pm:130
+msgid "Modification error"
+msgstr "Error durante la modificación"
+
+#: vhffs-panel/admin/moderation_submit.pl:98
+msgid "Modifications applied successfully"
+msgstr "Modificaciones realizadas con éxito"
+
+#: vhffs-panel/svn/prefs.pl:163 vhffs-panel/git/prefs.pl:152
+#: vhffs-panel/git/prefs.pl:197
+msgid ""
+"Modifications applied. Please wait while your repository is being updated"
+msgstr ""
+"Modificaciones aplicadas. Por favor, espere mientras se actualice el "
+"repositorio"
+
+#: vhffs-panel/svn/prefs.pl:95 vhffs-panel/user/prefs.pl:314
+#: vhffs-panel/dns/prefs.pl:315 vhffs-panel/dns/prefs.pl:327
+#: vhffs-panel/dns/prefs.pl:340 vhffs-panel/dns/prefs.pl:351
+#: vhffs-panel/dns/prefs.pl:378 vhffs-panel/dns/prefs.pl:394
+#: vhffs-panel/acl/view.pl:105 vhffs-panel/pgsql/prefs.pl:97
+#: vhffs-panel/group/prefs.pl:211 vhffs-panel/group/prefs.pl:229
+#: vhffs-panel/admin/mailinglist/list.pl:88 vhffs-panel/admin/svn/list.pl:79
+#: vhffs-panel/admin/user/list.pl:79 vhffs-panel/admin/dns/list.pl:84
+#: vhffs-panel/admin/pgsql/list.pl:85 vhffs-panel/admin/group/list.pl:89
+#: vhffs-panel/admin/repository/list.pl:84 vhffs-panel/admin/git/list.pl:81
+#: vhffs-panel/admin/mysql/list.pl:92 vhffs-panel/admin/cvs/list.pl:84
+#: vhffs-panel/admin/mail/list.pl:84 vhffs-panel/git/prefs.pl:103
+#: vhffs-panel/web/prefs.pl:101 vhffs-panel/mysql/prefs.pl:109
+#: vhffs-panel/cvs/prefs.pl:114
+msgid "Modify"
+msgstr "Modificar"
+
+#: vhffs-panel/dns/prefs.pl:260
+msgid "Must we redirect the DNS on our servers ?"
+msgstr "Debemos redirigir los DNS a nuestros servidores?"
+
+#: vhffs-panel/group/index.pl:54 vhffs-api/src/Vhffs/Panel/Main.pm:436
+msgid "My Projects"
+msgstr "Mis proyectos"
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:65 vhffs-api/src/Vhffs/Panel/Menu.pm:114
+msgid "MySQL"
+msgstr "MySQL"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:223
+msgid "MySQL Admin"
+msgstr "Admin MySQL "
+
+#: vhffs-panel/mysql/prefs.pl:93
+msgid "MySQL Administration"
+msgstr "Administración MySQL"
+
+#: vhffs-intl/extra_strings.pl:39
+msgid "MySQL DB"
+msgstr "BD MySQL"
+
+#: vhffs-panel/mysql/index.pl:60
+#, perl-format
+msgid "MySQL DBs for %s"
+msgstr "BD MySQL para %s"
+
+#: vhffs-panel/mysql/create.pl:105
+msgid "MySQL database name "
+msgstr "Nombre de la base de datos MySQL "
+
+#: vhffs-panel/admin/mysql/index.pl:56
+msgid "MySQL databases' administration"
+msgstr "Administración de las bases de datos MySQL"
+
+#: vhffs-panel/mysql/create.pl:107
+msgid "MySQL password for this database "
+msgstr "Contraseña para esta base de datos MySQL "
+
+#: vhffs-panel/admin/stats.pl:151
+msgid "MySQL stats"
+msgstr "Estadísticas MySQL"
+
+#: vhffs-panel/dns/prefs.pl:161
+msgid "NS Record added"
+msgstr "Registro NS añadido"
+
+#: vhffs-panel/dns/prefs.pl:157
+msgid "NS Record deleted"
+msgstr "Registro NS borrado"
+
+#: vhffs-panel/dns/prefs.pl:284
+msgid "NS TYPE"
+msgstr "NS TYPE"
+
+#: vhffs-panel/group/history.pl:79 vhffs-panel/admin/moderation.pl:85
+msgid "Name"
+msgstr "Nombre"
+
+#: vhffs-panel/dns/prefs.pl:264
+msgid "Name for reccord"
+msgstr "Nombre de este registro"
+
+#: vhffs-panel/dns/prefs.pl:307
+msgid "Name for record"
+msgstr "Nombre de este registro"
+
+#: vhffs-panel/pgsql/prefs.pl:84 vhffs-panel/mysql/prefs.pl:95
+msgid "Name of the database"
+msgstr "Nombre de la base de datos"
+
+#: vhffs-panel/dns/prefs.pl:271
+msgid "Name of your MX"
+msgstr "Nombre de su MX"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:812
+msgid "New"
+msgstr "Nuevo"
+
+#: vhffs-intl/template_strings.pl:68 vhffs-intl/template_strings.pl:73
+msgid "New Quota"
+msgstr "Nueva cuota"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:271
+#, perl-format
+msgid "New language is: %s\n"
+msgstr "Nuevo idioma es: %s\n"
+
+#: vhffs-panel/svn/prefs.pl:94 vhffs-panel/dns/prefs.pl:262
+#: vhffs-panel/git/prefs.pl:102 vhffs-panel/cvs/prefs.pl:113
+#: vhffs-intl/template_strings.pl:83 vhffs-intl/template_strings.pl:86
+msgid "No"
+msgstr "No"
+
+#: vhffs-panel/dns/prefs.pl:319
+msgid "No A type found"
+msgstr "No se encontró tipo A"
+
+#: vhffs-panel/dns/prefs.pl:331
+msgid "No AAAA type found"
+msgstr "No se encontró tipo AAAA"
+
+#: vhffs-panel/dns/prefs.pl:358
+msgid "No CNAME available on this domain"
+msgstr "No se encontró registro CNAME para este dominio"
+
+#: vhffs-panel/dns/prefs.pl:345
+msgid "No MX reccord for this domain"
+msgstr "No se encontró registro MX para este dominio"
+
+#: vhffs-panel/dns/prefs.pl:371
+msgid "No NS available on this domain"
+msgstr "No se encontró registro NS para este dominio"
+
+#: vhffs-panel/dns/prefs.pl:387
+msgid "No SRV available on this domain"
+msgstr "No se encontró registro SRV para este dominio"
+
+#: vhffs-panel/dns/prefs.pl:400
+msgid "No TXT available on this domain"
+msgstr "No se encontró registro TXT para este dominio"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:345
+msgid "No cookie found, please accept the cookie and then please login again !"
+msgstr ""
+"No hay cookie, por favor, acepte los cookies y luego conectase otra vez!"
+
+#: vhffs-panel/object/upavatar.pl:105
+msgid "No enough rights"
+msgstr "No tiene suficiente derechos"
+
+#: vhffs-panel/group/history.pl:83
+msgid "No event about this group"
+msgstr "No hay evento sobre este objeto"
+
+#: vhffs-panel/history.pl:106 vhffs-panel/admin/object/edit.pl:204
+#: vhffs-api/src/Vhffs/Panel/Object.pm:208
+msgid "No event about this object"
+msgstr "No hay evento sobre este objeto"
+
+#: vhffs-intl/template_strings.pl:44
+msgid "No group"
+msgstr "No hay grupos"
+
+#: vhffs-public/groupsearch.pl:74
+msgid "No group found"
+msgstr ""
+
+#: vhffs-listengine/src/listengine.pl:775
+msgid "No message to moderate"
+msgstr "No hay mensaje por moderar"
+
+#: vhffs-public/group.pl:79
+msgid "No such group"
+msgstr "El grupo no existe"
+
+#: vhffs-intl/template_strings.pl:22
+msgid "No user"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:255
+msgid "No user for this group"
+msgstr "No hay usuario para este grupo"
+
+#: vhffs-public/usersearch.pl:75
+msgid "No user found"
+msgstr ""
+
+#: vhffs-public/websitesearch.pl:74
+msgid "No website found"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:24
+msgid "No websites"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:329 vhffs-panel/dns/prefs.pl:255
+#: vhffs-panel/web/prefs.pl:112
+msgid "No, I'm not sure, I prefer to keep it."
+msgstr "No, no estoy seguro, prefiero conservarlo."
+
+#: vhffs-panel/mailinglist/prefs.pl:182 vhffs-panel/svn/prefs.pl:100
+#: vhffs-panel/pgsql/prefs.pl:102 vhffs-panel/group/prefs.pl:216
+#: vhffs-panel/repository/prefs.pl:92 vhffs-panel/git/prefs.pl:108
+#: vhffs-panel/mysql/prefs.pl:114 vhffs-panel/cvs/prefs.pl:119
+#: vhffs-panel/mail/prefs.pl:139
+msgid "No, I'm not sure, I prefer to keep this project."
+msgstr "No, no estoy seguro, prefiero conservar este proyecto."
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:813
+msgid "None"
+msgstr "Ninguno"
+
+#: vhffs-intl/template_strings.pl:61
+msgid "Normal"
+msgstr "Normal"
+
+#: vhffs-panel/svn/prefs.pl:109 vhffs-panel/git/prefs.pl:120
+msgid "Notify changes on mailing-list :"
+msgstr "Notificar cambio en la lista de correo :"
+
+#: vhffs-panel/admin/object/list.pl:88
+msgid "Object ID"
+msgstr "Objeto ID"
+
+#: vhffs-panel/object/quickdelete.pl:103
+msgid "Object deletion"
+msgstr "Destrucción del objeto"
+
+#: vhffs-panel/admin/object/edit.pl:94 vhffs-api/src/Vhffs/Panel/Object.pm:98
+msgid "Object id"
+msgstr "Objeto id"
+
+#: vhffs-panel/object/resubmit.pl:122
+msgid "Object name"
+msgstr "Nombre del objeto"
+
+#: vhffs-panel/admin/object/edit_submit.pl:95
+msgid "Object successfully updated"
+msgstr "Objeto actualizado con éxito"
+
+#: vhffs-panel/object/resubmit.pl:119
+msgid "Object type"
+msgstr "Tipo de objeto"
+
+#: vhffs-panel/object/upavatar.pl:97
+msgid "Object-ID error"
+msgstr "Error ID objeto"
+
+#: vhffs-panel/svn/prefs.pl:106 vhffs-panel/dns/prefs.pl:247
+#: vhffs-panel/git/prefs.pl:114 vhffs-panel/web/prefs.pl:105
+#: vhffs-panel/mail/prefs.pl:145
+msgid "Ok, go to ACL admin"
+msgstr "Ok, ir a la gestión de ACL"
+
+#: vhffs-panel/admin/broadcast.pl:81
+msgid "Ok, send it !"
+msgstr "Ok, envialo!"
+
+#: vhffs-panel/group/prefs.pl:279 vhffs-panel/repository/prefs.pl:114
+msgid "Only administrators are allowed to do this"
+msgstr "Sólo los administradores están autorizado a hacer esto"
+
+#: vhffs-panel/user/prefs.pl:463
+msgid "Only administrators can do this"
+msgstr "Sólo los administradores pueden hacer esto"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:58
+msgid "Only this list administrators can use the following commands.\n"
+msgstr "Sólo los administradores pueden utilizar los comandos siguientes.\n"
+
+#: vhffs-panel/mailinglist/prefs.pl:111
+msgid "Open for everyone"
+msgstr "Abierto a todos"
+
+#: vhffs-panel/mailinglist/prefs.pl:113
+msgid "Open for members, moderated for non-members"
+msgstr "Abierto a los miembros, moderado para los no-miembros"
+
+#: vhffs-panel/mailinglist/prefs.pl:108
+msgid "Open, approval required"
+msgstr "Abierto, requiere aprobación"
+
+#: vhffs-panel/mailinglist/prefs.pl:107
+msgid "Open, no approval required"
+msgstr "Abierto, no requiere aprobación"
+
+#: vhffs-panel/mailinglist/prefs.pl:105 vhffs-panel/svn/prefs.pl:108
+#: vhffs-panel/git/prefs.pl:119 vhffs-intl/template_strings.pl:76
+msgid "Options"
+msgstr "Opciones"
+
+#: vhffs-intl/template_strings.pl:33 vhffs-intl/template_strings.pl:37
+msgid "Owned by"
+msgstr "Pertenece a"
+
+#: vhffs-panel/group/create.pl:88
+msgid "Owner"
+msgstr "Propietario"
+
+#: vhffs-panel/admin/object/list.pl:90
+msgid "Owner group"
+msgstr "Grupo propietario"
+
+#: vhffs-panel/admin/group/list.pl:81
+msgid "Owner name"
+msgstr "Nombre del propietario"
+
+#: vhffs-panel/admin/object/list.pl:89
+msgid "Owner user"
+msgstr "Usuario propietario"
+
+#: vhffs-panel/user/prefs.pl:309 vhffs-panel/mail/prefs.pl:116
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:67
+msgid "Password"
+msgstr "Contraseña"
+
+#: vhffs-panel/pgsql/prefs.pl:135 vhffs-panel/mysql/prefs.pl:146
+msgid "Password change request taken in account, please wait for processing"
+msgstr "Solicitud de cambio de contraseña recibida, por favor espere"
+
+#: vhffs-panel/user/prefs.pl:168
+msgid "Password changed"
+msgstr "Contraseña modificada"
+
+#: vhffs-panel/pgsql/prefs.pl:90 vhffs-panel/mysql/prefs.pl:101
+msgid "Password for this database"
+msgstr "Contraseña para esta base de datos"
+
+#: vhffs-panel/lost_ack.pl:82
+msgid "Password recovery failed!"
+msgstr "¡Fracaso en la recuperación de la contraseña!"
+
+#: vhffs-panel/user/prefs.pl:141
+msgid "Passwords don't match"
+msgstr "Las contraseñas no corresponden"
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:66 vhffs-api/src/Vhffs/Panel/Menu.pm:115
+msgid "PgSQL"
+msgstr "PgSQL"
+
+#: vhffs-intl/extra_strings.pl:40
+msgid "PgSQL DB"
+msgstr "BD MySQL"
+
+#: vhffs-panel/admin/stats.pl:158
+msgid "PgSQL stats"
+msgstr "Estadísticas PgSQL"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:324
+msgid "Platform temporary closed."
+msgstr "Plataforma cerrada temporalmente"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:313
+msgid "Platform temporary closed<br/>database error"
+msgstr "Plataforma cerrada<br/>error en la base de datos"
+
+#: vhffs-panel/group/create.pl:92 vhffs-panel/object/resubmit.pl:131
+#: vhffs-panel/web/create.pl:104
+msgid ""
+"Please consider that this description is going to be displayed in the public "
+"area. So you have to write it in impersonal form. You should take care to "
+"write it with correct grammar and tenses. Take all the time you need to fill "
+"it with the best content you are able to do."
+msgstr ""
+"Tome en cuenta que esta descripción aparecerá en la zona pública. Escriba en "
+"forma impersonal. Debe tener cuidado con la gramática y la ortografía. Tome "
+"su tiempo para colocar el contenido el más adecuado."
+
+#: vhffs-panel/subscribe.pl:159
+msgid "Please enter a correct city"
+msgstr "Escribe una ciudad válida, por favor"
+
+#: vhffs-panel/subscribe.pl:163
+msgid "Please enter a correct country"
+msgstr "Entre un nombre de país válido"
+
+#: vhffs-panel/subscribe.pl:151
+msgid "Please enter a correct firstname"
+msgstr "Escribe un nombre válido"
+
+#: vhffs-panel/subscribe.pl:155
+msgid "Please enter a correct lastname"
+msgstr "Entre un apellido válido"
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:64
+msgid "Please enter your username and password"
+msgstr "Escribe su nombre de usuario y su contraseña"
+
+#: vhffs-panel/subscribe.pl:222
+msgid ""
+"Please fill in all fields, a mail containing your password will be sent to "
+"you"
+msgstr "Llena los campos. Recibirá un email con su contraseña"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:299
+msgid "Please read help of listengine\n"
+msgstr "Por favor, lea la ayuda de listengine\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:196
+msgid "Please try again !\n"
+msgstr "Intente otra vez!\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:242
+msgid "Please try again.\n"
+msgstr "Intente otra vez!\n"
+
+#: vhffs-panel/lost_ack.pl:74
+#, perl-format
+msgid "Please wait %s, a new password will be sent to you in a few minutes..."
+msgstr "Espere %s, una nueva contraseña os será enviada en algunos minutos..."
+
+#: vhffs-panel/subscribe.pl:189
+msgid ""
+"Please wait while we are creating the account, it will take some minutes"
+msgstr ""
+"Espere mientras se procede a la creación de su cuenta. Esto puede tomar "
+"algunos minutos"
+
+#: vhffs-panel/dns/prefs.pl:296 vhffs-panel/dns/prefs.pl:381
+msgid "Port"
+msgstr "Puerto"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:240
+msgid "PostgreSQL Admin"
+msgstr "Admin PostgreSQL "
+
+#: vhffs-panel/pgsql/prefs.pl:82
+msgid "PostgreSQL Administration"
+msgstr "Administración PostgreSQL"
+
+#: vhffs-panel/pgsql/index.pl:60
+#, perl-format
+msgid "PostgreSQL DBs for %s"
+msgstr "BD PostgreSQL para %s"
+
+#: vhffs-panel/pgsql/create.pl:105
+msgid "PostgreSQL database name "
+msgstr "Nombre de la base de datos PostgreSQL "
+
+#: vhffs-panel/admin/pgsql/index.pl:56
+msgid "PostgreSQL databases' administration"
+msgstr "Administración de las bases de datos PostgreSQL"
+
+#: vhffs-panel/pgsql/create.pl:107
+msgid "PostgreSQL password for this database "
+msgstr "Contraseña PostgreSQL para esta base de datos "
+
+#: vhffs-panel/mailinglist/prefs.pl:110
+msgid "Posting control:"
+msgstr "Control de los envíos:"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:558
+msgid "Preferences"
+msgstr "Preferencias"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:195 vhffs-api/src/Vhffs/Panel/DNS.pm:225
+msgid "Prefix already exists"
+msgstr "Este prefijo ya existe"
+
+#: vhffs-panel/mailinglist/prefs.pl:138
+msgid "Prefix on subject"
+msgstr "Prefijo colocado delante del título"
+
+#: vhffs-panel/dns/prefs.pl:297 vhffs-panel/dns/prefs.pl:382
+msgid "Priority"
+msgstr "Prioridad"
+
+#: vhffs-panel/dns/prefs.pl:272
+msgid "Priority of your MX"
+msgstr "Prioridad de su MX"
+
+#: vhffs-panel/dns/prefs.pl:341
+msgid "Priority: "
+msgstr "Prioridad: "
+
+#: vhffs-panel/group/prefs.pl:207
+msgid "Project Description"
+msgstr "Descripción del proyecto"
+
+#: vhffs-panel/group/history.pl:75
+msgid "Project History"
+msgstr "Historial del proyecto"
+
+#: vhffs-panel/group/create.pl:85
+msgid "Project Name"
+msgstr "Nombre del proyecto"
+
+#: vhffs-panel/group/prefs.pl:205
+msgid "Project Owner"
+msgstr "Propietario del objeto"
+
+#: vhffs-panel/group/prefs.pl:201
+msgid "Project Preferences"
+msgstr "Preferencias del proyecto"
+
+#: vhffs-panel/group/create.pl:76
+msgid "Project Successfully created !"
+msgstr "¡Proyecto creado con éxito!"
+
+#: vhffs-panel/group/prefs.pl:226
+msgid "Project contact"
+msgstr "Contacto del proyecto"
+
+#: vhffs-panel/group/prefs.pl:209 vhffs-panel/group/create.pl:87
+msgid "Project full name"
+msgstr "Nombre completo del proyecto"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:451
+msgid "Project home"
+msgstr "Portada del proyecto"
+
+#: vhffs-panel/group/index.pl:62
+msgid "Projects you contribute to"
+msgstr "Proyecto a los cuales contribuye"
+
+#: vhffs-panel/group/index.pl:64 vhffs-panel/object/resubmit.pl:108
+#: vhffs-api/src/Vhffs/Panel/Main.pm:809
+msgid "Propose a new description"
+msgstr "Proponer una nueva descripción"
+
+#: vhffs-panel/dns/prefs.pl:293
+msgid "Protocol"
+msgstr "Protocolo"
+
+#: vhffs-panel/svn/prefs.pl:91 vhffs-panel/git/prefs.pl:99
+msgid "Public"
+msgstr "Público"
+
+#: vhffs-panel/mailinglist/prefs.pl:136
+msgid "Public archives"
+msgstr "Archivos públicos"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:70
+msgid "Public area is not available on this platform."
+msgstr "No hay zonas públicas en esta plataforma."
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:69
+msgid "Public area not available"
+msgstr "No hay zonas públicas"
+
+#: vhffs-panel/repository/prefs.pl:85 vhffs-api/src/Vhffs/Panel/Main.pm:550
+#, perl-format
+msgid "Quota (used/total) : %s/%s"
+msgstr "Cuota (usado/total) : %s/%s"
+
+#: vhffs-public/rss/lastgroups.pl:103 vhffs-public/rss/lastusers.pl:102
+msgid "RSS infos are not published"
+msgstr "Las informaciones RSS no serán publicadas"
+
+#: vhffs-panel/admin/user/list.pl:71
+msgid "Real Name"
+msgstr "Nombre real"
+
+#: vhffs-panel/object/resubmit.pl:125
+msgid "Reason of refusal"
+msgstr "Motivo de rechazo"
+
+#: vhffs-panel/subscribe.pl:239
+msgid "Recopy the code"
+msgstr "Copiar el código"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:161 vhffs-api/src/Vhffs/Panel/DNS.pm:208
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:238 vhffs-api/src/Vhffs/Panel/DNS.pm:262
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:285 vhffs-api/src/Vhffs/Panel/DNS.pm:326
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:353
+msgid "Record does not exists"
+msgstr "Registro no existe"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:160
+msgid "Record type doesn't exists"
+msgstr "Este tipo de registro no existe"
+
+#: vhffs-panel/admin/moderation.pl:90 vhffs-panel/admin/moderation.pl:117
+msgid "Refuse"
+msgstr "Rechazar"
+
+#: vhffs-panel/group/prefs.pl:254
+msgid "Remove"
+msgstr "Quitar"
+
+#: vhffs-panel/mailinglist/prefs.pl:137
+msgid "Reply to: on list"
+msgstr "Campo Reply-to: activo"
+
+#: vhffs-panel/svn/create.pl:96 vhffs-panel/repository/create.pl:92
+#: vhffs-panel/admin/repository/list.pl:75 vhffs-panel/git/create.pl:96
+#: vhffs-panel/cvs/create.pl:102
+msgid "Repository Name"
+msgstr "Nombre del Repositorio "
+
+#: vhffs-intl/template_strings.pl:71
+msgid "Repository Quota"
+msgstr ""
+
+#: vhffs-panel/repository/prefs.pl:133
+msgid "Repository updated, please wait while quota is updated on filesystem"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:263
+#, perl-format
+msgid "Rights for subscriber %s updated"
+msgstr "Derechos del suscriptor %s actualizado"
+
+#: vhffs-panel/dns/prefs.pl:198
+msgid "SRV Record added"
+msgstr "Registro SRV añadido"
+
+#: vhffs-panel/dns/prefs.pl:187
+msgid "SRV Record deleted"
+msgstr "Registro SRV borrado"
+
+#: vhffs-panel/dns/prefs.pl:183
+msgid "SRV Record updated"
+msgstr "Registro SRV modificado"
+
+#: vhffs-panel/dns/prefs.pl:290
+msgid "SRV TYPE"
+msgstr "SRV TYPE"
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:68 vhffs-api/src/Vhffs/Panel/Menu.pm:117
+msgid "SVN"
+msgstr "SVN"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:170
+msgid "SVN Admin"
+msgstr "Admin SVN"
+
+#: vhffs-intl/extra_strings.pl:42
+msgid "SVN Repository"
+msgstr "Repositorio SVN"
+
+#: vhffs-panel/svn/index.pl:60
+#, perl-format
+msgid "SVN repositories for %s"
+msgstr "Repositorios SVN para %s"
+
+#: vhffs-panel/admin/svn/index.pl:56
+msgid "SVN repositories' administration"
+msgstr "Administración repositorios SVN"
+
+#: vhffs-panel/admin/svn/list.pl:70
+msgid "SVN root"
+msgstr "Raíz del repositorio SVN"
+
+#: vhffs-panel/admin/stats.pl:127
+msgid "SVN stats"
+msgstr "Estadísticas SVN"
+
+#: vhffs-panel/mailinglist/prefs.pl:141
+msgid "Save options"
+msgstr "Guardar opciones"
+
+#: vhffs-intl/template_strings.pl:7 vhffs-intl/template_strings.pl:14
+#: vhffs-intl/template_strings.pl:20
+msgid "Search"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:11
+msgid "Search a group"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:17
+msgid "Search a website"
+msgstr ""
+
+#: vhffs-panel/admin/object/search.pl:77
+msgid "Search an object (give object_id)"
+msgstr "Buscar un objeto (dar el object_id)"
+
+#: vhffs-intl/template_strings.pl:3
+msgid "Search an user"
+msgstr ""
+
+#: vhffs-panel/admin/cvs/search.pl:78 vhffs-api/src/Vhffs/Panel/Admin.pm:186
+msgid "Search for a CVS repository"
+msgstr "Buscar un repositorio CVS"
+
+#: vhffs-panel/admin/repository/search.pl:78
+msgid "Search for a Download repository"
+msgstr "Buscar un repositorio de download"
+
+#: vhffs-panel/admin/git/search.pl:80
+msgid "Search for a GIT repository"
+msgstr "Buscar un repositorio GIT"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:204
+msgid "Search for a Git repository"
+msgstr "Buscar un repositorio Git"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:221
+msgid "Search for a MySQL database"
+msgstr "Buscar una base de datos MySQL"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:238
+msgid "Search for a Pg database"
+msgstr "Buscar una base de datos Pg"
+
+#: vhffs-panel/admin/svn/search.pl:80 vhffs-api/src/Vhffs/Panel/Admin.pm:168
+msgid "Search for a SVN repository"
+msgstr "Buscar un repositorio SVN"
+
+#: vhffs-panel/admin/pgsql/search.pl:79 vhffs-panel/admin/mysql/search.pl:79
+msgid "Search for a database"
+msgstr "Buscar una base de datos"
+
+#: vhffs-panel/admin/dns/search.pl:79 vhffs-api/src/Vhffs/Panel/Admin.pm:291
+msgid "Search for a domain name"
+msgstr "Buscar un nombre de dominio"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:309
+msgid "Search for a download repository"
+msgstr "Buscar un repositorio de download"
+
+#: vhffs-panel/admin/group/search.pl:79 vhffs-api/src/Vhffs/Panel/Admin.pm:133
+msgid "Search for a group"
+msgstr "Buscar un grupo"
+
+#: vhffs-panel/admin/mailinglist/search.pl:78
+msgid "Search for a list"
+msgstr "Buscar una lista"
+
+#: vhffs-panel/admin/mail/search.pl:79 vhffs-api/src/Vhffs/Panel/Admin.pm:255
+msgid "Search for a mail domain"
+msgstr "Buscar un dominio mail"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:273
+msgid "Search for a mailing list"
+msgstr "Buscar una lista de correo"
+
+#: vhffs-panel/admin/web/search.pl:79
+msgid "Search for a web area"
+msgstr "Buscar una zona web"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:151
+msgid "Search for a webarea"
+msgstr "Buscar una zona web"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:97
+msgid "Search for an object"
+msgstr "Buscar un objeto"
+
+#: vhffs-panel/admin/user/search.pl:79 vhffs-api/src/Vhffs/Panel/Admin.pm:116
+msgid "Search for an user"
+msgstr "Buscar un usuario"
+
+#: vhffs-panel/admin/group/list.pl:77
+msgid "Search result"
+msgstr "Resultado de búsqueda"
+
+#: vhffs-panel/admin/object/list.pl:81
+msgid "Search result "
+msgstr "Resultado de búsqueda "
+
+#: vhffs-panel/admin/mailinglist/list.pl:72 vhffs-panel/admin/user/list.pl:63
+#: vhffs-panel/admin/web/list.pl:63 vhffs-panel/admin/mail/list.pl:68
+msgid "Search result for"
+msgstr "Resultado de búsqueda de"
+
+#: vhffs-panel/admin/cvs/list.pl:69
+msgid "Search result for CVS repository"
+msgstr "Resultado de búsqueda de repositorio CVS"
+
+#: vhffs-panel/admin/repository/list.pl:68
+msgid "Search result for Download repository"
+msgstr "Resultado de búsqueda de repositorio de download"
+
+#: vhffs-panel/admin/svn/list.pl:63
+msgid "Search result for Subversion repository"
+msgstr "Resultado de búsqueda de repositorio Subversion"
+
+#: vhffs-panel/admin/pgsql/list.pl:69 vhffs-panel/admin/mysql/list.pl:75
+msgid "Search result for database"
+msgstr "Resultado de búsqueda de base de datos"
+
+#: vhffs-panel/admin/dns/list.pl:68
+msgid "Search result for domain"
+msgstr "Resultado de búsqueda de dominio"
+
+#: vhffs-panel/admin/git/list.pl:65
+msgid "Search result for git repository"
+msgstr "Resultado de búsqueda de repositorio Git"
+
+#: vhffs-panel/mail/prefs.pl:189
+msgid "Selected mailbox doesn't exist for this mail domain"
+msgstr "El buzón seleccionado no existe para este dominio mail"
+
+#: vhffs-panel/mailinglist/create.pl:112 vhffs-panel/svn/create.pl:101
+#: vhffs-panel/dns/create.pl:78 vhffs-panel/pgsql/create.pl:109
+#: vhffs-panel/group/create.pl:90 vhffs-panel/repository/create.pl:97
+#: vhffs-panel/alert.pl:59 vhffs-panel/admin/broadcast_list.pl:100
+#: vhffs-panel/admin/object/edit.pl:99 vhffs-panel/admin/broadcast_view.pl:101
+#: vhffs-panel/git/create.pl:102 vhffs-panel/web/create.pl:102
+#: vhffs-panel/mysql/create.pl:109 vhffs-panel/cvs/create.pl:107
+#: vhffs-panel/mail/create.pl:96 vhffs-api/src/Vhffs/Panel/Object.pm:103
+msgid "Send"
+msgstr "Enviar"
+
+#: vhffs-panel/admin/broadcast.pl:77
+msgid "Send an email to all hosted people"
+msgstr "Enviar un correo a todos los usuarios"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:300
+msgid "Send an email with the subject \"help\" to the following address: \n"
+msgstr "Enviar un correo con el título \"help\" a la siguiente dirección: \n"
+
+#: vhffs-panel/user/prefs.pl:336 vhffs-panel/user/prefs.pl:338
+msgid "Send my avatar"
+msgstr "Enviar mi avatar"
+
+#: vhffs-panel/admin/web/list.pl:70
+msgid "Servername"
+msgstr "Directiva ServerName (nombre del sitio)"
+
+#: vhffs-panel/dns/prefs.pl:294
+msgid "Service"
+msgstr "Servicio"
+
+#: vhffs-panel/user/prefs.pl:313
+msgid "Shell"
+msgstr "Shell"
+
+#: vhffs-panel/admin/mailinglist/list.pl:90 vhffs-panel/admin/svn/list.pl:81
+#: vhffs-panel/admin/user/list.pl:81 vhffs-panel/admin/dns/list.pl:86
+#: vhffs-panel/admin/pgsql/list.pl:87 vhffs-panel/admin/group/list.pl:91
+#: vhffs-panel/admin/repository/list.pl:86 vhffs-panel/admin/git/list.pl:83
+#: vhffs-panel/admin/web/list.pl:82 vhffs-panel/admin/mysql/list.pl:94
+#: vhffs-panel/admin/cvs/list.pl:86 vhffs-panel/admin/mail/list.pl:86
+msgid "Show"
+msgstr "Ver"
+
+#: vhffs-intl/template_strings.pl:50
+msgid "Signature"
+msgstr "Firma"
+
+#: vhffs-panel/acl/view.pl:92
+msgid "Sorry, can't add or update ACL"
+msgstr "Disculpa, imposible añadir o actualizar ACL"
+
+#: vhffs-panel/mail/prefs.pl:247
+msgid "Spam status updated"
+msgstr "Protección spam actualizada"
+
+#: vhffs-panel/admin/mailinglist/list.pl:81 vhffs-panel/admin/svn/list.pl:72
+#: vhffs-panel/admin/user/list.pl:72 vhffs-panel/admin/dns/list.pl:77
+#: vhffs-panel/admin/pgsql/list.pl:78 vhffs-panel/admin/group/list.pl:82
+#: vhffs-panel/admin/repository/list.pl:77 vhffs-panel/admin/git/list.pl:74
+#: vhffs-panel/admin/object/list.pl:91 vhffs-panel/admin/broadcast_view.pl:88
+#: vhffs-panel/admin/web/list.pl:72 vhffs-panel/admin/mysql/list.pl:84
+#: vhffs-panel/admin/cvs/list.pl:78 vhffs-panel/admin/mail/list.pl:77
+msgid "State"
+msgstr "Estado"
+
+#: vhffs-panel/admin/object/edit.pl:97 vhffs-api/src/Vhffs/Panel/Object.pm:101
+msgid "Status"
+msgstr "Estatus"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:664
+msgid "Stay over an icon to see its description."
+msgstr "Deje el ratón sobre el icono para ver la descripción."
+
+#: vhffs-panel/admin/su.pl:74
+msgid "Su !"
+msgstr "Su !"
+
+#: vhffs-panel/dns/prefs.pl:281
+msgid "Subdomain name"
+msgstr "Nombre de subdominio"
+
+#: vhffs-panel/admin/broadcast.pl:79 vhffs-panel/admin/broadcast_view.pl:87
+msgid "Subject"
+msgstr "Título"
+
+#: vhffs-panel/dns/prefs.pl:273 vhffs-panel/dns/prefs.pl:279
+#: vhffs-panel/dns/prefs.pl:300 vhffs-panel/object/resubmit.pl:134
+msgid "Submit"
+msgstr "Someter"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:438
+msgid "Submit a bug"
+msgstr "Someter un bug"
+
+#: vhffs-panel/subscribe.pl:231 vhffs-api/src/Vhffs/Panel/Commons.pm:70
+msgid "Subscribe"
+msgstr "Suscribir"
+
+#: vhffs-panel/mailinglist/prefs.pl:106
+msgid "Subscribe control:"
+msgstr "Control de las suscripciones:"
+
+#: vhffs-intl/template_strings.pl:54
+msgid "Subscribed"
+msgstr "Inscrito"
+
+#: vhffs-panel/mailinglist/prefs.pl:242
+#, perl-format
+msgid "Subscriber %s deleted"
+msgstr "Suscriptor %s borrado"
+
+#: vhffs-panel/subscribe.pl:221
+msgid "Subscription"
+msgstr "Suscripción"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:135
+#, perl-format
+msgid ""
+"Subscription to the following list is forbidden:\n"
+" %s\n"
+"\n"
+"Have a nice day.\n"
+msgstr ""
+"La suscripción a esta lista está suspendida:\n"
+" %s\n"
+"\n"
+"Que tenga un buen día.\n"
+
+#: vhffs-intl/template_strings.pl:29
+msgid "Subversion Repositories for this group"
+msgstr ""
+
+#: vhffs-panel/object/upavatar.pl:126
+msgid "Successfully created or updated avatar"
+msgstr "Avatar creado o modificado con éxito"
+
+#: vhffs-panel/admin/object/edit.pl:122 vhffs-panel/admin/object/edit.pl:123
+#: vhffs-intl/extra_strings.pl:26 vhffs-api/src/Vhffs/Panel/Object.pm:127
+#: vhffs-api/src/Vhffs/Panel/Object.pm:128
+msgid "Suspended"
+msgstr "Suspendido"
+
+#: vhffs-intl/extra_strings.pl:27
+msgid "Suspended before deletion"
+msgstr "Suspendido antes destrucción"
+
+#: vhffs-panel/dns/prefs.pl:203
+msgid "TXT Record added"
+msgstr "Registro TXT añadido"
+
+#: vhffs-panel/dns/prefs.pl:214
+msgid "TXT Record deleted"
+msgstr "Registro TXT borrado"
+
+#: vhffs-panel/dns/prefs.pl:209
+msgid "TXT Record updated"
+msgstr "Registro TXT modificado"
+
+#: vhffs-panel/mail/create.pl:97
+msgid "Tell us for what purpose you want to create this mail domain"
+msgstr "Díganos para qué quiere crear este dominio mail"
+
+#: vhffs-panel/mailinglist/create.pl:113
+msgid "Tell us what the use of this mailing list will be"
+msgstr "Díganos para qué quiere crear esta lista de correo"
+
+#: vhffs-panel/web/create.pl:103
+msgid "Tell us what the use of this web space will be"
+msgstr "Díganos para qué quiere crear esta zona web"
+
+#: vhffs-panel/dns/prefs.pl:306
+msgid "Text"
+msgstr "Texto"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:342 vhffs-api/src/Vhffs/Panel/DNS.pm:354
+msgid "Text can't be empty"
+msgstr "Texto no puede quedarse vacío"
+
+#: vhffs-panel/cvs/create.pl:89
+msgid "The CVS object was successfully created !"
+msgstr "El objeto CVS ha sido creado con éxito!"
+
+#: vhffs-panel/dns/create.pl:57
+msgid "The DNS object was successfully created !"
+msgstr "El objeto DNS ha sido creado con éxito!"
+
+#: vhffs-panel/git/create.pl:85
+msgid "The GIT object was successfully created !"
+msgstr "El objeto GIT ha sido creado con éxito!"
+
+#: vhffs-panel/mysql/create.pl:90
+msgid "The MySQL DB was successfully created !"
+msgstr "La base MySQL ha sido creada con éxito!"
+
+#: vhffs-panel/pgsql/create.pl:90
+msgid "The PostgreSQL DB was successfully created !"
+msgstr "La base PostgreSQL ha sido creada con éxito!"
+
+#: vhffs-panel/svn/create.pl:85
+msgid "The SVN object was successfully created !"
+msgstr "El objeto SVN ha sido creado con éxito!"
+
+#: vhffs-panel/user/prefs.pl:339
+msgid ""
+"The avatar is a pictures that describes you. You can upload an PNG image and "
+"use it as avatar. This image will then appear in the public section."
+msgstr ""
+"El avatar es una imagen que lo describe a Ud. Puede subir una imagen PNG y "
+"utilizarla como avatar. Esta imagen aparecerá en la zona publica."
+
+#: vhffs-panel/group/prefs.pl:246
+msgid "The avatar is an image to describe the group"
+msgstr "El avatar es una imagen que describe el grupo."
+
+#: vhffs-api/src/Vhffs/Listengine.pm:195
+msgid "The confirmation code was wrong\n"
+msgstr "Código de confirmación incorrecto.\n"
+
+#: vhffs-panel/pgsql/create.pl:102 vhffs-panel/mysql/create.pl:102
+#, perl-format
+msgid ""
+"The database name is prefixed by your groupname followed by an underscore (%"
+"s_dbname). The database user is the database full name (%s_dbname)."
+msgstr ""
+"El nombre de la base de datos es compuesto por el nombre del grupo como "
+"prefijo, seguido de un underscore (%s_nombrebd). El usuario correspondiente "
+"es el nombre completo de la base (%s_nombrebd)."
+
+#: vhffs-panel/group/prefs.pl:181
+msgid "The email you entered fails syntax check"
+msgstr "La dirección de correo tiene un error de sintaxis"
+
+#: vhffs-panel/group/prefs.pl:90 vhffs-panel/group/create.pl:72
+msgid "The first letter of groupname and full name must be the same"
+msgstr ""
+"La primera letra del nombre del grupo y la primera del nombre completo del "
+"grupo deben ser la misma"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:389
+#, perl-format
+msgid ""
+"The following address %s is not allowed to execute commands on the list %s\n"
+msgstr ""
+"La siguiente dirección %s no tiene derecho de ejecutar comandos en esta "
+"lista %s\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:210
+#, perl-format
+msgid ""
+"The following address %s is not on the following mailing list:\n"
+" %s\n"
+msgstr "La siguiente dirección %s no está en la lista: %s\n"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:518
+msgid ""
+"The following projects have reached or are going to reach the disk quota "
+"limit, please take a look !"
+msgstr ""
+"Los siguientes proyectos llegaron o están a punto de llegar al limite de su "
+"cuota de espacio disco, por favor, eche una mirada!"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:270
+#, perl-format
+msgid ""
+"The listengine language preference was changed for the following address %"
+"s.\n"
+msgstr ""
+"El idioma del listengine ha sido modificado para la siguiente dirección %s.\n"
+
+#: vhffs-panel/mailinglist/create.pl:89
+msgid "The mailing list object was successfully created !"
+msgstr "El objeto lista de correo ha sido creado con éxito!"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:320
+msgid "The message does not exists or was moderated before you.\n"
+msgstr "El mensaje no existe o ha sido moderado antes Ud.\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:317
+#, perl-format
+msgid "The message with the following id %s"
+msgstr "Mensaje con el siguiente id: %s"
+
+#: vhffs-panel/object/resubmit.pl:95 vhffs-panel/object/resubmit.pl:98
+msgid "The new description has been submitted"
+msgstr "La nueva descripción a sido enviada"
+
+#: vhffs-panel/repository/create.pl:81
+msgid "The repository was successfully created !"
+msgstr "El repositorio ha sido creado con éxito!"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:122
+msgid ""
+"The state of you subscription was not changed, you are still subscribed\n"
+msgstr "El estado de su suscripción no ha cambiado, sigue inscrito\n"
+
+#: vhffs-panel/web/create.pl:83
+msgid "The webarea was successfully created !"
+msgstr "La zona web ha sido creada con éxito!"
+
+#: vhffs-panel/user/prefs.pl:312
+msgid "Theme"
+msgstr "Tema"
+
+#: vhffs-panel/user/prefs.pl:261
+msgid ""
+"There is a problem with the address you filled in your profile, unable to "
+"add forwarding"
+msgstr ""
+"Hay un problema con la dirección que puso en su perfil, no se puede añadir "
+"una redirección"
+
+#: vhffs-panel/mailinglist/create.pl:103
+msgid ""
+"There is no default mail domain on this platform, you have to create a mail "
+"domain before creating a mailing list"
+msgstr ""
+"No hay dominio mail por defecto en esta plataforma. Tiene que crear un "
+"dominio mail primero antes de crear una lista de correo"
+
+#: vhffs-panel/admin/moderation.pl:79
+msgid "There is nothing to moderate"
+msgstr "No hay nada por moderar"
+
+#: vhffs-panel/user/prefs.pl:412
+msgid "There is two possible usages :"
+msgstr "Hay dos usos posibles:"
+
+#: vhffs-panel/cvs/delete.pl:86
+msgid "This CVS repository will NOT be deleted"
+msgstr "Este repositorio CVS NO será destruido"
+
+#: vhffs-panel/cvs/delete.pl:97
+msgid "This CVS will be deleted"
+msgstr ""
+
+#: vhffs-panel/pgsql/delete.pl:73
+msgid "This DB doesn't exist in VHFFS database"
+msgstr "Esta base de datos no existe en la base de datos de VHFFS"
+
+#: vhffs-panel/repository/delete.pl:86
+msgid "This Download repository will NOT be deleted"
+msgstr "Este repositorio de download NO será destruido"
+
+#: vhffs-panel/repository/delete.pl:99
+msgid "This Download repository will be deleted"
+msgstr "Este repositorio de download será destruido"
+
+#: vhffs-panel/mailinglist/prefs.pl:179 vhffs-panel/svn/prefs.pl:97
+#: vhffs-panel/dns/prefs.pl:252 vhffs-panel/pgsql/prefs.pl:99
+#: vhffs-panel/group/prefs.pl:213 vhffs-panel/repository/prefs.pl:89
+#: vhffs-panel/git/prefs.pl:105 vhffs-panel/web/prefs.pl:109
+#: vhffs-panel/mysql/prefs.pl:111 vhffs-panel/cvs/prefs.pl:116
+#: vhffs-panel/mail/prefs.pl:136
+msgid ""
+"This action is non-reversible. All services associated to this project will "
+"be DESTROYED."
+msgstr ""
+"Esta acción no es reversible. Todos los servicios asociados con este "
+"proyecto serán DESTRUIDOS."
+
+#: vhffs-panel/user/prefs.pl:326
+msgid "This action is non-reversible. WHEN YOU DELETE IT, YOU CANNOT CANCEL."
+msgstr "Esta acción no es reversible. Cuando la destruirá, no podrá cancelar."
+
+#: vhffs-panel/mail/prefs.pl:214
+msgid ""
+"This box already exists for this domain or parameters are not valid. Check "
+"your domain."
+msgstr ""
+"Esto buzón ya existe para este dominio o los parámetros son inválidos. "
+"Verificar dominio"
+
+#: vhffs-panel/pgsql/delete.pl:93
+msgid "This database cannot be deleted"
+msgstr "Esta base de datos no puede ser borrada"
+
+#: vhffs-panel/mysql/delete.pl:71
+msgid "This database doesn't exist in VHFFS database"
+msgstr "Esta base de datos no existe en la base de datos de VHFFS"
+
+#: vhffs-panel/mysql/delete.pl:83
+msgid "This database will NOT be deleted"
+msgstr "Esta base de datos NO será destruida"
+
+#: vhffs-panel/dns/delete.pl:105
+msgid "This domain will NOT be DELETED from Vhffs platform"
+msgstr "Este dominio NO será borrado de la plataforma Vhffs"
+
+#: vhffs-panel/dns/delete.pl:100
+msgid "This domain will be DELETED from Vhffs platform"
+msgstr "Este dominio será BORRADO de la plataforma Vhffs"
+
+#: vhffs-panel/git/delete.pl:90
+msgid "This git repository will NOT be deleted"
+msgstr "Este repositorio git NO será destruido"
+
+#: vhffs-panel/group/delete.pl:85
+msgid "This group will be deleted"
+msgstr "Este grupo será destruido"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:315
+msgid "This host is already registered for this service"
+msgstr "Este host ya está registrada para este servicio."
+
+#: vhffs-panel/mail/delete.pl:103
+msgid "This mail domain WILL BE DELETED"
+msgstr "Este dominio mail SERÁ DESTRUIDO"
+
+#: vhffs-panel/mail/delete.pl:91
+msgid "This mail domain will NOT be DELETED"
+msgstr "Este dominio mail NO SERÁ DESTRUIDO"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:104
+#, perl-format
+msgid ""
+"This mail must contains the following subject : \"confirm unsubscribe %s\"\n"
+msgstr ""
+"Este mensaje debe tener el siguiente título: \"confirm unsubscribe %s\"\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:86
+#, perl-format
+msgid ""
+"This mail must have the following subject : \"confirm subscribe %s\"\n"
+"On most clients it should work by just replying this email\n"
+msgstr ""
+"Este mensaje debe tener el siguiente título: \"confirm subscribe %s\"\n"
+"En la mayoria de los clientes mail, puede simplemente utilizar Responder\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:405
+#, perl-format
+msgid ""
+"This mail was sent by %s with the following subject:\n"
+" %s\n"
+"\n"
+msgstr ""
+"Este correo fue enviado por %s con el siguiente título:\n"
+" %s\n"
+"\n"
+
+#: vhffs-panel/object/quickdelete.pl:68 vhffs-panel/object/resubmit.pl:68
+msgid "This object does not exist"
+msgstr "Este objeto no existe"
+
+#: vhffs-panel/admin/object/delete_avatar.pl:105
+msgid "This object does not have an avatar"
+msgstr "Este objeto no tiene avatar"
+
+#: vhffs-panel/object/quickdelete.pl:86 vhffs-panel/object/quickdelete.pl:89
+msgid "This object has been deleted"
+msgstr "Este objeto ha sido borrado"
+
+#: vhffs-panel/group/history.pl:68
+msgid "This object is not functional yet. Please wait creation or moderation."
+msgstr ""
+"Este objeto ya no está en actividad. Espere la creación o la moderación."
+
+#: vhffs-panel/mailinglist/delete.pl:87 vhffs-panel/group/delete.pl:72
+#: vhffs-panel/git/delete.pl:86 vhffs-panel/web/prefs.pl:80
+#: vhffs-panel/mail/delete.pl:83
+msgid "This object is not functionnal yet. Please wait creation or moderation."
+msgstr ""
+"Este objeto ya no está en actividad. Espere la creación o la moderación."
+
+#: vhffs-panel/object/quickdelete.pl:72 vhffs-panel/object/resubmit.pl:72
+msgid "This object is not in refused state"
+msgstr "Este objeto no está en estado de rechazo."
+
+#: vhffs-panel/web/delete.pl:96
+msgid "This object will BE DELETED"
+msgstr "Este objeto SERÁ DESTRUIDO"
+
+#: vhffs-panel/group/delete.pl:76 vhffs-panel/web/delete.pl:101
+msgid "This object will NOT be DELETED"
+msgstr "Este objeto NO SERÁ DESTRUIDO"
+
+#: vhffs-panel/object/upavatar.pl:93
+msgid "This platform does not provide avatar support"
+msgstr "Esta plataforma no tiene soporte para los avatar"
+
+#: vhffs-panel/admin/object/delete_avatar.pl:74
+msgid "This platform does not support avatar"
+msgstr "Esta plataforma no tiene soporte para los avatar"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:314
+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 ""
+"Plataforma cerrada temporalmente. Los administradores están haciendo "
+"trabajos de mantenimiento o el sistema tiene error de base de datos. Intenta "
+"dentro de unos minutos."
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:325
+msgid ""
+"This platform is temporary closed. Administrators are performing some "
+"maintenances tasks. Please come back in a few minutes to log in."
+msgstr ""
+"Plataforma cerrada temporalmente. Los administradores están haciendo "
+"trabajos de mantenimiento. Intenta dentro de unos minutos."
+
+#: vhffs-panel/svn/delete.pl:98 vhffs-panel/git/delete.pl:103
+msgid "This repository will be deleted"
+msgstr "Este repositorio será destruido"
+
+#: vhffs-panel/svn/delete.pl:85
+msgid "This subversion repository will NOT be deleted"
+msgstr "Este repositorio subversion NO será destruido"
+
+#: vhffs-panel/user/delete.pl:76
+msgid "This user is always in a group"
+msgstr "Este usuario todavía es miembro de un grupo"
+
+#: vhffs-panel/user/delete.pl:87
+msgid "This user will BE DELETED"
+msgstr "Este usuario SERÁ DESTRUIDO"
+
+#: vhffs-panel/user/delete.pl:93
+msgid "This user will NOT be DELETED"
+msgstr "Esto usuario NO será destruido"
+
+#: vhffs-panel/group/prefs.pl:112
+msgid "This user will be removed from this group as soon as possible"
+msgstr "Este usuario será removido de este grupo tan pronto como sea posible."
+
+#: vhffs-panel/web/delete.pl:79
+msgid "This web area doesn't exist in VHFFS database"
+msgstr "Esta zona web no existe en la base de datos de VHFFS"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:424
+msgid "To accept this subscriber, send a message to\n"
+msgstr "Para aceptar el suscriptor, envíe un mensaje a\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:406
+#, perl-format
+msgid ""
+"To put this post on the list, send a message to:\n"
+" %s-request@%s\n"
+msgstr ""
+"Para colocar este post en la lista, envie un mensaje a:\n"
+" %s-request@%s\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:427
+msgid "To refuse this subscriber, send a message to\n"
+msgstr "Para rechazar el suscriptor, envie un mensaje a:\n"
+
+#: vhffs-panel/ajax/help.pl:53
+msgid "Topic not found"
+msgstr "Tema no encontrado"
+
+#: vhffs-panel/admin/stats.pl:94
+msgid "Total Admin Users in VHFFS database"
+msgstr "Total de usuarios admin en la base de datos de VHFFS."
+
+#: vhffs-panel/admin/stats.pl:121
+msgid "Total CVS in moderation"
+msgstr "Total de CVS en moderación"
+
+#: vhffs-panel/admin/stats.pl:113
+msgid "Total DNS in moderation"
+msgstr "Total de DNS en moderación"
+
+#: vhffs-panel/admin/stats.pl:134
+msgid "Total GIT in moderation"
+msgstr "Total de GIT en moderación"
+
+#: vhffs-panel/admin/stats.pl:140
+msgid "Total Mail domains in moderation"
+msgstr "Total de dominio mail en moderación"
+
+#: vhffs-panel/admin/stats.pl:96
+msgid "Total Moderator Users in VHFFS database"
+msgstr "Total de usuarios moderadores en la base de datos de VHFFS."
+
+#: vhffs-panel/admin/stats.pl:152
+msgid "Total MySQL in moderation"
+msgstr "Total de MySQL en moderación"
+
+#: vhffs-panel/admin/stats.pl:159
+msgid "Total PostgreSQL in moderation"
+msgstr "Total de PostgreSQL en moderación"
+
+#: vhffs-panel/admin/stats.pl:128
+msgid "Total SVN in moderation"
+msgstr "Total de SVN en moderación"
+
+#: vhffs-panel/admin/stats.pl:92
+msgid "Total Users in VHFFS database"
+msgstr "Total de usuarios en la base de datos de VHFFS."
+
+#: vhffs-panel/admin/stats.pl:106
+msgid "Total Web Areas in moderation"
+msgstr "Total de zonas web en moderación"
+
+#: vhffs-panel/admin/stats.pl:123
+msgid "Total activated CVS"
+msgstr "Total CVS activados"
+
+#: vhffs-panel/admin/stats.pl:115
+msgid "Total activated DNS"
+msgstr "Total DNS activados"
+
+#: vhffs-panel/admin/stats.pl:136
+msgid "Total activated GIT"
+msgstr "Total GIT activados"
+
+#: vhffs-panel/admin/stats.pl:142
+msgid "Total activated Mail domains"
+msgstr "Total dominios mail activados"
+
+#: vhffs-panel/admin/stats.pl:154
+msgid "Total activated MySQL"
+msgstr "Total MySQL activadas"
+
+#: vhffs-panel/admin/stats.pl:161
+msgid "Total activated PostgreSQL"
+msgstr "Total PostgreSQL activadas"
+
+#: vhffs-panel/admin/stats.pl:130
+msgid "Total activated SVN"
+msgstr "Total SVN activados"
+
+#: vhffs-panel/admin/stats.pl:108
+msgid "Total activated Web Areas"
+msgstr "Total zonas web activadas"
+
+#: vhffs-panel/admin/stats.pl:102
+msgid "Total activated groups"
+msgstr "Total grupos activados"
+
+#: vhffs-panel/admin/stats.pl:169
+msgid "Total activated lists"
+msgstr "Total listas activadas"
+
+#: vhffs-panel/admin/stats.pl:100
+msgid "Total groups in database"
+msgstr "Total grupos en la base de datos"
+
+#: vhffs-panel/admin/stats.pl:146
+msgid "Total hosted boxes"
+msgstr "Total buzones de correo"
+
+#: vhffs-panel/admin/stats.pl:144
+msgid "Total hosted forwards"
+msgstr "Total redirecciones"
+
+#: vhffs-panel/admin/stats.pl:167
+msgid "Total lists in moderation"
+msgstr "Total de listas en moderación"
+
+#: vhffs-panel/admin/stats.pl:171
+msgid "Total subscribtion for lists"
+msgstr "Total suscripciones a listas"
+
+#: vhffs-panel/group/history.pl:78 vhffs-panel/admin/moderation.pl:84
+msgid "Type"
+msgstr "Tipo"
+
+#: vhffs-panel/admin/object/edit.pl:95 vhffs-api/src/Vhffs/Panel/Object.pm:99
+msgid "UID of owner"
+msgstr "UID del propietario"
+
+#: vhffs-panel/dns/prefs.pl:135
+#, perl-format
+msgid "Unable to add A record: %s"
+msgstr "Imposible añadir registro A: %s"
+
+#: vhffs-panel/dns/prefs.pl:130
+#, perl-format
+msgid "Unable to add AAAA record: %s"
+msgstr "Imposible añadir registro AAAA: %s"
+
+#: vhffs-panel/dns/prefs.pl:174
+#, perl-format
+msgid "Unable to add CNAME record: %s"
+msgstr "Imposible añadir registro CNAME: %s"
+
+#: vhffs-panel/dns/prefs.pl:151
+#, perl-format
+msgid "Unable to add MX record: %s"
+msgstr "Imposible añadir registro MX: %s"
+
+#: vhffs-panel/dns/prefs.pl:160
+#, perl-format
+msgid "Unable to add NS record: %s"
+msgstr "Imposible añadir registro NS: %s"
+
+#: vhffs-panel/dns/prefs.pl:197
+#, perl-format
+msgid "Unable to add SRV record: %s"
+msgstr "Imposible añadir registro SRV: %s"
+
+#: vhffs-panel/dns/prefs.pl:202
+#, perl-format
+msgid "Unable to add TXT record: %s"
+msgstr "Imposible añadir registro TXT: %s"
+
+#: vhffs-panel/mail/prefs.pl:286
+#, perl-format
+msgid "Unable to add forward %s"
+msgstr "Imposible añadir redirección %s"
+
+#: vhffs-panel/group/prefs.pl:137 vhffs-panel/group/prefs.pl:171
+msgid ""
+"Unable to add user, he might already be in the group (waiting for addition "
+"or deletion)"
+msgstr ""
+"Imposible añadir usuario, puede ser que ya este incluido en este grupo "
+"(pendiente por supresión o por añadir)"
+
+#: vhffs-panel/pgsql/prefs.pl:131 vhffs-panel/mysql/prefs.pl:142
+msgid "Unable to apply changes"
+msgstr "Imposible aplicar cambios"
+
+#: vhffs-panel/git/prefs.pl:149 vhffs-panel/git/prefs.pl:194
+#: vhffs-panel/web/prefs.pl:141
+msgid "Unable to apply modifications"
+msgstr "Imposible aplicar las modificaciones"
+
+#: vhffs-panel/group/prefs.pl:291 vhffs-panel/repository/prefs.pl:131
+msgid "Unable to apply modifications, please try again later"
+msgstr "Imposible de aplicar las modificaciones, por favor intente más tarde"
+
+#: vhffs-panel/mailinglist/prefs.pl:261
+#, perl-format
+msgid "Unable to change rights for subscriber %s"
+msgstr "No se pudo modificar los derechos para el suscriptor %s"
+
+#: vhffs-panel/dns/prefs.pl:112
+#, perl-format
+msgid "Unable to delete A record: %s"
+msgstr "Imposible borrar registro A: %s"
+
+#: vhffs-panel/dns/prefs.pl:124
+#, perl-format
+msgid "Unable to delete AAAA record: %s"
+msgstr "Imposible borrar registro AAAA: %s"
+
+#: vhffs-panel/dns/prefs.pl:169
+#, perl-format
+msgid "Unable to delete CNAME record: %s"
+msgstr "Imposible borrar registro CNAME: %s"
+
+#: vhffs-panel/dns/prefs.pl:146
+#, perl-format
+msgid "Unable to delete MX record: %s"
+msgstr "Imposible borrar registro MX: %s"
+
+#: vhffs-panel/dns/prefs.pl:156
+#, perl-format
+msgid "Unable to delete NS record: %s"
+msgstr "Imposible borrar registro NS: %s"
+
+#: vhffs-panel/dns/prefs.pl:186
+#, perl-format
+msgid "Unable to delete SRV record: %s"
+msgstr "Imposible borrar registro SRV: %s"
+
+#: vhffs-panel/dns/prefs.pl:213
+#, perl-format
+msgid "Unable to delete TXT record: %s"
+msgstr "Imposible borrar registro TXT: %s"
+
+#: vhffs-panel/mail/prefs.pl:270
+#, perl-format
+msgid "Unable to delete box %s"
+msgstr "Imposible borrar buzón %s"
+
+#: vhffs-panel/mail/prefs.pl:317
+#, perl-format
+msgid "Unable to delete forward %s"
+msgstr "Imposible borrar redirección %s"
+
+#: vhffs-panel/mail/delete.pl:99
+msgid "Unable to delete this domain"
+msgstr "Imposible borrar este dominio"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:196 vhffs-api/src/Vhffs/Panel/DNS.pm:226
+msgid ""
+"Unable to find default redirection address, please contact administrators"
+msgstr ""
+"Imposible conseguir la redirección por defecto, por favor contacte los "
+"administradores"
+
+#: vhffs-panel/cvs/index.pl:63
+msgid "Unable to get CVS repositories"
+msgstr "Imposible conseguir los repositorios CVS"
+
+#: vhffs-panel/dns/index.pl:63
+msgid "Unable to get DNS"
+msgstr "Imposible conseguir los DNS"
+
+#: vhffs-panel/git/index.pl:64
+msgid "Unable to get GIT repositories"
+msgstr "Imposible conseguir los repositorios GIT"
+
+#: vhffs-panel/mysql/index.pl:63
+msgid "Unable to get MySQL databases."
+msgstr "Imposible conseguir las bases MySQL"
+
+#: vhffs-panel/pgsql/index.pl:63
+msgid "Unable to get PgSQL databases"
+msgstr "Imposible conseguir las bases PgSQL"
+
+#: vhffs-panel/svn/index.pl:63
+msgid "Unable to get SVN repositories"
+msgstr "Imposible conseguir los repositorios SVN"
+
+#: vhffs-panel/mail/delete.pl:79 vhffs-panel/mail/prefs.pl:74
+#, perl-format
+msgid "Unable to get information on mail domain %s"
+msgstr "Imposible conseguir información sobre el dominio mail %s"
+
+#: vhffs-panel/mail/index.pl:63
+msgid "Unable to get mail domains"
+msgstr "Imposible conseguir los dominios mail"
+
+#: vhffs-panel/mailinglist/index.pl:63
+msgid "Unable to get mailing lists"
+msgstr "Imposible conseguir las listas de correo"
+
+#: vhffs-panel/repository/index.pl:63
+msgid "Unable to get repositories"
+msgstr "Imposible conseguir los repositorios"
+
+#: vhffs-panel/web/index.pl:63
+msgid "Unable to get webareas"
+msgstr "Imposible conseguir las zonas web"
+
+#: vhffs-panel/dns/prefs.pl:107
+#, perl-format
+msgid "Unable to modify A record: %s"
+msgstr "Imposible modificar registro A: %s"
+
+#: vhffs-panel/dns/prefs.pl:119
+#, perl-format
+msgid "Unable to modify AAAA record: %s"
+msgstr "Imposible modificar registro AAAA: %s"
+
+#: vhffs-panel/dns/prefs.pl:165
+#, perl-format
+msgid "Unable to modify CNAME record: %s"
+msgstr "Imposible modificar registro CNAME: %s"
+
+#: vhffs-panel/dns/prefs.pl:141
+#, perl-format
+msgid "Unable to modify MX record: %s"
+msgstr "Imposible modificar registro MX: %s"
+
+#: vhffs-panel/dns/prefs.pl:182
+#, perl-format
+msgid "Unable to modify SRV record: %s"
+msgstr "Imposible modificar registro SRV: %s"
+
+#: vhffs-panel/dns/prefs.pl:208
+#, perl-format
+msgid "Unable to modify TXT record: %s"
+msgstr "Imposible modificar registro TXT: %s"
+
+#: vhffs-panel/mail/prefs.pl:302
+#, perl-format
+msgid "Unable to modify forward %s"
+msgstr "Imposible modificar redirección %s"
+
+#: vhffs-panel/group/prefs.pl:114
+msgid "Unable to remove user from group"
+msgstr "Imposible remover el usuario del grupo"
+
+#: vhffs-panel/mailinglist/prefs.pl:220
+msgid "Unable to save object"
+msgstr "Imposible guardar el objeto"
+
+#: vhffs-panel/svn/prefs.pl:168
+msgid "Unable to update repository"
+msgstr "Imposible actualizar el repositorio"
+
+#: vhffs-panel/user/prefs.pl:475
+msgid "Unable to update user, please try again later"
+msgstr "Imposible actualizar el usuario, por favor intente más tarde"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:298
+msgid ""
+"Unknow command\n"
+"\n"
+msgstr ""
+"Comando desconocido\n"
+"\n"
+
+#: vhffs-api/src/Vhffs/Functions.pm:448 vhffs-api/src/Vhffs/Functions.pm:453
+msgid "Unknown"
+msgstr "Desconocido"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:163 vhffs-api/src/Vhffs/Panel/DNS.pm:199
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:211 vhffs-api/src/Vhffs/Panel/DNS.pm:229
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:241 vhffs-api/src/Vhffs/Panel/DNS.pm:253
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:265 vhffs-api/src/Vhffs/Panel/DNS.pm:276
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:288 vhffs-api/src/Vhffs/Panel/DNS.pm:301
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:317 vhffs-api/src/Vhffs/Panel/DNS.pm:332
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:344 vhffs-api/src/Vhffs/Panel/DNS.pm:356
+msgid "Unknown error"
+msgstr "Error desconocido"
+
+#: vhffs-panel/admin/broadcast_list.pl:104
+#: vhffs-panel/admin/broadcast_view.pl:105
+msgid "Unknown status"
+msgstr "Estatus desconocido"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:240
+#, perl-format
+msgid "Unsubscribe for the list %s was not complete.\n"
+msgstr "El proceso de desinscripción de la lista %s no ha sido terminado.\n"
+
+#: vhffs-panel/group/prefs.pl:244 vhffs-intl/template_strings.pl:87
+msgid "Update"
+msgstr "Actualizar"
+
+#: vhffs-intl/template_strings.pl:64
+msgid "Update Permissions"
+msgstr "Actualizar permisos"
+
+#: vhffs-intl/template_strings.pl:70 vhffs-intl/template_strings.pl:75
+msgid "Update Quota"
+msgstr "Actualizar cuota"
+
+#: vhffs-panel/group/prefs.pl:248
+msgid "Update avatar"
+msgstr "Actualizar avatar"
+
+#: vhffs-panel/mailinglist/prefs.pl:144
+msgid "Update signature"
+msgstr "Actualizar firma"
+
+#: vhffs-panel/object/upavatar.pl:118
+msgid "Uploaded file is too big. The maximum size is 20 Kbytes."
+msgstr "Archivo a subir demasiado pesado Tamaño maximum Kbytes."
+
+#: vhffs-panel/dns/prefs.pl:240
+#, perl-format
+msgid "Use @ for origin (%s)"
+msgstr "Usar @ para la raíz de (%s)"
+
+#: vhffs-panel/user/prefs.pl:413
+#, 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 ""
+"Utilizar los servidores VHFFS para administrar estos mails,<br/>deberá "
+"utilizar el host pop.%s o imap.%s para recuperar sus mensajes"
+
+#: vhffs-panel/user/prefs.pl:424
+msgid "Use anti-spam protection"
+msgstr "Utilizar el anti-spam"
+
+#: vhffs-panel/user/prefs.pl:432
+msgid "Use anti-virus protection"
+msgstr "Utilizar el anti-virus"
+
+#: vhffs-intl/template_strings.pl:67 vhffs-intl/template_strings.pl:72
+msgid "Used Quota"
+msgstr "Cuota usada"
+
+#: vhffs-panel/acl/view.pl:103 vhffs-panel/admin/moderation.pl:86
+#: vhffs-intl/extra_strings.pl:35
+msgid "User"
+msgstr "Usuario"
+
+#: vhffs-panel/admin/su.pl:96
+#, perl-format
+msgid "User %s does not exist"
+msgstr "El usuario %s no existe"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:118
+msgid "User Admin"
+msgstr "Administración de usuarios"
+
+#: vhffs-panel/user/prefs.pl:297 vhffs-api/src/Vhffs/Panel/Main.pm:435
+msgid "User Preferences"
+msgstr "Preferencias de usuario"
+
+#: vhffs-panel/subscribe.pl:188
+msgid "User Successfully created"
+msgstr "Usuario creado con éxito"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:432
+msgid "User account"
+msgstr "Cuenta de usuario"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:368
+msgid "User does not exist"
+msgstr "El usuario no existe"
+
+#: vhffs-panel/auth.pl:74
+msgid "User is not active yet"
+msgstr "Usuario no está activo todavía"
+
+#: vhffs-panel/group/prefs.pl:144
+msgid "User not found"
+msgstr "Usuario no encontrado"
+
+#: vhffs-panel/user/prefs.pl:477
+msgid "User successfully updated"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:134 vhffs-panel/group/prefs.pl:168
+msgid "User will be added as soon as possible"
+msgstr "El usuario será añadido tan pronto como sea posible."
+
+#: vhffs-intl/template_strings.pl:59
+msgid "User's Permissions"
+msgstr "Permisos de usuario"
+
+#: vhffs-intl/template_strings.pl:60
+msgid "User's permissions"
+msgstr "Permisos de usuario"
+
+#: vhffs-panel/subscribe.pl:223 vhffs-panel/user/prefs.pl:301
+#: vhffs-panel/group/prefs.pl:238 vhffs-panel/admin/user/list.pl:70
+#: vhffs-panel/admin/su.pl:73 vhffs-panel/lost.pl:57
+#: vhffs-intl/template_strings.pl:4 vhffs-intl/template_strings.pl:34
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:65
+msgid "Username"
+msgstr "Nombre de usuario"
+
+#: vhffs-panel/pgsql/prefs.pl:87 vhffs-panel/mysql/prefs.pl:98
+msgid "Username for this database"
+msgstr "Nombre de usuario para esta base de datos"
+
+#: vhffs-panel/group/prefs.pl:256 vhffs-intl/template_strings.pl:1
+#: vhffs-intl/template_strings.pl:21 vhffs-intl/template_strings.pl:41
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:111
+msgid "Users"
+msgstr "Usuarios"
+
+#: vhffs-panel/admin/stats.pl:91
+msgid "Users stats"
+msgstr "Estadísticas usuarios"
+
+#: vhffs-panel/admin/user/index.pl:56
+msgid "Users' administration"
+msgstr "Administración de usuarios"
+
+#: vhffs-panel/admin/object/edit.pl:117 vhffs-intl/extra_strings.pl:21
+#: vhffs-api/src/Vhffs/Panel/Object.pm:122
+msgid "Validation refused"
+msgstr "Validación rechazada"
+
+#: vhffs-panel/admin/stats.pl:89
+msgid "Vhffs Statistics"
+msgstr "Estadísticas Vhffs"
+
+#: vhffs-intl/template_strings.pl:32
+msgid "View Archives"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_view.pl:85
+msgid "View mailing"
+msgstr "Ver correos"
+
+#: vhffs-panel/admin/broadcast_list.pl:90
+msgid "View this mailing"
+msgstr "Ver este correo"
+
+#: vhffs-panel/mail/prefs.pl:254
+msgid "Virus status updated"
+msgstr "Estatus de virus actualizado"
+
+#: vhffs-panel/admin/stats.pl:105
+msgid "WEB stats"
+msgstr "Estadísticas web"
+
+#: vhffs-intl/template_strings.pl:52
+msgid "Waiting for confirmation"
+msgstr "Confirmación pendiente"
+
+#: vhffs-panel/admin/object/edit.pl:118 vhffs-intl/extra_strings.pl:22
+#: vhffs-api/src/Vhffs/Panel/Object.pm:123
+msgid "Waiting for creation"
+msgstr "Creación pendiente"
+
+#: vhffs-intl/template_strings.pl:55
+msgid "Waiting for deletion"
+msgstr "Destrucción pendiente"
+
+#: vhffs-panel/admin/object/edit.pl:124 vhffs-intl/extra_strings.pl:28
+#: vhffs-api/src/Vhffs/Panel/Object.pm:129
+msgid "Waiting for modification"
+msgstr "Modificación pendiente"
+
+#: vhffs-panel/admin/object/edit.pl:116 vhffs-intl/template_strings.pl:53
+#: vhffs-intl/extra_strings.pl:20 vhffs-api/src/Vhffs/Panel/Object.pm:121
+msgid "Waiting for validation"
+msgstr "Validación pendiente"
+
+#: vhffs-panel/user/prefs.pl:149
+msgid "Wanted shell is not in the shell list"
+msgstr "El shell deseado no está en la lista"
+
+#: vhffs-panel/alert.pl:56
+msgid "Warn the admin team"
+msgstr "Alertar el equipo de administración"
+
+#: vhffs-intl/template_strings.pl:65 vhffs-intl/template_strings.pl:77
+msgid ""
+"Warning, password change isn't immediate, you've to check periodically to "
+"see if it's done"
+msgstr ""
+"Advertencia, el cambio de contraseña no es inmediato, tiene que verificar "
+"con regularidad si se hizo efectivo"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:481
+#, perl-format
+msgid ""
+"We confirm that you REFUSED the subscription of:\n"
+" %s\n"
+"\n"
+"to the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+"Confirmamos que Ud. RECHAZÓ la suscripción de:\n"
+" %s\n"
+"\n"
+"a la lista de correo siguiente:\n"
+" %s\n"
+"\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:457
+#, perl-format
+msgid ""
+"We confirm that you accepted the subscription of:\n"
+" %s\n"
+"\n"
+"to the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+"Confirmamos que aceptó la suscripción de:\n"
+" %s\n"
+"\n"
+"a la lista de correo siguiente:\n"
+" %s\n"
+"\n"
+
+#: vhffs-panel/group/prefs.pl:227
+#, perl-format
+msgid "We offer you the possibility to forward emails from %s@%s."
+msgstr "Le ofrecemos la posibilidad de redirigir los correos desde %s@%s."
+
+#: vhffs-panel/user/prefs.pl:443
+#, perl-format
+msgid "We offer you the possibility to have one email box on the domain %s"
+msgstr "Le ofrecemos la posibilidad de tener un buzón en el dominio %s"
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:64 vhffs-api/src/Vhffs/Panel/Menu.pm:113
+msgid "Web"
+msgstr "Web"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:153
+msgid "Web Admin"
+msgstr "Admin web"
+
+#: vhffs-panel/web/prefs.pl:93
+msgid "Web Area Administration"
+msgstr "Administración zona web"
+
+#: vhffs-panel/web/prefs.pl:143
+msgid "Web area successfully modified"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:37
+msgid "Webarea"
+msgstr "Zona web"
+
+#: vhffs-panel/web/index.pl:60
+#, perl-format
+msgid "Webareas for %s"
+msgstr "Zona web para %s"
+
+#: vhffs-panel/admin/web/index.pl:56
+msgid "Webareas' administration"
+msgstr "Administración zonas web"
+
+#: vhffs-intl/template_strings.pl:19
+msgid "Website description"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:18
+msgid "Website name"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:15
+msgid "Websites"
+msgstr ""
+
+#: vhffs-public/group.pl:99 vhffs-intl/template_strings.pl:27
+msgid "Websites for this group"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:298 vhffs-panel/dns/prefs.pl:383
+msgid "Weight"
+msgstr "Peso"
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:62
+#, perl-format
+msgid "Welcome on %s"
+msgstr "Bienvenido a %s"
+
+#: vhffs-panel/mailinglist/delete.pl:107
+msgid "Will be DELETED in a few minutes"
+msgstr "Será DESTRUIDO en algunos minutos"
+
+#: vhffs-panel/admin/object/edit.pl:127 vhffs-intl/extra_strings.pl:31
+#: vhffs-api/src/Vhffs/Panel/Object.pm:132
+msgid "Will be deleted"
+msgstr "Será destruido"
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:81
+#, perl-format
+msgid "Woah, %s users and %s groups already trust %s"
+msgstr "Woah, %s usuarios y %s grupos confían en %s"
+
+#: vhffs-panel/svn/prefs.pl:93 vhffs-panel/dns/prefs.pl:261
+#: vhffs-panel/git/prefs.pl:101 vhffs-panel/cvs/prefs.pl:112
+#: vhffs-intl/template_strings.pl:82 vhffs-intl/template_strings.pl:85
+msgid "Yes"
+msgstr "Si"
+
+#: vhffs-panel/mailinglist/prefs.pl:181 vhffs-panel/svn/prefs.pl:99
+#: vhffs-panel/user/prefs.pl:328 vhffs-panel/dns/prefs.pl:254
+#: vhffs-panel/pgsql/prefs.pl:101 vhffs-panel/group/prefs.pl:215
+#: vhffs-panel/repository/prefs.pl:91 vhffs-panel/git/prefs.pl:107
+#: vhffs-panel/web/prefs.pl:111 vhffs-panel/mysql/prefs.pl:113
+#: vhffs-panel/cvs/prefs.pl:118 vhffs-panel/mail/prefs.pl:138
+msgid "Yes I'm sure of what I do"
+msgstr "Si, estoy seguro(a) de lo que hago"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:227
+msgid "You are not a subscriber on this list.\n"
+msgstr "Ud. no es suscriptor de esta lista.\n"
+
+#: vhffs-panel/mailinglist/prefs.pl:271
+msgid "You are not allowed to add members (ACL rights)"
+msgstr "No está autorizado a añadir miembros (Derechos ACL)"
+
+#: vhffs-panel/object/quickdelete.pl:77 vhffs-panel/object/resubmit.pl:77
+msgid "You are not allowed to do it, you don't own this object"
+msgstr "No está autorizado a hacer esto, no es propietario de este objeto."
+
+#: vhffs-panel/mailinglist/prefs.pl:251
+msgid "You are not allowed to manager subscribers' rights (ACL rights)"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:177 vhffs-panel/mail/prefs.pl:207
+#: vhffs-panel/mail/prefs.pl:225 vhffs-panel/mail/prefs.pl:265
+#: vhffs-panel/mail/prefs.pl:279 vhffs-panel/mail/prefs.pl:295
+#: vhffs-panel/mail/prefs.pl:311
+msgid "You are not allowed to modify this object"
+msgstr "No está autorizado a modificar este objeto"
+
+#: vhffs-panel/web/prefs.pl:125
+msgid "You are not allowed to modify this web area"
+msgstr "No está autorizado a modificar esta zona web"
+
+#: vhffs-panel/admin/mailinglist/search.pl:71
+#: vhffs-panel/admin/mailinglist/list.pl:63 vhffs-panel/admin/svn/search.pl:73
+#: vhffs-panel/admin/svn/list.pl:55 vhffs-panel/admin/broadcast.pl:70
+#: vhffs-panel/admin/stats.pl:82 vhffs-panel/admin/user/search.pl:72
+#: vhffs-panel/admin/user/list.pl:55 vhffs-panel/admin/dns/search.pl:72
+#: vhffs-panel/admin/dns/list.pl:59 vhffs-panel/admin/pgsql/search.pl:72
+#: vhffs-panel/admin/pgsql/list.pl:60 vhffs-panel/admin/group/search.pl:72
+#: vhffs-panel/admin/group/list.pl:65 vhffs-panel/admin/broadcast_list.pl:71
+#: vhffs-panel/admin/repository/search.pl:71
+#: vhffs-panel/admin/repository/list.pl:59 vhffs-panel/admin/git/search.pl:73
+#: vhffs-panel/admin/git/list.pl:56 vhffs-panel/admin/object/edit_submit.pl:74
+#: vhffs-panel/admin/object/delete_avatar.pl:78
+#: vhffs-panel/admin/object/edit.pl:74 vhffs-panel/admin/object/search.pl:71
+#: vhffs-panel/admin/object/list.pl:72 vhffs-panel/admin/broadcast_view.pl:73
+#: vhffs-panel/admin/web/search.pl:72 vhffs-panel/admin/web/list.pl:54
+#: vhffs-panel/admin/mysql/search.pl:72 vhffs-panel/admin/mysql/list.pl:66
+#: vhffs-panel/admin/cvs/search.pl:71 vhffs-panel/admin/cvs/list.pl:60
+#: vhffs-panel/admin/mail/search.pl:72 vhffs-panel/admin/mail/list.pl:59
+msgid "You are not allowed to see it"
+msgstr "No está autorizado a verlo"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:186 vhffs-api/src/Vhffs/Panel/Main.pm:207
+msgid "You are not granted to access this page"
+msgstr "No está autorizado a acceder a esta página"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:119
+#, perl-format
+msgid ""
+"You asked to be subscribed to the following list:\n"
+"\n"
+"%s\n"
+"\n"
+msgstr ""
+"Ud. solicitó su inscripción a la lista siguiente:\n"
+"\n"
+"%s\n"
+"\n"
+
+#: vhffs-panel/svn/prefs.pl:105 vhffs-panel/dns/prefs.pl:246
+#: vhffs-panel/git/prefs.pl:113 vhffs-panel/web/prefs.pl:104
+#: vhffs-panel/mail/prefs.pl:144
+msgid ""
+"You can Manage rights on this service for each user in the VHFFS database. "
+"Please read help before manage it."
+msgstr ""
+"Puede administrar los derechos sobre este servicio para cada usuario Vhffs. "
+"Por favor, lea la ayuda antes de administrarlo."
+
+#: vhffs-api/src/Vhffs/Listengine.pm:49
+msgid "You can also send a command list in the mail body.\n"
+msgstr "También puede enviar una lista de comando en el cuerpo del mensaje.\n"
+
+#: vhffs-panel/group/prefs.pl:110
+msgid "You cannot remove the owner of the group"
+msgstr "No puede remover el propietario del grupo"
+
+#: vhffs-panel/subscribe.pl:89
+msgid "You cannot subscribe to VHFFS"
+msgstr "No puede suscribir a VHFFS"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:226
+#, perl-format
+msgid "You cannot unsubscribe from the list %s\n"
+msgstr "No puede desinscribirse de la lista %s\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:211
+msgid "You demand was refused\n"
+msgstr "Su solicitud fue rechazada\n"
+
+#: vhffs-panel/mailinglist/create.pl:87
+msgid "You do not own this domain !"
+msgstr "Ud. no es dueño de este dominio!"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:182
+#, perl-format
+msgid ""
+"You have been successfully removed from the following list:\n"
+" %s\n"
+msgstr ""
+"Ud. ha sido removido con éxito de la lista siguiente:\n"
+" %s\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:255
+#, perl-format
+msgid "You have been successfully removed from the list %s.\n"
+msgstr "Ud. ha sido removido con éxito de la lista %s\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:147 vhffs-api/src/Vhffs/Listengine.pm:163
+#, perl-format
+msgid ""
+"You have been successfully subscribed to the following mailing list:\n"
+" %s\n"
+msgstr ""
+"Ud. ha sido suscrito con éxito a la lista de correo siguiente:\n"
+" %s\n"
+
+#: vhffs-panel/web/prefs.pl:135
+msgid "You have to enter a description"
+msgstr "Tiene que ingresar una descripción"
+
+#: vhffs-panel/group/prefs.pl:284 vhffs-panel/repository/prefs.pl:125
+msgid "You have to enter a quota greater than the current used quota"
+msgstr "Tiene que ingresar una cuota mayor a la cuota actualmente en uso"
+
+#: vhffs-panel/mailinglist/index.pl:54 vhffs-panel/svn/index.pl:54
+#: vhffs-panel/dns/index.pl:54 vhffs-panel/pgsql/index.pl:54
+#: vhffs-panel/repository/index.pl:54 vhffs-panel/git/index.pl:55
+#: vhffs-panel/web/index.pl:54 vhffs-panel/mysql/index.pl:54
+#: vhffs-panel/cvs/index.pl:54 vhffs-panel/mail/index.pl:54
+msgid "You have to select a group first"
+msgstr "Debe seleccionar un grupo primero"
+
+#: vhffs-panel/auth.pl:105
+msgid "You left your VHFFS session!"
+msgstr "Su sesión VHFFS ha terminado!"
+
+#: vhffs-panel/lost.pl:55
+msgid "You lost your password? You're a bad guy!"
+msgstr "Olvidó su contraseña? Eres un chico malo!"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:149 vhffs-api/src/Vhffs/Listengine.pm:168
+#: vhffs-api/src/Vhffs/Listengine.pm:443
+msgid "You may get some help on listengine by sending an email to\n"
+msgstr "Puede recibir ayuda sobre el listengine enviando un mensaje a\n"
+
+#: vhffs-panel/user/prefs.pl:204
+msgid "You must choose a method for your mail"
+msgstr "Debe escoger un método para su correo"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:85 vhffs-api/src/Vhffs/Listengine.pm:103
+msgid "You must confirm your request by sending a confirmation email\n"
+msgstr "Debe confirmar su solicitud enviando un mensaje de confirmación\n"
+
+#: vhffs-panel/subscribe.pl:143
+msgid "You must declare a valid mail address"
+msgstr "Debe ingresar una dirección de correo válida"
+
+#: vhffs-panel/subscribe.pl:123
+msgid "You must declare your city"
+msgstr "Debe ingresar el nombre de su ciudad"
+
+#: vhffs-panel/subscribe.pl:119
+msgid "You must declare your country"
+msgstr "Debe ingresar el nombre de su país"
+
+#: vhffs-panel/subscribe.pl:131
+msgid "You must declare your firstname"
+msgstr "Debe ingresar su nombre"
+
+#: vhffs-panel/subscribe.pl:135
+msgid "You must declare your lastname"
+msgstr "Debe ingresar su apellido"
+
+#: vhffs-panel/subscribe.pl:139
+msgid "You must declare your mail address"
+msgstr "Debe ingresar su dirección de correo"
+
+#: vhffs-panel/subscribe.pl:111
+msgid "You must declare your username"
+msgstr "Debe ingresar un nombre de usuario"
+
+#: vhffs-panel/subscribe.pl:127
+msgid "You must declare your zipcode"
+msgstr "Debe ingresar el código de la localidad"
+
+#: vhffs-panel/mailinglist/create.pl:83 vhffs-panel/svn/create.pl:83
+#: vhffs-panel/dns/create.pl:53 vhffs-panel/pgsql/create.pl:84
+#: vhffs-panel/group/prefs.pl:86 vhffs-panel/group/create.pl:68
+#: vhffs-panel/repository/create.pl:79 vhffs-panel/git/create.pl:83
+#: vhffs-panel/object/resubmit.pl:90 vhffs-panel/web/create.pl:81
+#: vhffs-panel/mysql/create.pl:84 vhffs-panel/cvs/create.pl:84
+#: vhffs-panel/mail/create.pl:78
+msgid "You must enter a description"
+msgstr "Debe ingresar una descripción"
+
+#: vhffs-panel/group/prefs.pl:88 vhffs-panel/group/create.pl:70
+msgid "You must enter a full name"
+msgstr "Debe ingresar un un nombre completo"
+
+#: vhffs-panel/group/prefs.pl:126
+msgid "You must enter an username"
+msgstr "Debe ingresar un nombre de usuario"
+
+#: vhffs-panel/group/view.pl:55
+msgid "You must specify a project name"
+msgstr "Debe especificar el nombre del proyecto"
+
+#: vhffs-panel/mailinglist/prefs.pl:281
+msgid "You need to enter at least one new member"
+msgstr "Debe ingresar por lo menos un nuevo miembro"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:166
+msgid "You will receive an email with the decision of administrators.\n"
+msgstr "Recibirá un correo con la decisión de los administradores.\n"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:375
+msgid "You're are not allowed to browse panel"
+msgstr "No está autorizado a navegar por el panel"
+
+#: vhffs-panel/mailinglist/create.pl:62 vhffs-panel/svn/create.pl:63
+#: vhffs-panel/dns/create.pl:34 vhffs-panel/pgsql/create.pl:63
+#: vhffs-panel/group/delete.pl:68 vhffs-panel/group/history.pl:71
+#: vhffs-panel/group/prefs.pl:78 vhffs-panel/group/prefs.pl:108
+#: vhffs-panel/group/prefs.pl:119 vhffs-panel/group/prefs.pl:160
+#: vhffs-panel/group/prefs.pl:177 vhffs-panel/repository/create.pl:64
+#: vhffs-panel/admin/moderation_submit.pl:67
+#: vhffs-panel/admin/moderation.pl:70 vhffs-panel/admin/broadcast_submit.pl:79
+#: vhffs-panel/admin/broadcast_delete.pl:79 vhffs-panel/git/create.pl:64
+#: vhffs-panel/web/prefs.pl:84 vhffs-panel/web/create.pl:63
+#: vhffs-panel/mysql/create.pl:63 vhffs-panel/cvs/create.pl:64
+#: vhffs-panel/mail/create.pl:60
+msgid "You're not allowed to do this (ACL rights)"
+msgstr "No está autorizado a hacer esto (Derechos ACL)"
+
+#: vhffs-panel/mailinglist/delete.pl:91 vhffs-panel/mailinglist/prefs.pl:84
+#: vhffs-panel/mailinglist/prefs.pl:205 vhffs-panel/mailinglist/prefs.pl:230
+#: vhffs-panel/svn/delete.pl:81 vhffs-panel/svn/prefs.pl:76
+#: vhffs-panel/svn/prefs.pl:134 vhffs-panel/user/prefs.pl:78
+#: vhffs-panel/user/prefs.pl:84 vhffs-panel/dns/delete.pl:87
+#: vhffs-panel/dns/prefs.pl:86 vhffs-panel/dns/prefs.pl:95
+#: vhffs-panel/pgsql/delete.pl:77 vhffs-panel/pgsql/prefs.pl:71
+#: vhffs-panel/pgsql/prefs.pl:115 vhffs-panel/group/prefs.pl:70
+#: vhffs-panel/repository/delete.pl:82 vhffs-panel/repository/prefs.pl:74
+#: vhffs-panel/git/delete.pl:82 vhffs-panel/git/prefs.pl:80
+#: vhffs-panel/git/prefs.pl:142 vhffs-panel/git/prefs.pl:164
+#: vhffs-panel/web/delete.pl:83 vhffs-panel/mysql/delete.pl:79
+#: vhffs-panel/mysql/prefs.pl:80 vhffs-panel/cvs/delete.pl:82
+#: vhffs-panel/cvs/prefs.pl:73 vhffs-panel/cvs/prefs.pl:78
+#: vhffs-panel/cvs/prefs.pl:94 vhffs-panel/mail/delete.pl:87
+#: vhffs-panel/mail/prefs.pl:77
+msgid ""
+"You're not allowed to do this, object is not in active state or you don't "
+"have enough ACL rights"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:89
+msgid "You're not allowed to manage this object's ACL"
+msgstr "No está autorizado a administrar este objeto ACL"
+
+#: vhffs-panel/history.pl:94 vhffs-panel/acl/view.pl:76
+msgid "You're not allowed to view this object's ACL"
+msgstr "No está autorizado a ver este objeto ACL"
+
+#: vhffs-panel/admin/su.pl:65
+msgid "You're not an administrator"
+msgstr "No es administrador"
+
+#: vhffs-api/src/Vhffs/Object.pm:512
+#, perl-format
+msgid "Your %s (%s) on %s has been deleted due to lack of updates"
+msgstr "Su %s (%s) en %s ha sido borrado por falta de actualización"
+
+#: vhffs-api/src/Vhffs/User.pm:333
+#, perl-format
+msgid ""
+"Your account (%s) on %s has been deleted because it was unused for a long "
+"time"
+msgstr ""
+"Su cuenta (%s) en %s ha sido borrado por falta de uso durante mucho tiempo"
+
+#: vhffs-panel/subscribe.pl:243
+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 ""
+"Su dirección de correo será utilizado para contactarle si necesario y como "
+"dirección de destino si usa el servicio de redirección"
+
+#: vhffs-panel/alert.pl:58
+msgid "Your message"
+msgstr "Su mensaje"
+
+#: vhffs-panel/group/index.pl:61
+msgid "Your projects"
+msgstr "Sus proyectos"
+
+#: vhffs-api/src/Vhffs/Object.pm:416
+#, perl-format
+msgid "Your request for a %s (%s) on %s was accepted"
+msgstr "Su solicitud de %s (%s) en %s ha sido aceptada"
+
+#: vhffs-api/src/Vhffs/Object.pm:466
+#, perl-format
+msgid "Your request for a %s (%s) on %s was refused"
+msgstr "Su solicitud de %s (%s) en %s ha sido rechazad"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:441
+#, perl-format
+msgid ""
+"Your subscription was accepted to the following mailing list:\n"
+" %s\n"
+msgstr ""
+"Su suscripción ha sido aceptada para la lista de correo siguiente:\n"
+" %s\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:469
+#, perl-format
+msgid ""
+"Your subscription was refused to the following mailing list:\n"
+" %s\n"
+"\n"
+"Have a nice day.\n"
+msgstr ""
+"Su suscripción ha sido rechazada para la lista de correo siguiente:\n"
+" %s\n"
+"\n"
+"Que tenga un buen día.\n"
+
+#: vhffs-panel/subscribe.pl:242
+msgid ""
+"Your username. It must contains only alphanumeric characters in lowercase, "
+"its length must be between 3 and 12 chars"
+msgstr ""
+"Su nombre de usuario debe tener entre 3 y 12 caracteres alfanuméricos en "
+"minúsculas"
+
+#: vhffs-panel/subscribe.pl:147
+msgid "Your zipcode is not correct! Please enter a correct zipcode"
+msgstr ""
+"¡Su código de área no es correcto! Escribe un código de área válido, por "
+"favor"
+
+#: vhffs-panel/subscribe.pl:227 vhffs-panel/user/prefs.pl:305
+msgid "Zipcode"
+msgstr "Código de área"
+
+#: vhffs-panel/user/prefs.pl:132
+msgid "Zipcode is not correct !"
+msgstr "¡El código de área no es correcto!"
+
+#: vhffs-panel/mailinglist/prefs.pl:301
+#, perl-format
+msgid "[%s] You've been added to the list %s"
+msgstr "[%s] Ha sido añadido a la lista %s"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:355
+msgid "cannot be removed from the list\n"
+msgstr "no puede ser removido de la lista\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:319
+msgid "cannot be removed.\n"
+msgstr "no puede ser removido.\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:53
+msgid "help\t\t - show this help\n"
+msgstr "help\t\t - mostrar ayuda\n"
+
+#: vhffs-intl/extra_strings.pl:17
+msgid "help_user_admin"
+msgstr "help_user_admin"
+
+#: vhffs-intl/extra_strings.pl:13
+msgid "help_user_bug"
+msgstr "help_user_bug"
+
+#: vhffs-intl/extra_strings.pl:12
+msgid "help_user_help"
+msgstr "help_user_help"
+
+#: vhffs-intl/extra_strings.pl:14
+msgid "help_user_logout"
+msgstr "help_user_logout"
+
+#: vhffs-intl/extra_strings.pl:11
+msgid "help_user_preferences"
+msgstr "help_user_preferences"
+
+#: vhffs-intl/extra_strings.pl:16
+msgid "help_user_project"
+msgstr "help_user_project"
+
+#: vhffs-intl/extra_strings.pl:15
+msgid "help_user_projects"
+msgstr ""
+"<h2>Mis proyectos</h2><p>Administrar mis proyectos o crear nuevos proyectos."
+"</p>"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:372
+#, perl-format
+msgid "in the moderation queue of the list %s"
+msgstr "en la cola de moderación de la lista %s"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:56
+msgid "lang [fr|us|es]\t - set listengine language\n"
+msgstr "lang [fr|us|es]\t - definir idioma del listengine\n"
+
+#: vhffs-listengine/src/listengine.pl:965
+#, perl-format
+msgid "listengine - list of messages to moderate for %s"
+msgstr "listengine - lista de mensajes pendientes por moderación para %s"
+
+#: vhffs-listengine/src/listengine.pl:848
+#: vhffs-listengine/src/listengine.pl:870
+#: vhffs-listengine/src/listengine.pl:881
+msgid "listengine help"
+msgstr "Ayuda listengine"
+
+#: vhffs-listengine/src/listengine.pl:913
+#: vhffs-listengine/src/listengine.pl:924
+#: vhffs-listengine/src/listengine.pl:940
+#: vhffs-listengine/src/listengine.pl:952
+#: vhffs-listengine/src/listengine.pl:979
+#: vhffs-listengine/src/listengine.pl:990
+msgid "listengine moderation"
+msgstr "Moderación listengine"
+
+#: vhffs-listengine/src/listengine.pl:898
+msgid "listengine result command"
+msgstr "Resultado del comando listengine"
+
+#: vhffs-listengine/src/listengine.pl:1031
+msgid "listengine: unknown command"
+msgstr "listengine: comando desconocido"
+
+#: vhffs-panel/subscribe.pl:224 vhffs-panel/user/prefs.pl:302
+msgid "mail"
+msgstr "Dirección de correo"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:61
+msgid "moderate XXXXX\t\t\t - accept the message with message-id XXXXX\n"
+msgstr "moderate XXXXX\t\t\t - aceptar mensaje con el message-id XXXXX\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:62
+msgid ""
+"moderate accept XXXXX\t\t\t - accept the message with message-id XXXXX\n"
+msgstr ""
+"moderate accept XXXXX\t\t\t - aceptar mensaje con el message-id XXXXX\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:64
+msgid "moderate list\t\t\t - give the message list for moderation\n"
+msgstr "moderate list\t\t\t - dar la lista de mensajes para moderación\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:63
+msgid ""
+"moderate refused XXXXX\t\t\t - refuse the message with message-id XXXXX\n"
+msgstr ""
+"moderate refused XXXXX\t\t\t - rechazar el mensaje con el message-id XXXXX\n"
+
+#: vhffs-panel/web/create.pl:90
+msgid "new site"
+msgstr "<nuevo sitio>."
+
+#: vhffs-panel/admin/object/edit.pl:113
+#: vhffs-api/src/Vhffs/Panel/Object.pm:118
+msgid "no date"
+msgstr "ninguna fecha"
+
+#: vhffs-api/src/Vhffs/Object.pm:380
+msgid "no reason given"
+msgstr "no se comunicó razones"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:318 vhffs-api/src/Vhffs/Listengine.pm:354
+#, perl-format
+msgid "present in the moderation queue for the list %s"
+msgstr "presente en la cola de moderación de la lista %s"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:54
+msgid "subscribe\t - subscribe the shipper to the list\n"
+msgstr "subscribe\t - suscribir el remitente a la lista\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:59
+msgid ""
+"subscription accept XXXXX\t\t - accept the subscription with key XXXXX\n"
+msgstr ""
+"subscription accept XXXXX\t\t - aceptar la suscripción con la clave XXXXX\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:60
+msgid ""
+"subscription refuse XXXXX\t\t - refuse the subscription with key XXXXX\n"
+msgstr ""
+"subscription refuse XXXXX\t\t - rechazar la suscripción con la clave XXXXX\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:55
+msgid "unsubscribe\t - unsubscribe from this list\n"
+msgstr "unsubscribe\t - desinscribirse de la lista\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:69
+msgid "user info user@xxxxxxxxxx\t\t - show user information\n"
+msgstr "user info user@xxxxxxxxxx\t\t - mostrar información usuario\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:67
+msgid "user right RIGHT user@xxxxxxxxxx\t - change right for this user\n"
+msgstr ""
+"user right RIGHT user@xxxxxxxxxx\t - cambiar derechos de este usuario\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:66
+msgid ""
+"user subscribe user@xxxxxxxxxx\t\t - register the user user@xxxxxxxxxx on "
+"the list\n"
+msgstr ""
+"user subscribe user@xxxxxxxxxx\t\t - registrar el usuario user@xxxxxxxxxx en "
+"la lista\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:65
+msgid ""
+"user unsubscribe user@xxxxxxxxxx\t - delete user user@xxxxxxxxxx from list\n"
+msgstr ""
+"user unsubscribe user@xxxxxxxxxx\t - borrar el usuario user@xxxxxxxxxx de la "
+"lista\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:337
+#, perl-format
+msgid "was removed from the moderation queue from the list %s"
+msgstr "ha sido borrado de la cola de moderación de la lista %s"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:373
+msgid "was sent on the list.\n"
+msgstr "ha sido enviado a la lista.\n"
+
+#: vhffs-intl/template_strings.pl:23
+msgid "website(s)"
+msgstr ""
+
+#: vhffs-panel/group/create.pl:86
+msgid ""
+"with only lowercase alphanumerical letters, no space, from 3 to 12 characters"
+msgstr ""
+"sólo con letra alfanumérica en minúscula, sin espacio, de 3 a 12 caracteres"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:407
+#, perl-format
+msgid ""
+"with the following subject :\n"
+" \"moderate %s\" \n"
+msgstr ""
+"con el título siguiente :\n"
+" \"moderate %s\" \n"
+
+#~ msgid "Box sucessfully added"
+#~ msgstr "Buzón %s añadido con éxito"
+
+#~ msgid "CGI ERROR"
+#~ msgstr "Error CGI"
+
+#~ msgid "CGI ERROR !"
+#~ msgstr "Error CGI"
+
+#~ msgid "CGI ERROR!"
+#~ msgstr "Error CGI"
+
+#~ msgid "CGI Error"
+#~ msgstr "Error CGI"
+
+#~ msgid "CGI Error!"
+#~ msgstr "Error CGI!"
+
+#~ msgid "CGI error"
+#~ msgstr "Error CGI"
+
+#~ msgid "CGI problem"
+#~ msgstr "Problema CGI"
+
+#~ msgid "CVS repository for this group"
+#~ msgstr "Repositorios CVS para este grupo"
+
+#~ msgid "GIT repository for this group"
+#~ msgstr "Repositorios Git para este grupo"
+
+#~ msgid "Go on login page"
+#~ msgstr "Volver a la página de login"
+
+#~ msgid "Group public area"
+#~ msgstr "Zona pública de los grupos"
+
+#~ msgid "Last groups"
+#~ msgstr "Últimos grupos"
+
+#~ msgid "List(s) for this group"
+#~ msgstr "Lista(s) para este grupo"
+
+#~ msgid "No cvs repository available for this group"
+#~ msgstr "No hay repositorios CVS para este grupo"
+
+#~ msgid "No git repository available for this group"
+#~ msgstr "No hay repositorios Git para este grupo"
+
+#~ msgid "No group for this user"
+#~ msgstr "No hay grupo para este usuario"
+
+#~ msgid "No list available for this group"
+#~ msgstr "No hay lista para este grupo"
+
+#~ msgid "No subversion repository available for this group"
+#~ msgstr "No hay repositorios subversion para este grupo"
+
+#~ msgid "No such user"
+#~ msgstr "El usuario no existe"
+
+#~ msgid "No webarea"
+#~ msgstr "No hay zona web"
+
+#~ msgid "No website available for this group"
+#~ msgstr "No hay sitio web para este grupo"
+
+#~ msgid "Please wait modification, creation or deletion"
+#~ msgstr "Espere la modificación, la creación o la remoción del objeto"
+
+#~ msgid "SVN repository for this group"
+#~ msgstr "Repositorios SVN para este grupo"
+
+#~ msgid "Search for a website"
+#~ msgstr "Buscar un sitio web"
+
+#~ msgid "Search:"
+#~ msgstr "Búsqueda:"
+
+#~ msgid "Show me all groups on %s"
+#~ msgstr "Ver todos los grupos registrados en %s"
+
+#~ msgid "Show me all websites"
+#~ msgstr "Ver todos los sitios web"
+
+#~ msgid "Show me last groups on %s"
+#~ msgstr "Ver los últimos grupos registrados en %s"
+
+#~ msgid "Show me last users on %s"
+#~ msgstr "Ver los últimos usuarios registrados en %s"
+
+#~ msgid "Show me this group according to this groupname"
+#~ msgstr "Ver este grupo"
+
+#~ msgid "Show me this user according to this username"
+#~ msgstr "Ver este usuario"
+
+#~ msgid "This CVS will be delete"
+#~ msgstr "Este repositorio CVS será destruido"
+
+#~ msgid ""
+#~ "This object is not functionnal yet. Please wait creation, moderation or "
+#~ "modification."
+#~ msgstr ""
+#~ "Este objeto ya no está en actividad. Espere la modificación, la creación "
+#~ "o la moderación."
+
+#~ msgid "User public area"
+#~ msgstr "Zona pública usuario"
+
+#~ msgid "User sucessfuly updated"
+#~ msgstr "Usuario actualizado con éxito"
+
+#~ msgid "View archives"
+#~ msgstr "Ver archivos"
+
+#~ msgid "Web area successfuly modified"
+#~ msgstr "Zona web modificada con éxito"
+
+#~ msgid "Website for this group"
+#~ msgstr "Sitio web para este grupo"
+
+#~ msgid "Websites area"
+#~ msgstr "Zona sitios web"
+
+#~ msgid "You are not allowed to change options (ACL rights)"
+#~ msgstr "No está autorizado a cambiar opciones (Derechos ACL)"
+
+#~ msgid "You are not allowed to delete members (ACL rights)"
+#~ msgstr "No está autorizado a borrar miembros (Derechos ACL)"
+
+#~ msgid "You are not allowed to modify this GIT repository (ACL rights)"
+#~ msgstr "No está autorizado a modificar este repositorio GIT (Derechos ACL)"
+
+#~ msgid "You are not allowed to modify this SVN Object (ACL Rights)"
+#~ msgstr "No está autorizado a modificar este Objeto SVN (Derechos ACL)"
+
+#~ msgid "You are not allowed to modify this object (ACL rights)"
+#~ msgstr "No está autorizado a modificar este objeto (Derechos ACL)"
+
+#~ msgid "An error occured while updating"
+#~ msgstr "Un error ocurrió durante la actualización."
+
+#~ msgid "An error occured while updating the Subversion repository"
+#~ msgstr ""
+#~ "Un error ocurrió durante la actualización del repositorio Subversion."
+
+#~ msgid "An error occured while updating the git repository"
+#~ msgstr "Un error ocurrió durante la actualización del repositorio git"
+
+#~ msgid "CGI ERROR ! %s"
+#~ msgstr "Error CGI %s"
+
+#~ msgid "Can't modify object..."
+#~ msgstr "No puede modificar el objeto ..."
+
+#~ msgid "Cannot fetch object %s"
+#~ msgstr "No se puede leer el objeto %s"
+
+#~ msgid "Cannot retrieve informations about this Subversion repository"
+#~ msgstr ""
+#~ "No se pudo recuperar informaciones sobre este repositorio Subversion"
+
+#~ msgid "Cannot retrieve informations about this git repository"
+#~ msgstr "No se pudo recuperar informaciones sobre este repositorio Git"
+
+#~ msgid "Catchall"
+#~ msgstr "Catchall"
+
+#~ msgid "Change forward"
+#~ msgstr "Cambiar la redirección"
+
+#~ msgid "Cvsroot"
+#~ msgstr "Cvsroot"
+
+#~ msgid "Database Name"
+#~ msgstr "Nombre de la base de datos"
+
+#~ msgid "Delete this mail account"
+#~ msgstr "Destruir esta cuenta mail"
+
+#~ msgid "Edit CVS"
+#~ msgstr "Modificar CVS"
+
+#~ msgid "Edit Download repository"
+#~ msgstr "Modificar repositorio de download"
+
+#~ msgid "Edit Group"
+#~ msgstr "Modificar grupo"
+
+#~ msgid "Edit Mail Domain"
+#~ msgstr "Modificar dominio mail"
+
+#~ msgid "Edit MySQL database"
+#~ msgstr "Modificar base de datos MySQL"
+
+#~ msgid "Edit PostgreSQL database"
+#~ msgstr "Modificar base de datos PostgreSQL"
+
+#~ msgid "Edit User"
+#~ msgstr "Modificar usuario"
+
+#~ msgid "Failed to modify note"
+#~ msgstr "No se pudo modificar la nota"
+
+#~ msgid "Forward %s successfully added"
+#~ msgstr "Redirección %s creada"
+
+#~ msgid "Forward for"
+#~ msgstr "Redirección para"
+
+#~ msgid "GID"
+#~ msgstr "GID"
+
+#~ msgid "GPG key"
+#~ msgstr "Clave GPG"
+
+#~ msgid "Go to object-part admin"
+#~ msgstr "Ir a la administración de la parte objeto"
+
+#~ msgid "Grant an user access to this repository"
+#~ msgstr "Añadir un usuario en este repositorio"
+
+#~ msgid "Groups of this user"
+#~ msgstr "Grupos de este usuario"
+
+#~ msgid "Home"
+#~ msgstr "Home"
+
+#~ msgid "Hosted"
+#~ msgstr "Hospedado"
+
+#~ msgid "Modifications applied to your webarea"
+#~ msgstr "Modificaciones realizadas en su zona web"
+
+#~ msgid "Modifications successfully added"
+#~ msgstr "Modificaciones realizadas con éxitos"
+
+#~ msgid "Modifications successfully applied"
+#~ msgstr "Modificaciones realizadas con éxitos"
+
+#~ msgid "Note successfully modified"
+#~ msgstr "Nota modificada con éxito"
+
+#~ msgid "Object part"
+#~ msgstr "Parte del objeto"
+
+#~ msgid "Owner of this group"
+#~ msgstr "Propietario de este grupo"
+
+#~ msgid "Password changed for box %s"
+#~ msgstr "Contraseña modificada para el buzón %s"
+
+#~ msgid "Popboxes for"
+#~ msgstr "Buzones pop para"
+
+#~ msgid "Quota"
+#~ msgstr "Cuota"
+
+#~ msgid "Quota used"
+#~ msgstr "Cuota usado"
+
+#~ msgid "Repository updated"
+#~ msgstr "Repositorio modificado"
+
+#~ msgid "Show CVS"
+#~ msgstr "Ver CVS"
+
+#~ msgid "Show Download repository"
+#~ msgstr "Ver repositorio de download"
+
+#~ msgid "Show Group"
+#~ msgstr "Ver grupo"
+
+#~ msgid "Show Mail Domain"
+#~ msgstr "Ver dominio mail"
+
+#~ msgid "Show MySQL database"
+#~ msgstr "Ver base de datos MySQL"
+
+#~ msgid "Show PostgreSQL database"
+#~ msgstr "Ver base de datos PostgreSQL"
+
+#~ msgid "Show User"
+#~ msgstr "Ver usuario"
+
+#~ msgid "UID"
+#~ msgstr "UID"
+
+#~ msgid "Unable to change password for box %s (%d)"
+#~ msgstr "Imposible cambiar contraseña para el buzón %s (%d)"
+
+#~ msgid "Unable to delete forward %s (%d)"
+#~ msgstr "Imposible borrar redirección %s (%d)"
+
+#~ msgid "Unable to modify forward %s (%d)"
+#~ msgstr "Imposible modificar redirección %s (%d)"
+
+#~ msgid "Unable to modify the object"
+#~ msgstr "Imposible modificar el objeto"
+
+#~ msgid "Update note"
+#~ msgstr "Actualizar nota"
+
+#~ msgid "Username:"
+#~ msgstr "Nombre de usuario"
+
+#~ msgid "You're not allowed to do this (ACL rights) "
+#~ msgstr "No está autorizado a hacer esto (Derechos ACL) "
+
+#~ msgid "%s is already subscribed"
+#~ msgstr "%s ya está suscrito"
+
+#~ msgid "An error occured while modifying the rights"
+#~ msgstr "Un error ocurrió durante la modificación de los derechos."
+
+#~ msgid "An error occured while unsubscribing the user"
+#~ msgstr "Un error ocurrió durante la desinscripción del usuario."
+
+#~ msgid "An error occured while updating the Download repository"
+#~ msgstr ""
+#~ "Un error ocurrió durante la actualización del repositorio de download."
+
+#~ msgid ""
+#~ "Be careful ! If you click on modify, VHFFS will stop the database and set "
+#~ "a new password for this database."
+#~ msgstr ""
+#~ "Tenga cuidado! Si hace clic en modificar, VHFFS detendrá el servidor de "
+#~ "base de datos y definirá una nueva contraseña para esta base de datos."
+
+#~ msgid "Cannot save"
+#~ msgstr "No se pudo guardar"
+
+#~ msgid "Download repository updated"
+#~ msgstr "Repositorio de download modificado"
+
+#~ msgid "Error, password can be only alphanumeric caracters"
+#~ msgstr "Error, contraseña solo puede contener carácteres alphanuméricos"
+
+#~ msgid ""
+#~ "Error, your group is not empty. Please remove all objects from this group "
+#~ "and try again"
+#~ msgstr ""
+#~ "Error, su grupo no está vacÃo. Por favor remueva todos los objetos de "
+#~ "este grupo y intente de nuevo"
+
+#~ msgid ""
+#~ "Invalid password. It must be at least 3 characters and contain only "
+#~ "letters (lower and uppercase) and numbers"
+#~ msgstr ""
+#~ "Contraseña inválida Debe tener al menos 3 carácteres y contener "
+#~ "solamente letras (mayusculas y minisculas) asi como cifras"
+
+#~ msgid "Modifications applied to your database"
+#~ msgstr "Modificaciónes realizadas en la base de datos"
+
+#~ msgid "No modification can be applied. Please check your fields."
+#~ msgstr ""
+#~ "No hay modificaciones que pueden ser realizadas. Por favor, verifique los "
+#~ "campos."
+
+#~ msgid "Not valid mail"
+#~ msgstr "Mail inválido"
+
+#~ msgid "Options successfully modified"
+#~ msgstr "Opciones modificada con éxito"
+
+#~ msgid "Rights successfully changed"
+#~ msgstr "Derechos modificados con éxito"
+
+#~ msgid "Successfully deleted"
+#~ msgstr "Borrado con éxito"
+
+#~ msgid "This database doesn't exist on VHFFS"
+#~ msgstr "Esta base de datos no existe en VHFFS"
+
+#~ msgid "Unable to change this database's password"
+#~ msgstr "Imposible cambiar contraseña de esta base de datos"
+
+#~ msgid "Your password is not correct. Please check it."
+#~ msgstr "Su contraseña no es correcta Por favor, verifique."
+
+#~ msgid ""
+#~ " was accepted\n"
+#~ "Please wait while we are creating your object\n"
+#~ msgstr ""
+#~ " ha sido aceptada\n"
+#~ "Por favor, espere mientras se procede a la creación del objeto\n"
+
+#~ msgid "<new site>."
+#~ msgstr "<nuevo sitio>."
+
+#~ msgid "ACL level"
+#~ msgstr "Nivel ACL"
+
+#~ msgid "Account successfully deleted"
+#~ msgstr "Cuenta borrada con éxito"
+
+#~ msgid "Add a member"
+#~ msgstr "Añadir un miembro"
+
+#~ msgid "Adress (ServerName directive)"
+#~ msgstr "Dirección (directiva ServerName)"
+
+#~ msgid "Already exists for this domain or bad parameters. Check your domain"
+#~ msgstr "Ya existe en este dominio o parámetros errados Verificar dominio"
+
+#~ msgid "An error occured while creating the message in the database"
+#~ msgstr ""
+#~ "Un error ocurrió durante la creación del mensaje en la base de datos"
+
+#~ msgid "An error occured while updating the CVS repository"
+#~ msgstr "Un error ocurrió durante la actualización del repositorio cvs."
+
+#~ msgid "CVS repository awaiting validation"
+#~ msgstr "Repositorio CVS en espera de validación"
+
+#~ msgid "Can't change password"
+#~ msgstr "No puede cambiar la contraseña"
+
+#~ msgid "Can't delete box %s"
+#~ msgstr "No puede destruir el buzón %s"
+
+#~ msgid "Can't modify object ..."
+#~ msgstr "No puede modificar el objeto ..."
+
+#~ msgid "Change this Website"
+#~ msgstr "Modificar este sitio web"
+
+#~ msgid ""
+#~ "Cheers,\n"
+#~ "The Moderator and Admin team\n"
+#~ msgstr ""
+#~ "Atentamente,\n"
+#~ "el moderador y el equipo de administración\n"
+
+#~ msgid "DNS awaiting validation"
+#~ msgstr "DNS en espera de validación"
+
+#~ msgid "Download repository awaiting validation"
+#~ msgstr "Repositorio de download en espera de validación"
+
+#~ msgid "Edit Web Area"
+#~ msgstr "Modificar zona web"
+
+#~ msgid "Email adress"
+#~ msgstr "Dirección de correo"
+
+#~ msgid "Forward successfully added"
+#~ msgstr "Redirección añadida"
+
+#~ msgid "Forward successfully deleted"
+#~ msgstr "Redirección borrada"
+
+#~ msgid "Groups awaiting validation"
+#~ msgstr "Grupos en espera de validación"
+
+#~ msgid "In hope to keep you in our hosting service"
+#~ msgstr "Esperamos que se quede en nuestro servicio de hospedaje"
+
+#~ msgid "List awaiting validation"
+#~ msgstr "Lista en espera de validación"
+
+#~ msgid "Mail Area awaiting validation"
+#~ msgstr "Dominio Mail en espera de validación"
+
+#~ msgid "Mail successfully sent"
+#~ msgstr "Mail enviado con éxito"
+
+#~ msgid "Modify this CVS repository"
+#~ msgstr "Modificar este repositorio CVS"
+
+#~ msgid "Modify this Download repository"
+#~ msgstr "Modificar este repositorio de download"
+
+#~ msgid "Modify this MySQL area"
+#~ msgstr "Modificar esta base de datos MySQL"
+
+#~ msgid "Modify this PostgreSQL database"
+#~ msgstr "Modificar esta base de datos PostgreSQL"
+
+#~ msgid "Modify this Subversion repository"
+#~ msgstr "Modificar este repositorio Subversion"
+
+#~ msgid "Modify this domain"
+#~ msgstr "Modificar este dominio"
+
+#~ msgid "Modify this group"
+#~ msgstr "Modificar este grupo"
+
+#~ msgid "Modify this list"
+#~ msgstr "Modificar esta lista"
+
+#~ msgid "Modify this mail domain"
+#~ msgstr "Modificar este dominio mail"
+
+#~ msgid "Modify this user"
+#~ msgstr "Modificar este usuario"
+
+#~ msgid "MySQL database awaiting validation"
+#~ msgstr "Base de datos MySQL en espera de validación"
+
+#~ msgid "No DNS to validate"
+#~ msgstr "No hay DNS por validar"
+
+#~ msgid "No Group to validate"
+#~ msgstr "No hay grupos por validar"
+
+#~ msgid "No Mail Area to validate"
+#~ msgstr "No hay zona mail por validar"
+
+#~ msgid "No Web Area to validate"
+#~ msgstr "No hay zona web por validar"
+
+#~ msgid "No database to validate"
+#~ msgstr "No hay base de datos por validar"
+
+#~ msgid "No list to validate"
+#~ msgstr "No hay listas por validar"
+
+#~ msgid "No repository to validate"
+#~ msgstr "No hay repositorio por validar"
+
+#~ msgid "Password successfully changed"
+#~ msgstr "Contraseña modificada con éxito"
+
+#~ msgid "Postgres database awaiting validation"
+#~ msgstr "Base de datos PostgreSQL por validar"
+
+#~ msgid "Send it"
+#~ msgstr "Enviar"
+
+#~ msgid "Show Web Area"
+#~ msgstr "Ver zona web"
+
+#~ msgid "Show this CVS repository"
+#~ msgstr "Ver este repositorio CVS"
+
+#~ msgid "Show this Download repository"
+#~ msgstr "Ver este repositorio de download"
+
+#~ msgid "Show this MySQL area"
+#~ msgstr "Ver esta base de datos MySQL"
+
+#~ msgid "Show this PostgreSQL database"
+#~ msgstr "Ver esta base de datos PostgreSQL"
+
+#~ msgid "Show this Website"
+#~ msgstr "Ver este sitio web"
+
+#~ msgid "Show this group"
+#~ msgstr "Ver este grupo"
+
+#~ msgid "Show this list"
+#~ msgstr "Ver esta lista"
+
+#~ msgid "Show this mail domain"
+#~ msgstr "Ver este dominio mail"
+
+#~ msgid "Show this user"
+#~ msgstr "Ver este usuario"
+
+#~ msgid "Sorry, can't add ACL"
+#~ msgstr "Disculpa, imposible añadir ACL"
+
+#~ msgid "Subversion repository awaiting validation"
+#~ msgstr "Repositorio Subersion en espera de validación"
+
+#~ msgid "Successfully added"
+#~ msgstr "Añadido con éxito"
+
+#~ msgid "The Moderator and Admin team"
+#~ msgstr "El moderador y la equipo admin"
+
+#~ msgid "This box has been successfully added to this domain"
+#~ msgstr "Esto búzon ha sido añadido con éxito a estedominio"
+
+#~ msgid "This forward has been successfully added to this domain"
+#~ msgstr "Esta redirección ha sido añadida con éxito a este dominio"
+
+#~ msgid "This is not a correct mail address"
+#~ msgstr "Este no es una dirección de correo correcta"
+
+#~ msgid "This member already exists on this list !"
+#~ msgstr "Este miembro ya existe en la lista!"
+
+#~ msgid "Unable to change virus protection status for %s"
+#~ msgstr "No se pudo modificar el estatus del anti-virus para %s"
+
+#~ 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 ""
+#~ "Utilizar los servidores VHFFS para administrar estos mails,<br/>deberá "
+#~ "utilizar el host pop.%s o imap.%s para recuperar sus mensajes"
+
+#~ msgid "User %s does not exists"
+#~ msgstr "El usuario %s no existe"
+
+#~ msgid "VHFFS Login"
+#~ msgstr "Conexión VHFFS"
+
+#~ msgid "VHFFS Logout"
+#~ msgstr "Desconexión VHFFS"
+
+#~ msgid "VHFFS Password Lost OK"
+#~ msgstr "VHFFS Contraseña perdida OK"
+
+#~ msgid "VHFFS Password Lost failed"
+#~ msgstr "Imposible identificar el usuario"
+
+#~ msgid "Web Area awaiting validation"
+#~ msgstr "Zona web en espera de validación"
+
+#~ msgid "Welcome"
+#~ msgstr "Bienvenido"
+
+#~ msgid "Your CVS repository request"
+#~ msgstr "Su solicitud de repositorio CVS"
+
+#~ msgid "Your CVS request : %s "
+#~ msgstr "Su solicitud de CVS: %s "
+
+#~ msgid "Your DNS hosting request"
+#~ msgstr "Su solicitud de hospedaje DNS"
+
+#~ msgid "Your DNS hosting request for the domain : %s "
+#~ msgstr "Su solicitud de hospedaje DNS para el dominio: %s "
+
+#~ msgid "Your Download repository request"
+#~ msgstr "Su solicitud de repositorio de download"
+
+#~ msgid "Your Group request"
+#~ msgstr "Su solicitud de grupo"
+
+#~ msgid "Your Group request : %s "
+#~ msgstr "Su solicitud de grupo: %s "
+
+#~ msgid "Your Mail hosting request"
+#~ msgstr "Su solicitud de hospedaje mail"
+
+#~ msgid "Your Mail hosting request for the domain: %s "
+#~ msgstr "Su solicitud de hospedaje mail para el dominio: %s "
+
+#~ msgid "Your Mailing-list request"
+#~ msgstr "Su solicitud de lista de correo"
+
+#~ msgid "Your MySQL database request"
+#~ msgstr "Su solicitud de base de datos MySQL"
+
+#~ msgid "Your MySQL database request : %s "
+#~ msgstr "Su solicitud de base de datos MySQL: %s "
+
+#~ msgid "Your PostgreSQL database request"
+#~ msgstr "Su solicitud de base de datos PostgreSQL"
+
+#~ msgid "Your PostgreSQL database request : %s "
+#~ msgstr "Su solicitud de base de datos PostgreSQL: %s "
+
+#~ msgid "Your Subversion repository request"
+#~ msgstr "Su solicitud de repositorio subversion"
+
+#~ msgid "Your Subversion repository request : %s"
+#~ msgstr "Su solicitud de repositorio subversion: %s"
+
+#~ msgid "Your hosting request"
+#~ msgstr "Su solicitud de hospedaje"
+
+#~ msgid ""
+#~ "Your repository name is not correct. It must contains at least 3 caracters"
+#~ msgstr ""
+#~ "El nombre de su repositorio no es correcto. Debe tener por lo menos 3 "
+#~ "carácteres"
+
+#~ msgid ""
+#~ "Your repository name is not correct. It must contains only caracter and "
+#~ "numbers"
+#~ msgstr ""
+#~ "El nombre de su repositorio no es correcto. Debe tener solo letras y "
+#~ "cifras"
+
+#~ msgid "Your request for a "
+#~ msgstr "Su solicitud de "
+
+#~ msgid "Your request on %s"
+#~ msgstr "Su solicitud en %s"
+
+#~ msgid "Your web hosting request for the servername : %s "
+#~ msgstr "Su solicitud de hospedaje web en el servidor: %s "
+
+#~ msgid "has been refused by the Moderators team"
+#~ msgstr "ha sido rechazada por el equipo de moderación"
+
+#~ msgid "no information about date"
+#~ msgstr "no hay información sobre la fecha"
+
+#~ msgid "Add this user !"
+#~ msgstr "Añadir este usuario!"
+
+#~ msgid "Add this user to this group"
+#~ msgstr "Añadir este usuario en este grupo"
+
+#~ msgid "Alert state"
+#~ msgstr "Alert state"
+
+#~ msgid "An error occured while adding an ACL for the group"
+#~ msgstr "An error occured while adding an ACL for the group"
+
+#~ msgid "An error occured while adding yourself to the ACL"
+#~ msgstr "An error occured while adding yourself to the ACL"
+
+#~ msgid "An error occured while creating the list"
+#~ msgstr "An error occured while creating the list"
+
+#~ msgid "An error occured while creating the object"
+#~ msgstr "An error occured while creating the object"
+
+#~ msgid "An error occured while creating the object %s %s"
+#~ msgstr "An error occured while creating the object %s %s"
+
+#~ msgid "An error occured while setting up the ACL"
+#~ msgstr "An error occured while setting up the ACL"
+
+#~ msgid "Archive are not open for this list"
+#~ msgstr "Archive are not open for this list"
+
+#~ msgid "Archives"
+#~ msgstr "Archives"
+
+#~ msgid "Archives for "
+#~ msgstr "Archives for "
+
+#~ msgid "Archives for year"
+#~ msgstr "Archives for year"
+
+#~ msgid "Bad listname"
+#~ msgstr "Bad listname"
+
+#~ msgid "Bad message-id"
+#~ msgstr "Bad message-id"
+
+#~ msgid "CGI Errror!"
+#~ msgstr "CGI Errror!"
+
+#~ msgid "Cannot add this user in this group"
+#~ msgstr "Cannot add this user in this group"
+
+#~ msgid "Cannot remove the owner from a group"
+#~ msgstr "Cannot remove the owner from a group"
+
+#~ msgid "Change language"
+#~ msgstr "Cambiar idioma"
+
+#~ msgid "Change theme"
+#~ msgstr "Cambiar tema"
+
+#~ msgid "Crawl"
+#~ msgstr "Crawl"
+
+#~ msgid "Create a Postgres database"
+#~ msgstr "Crear una base de datos PostgreSQL"
+
+#~ msgid "Database name must contain at least 3 caracters"
+#~ msgstr "El nombre de la base debe tener por lo menos 3 carácteres"
+
+#~ msgid "Database name must contain between 3 and 16 characters"
+#~ msgstr "Database name must contain between 3 and 16 characters"
+
+#~ msgid "Doe not exist in the VHFFS database"
+#~ msgstr "Doe not exist in the VHFFS database"
+
+#~ msgid "Don't use Crawl"
+#~ msgstr "Don't use Crawl"
+
+#~ msgid "Error when upload avatar for this object"
+#~ msgstr "Error when upload avatar for this object"
+
+#~ msgid "Error while creating list (unknow problem)"
+#~ msgstr "Error while creating list (unknow problem)"
+
+#~ msgid "Invalid mail domain"
+#~ msgstr "Invalid mail domain"
+
+#~ msgid "Mail area successfully created !"
+#~ msgstr "Mail area successfully created !"
+
+#~ msgid "Mailing-list successfully created !"
+#~ msgstr "Mailing-list successfully created !"
+
+#~ msgid "Message from list %s"
+#~ msgstr "Message from list %s"
+
+#~ msgid "Password must contains only alphanum caracters"
+#~ msgstr "Password must contains only alphanum caracters"
+
+#~ msgid "PostgreSQL database name"
+#~ msgstr "Nombre de la base de datos PostgreSQL"
+
+#~ msgid "PostgreSQL password for this database"
+#~ msgstr "Contraseña PostgreSQL para esta base de datos"
+
+#~ msgid "Project Successfully modified"
+#~ msgstr "Project Successfully modified"
+
+#~ msgid "Remove this user from this group"
+#~ msgstr "Remove this user from this group"
+
+#~ msgid "Send logo"
+#~ msgstr "Send logo"
+
+#~ msgid "Servername error. Please enter a valid servername"
+#~ msgstr "Servername error. Please enter a valid servername"
+
+#~ msgid "Subject: "
+#~ msgstr "TÃtulo: "
+
+#~ msgid ""
+#~ "Sucessfully added this user to this group. Please wait while robots add "
+#~ "him"
+#~ msgstr ""
+#~ "Sucessfully added this user to this group. Please wait while robots add "
+#~ "him"
+
+#~ msgid "The Download repository object was successfully created !"
+#~ msgstr "The Download repository object was successfully created !"
+
+#~ msgid "The MySQL object was successfully created !"
+#~ msgstr "The MySQL object was successfully created !"
+
+#~ msgid "The PostgreSQL object was successfully created !"
+#~ msgstr "The PostgreSQL object was successfully created !"
+
+#~ msgid "The Subversion object was successfully created !"
+#~ msgstr "The Subversion object was successfully created !"
+
+#~ msgid "The database name is not valid"
+#~ msgstr "The database name is not valid"
+
+#~ msgid "The database name is too long. There is a 32 character limit"
+#~ msgstr "The database name is too long. There is a 32 character limit"
+
+#~ msgid ""
+#~ "The groupname should contain at least 3 caracters and must contain only "
+#~ "letters or numbers in lower case"
+#~ msgstr ""
+#~ "The groupname should contain at least 3 caracters and must contain only "
+#~ "letters or numbers in lower case"
+
+#~ msgid "The password is not valid"
+#~ msgstr "The password is not valid"
+
+#~ msgid ""
+#~ "The prefix of your databases is constant, so the names of your databases "
+#~ "will be %s_DBNAME<br>. One user will be created, which will be called %"
+#~ "s_DBNAME"
+#~ msgstr ""
+#~ "The prefix of your databases is constant, so the names of your databases "
+#~ "will be %s_DBNAME<br>. One user will be created, which will be called %"
+#~ "s_DBNAME"
+
+#~ msgid ""
+#~ "The repository name is too short. It must contains at least 3 caracters, "
+#~ "and must only contain letters and numbers"
+#~ msgstr ""
+#~ "The repository name is too short. It must contains at least 3 caracters, "
+#~ "and must only contain letters and numbers"
+
+#~ msgid "This group is not activated yet"
+#~ msgstr "This group is not activated yet"
+
+#~ msgid "This repository name already exists"
+#~ msgstr "This repository name already exists"
+
+#~ msgid "This user does not exists "
+#~ msgstr "This user does not exists "
+
+#~ msgid "This user is not in this group "
+#~ msgstr "This user is not in this group "
+
+#~ msgid "Unable to record changes on this domain"
+#~ msgstr "Unable to record changes on this domain"
+
+#~ msgid "Use Crawl"
+#~ msgstr "Use Crawl"
+
+#~ msgid "Use crawl (useful for web-search engine)"
+#~ msgstr "Use crawl (useful for web-search engine)"
+
+#~ msgid "Web area successfully created !"
+#~ msgstr "Web area successfully created !"
+
+#~ msgid "You don't own this domain"
+#~ msgstr "You don't own this domain"
+
+#~ msgid "You have been successfully subscribed to the list %s\n"
+#~ msgstr "You have been successfully subscribed to the list %s\n"
+
+#~ msgid "You need to manage at least a domain to host a mailing-list"
+#~ msgstr "You need to manage at least a domain to host a mailing-list"
+
+#~ msgid "Your request on VHFFS platform"
+#~ msgstr "Your request on VHFFS platform"
+
+#~ msgid "Administrator Menu"
+#~ msgstr "Administrator Menu"
+
+#~ msgid "CVS Search"
+#~ msgstr "CVS Search"
+
+#~ msgid "CVS repository"
+#~ msgstr "CVS repository"
+
+#~ msgid "Create"
+#~ msgstr "Create"
+
+#~ msgid "DB Search"
+#~ msgstr "DB Search"
+
+#~ msgid "DNS"
+#~ msgstr "DNS"
+
+#~ msgid "Database Access"
+#~ msgstr "Database Access"
+
+#~ msgid "Documentation"
+#~ msgstr "Documentation"
+
+#~ msgid "Download repository"
+#~ msgstr "Download repository"
+
+#~ msgid "Download repository admin"
+#~ msgstr "Download repository admin"
+
+#~ msgid "List all CVS"
+#~ msgstr "List all CVS"
+
+#~ msgid "List all DBs"
+#~ msgstr "List all DBs"
+
+#~ msgid "List all Postgres DB"
+#~ msgstr "List all Postgres DB"
+
+#~ msgid "List all SVN repo"
+#~ msgstr "List all SVN repo"
+
+#~ msgid "List all domains"
+#~ msgstr "List all domains"
+
+#~ msgid "List all lists"
+#~ msgstr "List all lists"
+
+#~ msgid "List websites"
+#~ msgstr "List websites"
+
+#~ msgid "MYSQL Admin"
+#~ msgstr "MYSQL Admin"
+
+#~ msgid "Mail Admin"
+#~ msgstr "Mail Admin"
+
+#~ msgid "Mailing-lists Admin"
+#~ msgstr "Mailing-lists Admin"
+
+#~ msgid "MySQL Databases"
+#~ msgstr "MySQL Databases"
+
+#~ msgid "NS Admin"
+#~ msgstr "NS Admin"
+
+#~ msgid "PostgreSQL Databases"
+#~ msgstr "PostgreSQL Databases"
+
+#~ msgid "Postgres Admin"
+#~ msgstr "Postgres Admin"
+
+#~ msgid "Project : "
+#~ msgstr "Project : "
+
+#~ msgid "Project Configuration"
+#~ msgstr "Project Configuration"
+
+#~ msgid "Search for a PostgreSQL database"
+#~ msgstr "Search for a PostgreSQL database"
+
+#~ msgid "Search for a domain"
+#~ msgstr "Search for a domain"
+
+#~ msgid "Subversion Admin"
+#~ msgstr "Subversion Admin"
+
+#~ msgid "Subversion repository"
+#~ msgstr "Subversion repository"
+
+#~ msgid "Web Areas"
+#~ msgstr "Web Areas"
+
+#~ msgid "CVS repositories for this group"
+#~ msgstr "CVS repositories for this group"
+
+#~ msgid "Domains for this group"
+#~ msgstr "Domains for this group"
+
+#~ msgid "Go to admin"
+#~ msgstr "Go to admin"
+
+#~ msgid "Mail domain for this group"
+#~ msgstr "Mail domain for this group"
+
+#~ msgid "Mailing-lists for this group"
+#~ msgstr "Mailing-lists for this group"
+
+#~ msgid "Mysql database for this group"
+#~ msgstr "Mysql database for this group"
+
+#~ msgid "No DNS domain for this group"
+#~ msgstr "No DNS domain for this group"
+
+#~ msgid "No Mail domain for this group"
+#~ msgstr "No Mail domain for this group"
+
+#~ msgid "No Mailing-list for this group"
+#~ msgstr "No Mailing-list for this group"
+
+#~ msgid "No PostgreSQL database for this group"
+#~ msgstr "No PostgreSQL database for this group"
+
+#~ msgid "No download repository for this group"
+#~ msgstr "No download repository for this group"
+
+#~ msgid "No mysql database for this group"
+#~ msgstr "No mysql database for this group"
+
+#~ msgid "PostgreSQL database for this group"
+#~ msgstr "PostgreSQL database for this group"
+
+#~ msgid "SVN repositories for this group"
+#~ msgstr "SVN repositories for this group"
+
+#~ msgid "View history"
+#~ msgstr "View history"
+
+#~ msgid "ACL successfully added"
+#~ msgstr "ACL successfully added"
+
+#~ msgid "ACL successfully deleted"
+#~ msgstr "ACL successfully deleted"
+
+#~ msgid "ACL successfully modified"
+#~ msgstr "ACL successfully modified"
+
+#~ msgid "CGI Error "
+#~ msgstr "Error CGI "
+
+#~ msgid "Cannot get informations on this object %s %s"
+#~ msgstr "Cannot get informations on this object %s %s"
+
+#~ msgid "Modify this ACL"
+#~ msgstr "Modify this ACL"
+
+#~ msgid "No webarea for this group"
+#~ msgstr "No webarea for this group"
+
+#~ msgid "Object Error"
+#~ msgstr "Object Error"
+
+#~ msgid "Sorry, can't delete this ACL"
+#~ msgstr "Sorry, can't delete this ACL"
+
+#~ msgid "The group does not exist"
+#~ msgstr "The group does not exist"
+
+#~ msgid "This type of object is not treated in the panel."
+#~ msgstr "This type of object is not treated in the panel."
+
+#~ msgid "Webarea for this group"
+#~ msgstr "Webarea for this group"
+
+#~ msgid "ACL Administration for : "
+#~ msgstr "ACL Administration for : "
+
+#~ msgid "Admin DNS"
+#~ msgstr "Admin DNS"
+
+#~ msgid "Admin account : "
+#~ msgstr "Admin account : "
+
+#~ msgid "CNAME field successfully updated"
+#~ msgstr "CNAME field successfully updated"
+
+#~ msgid "Cannot add this ressource to this domain"
+#~ msgstr "Cannot add this ressource to this domain"
+
+#~ msgid "Cannot delete it."
+#~ msgstr "Cannot delete it."
+
+#~ msgid "Cannot modify this ressource on this domain"
+#~ msgstr "Cannot modify this ressource on this domain"
+
+#~ msgid "Cannot update CNAME on this domain"
+#~ msgstr "Cannot update CNAME on this domain"
+
+#~ msgid "Cannot update MX on this domain"
+#~ msgstr "Cannot update MX on this domain"
+
+#~ msgid "Create a DNS "
+#~ msgstr "Crear un DNS "
+
+#~ msgid "Go to Login"
+#~ msgstr "Go to Login"
+
+#~ msgid "Go to login page"
+#~ msgstr "Go to login page"
+
+#~ msgid "Invalid IP"
+#~ msgstr "Invalid IP"
+
+#~ msgid "List all all A reccords"
+#~ msgstr "List all all A reccords"
+
+#~ msgid "Login OK, please wait..."
+#~ msgstr "Login OK, please wait..."
+
+#~ msgid "MX successfully changed"
+#~ msgstr "MX successfully changed"
+
+#~ msgid "Moderated"
+#~ msgstr "Moderated"
+
+#~ msgid "Moderator account : "
+#~ msgstr "Moderator account : "
+
+#~ msgid "Open archives"
+#~ msgstr "Open archives"
+
+#~ msgid "Open post"
+#~ msgstr "Open post"
+
+#~ msgid "Panel Access"
+#~ msgstr "Panel Access"
+
+#~ msgid "Resource successfully added to this domain"
+#~ msgstr "Resource successfully added to this domain"
+
+#~ msgid "Subscribed. Waiting for confirmation"
+#~ msgstr "Subscribed. Confirmación pendiente"
+
+#~ msgid "Subscriber"
+#~ msgstr "Subscriber"
+
+#~ msgid "This domain name doesn't exist in the VHFFS database"
+#~ msgstr "This domain name doesn't exist in the VHFFS database"
+
+#~ msgid "This part of the domain is now removed."
+#~ msgstr "This part of the domain is now removed."
+
+#~ msgid "Updated !"
+#~ msgstr "Updated !"
+
+#~ msgid "User Successfully modified"
+#~ msgstr "User Successfully modified"
+
+#~ msgid "User account : "
+#~ msgstr "User account : "
+
+#~ msgid "VHFFS Login OK"
+#~ msgstr "VHFFS Login OK"
+
+#~ msgid "VHFFS Login failed"
+#~ msgstr "VHFFS Login failed"
+
+#~ msgid "Waiting for delete"
+#~ msgstr "Waiting for delete"
+
+#~ msgid "You have been successfully removed from the list %s\n"
+#~ msgstr "You have been successfully removed from the list %s\n"
+
+#~ msgid "Your request has been removed.\n"
+#~ msgstr "Your request has been removed.\n"
+
+#~ msgid "An error occured while applying changes"
+#~ msgstr "Un error ocurrió durante la modificación"
+
+#~ msgid "An error occured while fetching information about this mailing list"
+#~ msgstr "An error occured while fetching information about this mailing list"
+
+#~ msgid "Cannot build object"
+#~ msgstr "Cannot build object"
+
+#~ msgid "Cannot instanciate object %s"
+#~ msgstr "Cannot instanciate object %s"
+
+#~ msgid "Error when applying changes"
+#~ msgstr "Error when applying changes"
+
+#~ msgid "No such user on Vhffs"
+#~ msgstr "No such user on Vhffs"
+
+#~ msgid "Unable to reccord changes on this domain"
+#~ msgstr "Unable to reccord changes on this domain"
+
+#~ msgid "Your request on VHFFS was accepted\n"
+#~ msgstr "Your request on VHFFS was accepted\n"
+
+#~ msgid "(waiting for creation)"
+#~ msgstr "Creación pendiente"
+
+#~ msgid "(waiting for moderation)"
+#~ msgstr "(Moderación pendiente)"
+
+#~ msgid "ACL management for: "
+#~ msgstr "Administrar ACL para: "
+
+#~ msgid "Activate email address %s@% "
+#~ msgstr "Activatar dirección de correo %s@% "
+
+#~ msgid "All Mail Domains lists"
+#~ msgstr "Lista de todos los dominios mail"
+
+#~ msgid "All Users lists"
+#~ msgstr "Lista de todos los usuarios"
+
+#~ msgid "All Web Areas lists"
+#~ msgstr "Lista de todas las zonas web"
+
+#~ msgid "All domains lists"
+#~ msgstr "Lista de todos los dominios"
+
+#~ msgid ""
+#~ "Cannot read the cookie from your browser. Please check your browser's "
+#~ "settings to accept cookiesfrom this site and then log in again!"
+#~ msgstr ""
+#~ "No puede leer el cookie de su navegador. Por favor verifique las opciones "
+#~ "de su navegador para aceptar cookie de este sitio e intenta otra vez!"
+
+#~ msgid ""
+#~ "Cannot create User. A username should contain at least 3 characters, only "
+#~ "written in lowercasealphanumeric format"
+#~ msgstr ""
+#~ "Imposible crear el usuario. A username should contain at least 3 "
+#~ "characters, only written in lowercasealphanumeric format"
+
+#~ msgid "Cannot obtain informations about this object"
+#~ msgstr "No se pudo obtener informaciónes sobre esto objeto"
+
+#~ msgid "Cannot retrieve informations about this CVS"
+#~ msgstr "No se pudo recuperar informaciones sobre este CVS"
+
+#~ msgid "Change forward address of all addresses"
+#~ msgstr "Cambiar la redirección de todas las cuentas"
+
+#~ msgid "Create a user"
+#~ msgstr "Crear un usuario"
+
+#~ msgid "Database Search"
+#~ msgstr "Búsqueda en la base de datos"
+
+#~ msgid "Database name must contains at least 3 caracters and no more than 16"
+#~ msgstr ""
+#~ "Database name must contains at least 3 caracters and no more than 16"
+
+#~ msgid "Delete this account"
+#~ msgstr "Destruir esta cuenta"
+
+#~ msgid "Do not delete this project, keep it."
+#~ msgstr "No borre el proyecto, guárdalo."
+
+#~ msgid "Email changed"
+#~ msgstr "La dirección de correo ha sido cambiada"
+
+#~ msgid "Error occured while adding ACL to you"
+#~ msgstr "Un error ocurrió al añadir ACL a su cuenta"
+
+#~ msgid "Error occured while creating"
+#~ msgstr "Un error ocurrió durante la creación"
+
+#~ msgid "Error occured while fetching list object"
+#~ msgstr "Un error ocurrió durante la recuperación de la lista de objetos"
+
+#~ msgid "Error occured with your adresse in your profile"
+#~ msgstr "Un error ocurrió con la dirección en su perfil"
+
+#~ msgid "Forward all mails"
+#~ msgstr "Redirigir todos los correo"
+
+#~ msgid "Group owner for this database "
+#~ msgstr "Group owner for this database "
+
+#~ msgid "Group to validate"
+#~ msgstr "Group to validate"
+
+#~ msgid "Hello World!\n"
+#~ msgstr "Hello World!\n"
+
+#~ msgid "Is this repository publicly accessible?"
+#~ msgstr "Is this repository publicly accessible?"
+
+#~ msgid "Just a try, and %s\n"
+#~ msgstr "Just a try, and %s\n"
+
+#~ msgid "Keep this."
+#~ msgstr "Keep this."
+
+#~ msgid "MySQL management"
+#~ msgstr "MySQL management"
+
+#~ msgid "Modifications applied to the database"
+#~ msgstr "Modifications applied to the database"
+
+#~ msgid "No Mail Area to moderate"
+#~ msgstr "No Mail Area to moderate"
+
+#~ msgid "No valid state"
+#~ msgstr "No valid state"
+
+#~ msgid "No Web Area to moderate"
+#~ msgstr "No Web Area to moderate"
+
+#~ msgid "No database to moderate"
+#~ msgstr "No database to moderate"
+
+#~ msgid "Not exists in database"
+#~ msgstr "Not exists in database"
+
+#~ msgid "On the alert"
+#~ msgstr "On the alert"
+
+#~ msgid "Password succesfully modified. Please wait while robots update it."
+#~ msgstr "Password succesfully modified. Please wait while robots update it."
+
+#~ msgid "Please confirm your password"
+#~ msgstr "Please confirm your password"
+
+#~ msgid "Please enter a justification for this domain hosting."
+#~ msgstr "Please enter a justification for this domain hosting."
+
+#~ msgid "Please enter a justification for this mailing list."
+#~ msgstr "Please enter a justification for this mailing list."
+
+#~ msgid "Please enter a justification for this mail space."
+#~ msgstr "Please enter a justification for this mail space."
+
+#~ msgid "Please enter a justification for this web hosting."
+#~ msgstr "Please enter a justification for this web hosting."
+
+#~ msgid "Repository CVS"
+#~ msgstr "Repositorio CVS"
+
+#~ msgid "Repository Subversion"
+#~ msgstr "Repositorio Subversion"
+
+#~ msgid "SVN repo Search"
+#~ msgstr "SVN repo Search"
+
+#~ msgid "Succesfully deleted. Please wait while robots delete it."
+#~ msgstr "Succesfully deleted. Please wait while robots delete it."
+
+#~ msgid "Thanks,"
+#~ msgstr "Thanks,"
+
+#~ msgid "The user does not exists"
+#~ msgstr "The user does not exists"
+
+#~ msgid ""
+#~ "This action is non-reversible. When you delete it, you cannot cancel."
+#~ msgstr ""
+#~ "Esta acción no es reversible. When you delete it, you cannot cancel."
+
+#~ msgid "This group already exists"
+#~ msgstr "This group already exists"
+
+#~ msgid ""
+#~ "To be able to log in and set a new password, enter your login below and a "
+#~ "new temporary passwordwill be sent to your registered email."
+#~ msgstr ""
+#~ "To be able to log in and set a new password, enter your login below and a "
+#~ "new temporary passwordwill be sent to your registered email."
+
+#~ msgid ""
+#~ "User successfully added to this repository. Please wait while robots "
+#~ "create it."
+#~ msgstr ""
+#~ "User successfully added to this repository. Please wait while robots "
+#~ "create it."
+
+#~ msgid "Username already exists"
+#~ msgstr "Nombre de usuario ya existe"
+
+#~ msgid "Username is not correct"
+#~ msgstr "Nombre de usuario no es correcto"
+
+#~ msgid "Users Management"
+#~ msgstr "Administración de usuarios"
+
+#~ msgid "Users list"
+#~ msgstr "Lista de usuarios"
+
+#~ msgid "Validate CVS Repository "
+#~ msgstr "Validar repositorio CVS "
+
+#~ msgid "VHFFS Group"
+#~ msgstr "Grupo VHFFS"
+
+#~ msgid "VHFFS Panel"
+#~ msgstr "Panel VHFFS"
+
+#~ msgid "VHFFS User"
+#~ msgstr "Usuario VHFFS"
+
+#~ msgid "Warning threshold"
+#~ msgstr "Warning threshold"
+
+#~ msgid "Waiting for destruction"
+#~ msgstr "Destrucción pendiente"
+
+#~ msgid "Web Area management"
+#~ msgstr "Administración zona web"
+
+#~ msgid "ACL sucessfuly added"
+#~ msgstr "ACL añadida con éxito"
+
+#~ msgid "April"
+#~ msgstr "Abril"
+
+#~ msgid "August"
+#~ msgstr "Agosto"
+
+#~ msgid "Cheers,"
+#~ msgstr "Atentamente,"
+
+#~ msgid "December"
+#~ msgstr "Diciembre"
+
+#~ msgid "Description updated"
+#~ msgstr "Descripción modificada"
+
+#~ msgid "Disable anti-spam"
+#~ msgstr "Desactivar el anti-spam"
+
+#~ msgid "Disable anti-virus"
+#~ msgstr "Desactivar el anti-virus"
+
+#~ msgid "February"
+#~ msgstr "Febrero"
+
+#~ msgid "Group not found"
+#~ msgstr "Grupo no encontrado"
+
+#~ msgid "Groupname:"
+#~ msgstr "Nombre del grupo"
+
+#~ msgid "IP/host of your NS"
+#~ msgstr "Nombre de dominio del Servidor de Nombres"
+
+#~ msgid "If you encounters problem, please mail: %s\n"
+#~ msgstr "Si encuentra problemas, por favor mande un correo a: %s\n"
+
+#~ msgid "January"
+#~ msgstr "Enero"
+
+#~ msgid "July"
+#~ msgstr "Julio"
+
+#~ msgid "June"
+#~ msgstr "Junio"
+
+#~ msgid "March"
+#~ msgstr "Marzo"
+
+#~ msgid "May"
+#~ msgstr "Mayo"
+
+#~ msgid "November"
+#~ msgstr "Noviembre"
+
+#~ msgid "October"
+#~ msgstr "Octubre"
+
+#~ msgid "Password will not be modified if it is set to 'blanked' or empty"
+#~ msgstr ""
+#~ "La contraseña no será modificada si deja el cambo en blanco o vacÃo"
+
+#~ msgid "Platform temporary closed"
+#~ msgstr "Plataforma cerrada temporalmente"
+
+#~ msgid "September"
+#~ msgstr "Septiembre"
+
+#~ msgid "Spam protection is not allowed"
+#~ msgstr "Protección spam no autorizada"
+
+#~ msgid "Unknown month"
+#~ msgstr "Unknown month"
+
+#~ msgid "Virus protection is not allowed"
+#~ msgstr "Virus protection is not allowed"
+
+#~ msgid "Your Download repository request : %s "
+#~ msgstr "Your Download repository request : %s "
+
+#~ msgid "Your Mailing-list request : %s "
+#~ msgstr "Your Mailing-list request : %s "
+
+#~ msgid "Your request on %s platform"
+#~ msgstr "Your request on %s platform"
+
+#~ msgid "ml adress here..."
+#~ msgstr "ml adress here..."
Deleted: trunk/vhffs-intl/extra_strings.pl
===================================================================
--- trunk/vhffs-intl/extra_strings.pl 2008-01-09 20:46:27 UTC (rev 1118)
+++ trunk/vhffs-intl/extra_strings.pl 2008-01-10 06:39:28 UTC (rev 1119)
@@ -1,46 +0,0 @@
-# This is a dummy perl file use feed xgettext with
-# string ids that can't be passed directly to gettext
-# (arrays, generation).
-
-use strict;
-use utf8;
-
-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');
-gettext_noop('help_user_project');
-gettext_noop('help_user_admin');
-
-# 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: trunk/vhffs-intl/fr_FR.po
===================================================================
--- trunk/vhffs-intl/fr_FR.po (rev 0)
+++ trunk/vhffs-intl/fr_FR.po 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,5174 @@
+# translation of fr.po to
+# VHFFS FR translation file
+# Copyright (C) 2005 Julien Delange
+# This file is distributed under the same license as the VHFFS package.
+#
+# Julien Delange <julien@xxxxxxxxx>, 2005.
+# Christophe Benz <christophebenz@xxxxxxxx>, 2006.
+# Cyril Brulebois <cyril.brulebois@xxxxxxxxxxxxxxxx>, 2006.
+# Sylvain Vrignaud <misric@xxxxxxxxxx>, 2007.
+# Sylvain Rochet <gradator@xxxxxxxxxxxx>, 2007.
+# Samuel Lesueur <crafty@xxxxxxxxxxxxx>, 2007
+msgid ""
+msgstr ""
+"Project-Id-Version: fr\n"
+"Report-Msgid-Bugs-To: vhffs-dev@xxxxxxxxx\n"
+"POT-Creation-Date: 2008-01-09 21:38+0100\n"
+"PO-Revision-Date: 2007-12-06 01:11+0100\n"
+"Last-Translator: \n"
+"Language-Team: <en@xxxxxx>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:68
+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.pm:148 vhffs-api/src/Vhffs/Listengine.pm:164
+#: vhffs-api/src/Vhffs/Listengine.pm:167 vhffs-api/src/Vhffs/Listengine.pm:442
+msgid "\n"
+msgstr "\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:425
+#, perl-format
+msgid ""
+" %s-request@%s\n"
+"with the following subject :\n"
+" \"subscription accept %s %s\" \n"
+msgstr ""
+" %s-request@%s\n"
+"Avec le sujet suivant :\n"
+" \"Inscription acceptée %s %s\" \n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:428
+#, perl-format
+msgid ""
+" %s-request@%s\n"
+"with the following subject :\n"
+" \"subscription refuse %s %s\" \n"
+msgstr ""
+" %s-request@%s\n"
+"Avec le sujet suivant :\n"
+" \"Inscription refusée %s %s\" \n"
+
+#: vhffs-public/groupsearch.pl:79
+#, perl-format
+msgid "%d group(s) found"
+msgstr ""
+
+#: vhffs-public/usersearch.pl:80
+#, perl-format
+msgid "%d user(s) found"
+msgstr ""
+
+#: vhffs-public/websitesearch.pl:78
+#, perl-format
+msgid "%d websites(s) found"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:296
+#, perl-format
+msgid "%s has been added"
+msgstr "%s a été ajouté"
+
+#: vhffs-panel/mailinglist/prefs.pl:294
+#, perl-format
+msgid "%s is already a member of this list"
+msgstr "%s est déjà un membre de la liste"
+
+#: vhffs-panel/mail/prefs.pl:195
+#, perl-format
+msgid "%s is not a correct mail address"
+msgstr "%s n'est pas une adresse email correcte"
+
+#: vhffs-panel/mailinglist/prefs.pl:292
+#, perl-format
+msgid "%s is not a valid mail"
+msgstr "%s n'est pas une adresse email valide"
+
+#: vhffs-public/index.pl:65
+#, perl-format
+msgid "%s public area"
+msgstr "Zone publique de %s"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:710
+#, perl-format
+msgid "%s's Panel"
+msgstr "Panel de %s"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:150 vhffs-api/src/Vhffs/Listengine.pm:169
+#: vhffs-api/src/Vhffs/Listengine.pm:444
+#, perl-format
+msgid "%s-request@%s with subject \"help\"\n"
+msgstr "%s-request@%s Avec pour sujet \"help\"\n"
+
+#: vhffs-panel/dns/prefs.pl:312
+#, perl-format
+msgid "@ represents the origin (%s)"
+msgstr "@ représente l'origine (%s)"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:299
+msgid ""
+"A CNAME, A or AAAA record with the same name already exists for this domain"
+msgstr ""
+"Un enregistrement CNAME, A ou AAAA avec le même nom existe déjà pour ce "
+"domaine"
+
+#: vhffs-panel/dns/prefs.pl:113
+msgid "A Record deleted"
+msgstr "Enregistrement A supprimé"
+
+#: vhffs-panel/dns/prefs.pl:108
+msgid "A Record updated"
+msgstr "Enregistrement A mis à jour"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:404
+#, perl-format
+msgid ""
+"A mail to moderate is on the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+"Il y a un mail à modérer dans la liste suivante :\n"
+" %s\n"
+"\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:421
+#, perl-format
+msgid ""
+"A new person wants to subscribe to the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+"Une personne souhaite s'inscrire à la liste de diffusion suivante:\n"
+" %s\n"
+"\n"
+
+#: vhffs-panel/dns/prefs.pl:136
+msgid "A record added"
+msgstr "Enregistrement A ajouté"
+
+#: vhffs-panel/dns/prefs.pl:125
+msgid "AAAA Record deleted"
+msgstr "Enregistrement AAAA supprimé"
+
+#: vhffs-panel/dns/prefs.pl:120
+msgid "AAAA Record updated"
+msgstr "Enregistrement AAAA mis à jour"
+
+#: vhffs-panel/dns/prefs.pl:131
+msgid "AAAA record added"
+msgstr "Enregistrement AAAA ajouté"
+
+#: vhffs-panel/acl/view.pl:99
+msgid "ACL Administration"
+msgstr "Administration des ACL"
+
+#: vhffs-panel/acl/view.pl:93
+msgid "ACL added"
+msgstr "ACL ajoutée"
+
+#: vhffs-panel/acl/view.pl:95
+msgid "ACL deleted"
+msgstr "ACL supprimée"
+
+#: vhffs-panel/acl/view.pl:94
+msgid "ACL updated"
+msgstr "ACL mise à jour"
+
+#: vhffs-panel/admin/moderation.pl:89 vhffs-panel/admin/moderation.pl:116
+msgid "Accept"
+msgstr "Accepter"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:185 vhffs-api/src/Vhffs/Panel/Main.pm:206
+msgid "Access denied"
+msgstr "Accès refusé"
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:68
+msgid "Access to panel"
+msgstr "Accéder au panel"
+
+#: vhffs-panel/mail/prefs.pl:111
+msgid "Accounts"
+msgstr "Comptes"
+
+#: vhffs-panel/user/prefs.pl:411
+#, perl-format
+msgid "Activate %s@%s email"
+msgstr "Activer l'adresse email %s@%s"
+
+#: vhffs-panel/admin/object/edit.pl:120 vhffs-intl/extra_strings.pl:25
+#: vhffs-api/src/Vhffs/Panel/Object.pm:125
+msgid "Activated"
+msgstr "Activé"
+
+#: vhffs-panel/group/prefs.pl:150 vhffs-panel/group/prefs.pl:240
+msgid "Add"
+msgstr "Ajouter"
+
+#: vhffs-panel/dns/prefs.pl:265
+msgid "Add !"
+msgstr "Ajouter !"
+
+#: vhffs-panel/dns/prefs.pl:278
+msgid "Add a CNAME field to your domain"
+msgstr "Ajouter un champ CNAME à votre domaine"
+
+#: vhffs-panel/dns/prefs.pl:270
+msgid "Add a MX field to your domain"
+msgstr "Ajouter un champ MX à votre domaine"
+
+#: vhffs-panel/dns/prefs.pl:286
+msgid "Add a NS field to your domain"
+msgstr "Ajouter un champ NS à votre domaine"
+
+#: vhffs-panel/dns/prefs.pl:292
+msgid "Add a SRV record to your domain"
+msgstr "Ajouter un enregistrement SRV à votre domaine"
+
+#: vhffs-panel/dns/prefs.pl:304
+msgid "Add a TXT record"
+msgstr "Ajouter un enregistrement TXT"
+
+#: vhffs-panel/mail/prefs.pl:122 vhffs-panel/mail/prefs.pl:132
+msgid "Add a forward on this domain"
+msgstr "Ajouter une redirection sur ce domaine"
+
+#: vhffs-panel/mail/prefs.pl:131
+msgid "Add a popbox to this domain"
+msgstr "Ajouter une boîte mail sur ce domaine"
+
+#: vhffs-panel/group/prefs.pl:239
+msgid "Add a user in this group"
+msgstr "Ajouter un utilisateur dans ce groupe"
+
+#: vhffs-panel/dns/prefs.pl:238
+msgid "Add an A record"
+msgstr "Ajouter un enregistrement de type A"
+
+#: vhffs-panel/dns/prefs.pl:239
+msgid "Add an AAAA record"
+msgstr "Ajouter un enregistrement de type AAAA"
+
+#: vhffs-panel/mail/prefs.pl:113
+msgid "Add an account"
+msgstr "Ajouter un compte"
+
+#: vhffs-panel/mailinglist/prefs.pl:148
+msgid "Add members"
+msgstr "Ajouter les membres"
+
+#: vhffs-panel/mailinglist/prefs.pl:150
+msgid "Add them !"
+msgstr "Ajoutez les !"
+
+#: vhffs-panel/subscribe.pl:230 vhffs-panel/user/prefs.pl:307
+msgid "Address"
+msgstr "Adresse"
+
+#: vhffs-panel/web/create.pl:96
+msgid "Address (ServerName directive)"
+msgstr "Adresse (Nom de domaine)"
+
+#: vhffs-panel/web/prefs.pl:95
+msgid "Address (Servername)"
+msgstr "Adresse (directive ServerName)"
+
+#: vhffs-panel/user/prefs.pl:138
+msgid "Address is not correct !"
+msgstr "L'adresse est invalide !"
+
+#: vhffs-panel/mailinglist/prefs.pl:149
+msgid "Addresses (one per line)"
+msgstr "Adresses (une par ligne)"
+
+#: vhffs-intl/template_strings.pl:56
+msgid "Admin"
+msgstr "Administration"
+
+#: vhffs-panel/cvs/prefs.pl:107
+msgid "Admin CVS Repository"
+msgstr "Administration des dépôts CVS"
+
+#: vhffs-panel/repository/prefs.pl:81
+msgid "Admin Download repository"
+msgstr "Administration des espaces de téléchargement"
+
+#: vhffs-panel/git/prefs.pl:96
+msgid "Admin Git Repository"
+msgstr "Administration des dépôts Git"
+
+#: vhffs-panel/svn/prefs.pl:104 vhffs-panel/dns/prefs.pl:245
+#: vhffs-panel/git/prefs.pl:112 vhffs-panel/web/prefs.pl:103
+#: vhffs-panel/mail/prefs.pl:143
+msgid "Admin Rights on this object (ACL)"
+msgstr "Droits d'admin sur cet objet (ACL)"
+
+#: vhffs-panel/svn/prefs.pl:87
+msgid "Admin Subversion Repository"
+msgstr "Administration des dépôts Subversion"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:426
+msgid "Admin account"
+msgstr "Compte administrateur"
+
+#: vhffs-api/src/Vhffs/Panel/Object.pm:96
+msgid "Admin part"
+msgstr "Partie admin"
+
+#: vhffs-panel/admin/index.pl:55 vhffs-api/src/Vhffs/Panel/Main.pm:427
+#: vhffs-api/src/Vhffs/Panel/Main.pm:430
+msgid "Administration"
+msgstr "Administration"
+
+#: vhffs-panel/mailinglist/prefs.pl:99
+#, perl-format
+msgid "Administration for list %s"
+msgstr "Administration de la liste %s"
+
+#: vhffs-intl/template_strings.pl:63
+msgid "Administrator"
+msgstr "Administrateur"
+
+#: vhffs-panel/mailinglist/prefs.pl:116
+msgid "Admins only"
+msgstr "Aministrateurs seuls"
+
+#: vhffs-panel/alert_submit.pl:64
+msgid "Alert on Vhffs platform"
+msgstr "Signaler un dysfonctionnement"
+
+#: vhffs-public/allwebsites.pl:74 vhffs-public/allgroups.pl:74
+msgid "All"
+msgstr "Tous"
+
+#: vhffs-panel/dns/prefs.pl:232
+msgid "All A TYPE for your domain name"
+msgstr "Enregistrements A pour votre domaine"
+
+#: vhffs-panel/dns/prefs.pl:233
+msgid "All AAAA TYPE for your domain name"
+msgstr "Enregistrement AAAA pour votre domaine"
+
+#: vhffs-panel/dns/prefs.pl:277
+msgid "All CNAME TYPE for your domain name"
+msgstr "Enregistrements CNAME pour votre domaine"
+
+#: vhffs-panel/dns/prefs.pl:235
+msgid "All CNAME for your domain name"
+msgstr "Enregistrements CNAME pour votre domaine"
+
+#: vhffs-intl/template_strings.pl:10
+msgid "All Groups"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:234 vhffs-panel/dns/prefs.pl:269
+msgid "All MX TYPE for your domain name"
+msgstr "Tous les champs MX pour votre domaine"
+
+#: vhffs-panel/dns/prefs.pl:285
+msgid "All NS TYPE for your domain name"
+msgstr "Tous les enregistrements NS pour votre domaine"
+
+#: vhffs-panel/dns/prefs.pl:291
+msgid "All SRV records for your domain name"
+msgstr "Enregistrements SRV pour votre domaine"
+
+#: vhffs-panel/admin/svn/list.pl:67
+msgid "All Subversion repositories lists"
+msgstr "Liste de tous les dépôts Subversion"
+
+#: vhffs-panel/dns/prefs.pl:305
+msgid "All TXT records for your domain name"
+msgstr "Enregistrements TXT pour votre domaine"
+
+#: vhffs-intl/template_strings.pl:16
+msgid "All Websites"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:48
+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/admin/git/list.pl:69
+msgid "All git repositories lists"
+msgstr "Tout les dépôts"
+
+#: vhffs-public/allgroups.pl:72
+#, perl-format
+msgid "All groups on %s"
+msgstr "Tous les groupes sur %s"
+
+#: vhffs-panel/admin/broadcast_list.pl:77
+msgid "All mailings sent to hosted"
+msgstr "Tous les mailings envoyés aux hébergés"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:50
+msgid ""
+"All mails with commands must be sent on YOURLIST-request@xxxxxxxxxx list.\n"
+msgstr ""
+"Tous les mails contenant des commandes doivent être envoyés à l'adresse "
+"VOTRELISTE-request@xxxxxxxxxx.\n"
+
+#: vhffs-panel/admin/object/list.pl:85
+msgid "All objects List"
+msgstr "Liste de tous les objets"
+
+#: vhffs-panel/group/prefs.pl:257
+msgid "All users in this group"
+msgstr "Utilisateurs dans ce groupe"
+
+#: vhffs-public/allwebsites.pl:72
+#, perl-format
+msgid "All websites on %s"
+msgstr "Sites web sur %s"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:251
+msgid "An MX record with the same name already exists for this domain"
+msgstr "Un enregistrement MX avec le même nom existe déjà pour ce domaine."
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:274
+msgid "An NS record with the same name already exists for this domain"
+msgstr "Un enregistrement NS avec le même nom existe déjà pour ce domaine."
+
+#: vhffs-panel/cvs/prefs.pl:87 vhffs-panel/cvs/prefs.pl:100
+msgid "An error occured during CVS repository update"
+msgstr "Une erreur est survenue lors de la mise à jour du CVS"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:493
+#, perl-format
+msgid ""
+"An error occured during your approval of subscription of:\n"
+" %s\n"
+"into the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+"Une erreur s'est produite lors de votre approbation d'inscription à :\n"
+" %s\n"
+"à cette liste de diffusion :\n"
+" %s\n"
+"\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:194
+#, perl-format
+msgid ""
+"An error occured during your subscription to the following list:\n"
+" %s\n"
+"\n"
+msgstr ""
+"Une erreur est survenue lors de votre inscription à cette liste de "
+"diffusion:\n"
+" %s\n"
+"\n"
+
+#: vhffs-panel/user/prefs.pl:217
+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.pl:219
+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.pl:221
+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.pl:266
+msgid "An error occured while adding the forwarding"
+msgstr "Une erreur est survenue lors de l'ajout de la redirection"
+
+#: vhffs-panel/user/delete.pl:83
+msgid "An error occured while applying changes. This user will NOT be deleted"
+msgstr ""
+"Une erreur est survenue lors de l'enregistrement des modifications."
+"L'utilisateur NE sera PAS supprimé."
+
+#: vhffs-panel/web/delete.pl:92
+msgid ""
+"An error occured while applying changes. This web area will NOT be deleted"
+msgstr ""
+"Une erreur est survenue lors de l'enregistrement des modifications. Ce site "
+"web NE sera PAS détruit"
+
+#: vhffs-panel/git/create.pl:88
+msgid "An error occured while creating the git repository"
+msgstr "Une erreur est survenue lors de la mise a jour du dépôt Git"
+
+#: vhffs-panel/mail/create.pl:83
+msgid "An error occured while creating the mail area"
+msgstr "Une erreur est survenue lors de la création du domaine mail"
+
+#: vhffs-panel/repository/create.pl:84
+msgid ""
+"An error occured while creating the object. Check that this group doesn't "
+"already have a download repository"
+msgstr ""
+"Une erreur est survenue lors de la création de cet objet. Veuillez verifier "
+"que ce groupe n'a pas déjà un dépôt de téléchargements"
+
+#: vhffs-panel/dns/create.pl:60
+msgid ""
+"An error occured while creating the object. The domain is not correct or "
+"aleady exists in Vhffs database"
+msgstr ""
+"Une erreur est survenue lors de la création de l'objet. Le domaine est "
+"incorrect ou existe déjà sur cette plate-forme"
+
+#: vhffs-panel/mailinglist/create.pl:92 vhffs-panel/cvs/create.pl:92
+msgid "An error occured while creating the object.It probably already exists"
+msgstr ""
+"Une erreur est survenue lors de la création de cet objet. Il existe "
+"probablement déjà"
+
+#: vhffs-panel/svn/create.pl:88
+msgid "An error occured while creating the svn repository"
+msgstr "Une erreur est survenue lors de la création du dépôt SVN"
+
+#: vhffs-panel/cvs/delete.pl:93
+msgid "An error occured while deleting the CVS repository"
+msgstr "Une erreur est survenue lors de la suppression du dépôt CVS"
+
+#: vhffs-panel/repository/delete.pl:95
+msgid "An error occured while deleting the Download repository"
+msgstr ""
+"Une erreur est survenue lors de la suppression de l'espace de téléchargement"
+
+#: vhffs-panel/svn/delete.pl:94
+msgid "An error occured while deleting the Subversion repository"
+msgstr "Une erreur est survenue lors de la suppression du dépôt Subversion"
+
+#: vhffs-panel/git/delete.pl:99
+msgid "An error occured while deleting the git repository"
+msgstr "Une erreur est survenue lors de la suppression du dépôt Git"
+
+#: vhffs-panel/admin/broadcast_delete.pl:96
+msgid "An error occured while deleting this mailing"
+msgstr "Une erreur est survenue lors de la suppression du mailing"
+
+#: vhffs-panel/object/quickdelete.pl:96
+msgid "An error occured while deleting this object."
+msgstr "Une erreur est survenue lors de la suppression de cet objet"
+
+#: vhffs-api/src/Vhffs/Robots/Mysql.pm:109
+msgid "An error occured while granting privileges to an admin user"
+msgstr "Une erreur est survenue lors de l'ajout de l'ajout de privilèges"
+
+#: vhffs-panel/user/prefs.pl:275
+msgid "An error occured while the forwarding"
+msgstr "Une erreur est survenue lors de l'ajout de la redirection"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:285
+#, perl-format
+msgid ""
+"An error occured while updating language for the following address: %s.\n"
+msgstr ""
+"Une erreur est survenue lors de la mise à jour de la langue pour l'adresse "
+"suivante : %s.\n"
+
+#: vhffs-panel/mail/prefs.pl:197
+msgid "An error occured while updating the mail domain"
+msgstr "Une erreur est survenue lors de la mise à jour du domaine mail"
+
+#: vhffs-panel/admin/object/edit_submit.pl:91
+msgid "An error occured while updating the object"
+msgstr "Une erreur est survenue lors de la mise à jour de l'objet"
+
+#: vhffs-panel/group/delete.pl:83 vhffs-panel/group/prefs.pl:95
+msgid "An error occured while updating the project"
+msgstr "Une erreur est survenue lors de la mise à jour du projet"
+
+#: vhffs-panel/user/prefs.pl:188
+msgid "An error occured while updating the user account"
+msgstr "Une erreur est survenue lors de la mise à jour du compte utilisateur"
+
+#: vhffs-panel/object/resubmit.pl:103
+msgid "An error occured while updating this object."
+msgstr "Une erreur est survenue lors de la mise à jour de cet objet"
+
+#: vhffs-panel/svn/prefs.pl:98
+msgid "Are you SURE you want DELETE this subversion repository ?"
+msgstr "Êtes-vous CERTAIN de vouloir SUPPRIMER ce dépôt Subversion ?"
+
+#: vhffs-panel/mail/prefs.pl:137
+msgid "Are you SURE you want DELETE this Mail Area ?"
+msgstr "Êtes-vous CERTAIN de vouloir DÉTRUIRE ce domaine mail ?"
+
+#: vhffs-panel/mysql/prefs.pl:112
+msgid "Are you SURE you want DELETE this MySQL database ?"
+msgstr "Êtes-vous CERTAIN de vouloir SUPPRIMER cette base de données MySQL ?"
+
+#: vhffs-panel/pgsql/prefs.pl:100
+msgid "Are you SURE you want DELETE this PostgreSQL database ?"
+msgstr ""
+"Êtes-vous CERTAIN de vouloir SUPPRIMER cette base de données PostgreSQL ?"
+
+#: vhffs-panel/web/prefs.pl:110
+msgid "Are you SURE you want DELETE this Web Area ?"
+msgstr "Êtes-vous CERTAIN de vouloir SUPPRIMER ce site web ?"
+
+#: vhffs-panel/cvs/prefs.pl:117
+msgid "Are you SURE you want DELETE this cvs repository ?"
+msgstr "Êtes-vous CERTAIN de vouloir SUPPRIMER ce dépôt CVS ?"
+
+#: vhffs-panel/dns/prefs.pl:253
+msgid "Are you SURE you want DELETE this domain ?"
+msgstr "Êtes-vous CERTAIN de vouloir SUPPRIMER ce domaine ?"
+
+#: vhffs-panel/repository/prefs.pl:90
+msgid "Are you SURE you want DELETE this download repository ?"
+msgstr "Êtes-vous CERTAIN de vouloir SUPPRIMER cet espace de téléchargement ?"
+
+#: vhffs-panel/git/prefs.pl:106
+msgid "Are you SURE you want DELETE this git repository?"
+msgstr "Êtes-vous CERTAIN de vouloir SUPPRIMER ce dépôt Git ?"
+
+#: vhffs-panel/mailinglist/prefs.pl:180
+msgid "Are you SURE you want DELETE this mailing list ?"
+msgstr "Êtes-vous CERTAIN de vouloir SUPPRIMER cette liste de diffusion ?"
+
+#: vhffs-panel/group/prefs.pl:214
+msgid "Are you SURE you want DELETE this project ?"
+msgstr "Êtes-vous CERTAIN de vouloir SUPPRIMER ce projet ?"
+
+#: vhffs-panel/user/prefs.pl:327
+msgid "Are you SURE you want DELETE this user?"
+msgstr "Êtes-vous CERTAIN de vouloir SUPPRIMER cet utilisateur ?"
+
+#: vhffs-panel/admin/object/delete_avatar.pl:100
+msgid "Avatar deleted"
+msgstr "Avatar supprimé"
+
+#: vhffs-panel/admin/object/edit.pl:195
+#: vhffs-api/src/Vhffs/Panel/Object.pm:199
+msgid "Avatar management"
+msgstr "Gestion des avatars"
+
+#: vhffs-panel/admin/broadcast_list.pl:96
+#: vhffs-panel/admin/broadcast_view.pl:97
+msgid "Awaiting sending"
+msgstr "En attente d'envoi"
+
+#: vhffs-panel/subscribe.pl:191 vhffs-panel/subscribe.pl:232
+msgid "Back to Login"
+msgstr "Retour à la page d'authentification"
+
+#: vhffs-panel/lost.pl:59 vhffs-intl/template_strings.pl:45
+msgid "Back to login page"
+msgstr "Retour à la page d'authentification"
+
+#: vhffs-panel/pgsql/prefs.pl:126 vhffs-panel/mysql/prefs.pl:137
+msgid "Bad password, should be at least 3 chars"
+msgstr "Mauvais mot de passe, il doit contenir au moins 3 charactères"
+
+#: vhffs-panel/dns/create.pl:73
+msgid ""
+"Be careful ! You must give the reason why you want to host this domain on "
+"our servers."
+msgstr ""
+"Faites attention ! Vous devez donner la raison pour laquelle vous voulez "
+"héberger ce domaine sur nos serveurs."
+
+#: vhffs-panel/web/create.pl:97
+msgid ""
+"Be careful, if you want create www.domain.tld, you should create a webspace "
+"with domain.tld as servername. VHFFS redirect all request from www.domain."
+"tld to domain.tld"
+msgstr ""
+"Faites attention ! Si vous souhaitez créer www.domaine.tld, vous devez créer "
+"un espace web sous la forme domaine.tld. VHFFS redirige www.domain.tld vers "
+"domain.tld"
+
+#: vhffs-panel/admin/broadcast_view.pl:89
+msgid "Body"
+msgstr "Corps du message"
+
+#: vhffs-panel/mail/prefs.pl:272
+#, perl-format
+msgid "Box %s deleted"
+msgstr "La boite %s a été supprimée"
+
+#: vhffs-panel/mail/prefs.pl:239
+msgid "Box password updated"
+msgstr "La boite a été mise a jour"
+
+#: vhffs-panel/mail/prefs.pl:216
+msgid "Box successfully added"
+msgstr ""
+
+#: vhffs-panel/lost.pl:56
+msgid ""
+"But fortunately we're smart, so just type your login here<br/>and a new "
+"password will be sent to you by email!"
+msgstr ""
+"Mais nous sommes gentils : tapez votre identifiant (« login ») ici<br/> et "
+"un nouveau mot de passe vous sera envoyé par mail"
+
+#: vhffs-public/user.pl:60 vhffs-public/user.pl:64 vhffs-public/group.pl:72
+#: vhffs-panel/mailinglist/delete.pl:79 vhffs-panel/mailinglist/prefs.pl:210
+#: vhffs-panel/mailinglist/prefs.pl:235 vhffs-panel/mailinglist/prefs.pl:256
+#: vhffs-panel/mailinglist/prefs.pl:276 vhffs-panel/mailinglist/create.pl:81
+#: vhffs-panel/svn/delete.pl:73 vhffs-panel/svn/prefs.pl:66
+#: vhffs-panel/svn/prefs.pl:139 vhffs-panel/svn/create.pl:79
+#: vhffs-panel/history.pl:84 vhffs-panel/user/prefs.pl:114
+#: vhffs-panel/user/prefs.pl:469 vhffs-panel/dns/delete.pl:79
+#: vhffs-panel/dns/prefs.pl:76 vhffs-panel/dns/create.pl:49
+#: vhffs-panel/acl/view.pl:85 vhffs-panel/pgsql/delete.pl:81
+#: vhffs-panel/pgsql/prefs.pl:121 vhffs-panel/pgsql/create.pl:82
+#: vhffs-panel/group/prefs.pl:84 vhffs-panel/group/prefs.pl:105
+#: vhffs-panel/group/prefs.pl:123 vhffs-panel/group/prefs.pl:164
+#: vhffs-panel/repository/prefs.pl:68 vhffs-panel/repository/create.pl:77
+#: vhffs-panel/admin/moderation_submit.pl:77
+#: vhffs-panel/admin/broadcast_submit.pl:84
+#: vhffs-panel/admin/broadcast_delete.pl:84
+#: vhffs-panel/admin/object/edit_submit.pl:78
+#: vhffs-panel/admin/object/delete_avatar.pl:82
+#: vhffs-panel/admin/object/edit.pl:80 vhffs-panel/admin/broadcast_view.pl:79
+#: vhffs-panel/git/delete.pl:74 vhffs-panel/git/prefs.pl:70
+#: vhffs-panel/git/create.pl:79 vhffs-panel/object/quickdelete.pl:63
+#: vhffs-panel/object/resubmit.pl:63 vhffs-panel/object/resubmit.pl:87
+#: vhffs-panel/web/prefs.pl:130 vhffs-panel/web/create.pl:77
+#: vhffs-panel/mysql/delete.pl:75 vhffs-panel/mysql/prefs.pl:70
+#: vhffs-panel/mysql/prefs.pl:132 vhffs-panel/mysql/create.pl:82
+#: vhffs-panel/cvs/delete.pl:74 vhffs-panel/cvs/prefs.pl:67
+#: vhffs-panel/cvs/prefs.pl:80 vhffs-panel/cvs/create.pl:80
+#: vhffs-panel/mail/delete.pl:75 vhffs-panel/mail/prefs.pl:185
+#: vhffs-panel/mail/prefs.pl:212 vhffs-panel/mail/prefs.pl:233
+#: vhffs-panel/mail/prefs.pl:268 vhffs-panel/mail/prefs.pl:284
+#: vhffs-panel/mail/prefs.pl:300 vhffs-panel/mail/prefs.pl:315
+#: vhffs-panel/mail/create.pl:74
+#, perl-format
+msgid "CGI Error !"
+msgstr "Erreur CGI !"
+
+#: vhffs-panel/repository/delete.pl:74
+#, perl-format
+msgid "CGI Error ! %s"
+msgstr "Erreur CGI %s"
+
+#: vhffs-panel/git/prefs.pl:169
+msgid "CGI error !"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:175
+msgid "CNAME Record added"
+msgstr "Enregistrement CNAME ajouté"
+
+#: vhffs-panel/dns/prefs.pl:170
+msgid "CNAME Record deleted"
+msgstr "Enregistrement CNAME supprimé"
+
+#: vhffs-panel/dns/prefs.pl:166
+msgid "CNAME Record updated"
+msgstr "Enregistrement CNAME mis à jour"
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:67 vhffs-api/src/Vhffs/Panel/Menu.pm:116
+msgid "CVS"
+msgstr "CVS"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:188
+msgid "CVS Admin"
+msgstr "Administration des dépôts CVS"
+
+#: vhffs-intl/template_strings.pl:28
+msgid "CVS Repositories for this group"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:41
+msgid "CVS Repository"
+msgstr "Dépôt CVS"
+
+#: vhffs-panel/admin/cvs/list.pl:76
+msgid "CVS Root"
+msgstr "Répertoire racine"
+
+#: vhffs-panel/cvs/index.pl:60
+#, perl-format
+msgid "CVS repositories for %s"
+msgstr "Dépôts CVS pour %s"
+
+#: vhffs-panel/admin/cvs/index.pl:56
+msgid "CVS repositories' administration"
+msgstr "Administration des dépôts CVS"
+
+#: vhffs-panel/cvs/prefs.pl:85 vhffs-panel/cvs/prefs.pl:98
+msgid "CVS repository updated"
+msgstr "Dépôt CVS mis à jour"
+
+#: vhffs-panel/admin/stats.pl:120
+msgid "CVS stats"
+msgstr "Statistiques CVS"
+
+#: vhffs-panel/acl/view.pl:113
+msgid "Can destroy this service"
+msgstr "Peut détruire ce service"
+
+#: vhffs-panel/acl/view.pl:112
+msgid "Can manage ACL for this service"
+msgstr "Peut gérer les ACL pour ce service"
+
+#: vhffs-panel/acl/view.pl:111
+msgid "Can modify this service"
+msgstr "Peut modifier ce service"
+
+#: vhffs-panel/acl/view.pl:110
+msgid "Can view this service"
+msgstr "Peut voir ce service"
+
+#: vhffs-panel/acl/view.pl:109
+msgid "Can't access"
+msgstr "Ne peut pas accéder"
+
+#: vhffs-panel/subscribe.pl:184
+msgid "Cannot apply changes to the user"
+msgstr "Impossible d'appliquer les modifications à cet utilisateur"
+
+#: vhffs-panel/admin/moderation_submit.pl:94
+msgid "Cannot apply modifications"
+msgstr "Impossible d'appliquer les modifications"
+
+#: vhffs-panel/mailinglist/delete.pl:103
+msgid "Cannot commit changes on this object, will NOT be deleted"
+msgstr "Ne peut mettre à jour l'objet, il NE sera PAS détruit"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:352
+msgid ""
+"Cannot create or fetch session file, please check that /tmp is readable and "
+"writeable"
+msgstr ""
+"Ne peut créer ou récupérer le fichier de session, merci de vérifier que /tmp "
+"est accessible en lecture et en écriture"
+
+#: vhffs-panel/subscribe.pl:174
+msgid "Cannot create user, the username you entered already exists"
+msgstr ""
+"Impossible de créer l'utilisateur. Le nom d'utilisateur que vous avez entré "
+"est déjà pris"
+
+#: vhffs-panel/admin/object/delete_avatar.pl:96
+msgid "Cannot delete this avatar"
+msgstr "Impossible de supprimer cet avatar"
+
+#: vhffs-panel/admin/object/edit_submit.pl:82
+#: vhffs-panel/admin/object/delete_avatar.pl:86
+#: vhffs-panel/admin/object/edit.pl:85
+msgid "Cannot fetch object"
+msgstr "Impossible de lire l'objet"
+
+#: vhffs-panel/object/upavatar.pl:101
+msgid "Cannot find object"
+msgstr "Ne peut pas trouver l'objet"
+
+#: vhffs-panel/history.pl:89
+msgid "Cannot get information on this object"
+msgstr "Impossible d'obtenir des informations sur cet objet"
+
+#: vhffs-panel/acl/view.pl:71
+#, perl-format
+msgid "Cannot get informations on object #%d"
+msgstr "Impossible d'obtenir des informations sur l'objet #%d"
+
+#: vhffs-panel/mailinglist/delete.pl:83 vhffs-panel/svn/prefs.pl:71
+#: vhffs-panel/user/prefs.pl:73 vhffs-panel/dns/delete.pl:83
+#: vhffs-panel/dns/prefs.pl:81 vhffs-panel/pgsql/prefs.pl:68
+#: vhffs-panel/repository/prefs.pl:71 vhffs-panel/git/prefs.pl:75
+#: vhffs-panel/web/prefs.pl:74 vhffs-panel/mysql/prefs.pl:75
+#: vhffs-panel/cvs/prefs.pl:70
+msgid "Cannot get informations on this object"
+msgstr "Impossible d'obtenir des informations sur cet objet"
+
+#: vhffs-panel/admin/stats.pl:74
+msgid "Cannot get statistics"
+msgstr "Impossible d'obtenir les statistiques"
+
+#: vhffs-panel/cvs/delete.pl:78
+msgid "Cannot retrieve informations about this CVS repository"
+msgstr "Impossible d'obtenir des informations à propos de ce dépôt CVS"
+
+#: vhffs-panel/repository/delete.pl:78
+msgid "Cannot retrieve informations about this Download repository"
+msgstr "Impossible d'obtenir des informations sur cet espace de téléchargement"
+
+#: vhffs-panel/svn/delete.pl:77 vhffs-panel/git/delete.pl:78
+msgid "Cannot retrieve informations about this repository"
+msgstr "Impossible de consulter ce dépôt"
+
+#: vhffs-panel/alert_submit.pl:72
+msgid "Cannot send message, CGI error..."
+msgstr "Impossible d'envoyer le message, erreur CGI..."
+
+#: vhffs-panel/mail/prefs.pl:105
+msgid "Catchall address"
+msgstr "Adresse de type catchall"
+
+#: vhffs-panel/mail/prefs.pl:199
+msgid "Catchall address successfully changed"
+msgstr "Adresse de type catchall modifiée avec succès"
+
+#: vhffs-panel/mail/prefs.pl:180
+msgid "Catchall isn't enabled on this platform"
+msgstr "Le catchall n'est pas activé sur ce service"
+
+#: vhffs-panel/mail/prefs.pl:108
+msgid "Catchall mail"
+msgstr "Catchall mail"
+
+#: vhffs-intl/template_strings.pl:78
+msgid "Change Forward"
+msgstr "Modifier la redirection"
+
+#: vhffs-intl/template_strings.pl:80
+msgid "Change Password"
+msgstr "Modifier le mot de passe"
+
+#: vhffs-panel/mail/prefs.pl:130
+msgid "Change catchall forward"
+msgstr "Changer la redirection catchall"
+
+#: vhffs-intl/template_strings.pl:57
+msgid "Change rights"
+msgstr "Changer les droits"
+
+#: vhffs-panel/user/prefs.pl:237
+msgid "Change spam protection status for your account\n"
+msgstr "Activer/désactiver la protection anti-spam pour ce compte\n"
+
+#: vhffs-panel/admin/su.pl:72 vhffs-api/src/Vhffs/Panel/Admin.pm:94
+msgid "Change user-id"
+msgstr "Changer d'identifiant utilisateur"
+
+#: vhffs-panel/user/prefs.pl:248
+msgid "Changed anti-virus status for your account\n"
+msgstr "Paramètres anti-virus mis à jour\n"
+
+#: vhffs-panel/subscribe.pl:228 vhffs-panel/user/prefs.pl:306
+msgid "City"
+msgstr "Ville"
+
+#: vhffs-panel/user/prefs.pl:126
+msgid "City is not correct !"
+msgstr "Ville incorrecte !"
+
+#: vhffs-panel/mailinglist/prefs.pl:109
+msgid "Closed"
+msgstr "Fermées"
+
+#: vhffs-panel/subscribe.pl:238
+msgid "Code confirmation"
+msgstr "Code de confirmation"
+
+#: vhffs-panel/subscribe.pl:107
+msgid "Codes do not match"
+msgstr "Les codes ne correspondent pas"
+
+#: vhffs-panel/user/prefs.pl:310
+msgid "Confirm Password"
+msgstr "Confirmation du mot de passe"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:241
+msgid "Confirmation code was wrong.\n"
+msgstr "Le code de confirmation était faux.\n"
+
+#: vhffs-panel/subscribe.pl:240
+msgid "Confirmation code, contact administrator team if you can't read it"
+msgstr ""
+"Code de validation, contactez l'équipe d'administration si vous ne pouvez "
+"pas le lire."
+
+#: vhffs-panel/mail/prefs.pl:237
+msgid "Could not change box password"
+msgstr "Impossible de changer le mot de passe de la boite"
+
+#: vhffs-panel/mail/prefs.pl:252
+#, perl-format
+msgid "Could not update antivirus status for box %s"
+msgstr "Impossible de changer la protection antivirus de la boite %s"
+
+#: vhffs-panel/mail/prefs.pl:245
+#, perl-format
+msgid "Could not update spam status for box %s"
+msgstr "Impossible de changer la protection spam de cette boite %s"
+
+#: vhffs-panel/subscribe.pl:229 vhffs-panel/user/prefs.pl:308
+msgid "Country"
+msgstr "Pays"
+
+#: vhffs-panel/user/prefs.pl:135
+msgid "Country is not correct !"
+msgstr "Le pays est incorrect !"
+
+#: vhffs-panel/cvs/create.pl:100
+msgid "Create a CVS Repository"
+msgstr "Créer un dépôt CVS"
+
+#: vhffs-panel/dns/create.pl:68
+msgid "Create a DNS"
+msgstr "Créer un DNS"
+
+#: vhffs-panel/repository/create.pl:91
+msgid "Create a Download Repository"
+msgstr "Créer un espace de téléchargement"
+
+#: vhffs-panel/mysql/create.pl:100
+msgid "Create a MySQL database"
+msgstr "Créer une base de données MySQL"
+
+#: vhffs-panel/pgsql/create.pl:100
+msgid "Create a PostgreSQL database"
+msgstr "Créer un base de données PostgreSQL"
+
+#: vhffs-panel/group/create.pl:84
+msgid "Create a Project"
+msgstr "Créer un groupe/projet"
+
+#: vhffs-panel/svn/create.pl:95
+msgid "Create a Subversion Repository"
+msgstr "Créer un dépôt Subversion"
+
+#: vhffs-panel/git/create.pl:95
+msgid "Create a git Repository"
+msgstr "Créer un dépôt Git"
+
+#: vhffs-panel/mail/create.pl:90
+msgid "Create a mail space"
+msgstr "Créer un espace mail"
+
+#: vhffs-panel/mailinglist/create.pl:100
+msgid "Create a new mailing list"
+msgstr "Créer une liste de diffusion"
+
+#: vhffs-panel/web/create.pl:95
+msgid "Create a web space"
+msgstr "Créer un site web"
+
+#: vhffs-panel/group/index.pl:63
+msgid "Create new project"
+msgstr "Créer un nouveau projet"
+
+#: vhffs-panel/admin/object/edit.pl:121 vhffs-intl/extra_strings.pl:24
+#: vhffs-api/src/Vhffs/Panel/Object.pm:126
+msgid "Created"
+msgstr "Créé"
+
+#: vhffs-panel/admin/object/edit.pl:119
+#: vhffs-api/src/Vhffs/Panel/Object.pm:124
+msgid "Creating error"
+msgstr "Erreur de création"
+
+#: vhffs-intl/extra_strings.pl:23
+msgid "Creation error"
+msgstr "Erreur lors de la création"
+
+#: vhffs-panel/user/prefs.pl:337 vhffs-panel/group/prefs.pl:247
+msgid "Current avatar"
+msgstr "Avatar utilisé"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:450
+msgid "Current group:"
+msgstr "Groupe actuel :"
+
+#: vhffs-panel/admin/pgsql/list.pl:76 vhffs-panel/admin/mysql/list.pl:82
+msgid "DB Name"
+msgstr "Nom de la base"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:293
+msgid "DNS Admin"
+msgstr "Administration DNS"
+
+#: vhffs-panel/dns/prefs.pl:227
+#, perl-format
+msgid "DNS Administration - %s"
+msgstr "Administration DNS - %s"
+
+#: vhffs-panel/dns/create.pl:74
+msgid "DNS servers:"
+msgstr "Serveurs DNS :"
+
+#: vhffs-panel/admin/stats.pl:112
+msgid "DNS stats"
+msgstr "Statistiques DNS"
+
+#: vhffs-panel/admin/dns/index.pl:56
+msgid "DNS' administration"
+msgstr "Administration DNS"
+
+#: vhffs-panel/ajax/help.pl:49 vhffs-api/src/Vhffs/Panel/DNS.pm:162
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:198 vhffs-api/src/Vhffs/Panel/DNS.pm:210
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:228 vhffs-api/src/Vhffs/Panel/DNS.pm:240
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:252 vhffs-api/src/Vhffs/Panel/DNS.pm:264
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:275 vhffs-api/src/Vhffs/Panel/DNS.pm:287
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:300 vhffs-api/src/Vhffs/Panel/DNS.pm:316
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:331 vhffs-api/src/Vhffs/Panel/DNS.pm:343
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:355
+msgid "Database error"
+msgstr "Erreur de base de données"
+
+#: vhffs-panel/pgsql/delete.pl:85
+msgid "Database will NOT be deleted !"
+msgstr "La base de données NE sera PAS supprimée"
+
+#: vhffs-panel/pgsql/delete.pl:97
+msgid "Database will be DELETE"
+msgstr "La base de données sera supprimée"
+
+#: vhffs-panel/group/history.pl:77 vhffs-panel/admin/broadcast_view.pl:86
+msgid "Date"
+msgstr "Date"
+
+#: vhffs-panel/admin/object/edit.pl:96 vhffs-api/src/Vhffs/Panel/Object.pm:100
+msgid "Date of creation"
+msgstr "Date de création"
+
+#: vhffs-panel/acl/view.pl:107 vhffs-panel/acl/view.pl:108
+msgid "Default"
+msgstr "Défaut"
+
+#: vhffs-panel/mailinglist/prefs.pl:183 vhffs-panel/svn/prefs.pl:101
+#: vhffs-panel/user/prefs.pl:330 vhffs-panel/dns/prefs.pl:256
+#: vhffs-panel/dns/prefs.pl:313 vhffs-panel/dns/prefs.pl:325
+#: vhffs-panel/dns/prefs.pl:338 vhffs-panel/dns/prefs.pl:350
+#: vhffs-panel/dns/prefs.pl:366 vhffs-panel/dns/prefs.pl:377
+#: vhffs-panel/dns/prefs.pl:393 vhffs-panel/pgsql/prefs.pl:103
+#: vhffs-panel/group/prefs.pl:217 vhffs-panel/group/index.pl:65
+#: vhffs-panel/repository/prefs.pl:93 vhffs-panel/git/prefs.pl:109
+#: vhffs-panel/web/prefs.pl:113 vhffs-panel/mysql/prefs.pl:115
+#: vhffs-panel/cvs/prefs.pl:120 vhffs-panel/mail/prefs.pl:140
+#: vhffs-api/src/Vhffs/Panel/Main.pm:810
+msgid "Delete"
+msgstr "Supprimer"
+
+#: vhffs-panel/user/prefs.pl:325
+msgid "Delete YOUR user"
+msgstr "Supprimer votre compte utilisateur"
+
+#: vhffs-panel/admin/object/edit.pl:196
+#: vhffs-api/src/Vhffs/Panel/Object.pm:200
+msgid "Delete avatar for this object"
+msgstr "Supprimer l'avatar de cet objet"
+
+#: vhffs-intl/template_strings.pl:58
+msgid "Delete from list"
+msgstr "Supprimer de la liste"
+
+#: vhffs-panel/pgsql/prefs.pl:98
+msgid "Delete this PostgreSQL database"
+msgstr "Supprimer cette base de données PostgreSQL"
+
+#: vhffs-panel/mysql/prefs.pl:110
+msgid "Delete this database"
+msgstr "Supprimer cette base de données"
+
+#: vhffs-panel/dns/prefs.pl:251
+msgid "Delete this domain name from the VHFFS platform"
+msgstr "Supprimer ce nom de domaine"
+
+#: vhffs-intl/template_strings.pl:79
+msgid "Delete this forward"
+msgstr "Supprimer cette redirection"
+
+#: vhffs-panel/mailinglist/prefs.pl:178
+msgid "Delete this list"
+msgstr "Supprimer cette liste"
+
+#: vhffs-panel/mail/prefs.pl:135
+msgid "Delete this mail domain"
+msgstr "Supprimer ce domaine de mail"
+
+#: vhffs-panel/admin/broadcast_list.pl:89
+msgid "Delete this mailing"
+msgstr "Supprimer cet envoi en masse"
+
+#: vhffs-panel/group/prefs.pl:212 vhffs-panel/repository/prefs.pl:88
+#: vhffs-panel/cvs/prefs.pl:115
+msgid "Delete this project"
+msgstr "Supprimer ce groupe/projet"
+
+#: vhffs-panel/svn/prefs.pl:96 vhffs-panel/git/prefs.pl:104
+msgid "Delete this repository"
+msgstr "Supprimer ce dépôt"
+
+#: vhffs-panel/web/prefs.pl:108
+msgid "Delete this web area"
+msgstr "Supprimer ce site web"
+
+#: vhffs-panel/svn/create.pl:102 vhffs-panel/dns/create.pl:79
+#: vhffs-panel/pgsql/create.pl:110 vhffs-panel/group/create.pl:91
+#: vhffs-panel/repository/create.pl:98 vhffs-panel/admin/moderation.pl:88
+#: vhffs-panel/admin/object/edit.pl:98 vhffs-panel/git/create.pl:103
+#: vhffs-panel/object/resubmit.pl:128 vhffs-panel/mysql/create.pl:110
+#: vhffs-panel/cvs/create.pl:108 vhffs-intl/template_strings.pl:26
+#: vhffs-intl/template_strings.pl:39 vhffs-intl/template_strings.pl:42
+#: vhffs-api/src/Vhffs/Panel/Object.pm:102
+msgid "Description"
+msgstr "Description"
+
+#: vhffs-intl/template_strings.pl:13
+msgid "Description contains"
+msgstr ""
+
+#: vhffs-panel/web/prefs.pl:99
+msgid "Description of your webarea"
+msgstr "Description de votre site web"
+
+#: vhffs-panel/dns/prefs.pl:280
+msgid "Destination"
+msgstr "Destination"
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:71 vhffs-api/src/Vhffs/Panel/Menu.pm:120
+msgid "Dl repos"
+msgstr "Espaces de téléchargement"
+
+#: vhffs-panel/mail/create.pl:91
+msgid "Domain"
+msgstr "Domaine"
+
+#: vhffs-panel/dns/create.pl:70 vhffs-panel/admin/dns/list.pl:75
+#: vhffs-panel/admin/mail/list.pl:75 vhffs-intl/extra_strings.pl:43
+msgid "Domain Name"
+msgstr "Nom de domaine"
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:70 vhffs-api/src/Vhffs/Panel/Menu.pm:119
+msgid "Domain names"
+msgstr "Noms de domaines"
+
+#: vhffs-panel/dns/index.pl:60
+#, perl-format
+msgid "Domain names for %s"
+msgstr "Noms de domaine pour %s"
+
+#: vhffs-panel/svn/prefs.pl:110 vhffs-panel/git/prefs.pl:121
+#, perl-format
+msgid ""
+"Don't forget to subscribe %s to your mailing list if you are filtering posts"
+msgstr ""
+"N'oubliez pas d'inscrire %s à votre liste de diffusion si vous filtrez les "
+"posts"
+
+#: vhffs-intl/extra_strings.pl:38
+msgid "Download Repository"
+msgstr "Espace de téléchargement"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:311
+msgid "Download repositories Admin"
+msgstr "Administration des Espace de téléchargement"
+
+#: vhffs-panel/repository/index.pl:60
+#, perl-format
+msgid "Download repositories for %s"
+msgstr "Espaces de téléchargement pour %s"
+
+#: vhffs-panel/admin/repository/index.pl:56
+msgid "Download repositories' administration"
+msgstr "Administration des Espace de téléchargement"
+
+#: vhffs-panel/admin/web/list.pl:80
+msgid "Edit"
+msgstr "Éditer"
+
+#: vhffs-panel/admin/object/edit.pl:91
+msgid "Edit Object"
+msgstr "Éditer l'objet"
+
+#: vhffs-panel/admin/object/list.pl:98
+msgid "Edit this object"
+msgstr "Éditer cet objet"
+
+#: vhffs-panel/user/prefs.pl:183
+msgid "Email address changed"
+msgstr "Adresse mail mise à jour"
+
+#: vhffs-panel/user/prefs.pl:129
+msgid "Email is not correct !"
+msgstr "Adresse mail invalide !"
+
+#: vhffs-intl/template_strings.pl:81
+msgid "Enable anti-spam"
+msgstr "Activer l'anti-spam"
+
+#: vhffs-intl/template_strings.pl:84
+msgid "Enable anti-virus"
+msgstr "Activer l'anti-virus"
+
+#: vhffs-panel/mail/prefs.pl:107
+msgid "Enter a mail address to catch all email for this domain"
+msgstr ""
+"Entrez une adresse mail valide qui recevra tous les emails pour ce domaine"
+
+#: vhffs-panel/mailinglist/index.pl:53 vhffs-panel/svn/index.pl:53
+#: vhffs-panel/dns/index.pl:53 vhffs-panel/pgsql/index.pl:53
+#: vhffs-panel/repository/index.pl:53 vhffs-panel/git/index.pl:54
+#: vhffs-panel/web/index.pl:53 vhffs-panel/mysql/index.pl:53
+#: vhffs-panel/cvs/index.pl:53 vhffs-panel/mail/index.pl:53
+msgid "Error"
+msgstr "Erreur"
+
+#: vhffs-panel/admin/broadcast_submit.pl:96
+msgid "Error !"
+msgstr "Erreur !"
+
+#: vhffs-panel/user/prefs.pl:212
+msgid ""
+"Error ! You MUST provide a password in your account when you create your "
+"popable account"
+msgstr ""
+"Erreur !. Vous DEVEZ renseigner le mot de passe lorsque vous créez votre "
+"compte mail"
+
+#: vhffs-panel/group/create.pl:74
+msgid "Error creating group (maybe a group with the same name already exists)"
+msgstr ""
+"Erreur lors de la création du groupe (un groupe du même nom existe peut être "
+"déjà)."
+
+#: vhffs-panel/web/create.pl:86
+msgid "Error creating webarea."
+msgstr "Erreur lors de la création de l'espace web."
+
+#: vhffs-panel/user/prefs.pl:239
+msgid "Error for spam protection\n"
+msgstr "Erreur sur la protection anti-spam\n"
+
+#: vhffs-panel/user/prefs.pl:250
+msgid "Error for virus protection\n"
+msgstr "Erreur sur la protection par anti-virus\n"
+
+#: vhffs-panel/object/upavatar.pl:130
+msgid "Error when uploading avatar for this object"
+msgstr "Erreur d'envoi d'avatar pour cet objet"
+
+#: vhffs-panel/dns/delete.pl:96
+msgid "Error while switching state. DNS will NOT be deleted"
+msgstr "Erreur lors du changement d'état. Le DNS NE sera PAS supprimé"
+
+#: vhffs-panel/group/history.pl:65 vhffs-panel/group/prefs.pl:67
+msgid "Error. This group doesn't exists"
+msgstr "Erreur. Ce groupe n'existe pas"
+
+#: vhffs-panel/group/history.pl:80
+msgid "Event"
+msgstr "Évènement"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:360
+msgid "Expired session ! Please login again"
+msgstr "Session expirée. Merci de vous authentifier à nouveau"
+
+#: vhffs-panel/object/upavatar.pl:114
+msgid "Filetype not supported, only png is supported"
+msgstr "Type de fichier non supporté, seul le png est supporté"
+
+#: vhffs-intl/template_strings.pl:51
+msgid "Fill with project's members emails"
+msgstr "Remplir avec les emails des membres du projet"
+
+#: vhffs-panel/subscribe.pl:225 vhffs-panel/user/prefs.pl:303
+#: vhffs-intl/template_strings.pl:5 vhffs-intl/template_strings.pl:35
+msgid "Firstname"
+msgstr "Prénom"
+
+#: vhffs-panel/user/prefs.pl:120
+msgid "Firstname is not correct !"
+msgstr "Prénom incorrect !"
+
+#: vhffs-panel/git/prefs.pl:115
+msgid "Fix permissions in this repository"
+msgstr "Fixer les permissions pour cet espace de téléchargement"
+
+#: vhffs-panel/git/prefs.pl:117
+msgid "Fix them !"
+msgstr "Fixer !"
+
+#: vhffs-panel/git/prefs.pl:116
+msgid ""
+"Fixing permissions on a repository solve permission access on the "
+"repository. Can be helpful if you encounter problems"
+msgstr ""
+"Si vous rencontrez des problèmes d'accès à votre espace de téléchargement, "
+"pensez à fixer les permissions"
+
+#: vhffs-panel/mail/prefs.pl:319
+#, perl-format
+msgid "Forward %s deleted"
+msgstr "Redirection %s supprimée"
+
+#: vhffs-panel/mail/prefs.pl:304
+#, perl-format
+msgid "Forward %s successfully updated"
+msgstr "Redirection %s mise à jour"
+
+#: vhffs-panel/user/prefs.pl:268 vhffs-panel/group/prefs.pl:191
+#: vhffs-panel/mail/prefs.pl:288
+msgid "Forward added"
+msgstr "Redirection ajoutée"
+
+#: vhffs-panel/group/prefs.pl:188
+msgid "Forward deleted"
+msgstr "Redirection supprimée"
+
+#: vhffs-panel/user/prefs.pl:414
+#, perl-format
+msgid "Forward emails from %s@%s to %s"
+msgstr "Rediriger les emails de %s@%s à %s"
+
+#: vhffs-panel/mail/prefs.pl:125
+msgid "Forward mail"
+msgstr "Adresse de redirection"
+
+#: vhffs-panel/user/prefs.pl:277
+msgid "Forward updated"
+msgstr "Redirection mise à jour"
+
+#: vhffs-panel/mail/prefs.pl:120
+msgid "Forwards"
+msgstr "Redirections"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:560
+msgid "Full history"
+msgstr "Historique complet"
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:69 vhffs-api/src/Vhffs/Panel/Menu.pm:118
+msgid "GIT"
+msgstr "GIT"
+
+#: vhffs-intl/template_strings.pl:30
+msgid "GIT Repositories for this group"
+msgstr ""
+
+#: vhffs-panel/git/index.pl:61
+#, perl-format
+msgid "GIT repositories for %s"
+msgstr "Dépôt GIT pour %s"
+
+#: vhffs-panel/admin/git/index.pl:57
+msgid "GIT repositories' administration"
+msgstr "Administration des dépôts GIT"
+
+#: vhffs-panel/admin/git/list.pl:72
+msgid "GIT root"
+msgstr "Racine GIT"
+
+#: vhffs-panel/admin/stats.pl:133
+msgid "GIT stats"
+msgstr "Statistiques concernant GIT"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:559 vhffs-api/src/Vhffs/Panel/Admin.pm:79
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:101
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:110
+msgid "General"
+msgstr "Général"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:76 vhffs-api/src/Vhffs/Panel/Admin.pm:93
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:91
+msgid "Get Statistics"
+msgstr "Afficher les statistiques"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:206
+msgid "Git Admin"
+msgstr "Administration des dépôts Git"
+
+#: vhffs-panel/lost.pl:58
+msgid "Give me a new password"
+msgstr "Donnez-moi un nouveau mot de passe"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:808
+msgid "Go to administration"
+msgstr "Aller à la page d'administration"
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:85
+msgid "Go to public area"
+msgstr "Aller dans la zone publique"
+
+#: vhffs-panel/mailinglist/prefs.pl:302
+#, perl-format
+msgid ""
+"Greetings,\n"
+"\n"
+"You've been added to the list %s on platform %s.\n"
+"\n"
+"You may get some help on listengine by sending an email to %s-request@%s "
+"with subject help.\n"
+"\n"
+"Cheers."
+msgstr ""
+"Bonjour,\n"
+"\n"
+"Vous avez été inscrit à la liste %s sur la plateforme %s.\n"
+"\n"
+"Vous pouvez obtenir de l'aide sur le fonctionnnement de la liste en envoyant "
+"un email dont le sujet est help à l'adresse %s-request@%s.\n"
+"\n"
+"Cordialement"
+
+#: vhffs-panel/admin/mailinglist/list.pl:80 vhffs-panel/admin/svn/list.pl:71
+#: vhffs-panel/admin/dns/list.pl:76 vhffs-panel/admin/moderation.pl:87
+#: vhffs-panel/admin/pgsql/list.pl:77 vhffs-panel/admin/repository/list.pl:76
+#: vhffs-panel/admin/git/list.pl:73 vhffs-panel/admin/web/list.pl:71
+#: vhffs-panel/admin/mysql/list.pl:83 vhffs-panel/admin/cvs/list.pl:77
+#: vhffs-panel/admin/mail/list.pl:76 vhffs-intl/extra_strings.pl:36
+msgid "Group"
+msgstr "Groupe"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:546
+#, perl-format
+msgid "Group %s"
+msgstr "Groupe %s"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:135
+msgid "Group Admin"
+msgstr "Administration des groupes"
+
+#: vhffs-intl/template_strings.pl:66
+msgid "Group Quota"
+msgstr "Quota pour ce groupe"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:543
+msgid "Group error"
+msgstr "Erreur sur le groupe"
+
+#: vhffs-panel/acl/view.pl:87
+msgid "Group or user not found"
+msgstr "Groupe ou utilisateur introuvable"
+
+#: vhffs-panel/cvs/create.pl:104
+msgid "Group owning this CVS"
+msgstr "Groupe propriétaire de ce dépôt CVS"
+
+#: vhffs-panel/dns/create.pl:75
+msgid "Group owning this DNS"
+msgstr "Groupe propriétaire de ce nom de domaine"
+
+#: vhffs-panel/svn/create.pl:98
+msgid "Group owning this Subversion repository"
+msgstr "Groupe propriétaire de ce dépôt Subversion"
+
+#: vhffs-panel/pgsql/create.pl:103 vhffs-panel/mysql/create.pl:103
+msgid "Group owning this database"
+msgstr "Groupe propriétaire de cette base de données"
+
+#: vhffs-panel/git/create.pl:98
+msgid "Group owning this git repository"
+msgstr "Groupe propriétaire de ce dépôt Git"
+
+#: vhffs-panel/mail/create.pl:93
+msgid "Group owning this mail domain"
+msgstr "Groupe propriétaire de ce domaine mail"
+
+#: vhffs-panel/mailinglist/create.pl:108
+msgid "Group owning this mailing list"
+msgstr "Groupe propriétaire de cette liste de diffusion"
+
+#: vhffs-panel/repository/create.pl:93
+msgid "Group owning this repository"
+msgstr "Groupe propriétaire de cet espace"
+
+#: vhffs-panel/web/create.pl:99
+msgid "Group owning this web space"
+msgstr "Groupe propriétaire de ce site web"
+
+#: vhffs-panel/group/prefs.pl:97
+msgid "Group updated"
+msgstr "Groupe mis à jour"
+
+#: vhffs-panel/group/prefs.pl:293
+msgid "Group updated, please wait while quota is updated on filesystem"
+msgstr ""
+"Groupe mis à jour. Veuillez patienter pendant la mise à jour du quota sur le "
+"système de fichiers."
+
+#: vhffs-panel/admin/group/list.pl:80 vhffs-intl/template_strings.pl:12
+#: vhffs-intl/template_strings.pl:25 vhffs-intl/template_strings.pl:38
+#: vhffs-intl/template_strings.pl:40
+msgid "Groupname"
+msgstr "Nom du groupe"
+
+#: vhffs-panel/group/create.pl:66
+msgid ""
+"Groupname must contain between 3 and 12 characters, only letters or numbers "
+"in lower case"
+msgstr ""
+"Le nom de groupe doit contenir entre 3 et 12 caractères, comprenant "
+"uniquementdes chiffres et des lettres en minuscule"
+
+#: vhffs-intl/template_strings.pl:43 vhffs-api/src/Vhffs/Panel/Menu.pm:112
+msgid "Groups"
+msgstr "Groupes"
+
+#: vhffs-panel/admin/stats.pl:99
+msgid "Groups stats"
+msgstr "Statistiques des groupes"
+
+#: vhffs-panel/admin/group/index.pl:56
+msgid "Groups' administration"
+msgstr "Administration des groupes"
+
+#: vhffs-intl/template_strings.pl:8
+msgid "Groups/Projects"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:181
+#, 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 ""
+"Bonjour %s %s,\n"
+"\n"
+"Vous avez modifié votre email. Voici un rappel de vos informations :\n"
+"\n"
+"Utilisateur: %s\n"
+"Adresse mail: %s\n"
+"\n"
+"Les administrateurs\n"
+
+#: vhffs-api/src/Vhffs/Object.pm:499
+#, perl-format
+msgid ""
+"Hello %s %s,\n"
+"\n"
+"Your %s (%s) on %s has been deleted.\n"
+"\n"
+"This is because it have been refused a long time ago and you didn't\n"
+"submit an update since.\n"
+"\n"
+"For reminder, the reason of refusal was:\n"
+"%s\n"
+"\n"
+"Don't be upset, submit it again if you forgot to update it in time.\n"
+"If you need further information, just reply to this email !\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
+msgstr ""
+"Bonjour %s %s,\n"
+"\n"
+"Votre %s (%s) sur %s a été supprimé.\n"
+"\n"
+"Car cet objet a été refusé il y a déjà très longtemps et vous n'avez pas\n"
+"soumis de nouvelle description depuis\n"
+"\n"
+"Pour mémoire, la raison du refus était:\n"
+"%s\n"
+"\n"
+"Ne soyez pas faché, soumettez le de nouveau si vous n'avez pu proposer\n"
+"une nouvelle description à temps.\n"
+"Si vous avez besoin d'informations complémentaires, repondez simplement à ce "
+"mail !\n"
+"\n"
+"Cordialement,\n"
+"L'équipe de modération\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
+
+#: vhffs-api/src/Vhffs/User.pm:322
+#, perl-format
+msgid ""
+"Hello %s %s,\n"
+"\n"
+"Your account (%s) on %s has been deleted.\n"
+"\n"
+"This is because it was left unused for a long time\n"
+"\n"
+"Don't be upset, create it again and reply to this email to tell us\n"
+"why you really need to keep your account.\n"
+"If you need further information, just reply to this email !\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s\n"
+msgstr ""
+"Bonjour %s %s,\n"
+"\n"
+"Votre compte (%s) sur %s à été supprimé.\n"
+"\n"
+"Car cet utilisateur n'a pas été utilisé depuis très longtemps\n"
+"\n"
+"Ne soyez pas faché, créez le de nouveau et repondez à ce mail en nous\n"
+"expliquant pourquoi vous avez vraiment besoin de conserver votre compte.\n"
+"Si vous avez besoin d'informations complémentaires, repondez simplement à ce "
+"mail !\n"
+"\n"
+"Cordialement,\n"
+"L'équipe de modération\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s\n"
+
+#: vhffs-api/src/Vhffs/Object.pm:404
+#, perl-format
+msgid ""
+"Hello %s %s,\n"
+"\n"
+"Your request for a %s (%s) on %s was accepted.\n"
+"Please wait while we are creating your object.\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
+msgstr ""
+"Bonjour %s %s,\n"
+"\n"
+"Votre demande pour un %s (%s) sur %s a été acceptée.\n"
+"Veuillez patienter pendant la création de l'objet.\n"
+"\n"
+"Cordialement,\n"
+"L'équipe de modération\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
+
+#: vhffs-api/src/Vhffs/Object.pm:453
+#, perl-format
+msgid ""
+"Hello %s %s,\n"
+"\n"
+"Your request for a %s (%s) on %s was refused.\n"
+"\n"
+"The reason of refusal given by moderators is:\n"
+"%s\n"
+"\n"
+"You can change the description and submit it again for moderation on the\n"
+"panel. You can delete this object on the panel if you have made\n"
+"a mistake. Don't be upset, if you don't understand why your request has\n"
+"been refused, just reply to this email !\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
+msgstr ""
+"Bonjour %s %s,\n"
+"\n"
+"Votre demande pour un %s (%s) sur %s a été refusée.\n"
+"\n"
+"La raison du refus donné par les modérateurs est la suivante:\n"
+"%s\n"
+"\n"
+"Vous pouvez changer la description et la proposer de nouveau pour la\n"
+"modération sur le panel.\n"
+"Vous pouvez supprimer cet objet si vous avez fait une erreur\n"
+"Ne soyez pas faché, si vous ne comprenez pas pourquoi votre demande\n"
+"a été refusée, repondez simplement a ce mail !\n"
+"\n"
+"Cordialement,\n"
+"L'équipe de modération\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:502
+#, perl-format
+msgid "Hello %s, welcome in VHFFS !"
+msgstr "Bonjour %s, bienvenue dans VHFFS !"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:46
+msgid "Hello and welcome on listengine help\n"
+msgstr "Bonjour et bienvenue dans l'aide de listengine\n"
+
+#: vhffs-panel/user/prefs.pl:417 vhffs-panel/group/prefs.pl:233
+#: vhffs-api/src/Vhffs/Panel/Main.pm:437 vhffs-api/src/Vhffs/Panel/Main.pm:564
+#: vhffs-api/src/Vhffs/Panel/Main.pm:663 vhffs-api/src/Vhffs/Panel/Main.pm:818
+msgid "Help"
+msgstr "Aide"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:52
+msgid "Here are the basic listengine commands:\n"
+msgstr "Voici les commandes basiques de listengine :\n"
+
+#: vhffs-panel/alert.pl:57
+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.pm:422
+#, perl-format
+msgid ""
+"His email address is:\n"
+" %s\n"
+msgstr ""
+"Son adresse email est :\n"
+" %s\n"
+
+#: vhffs-panel/history.pl:98 vhffs-panel/admin/object/list.pl:92
+#: vhffs-panel/admin/object/list.pl:99 vhffs-api/src/Vhffs/Panel/Main.pm:811
+msgid "History"
+msgstr "Historique"
+
+#: vhffs-panel/admin/object/edit.pl:198
+#: vhffs-api/src/Vhffs/Panel/Object.pm:203
+msgid "History of this object"
+msgstr "Historique de cet objet"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:434
+msgid "Home page"
+msgstr "Page principale"
+
+#: vhffs-intl/template_strings.pl:46
+msgid "Homepage of public area"
+msgstr "Aller à la page d'accueil de la zone publique"
+
+#: vhffs-panel/dns/prefs.pl:295 vhffs-panel/dns/prefs.pl:380
+#: vhffs-panel/dns/prefs.pl:396
+msgid "Host"
+msgstr "Hôte"
+
+#: vhffs-panel/dns/prefs.pl:287
+msgid "Host of your name server"
+msgstr "Nom de domaine de votre serveur de nom"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:165
+msgid "However this list require approval for new subscribers.\n"
+msgstr ""
+"Cependant, cette liste nécessite une validation des nouveaux inscrits.\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:120
+#, perl-format
+msgid "However you are (%s) already subscribed to this list.\n"
+msgstr "Cependant vous (%s) êtes déjà inscrit(e) à cette liste.\n"
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:69
+msgid "I've lost my password"
+msgstr "J'ai perdu mon mot de passe"
+
+#: vhffs-panel/dns/prefs.pl:263
+msgid "IP"
+msgstr "Adresse IP"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:505
+msgid ""
+"If you are new to VHFFS, you should start to read quickly the whole help "
+"available by clicking on the help button in the upper right of your screen"
+msgstr ""
+"Si vous ne connaissez pas encore VHFFS, il est conseillé de lire rapidement "
+"l'aide disponible en cliquant sur le bouton d'aide en haut à droite de "
+"l'écran"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:88
+msgid ""
+"If you don't asked to be subscribed to this mailing list,\n"
+"just forget this email\n"
+msgstr ""
+"Si vous n'avez pas demandé à être inscrit à cette liste de\n"
+"diffusion, merci de ne pas tenir compte de ce mail\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:106
+msgid ""
+"If you haven't asked to be unsubscribed from this list,\n"
+"please don't answer to this mail\n"
+msgstr ""
+"Si vous n'avez pas demandé à être désinscrit à cette liste de\n"
+"diffusion, merci de ne pas répondre à ce mail\n"
+
+#: vhffs-panel/group/prefs.pl:203
+msgid ""
+"If you want more disk space for your project, you must fill a form in the "
+"bug report section, in the menu. Don't forget to mention the name of the "
+"group."
+msgstr ""
+"Si vous souhaitez obtenir plus d'espace disque pour votre groupe/projet, "
+"signalez un dysfonctionnement via le formulaire d'aide du site. N'oubliez "
+"pas de mentionner le nom de votre groupe."
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:197 vhffs-api/src/Vhffs/Panel/DNS.pm:209
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:239
+msgid "Invalid IP address"
+msgstr "Adresse IP invalide"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:227
+msgid "Invalid IP v6 address"
+msgstr "Adresse IP v6 invalide"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:297
+msgid "Invalid alias"
+msgstr "Alias invalide"
+
+#: vhffs-panel/pgsql/create.pl:86 vhffs-panel/mysql/create.pl:86
+msgid ""
+"Invalid database name, it must contain only numbers, lowercase letters and "
+"underscore (the latter isn't allowed in first or last position) and be "
+"between 3 and 32 characters."
+msgstr ""
+"Nom de base de données invalide, il ne doit contenir que des nombres, des "
+"lettres minuscules ou des underscores (ces derniers ne devant pas être en "
+"première ou dernière position) et contenir entre 3 et 12 caractères."
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:286
+msgid "Invalid destination"
+msgstr "Destination invalide"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:311 vhffs-api/src/Vhffs/Panel/DNS.pm:327
+msgid "Invalid destination domain name"
+msgstr "Destination de nom de domaine invalide"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:298
+msgid "Invalid destination host"
+msgstr "Destination host invalide"
+
+#: vhffs-panel/dns/create.pl:51 vhffs-panel/mail/create.pl:76
+msgid "Invalid domain name"
+msgstr "Nom de domaine invalide"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:263
+msgid "Invalid host"
+msgstr "hôte invalide"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:249 vhffs-api/src/Vhffs/Panel/DNS.pm:273
+msgid "Invalid hostname"
+msgstr "Nom d'hôte invalide"
+
+#: vhffs-panel/mailinglist/create.pl:85
+msgid "Invalid local part"
+msgstr "Partie locale invalide"
+
+#: vhffs-panel/git/prefs.pl:188
+msgid "Invalid mailing list address"
+msgstr "Adresse de liste de diffusion invalide"
+
+#: vhffs-panel/pgsql/create.pl:88
+msgid "Invalid password. It must be at least 3 chars"
+msgstr "Mot de passe incorrect, il doit contenir au moins 3 caractères"
+
+#: vhffs-panel/mysql/create.pl:88
+msgid "Invalid password. It must contain at least 3 characters"
+msgstr "Mot de passe incorrect, il doit contenir au moins 3 caractères"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:312 vhffs-api/src/Vhffs/Panel/DNS.pm:328
+msgid "Invalid port"
+msgstr "Port invalide"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:194 vhffs-api/src/Vhffs/Panel/DNS.pm:224
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:341
+msgid "Invalid prefix"
+msgstr "Prefixe invalide"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:250 vhffs-api/src/Vhffs/Panel/DNS.pm:313
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:329
+msgid "Invalid priority"
+msgstr "Priorité invalide"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:309
+msgid "Invalid protocol syntax"
+msgstr "Syntaxe de protocole invalide"
+
+#: vhffs-panel/group/prefs.pl:274 vhffs-panel/repository/prefs.pl:120
+msgid "Invalid quota"
+msgstr "Quota invalide"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:159 vhffs-api/src/Vhffs/Panel/DNS.pm:207
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:237 vhffs-api/src/Vhffs/Panel/DNS.pm:261
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:284 vhffs-api/src/Vhffs/Panel/DNS.pm:325
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:352
+msgid "Invalid record"
+msgstr "Enregistrement invalide"
+
+#: vhffs-panel/svn/create.pl:81 vhffs-panel/git/create.pl:81
+#: vhffs-panel/cvs/create.pl:82
+msgid ""
+"Invalid reponame. It must contain between 3 and 64 characters, only "
+"lowercase letters and numbers"
+msgstr ""
+"Nom d'espace de téléchargement invalide. Il doit contenir entre 3 et 64 "
+"caractères et ne contenir que des chiffres ou des lettres en minuscule."
+
+#: vhffs-panel/web/create.pl:79
+msgid "Invalid servername (doesn't conform to domain names rules)"
+msgstr "Servername invalide (ne se conforme pas aux règles du nom de domaine)"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:310
+msgid "Invalid service syntax"
+msgstr "Syntaxe de service invalide"
+
+#: vhffs-panel/subscribe.pl:115
+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 "
+"minuscule"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:314 vhffs-api/src/Vhffs/Panel/DNS.pm:330
+msgid "Invalid weight"
+msgstr "Poids invalide"
+
+#: vhffs-panel/cvs/prefs.pl:111
+msgid "Is this CVS repository public ??"
+msgstr "Ce dépôt CVS doit-il être public ?"
+
+#: vhffs-panel/svn/prefs.pl:92 vhffs-panel/git/prefs.pl:100
+msgid "Is this a public repository ?"
+msgstr "Ce dépôt doit-il être public ?"
+
+#: vhffs-panel/user/prefs.pl:311
+msgid "Language"
+msgstr "Langue"
+
+#: vhffs-intl/template_strings.pl:9 vhffs-intl/template_strings.pl:48
+msgid "Last Groups"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:47
+msgid "Last Users"
+msgstr ""
+
+#: vhffs-public/lastgroups.pl:58
+#, perl-format
+msgid "Last groups on %s"
+msgstr "Derniers groupes sur %s"
+
+#: vhffs-intl/template_strings.pl:2
+msgid "Last users"
+msgstr "Derniers utilisateurs"
+
+#: vhffs-public/lastusers.pl:60
+#, perl-format
+msgid "Last users on %s"
+msgstr "Derniers utilisateurs sur %s"
+
+#: vhffs-panel/subscribe.pl:226 vhffs-panel/user/prefs.pl:304
+#: vhffs-intl/template_strings.pl:6 vhffs-intl/template_strings.pl:36
+msgid "Lastname"
+msgstr "Nom"
+
+#: vhffs-panel/user/prefs.pl:123
+msgid "Lastname is not correct !"
+msgstr "Le nom est incorrect !"
+
+#: vhffs-panel/dns/prefs.pl:236
+msgid "List all A reccords"
+msgstr "Lister tous les enregistrements A"
+
+#: vhffs-panel/dns/prefs.pl:237
+msgid "List all AAAA reccords"
+msgstr "Lister tous les enregistrements AAAA"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:185
+msgid "List all CVS repos"
+msgstr "Lister tous les dépôts CVS"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:203
+msgid "List all Git repos"
+msgstr "Lister tous les dépôts Git"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:220
+msgid "List all MySQL databases"
+msgstr "Lister toutes les bases de données MySQL"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:237
+msgid "List all Pg databases"
+msgstr "Lister toutes les bases de données PostgreSQL"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:167
+msgid "List all SVN repos"
+msgstr "Lister tous les dépôts SVN"
+
+#: vhffs-panel/dns/prefs.pl:303
+msgid "List all TXT records"
+msgstr "Lister tous les enregistrements TXT"
+
+#: vhffs-panel/mail/prefs.pl:112
+msgid "List all accounts"
+msgstr "Lister tous les comptes utilisateur"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:290
+msgid "List all domain names"
+msgstr "Lister tous les noms de domaine"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:308
+msgid "List all download repositories"
+msgstr "Liste de tous les espaces de téléchargement"
+
+#: vhffs-panel/mail/prefs.pl:121
+msgid "List all forwardings for this domain"
+msgstr "Liste de toutes les redirections pour ce domaine"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:132
+msgid "List all groups"
+msgstr "Lister tous les groupes"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:254
+msgid "List all mail domains"
+msgstr "Lister tous les domaines mails"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:272
+msgid "List all mailing lists"
+msgstr "Lister toutes les listes de diffusion"
+
+#: vhffs-panel/mailinglist/prefs.pl:147
+msgid "List all members"
+msgstr "Lister tous les membres"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:96
+msgid "List all objects"
+msgstr "Lister tous les objets"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:115
+msgid "List all users"
+msgstr "Lister tous les utilisateurs"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:150
+msgid "List all webareas"
+msgstr "Lister tous les espaces web"
+
+#: vhffs-panel/admin/cvs/list.pl:73
+msgid "List of all CVS repositories"
+msgstr "Liste de tous les dépôts CVS"
+
+#: vhffs-panel/admin/repository/list.pl:72
+msgid "List of all Download repositories"
+msgstr "Liste de tous les espaces de téléchargement"
+
+#: vhffs-panel/admin/mysql/list.pl:79
+msgid "List of all MySQL databases"
+msgstr "Liste de toutes les bases de données MySQL"
+
+#: vhffs-panel/admin/pgsql/list.pl:73
+msgid "List of all PostgreSQL databases"
+msgstr "Liste de toutes les bases de données PostgreSQL"
+
+#: vhffs-panel/admin/dns/list.pl:72
+msgid "List of all domains"
+msgstr "Liste de tous les noms de domaine"
+
+#: vhffs-panel/admin/group/list.pl:73
+msgid "List of all groups"
+msgstr "Liste de tous les groupes"
+
+#: vhffs-panel/admin/mail/list.pl:72
+msgid "List of all mail-domain"
+msgstr "Liste de tous les domaines mail"
+
+#: vhffs-panel/admin/mailinglist/list.pl:76
+msgid "List of all mailing-list"
+msgstr "Liste de toutes les listes de diffusion"
+
+#: vhffs-panel/admin/user/list.pl:67
+msgid "List of all users"
+msgstr "Liste de tous les utilisateurs"
+
+#: vhffs-panel/admin/web/list.pl:67 vhffs-intl/template_strings.pl:49
+msgid "List of all websites"
+msgstr "Liste de tous les sites web"
+
+#: vhffs-panel/mailinglist/prefs.pl:222
+msgid "List updated"
+msgstr "La liste a été mise à jour"
+
+#: vhffs-panel/mailinglist/delete.pl:95
+msgid "List will NOT be deleted"
+msgstr "La liste de diffusion NE sera PAS supprimée"
+
+#: vhffs-panel/admin/stats.pl:166
+msgid "Listengine stats"
+msgstr "Statistiques de listengine"
+
+#: vhffs-panel/mail/prefs.pl:124
+msgid "Local Part"
+msgstr "Partie locale"
+
+#: vhffs-panel/mail/prefs.pl:115
+msgid "Local Part for this account"
+msgstr "Partie locale de ce compte"
+
+#: vhffs-panel/lost_ack.pl:75 vhffs-panel/lost_ack.pl:83
+msgid "Login"
+msgstr "Nom d'utilisateur"
+
+#: vhffs-panel/auth.pl:72
+msgid "Login failed !"
+msgstr "Authentification échouée !"
+
+#: vhffs-panel/group/prefs.pl:245
+msgid "Logo"
+msgstr "Logo"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:439
+msgid "Logout"
+msgstr "Se déconnecter"
+
+#: vhffs-intl/template_strings.pl:69 vhffs-intl/template_strings.pl:74
+msgid "MB"
+msgstr "MB"
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:73 vhffs-api/src/Vhffs/Panel/Menu.pm:122
+msgid "ML"
+msgstr "ML"
+
+#: vhffs-panel/dns/prefs.pl:152
+msgid "MX Record added"
+msgstr "Enregistrement MX ajouté"
+
+#: vhffs-panel/dns/prefs.pl:147
+msgid "MX Record deleted"
+msgstr "Enregistrement MX supprimé"
+
+#: vhffs-panel/dns/prefs.pl:142
+msgid "MX Record updated"
+msgstr "Enregistrement MX mis à jour"
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:72 vhffs-api/src/Vhffs/Panel/Menu.pm:121
+msgid "Mail"
+msgstr "Mail"
+
+#: vhffs-panel/mail/prefs.pl:101
+msgid "Mail Administration for domain "
+msgstr "Administration des mails pour le domaine "
+
+#: vhffs-intl/extra_strings.pl:44
+msgid "Mail Domain"
+msgstr "Domaine mail"
+
+#: vhffs-panel/user/prefs.pl:282
+msgid "Mail deleted"
+msgstr "Email supprimé"
+
+#: vhffs-panel/mail/create.pl:80
+msgid "Mail domain successfully created !"
+msgstr "Domaine Mail créé avec succès !"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:257
+msgid "Mail domains Admin"
+msgstr "Administration des domaines mail"
+
+#: vhffs-panel/mail/index.pl:60
+#, perl-format
+msgid "Mail domains for %s"
+msgstr "Domaines mail pour %s"
+
+#: vhffs-panel/admin/mail/index.pl:56
+msgid "Mail domains' administration"
+msgstr "Administration des domaines mail"
+
+#: vhffs-panel/mailinglist/create.pl:107
+msgid "Mail for the list"
+msgstr "Adresse pour la liste"
+
+#: vhffs-panel/admin/stats.pl:139
+msgid "Mail stats"
+msgstr "Statistiques des mails"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:98
+msgid "Mail to all hosted people"
+msgstr "Envoyer un message à tous les hébergés"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:371
+#, perl-format
+msgid "Mail with id %s"
+msgstr "Mail avec l'identifiant %s"
+
+#: vhffs-panel/user/prefs.pl:180
+msgid "Mailbox modified"
+msgstr "Boîte mail modifiée"
+
+#: vhffs-panel/user/prefs.pl:223
+msgid "Mailbox successfully added"
+msgstr "Boîte mail ajoutée avec succès"
+
+#: vhffs-panel/admin/mailinglist/list.pl:79 vhffs-intl/extra_strings.pl:45
+msgid "Mailing List"
+msgstr "Liste de diffusion"
+
+#: vhffs-intl/template_strings.pl:31
+msgid "Mailing Lists for this group"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:81
+#, perl-format
+msgid "Mailing list %s@%s not found"
+msgstr "La liste de diffusion %s@%s n'a pas été trouvée"
+
+#: vhffs-panel/svn/prefs.pl:157
+msgid "Mailing list address is invalid"
+msgstr "L'adresse de la liste de diffusion est invalide"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:275
+msgid "Mailing lists Admin"
+msgstr "Administration des listes de diffusion"
+
+#: vhffs-panel/mailinglist/index.pl:60
+#, perl-format
+msgid "Mailing lists for %s"
+msgstr "Listes de diffusion pour %s"
+
+#: vhffs-panel/admin/mailinglist/index.pl:56
+msgid "Mailing lists' administration"
+msgstr "Administration des listes de diffusion"
+
+#: vhffs-panel/admin/broadcast_submit.pl:92
+msgid "Mailing successfully added"
+msgstr "Envoi ajouté avec succès"
+
+#: vhffs-panel/admin/broadcast_delete.pl:92
+msgid "Mailing successfully deleted"
+msgstr "Envoi supprimé avec succès"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:99
+msgid "Manage mailings"
+msgstr "Gérer les envois de masse"
+
+#: vhffs-panel/mailinglist/prefs.pl:146
+msgid "Manage members"
+msgstr "Gérer les membres"
+
+#: vhffs-panel/group/prefs.pl:152
+msgid "Many users matched your query. Please choose between them"
+msgstr ""
+"Plusieurs utilisateurs répondent à votre requête. Choisissez parmi ceux-ci"
+
+#: vhffs-panel/mailinglist/prefs.pl:114
+msgid "Members only"
+msgstr "Réservé aux membres"
+
+#: vhffs-panel/mailinglist/prefs.pl:115
+msgid "Members only and moderated"
+msgstr "Réservé aux membres et modéré"
+
+#: vhffs-panel/admin/broadcast.pl:80
+msgid "Message"
+msgstr "Message"
+
+#: vhffs-panel/alert_submit.pl:65
+msgid "Message sent by the following account"
+msgstr "Message envoyé par le compte suivant"
+
+#: vhffs-panel/alert_submit.pl:68
+msgid "Message sent successfully"
+msgstr "Message envoyé avec succès"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:336 vhffs-api/src/Vhffs/Listengine.pm:353
+#, perl-format
+msgid "Message with id: %s"
+msgstr "Message avec l'identifiant : %s"
+
+#: vhffs-panel/mailinglist/prefs.pl:112
+msgid "Moderated for everyone"
+msgstr "Modéré pour tout le monde"
+
+#: vhffs-panel/admin/moderation.pl:74 vhffs-api/src/Vhffs/Panel/Admin.pm:77
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:95 vhffs-api/src/Vhffs/Panel/Menu.pm:92
+msgid "Moderation"
+msgstr "Modération"
+
+#: vhffs-intl/template_strings.pl:62
+msgid "Moderator"
+msgstr "Modérateur"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:429
+msgid "Moderator account"
+msgstr "Compte du modérateur"
+
+#: vhffs-panel/admin/object/edit.pl:126 vhffs-intl/extra_strings.pl:30
+#: vhffs-api/src/Vhffs/Panel/Object.pm:131
+msgid "Modification applied"
+msgstr "Modification(s) appliquée(s)"
+
+#: vhffs-panel/admin/object/edit.pl:125 vhffs-intl/extra_strings.pl:29
+#: vhffs-api/src/Vhffs/Panel/Object.pm:130
+msgid "Modification error"
+msgstr "Erreur lors de la modification"
+
+#: vhffs-panel/admin/moderation_submit.pl:98
+msgid "Modifications applied successfully"
+msgstr "Les modifications ont été appliquées avec succès"
+
+#: vhffs-panel/svn/prefs.pl:163 vhffs-panel/git/prefs.pl:152
+#: vhffs-panel/git/prefs.pl:197
+msgid ""
+"Modifications applied. Please wait while your repository is being updated"
+msgstr ""
+"Modifications appliquées avec succès. Veuillez patienter pendant la mise à "
+"jour de votre repository."
+
+#: vhffs-panel/svn/prefs.pl:95 vhffs-panel/user/prefs.pl:314
+#: vhffs-panel/dns/prefs.pl:315 vhffs-panel/dns/prefs.pl:327
+#: vhffs-panel/dns/prefs.pl:340 vhffs-panel/dns/prefs.pl:351
+#: vhffs-panel/dns/prefs.pl:378 vhffs-panel/dns/prefs.pl:394
+#: vhffs-panel/acl/view.pl:105 vhffs-panel/pgsql/prefs.pl:97
+#: vhffs-panel/group/prefs.pl:211 vhffs-panel/group/prefs.pl:229
+#: vhffs-panel/admin/mailinglist/list.pl:88 vhffs-panel/admin/svn/list.pl:79
+#: vhffs-panel/admin/user/list.pl:79 vhffs-panel/admin/dns/list.pl:84
+#: vhffs-panel/admin/pgsql/list.pl:85 vhffs-panel/admin/group/list.pl:89
+#: vhffs-panel/admin/repository/list.pl:84 vhffs-panel/admin/git/list.pl:81
+#: vhffs-panel/admin/mysql/list.pl:92 vhffs-panel/admin/cvs/list.pl:84
+#: vhffs-panel/admin/mail/list.pl:84 vhffs-panel/git/prefs.pl:103
+#: vhffs-panel/web/prefs.pl:101 vhffs-panel/mysql/prefs.pl:109
+#: vhffs-panel/cvs/prefs.pl:114
+msgid "Modify"
+msgstr "Modifier"
+
+#: vhffs-panel/dns/prefs.pl:260
+msgid "Must we redirect the DNS on our servers ?"
+msgstr "Les DNS doivent-ils être redirigés sur nos serveurs ?"
+
+#: vhffs-panel/group/index.pl:54 vhffs-api/src/Vhffs/Panel/Main.pm:436
+msgid "My Projects"
+msgstr "Mes groupes/projets"
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:65 vhffs-api/src/Vhffs/Panel/Menu.pm:114
+msgid "MySQL"
+msgstr "MySQL"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:223
+msgid "MySQL Admin"
+msgstr "Administateur MySQL"
+
+#: vhffs-panel/mysql/prefs.pl:93
+msgid "MySQL Administration"
+msgstr "Administration MySQL"
+
+#: vhffs-intl/extra_strings.pl:39
+msgid "MySQL DB"
+msgstr "Base MySQL"
+
+#: vhffs-panel/mysql/index.pl:60
+#, perl-format
+msgid "MySQL DBs for %s"
+msgstr "Bases MySQL pour %s"
+
+#: vhffs-panel/mysql/create.pl:105
+msgid "MySQL database name "
+msgstr "Nom de la base de données "
+
+#: vhffs-panel/admin/mysql/index.pl:56
+msgid "MySQL databases' administration"
+msgstr "Administration de la base de données MySQL"
+
+#: vhffs-panel/mysql/create.pl:107
+msgid "MySQL password for this database "
+msgstr "Mot de passe "
+
+#: vhffs-panel/admin/stats.pl:151
+msgid "MySQL stats"
+msgstr "Statistiques MySQL"
+
+#: vhffs-panel/dns/prefs.pl:161
+msgid "NS Record added"
+msgstr "Enregistrement NS ajouté"
+
+#: vhffs-panel/dns/prefs.pl:157
+msgid "NS Record deleted"
+msgstr "Enregistrement NS supprimé"
+
+#: vhffs-panel/dns/prefs.pl:284
+msgid "NS TYPE"
+msgstr "Type NS"
+
+#: vhffs-panel/group/history.pl:79 vhffs-panel/admin/moderation.pl:85
+msgid "Name"
+msgstr "Nom"
+
+#: vhffs-panel/dns/prefs.pl:264
+msgid "Name for reccord"
+msgstr "Nom de l'enregistrement"
+
+#: vhffs-panel/dns/prefs.pl:307
+msgid "Name for record"
+msgstr "Nom de l'enregistrement"
+
+#: vhffs-panel/pgsql/prefs.pl:84 vhffs-panel/mysql/prefs.pl:95
+msgid "Name of the database"
+msgstr "Nom de la base de données"
+
+#: vhffs-panel/dns/prefs.pl:271
+msgid "Name of your MX"
+msgstr "Nom de votre MX"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:812
+msgid "New"
+msgstr "Créer"
+
+#: vhffs-intl/template_strings.pl:68 vhffs-intl/template_strings.pl:73
+msgid "New Quota"
+msgstr "Nouveau quota"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:271
+#, perl-format
+msgid "New language is: %s\n"
+msgstr "La nouvelle langue est : %s\n"
+
+#: vhffs-panel/svn/prefs.pl:94 vhffs-panel/dns/prefs.pl:262
+#: vhffs-panel/git/prefs.pl:102 vhffs-panel/cvs/prefs.pl:113
+#: vhffs-intl/template_strings.pl:83 vhffs-intl/template_strings.pl:86
+msgid "No"
+msgstr "Non"
+
+#: vhffs-panel/dns/prefs.pl:319
+msgid "No A type found"
+msgstr "Aucun champ A trouvé"
+
+#: vhffs-panel/dns/prefs.pl:331
+msgid "No AAAA type found"
+msgstr "Pas de type AAAA trouvé"
+
+#: vhffs-panel/dns/prefs.pl:358
+msgid "No CNAME available on this domain"
+msgstr "Aucun champ CNAME trouvé pour ce domaine"
+
+#: vhffs-panel/dns/prefs.pl:345
+msgid "No MX reccord for this domain"
+msgstr "Aucun champ MX trouvé pour ce domaine"
+
+#: vhffs-panel/dns/prefs.pl:371
+msgid "No NS available on this domain"
+msgstr "Aucun NS disponible pour ce domaine"
+
+#: vhffs-panel/dns/prefs.pl:387
+msgid "No SRV available on this domain"
+msgstr "Pas de SRV disponible pour ce domaine"
+
+#: vhffs-panel/dns/prefs.pl:400
+msgid "No TXT available on this domain"
+msgstr "Pas de TXT disponible pour ce domaine"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:345
+msgid "No cookie found, please accept the cookie and then please login again !"
+msgstr ""
+"Aucun cookie n'a été trouvé. Merci d'accepter les cookies puis de vous "
+"réauthentifier.!"
+
+#: vhffs-panel/object/upavatar.pl:105
+msgid "No enough rights"
+msgstr "Droits insuffisants"
+
+#: vhffs-panel/group/history.pl:83
+msgid "No event about this group"
+msgstr "Pas d'évènement concernant ce groupe"
+
+#: vhffs-panel/history.pl:106 vhffs-panel/admin/object/edit.pl:204
+#: vhffs-api/src/Vhffs/Panel/Object.pm:208
+msgid "No event about this object"
+msgstr "Aucun événement à propos de cet objet"
+
+#: vhffs-intl/template_strings.pl:44
+msgid "No group"
+msgstr "Aucun groupe"
+
+#: vhffs-public/groupsearch.pl:74
+msgid "No group found"
+msgstr ""
+
+#: vhffs-listengine/src/listengine.pl:775
+msgid "No message to moderate"
+msgstr "Aucun message à modérer"
+
+#: vhffs-public/group.pl:79
+msgid "No such group"
+msgstr "Ne trouve pas le groupe"
+
+#: vhffs-intl/template_strings.pl:22
+msgid "No user"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:255
+msgid "No user for this group"
+msgstr "Aucun utilisateur pour ce groupe"
+
+#: vhffs-public/usersearch.pl:75
+msgid "No user found"
+msgstr ""
+
+#: vhffs-public/websitesearch.pl:74
+msgid "No website found"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:24
+msgid "No websites"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:329 vhffs-panel/dns/prefs.pl:255
+#: vhffs-panel/web/prefs.pl:112
+msgid "No, I'm not sure, I prefer to keep it."
+msgstr "Non, je suis pas sûr, je préfère le garder"
+
+#: vhffs-panel/mailinglist/prefs.pl:182 vhffs-panel/svn/prefs.pl:100
+#: vhffs-panel/pgsql/prefs.pl:102 vhffs-panel/group/prefs.pl:216
+#: vhffs-panel/repository/prefs.pl:92 vhffs-panel/git/prefs.pl:108
+#: vhffs-panel/mysql/prefs.pl:114 vhffs-panel/cvs/prefs.pl:119
+#: vhffs-panel/mail/prefs.pl:139
+msgid "No, I'm not sure, I prefer to keep this project."
+msgstr "Non, je ne suis pas sûr, je préfère garder ce projet"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:813
+msgid "None"
+msgstr "Aucun"
+
+#: vhffs-intl/template_strings.pl:61
+msgid "Normal"
+msgstr "Normal"
+
+#: vhffs-panel/svn/prefs.pl:109 vhffs-panel/git/prefs.pl:120
+msgid "Notify changes on mailing-list :"
+msgstr "Notifier les changements sur une liste de diffusion"
+
+#: vhffs-panel/admin/object/list.pl:88
+msgid "Object ID"
+msgstr "Identifiant de l'objet"
+
+#: vhffs-panel/object/quickdelete.pl:103
+msgid "Object deletion"
+msgstr "Suppression de l'objet"
+
+#: vhffs-panel/admin/object/edit.pl:94 vhffs-api/src/Vhffs/Panel/Object.pm:98
+msgid "Object id"
+msgstr "Identifiant de l'objet"
+
+#: vhffs-panel/object/resubmit.pl:122
+msgid "Object name"
+msgstr "Nom de l'objet"
+
+#: vhffs-panel/admin/object/edit_submit.pl:95
+msgid "Object successfully updated"
+msgstr "Objet mis à jour avec succès"
+
+#: vhffs-panel/object/resubmit.pl:119
+msgid "Object type"
+msgstr "Type de l'objet"
+
+#: vhffs-panel/object/upavatar.pl:97
+msgid "Object-ID error"
+msgstr "Erreur sur l'identifiant de l'objet"
+
+#: vhffs-panel/svn/prefs.pl:106 vhffs-panel/dns/prefs.pl:247
+#: vhffs-panel/git/prefs.pl:114 vhffs-panel/web/prefs.pl:105
+#: vhffs-panel/mail/prefs.pl:145
+msgid "Ok, go to ACL admin"
+msgstr "Aller à l'administration des ACL"
+
+#: vhffs-panel/admin/broadcast.pl:81
+msgid "Ok, send it !"
+msgstr "Envoyer"
+
+#: vhffs-panel/group/prefs.pl:279 vhffs-panel/repository/prefs.pl:114
+msgid "Only administrators are allowed to do this"
+msgstr "Seul les administrateurs sont autorisés à faire cela."
+
+#: vhffs-panel/user/prefs.pl:463
+msgid "Only administrators can do this"
+msgstr "Seul les administrateurs peuvent faire cela."
+
+#: vhffs-api/src/Vhffs/Listengine.pm:58
+msgid "Only this list administrators can use the following commands.\n"
+msgstr ""
+"Les administrateurs de cette liste peuvent utiliser les commandes "
+"suivantes.\n"
+
+#: vhffs-panel/mailinglist/prefs.pl:111
+msgid "Open for everyone"
+msgstr "Ouvert à tous"
+
+#: vhffs-panel/mailinglist/prefs.pl:113
+msgid "Open for members, moderated for non-members"
+msgstr "Ouvert aux membres, modéré pour les non-membres"
+
+#: vhffs-panel/mailinglist/prefs.pl:108
+msgid "Open, approval required"
+msgstr "Ouvert, approbation nécessaire"
+
+#: vhffs-panel/mailinglist/prefs.pl:107
+msgid "Open, no approval required"
+msgstr "Ouvret, pas d'approbation"
+
+#: vhffs-panel/mailinglist/prefs.pl:105 vhffs-panel/svn/prefs.pl:108
+#: vhffs-panel/git/prefs.pl:119 vhffs-intl/template_strings.pl:76
+msgid "Options"
+msgstr "Options"
+
+#: vhffs-intl/template_strings.pl:33 vhffs-intl/template_strings.pl:37
+msgid "Owned by"
+msgstr "Appartient à"
+
+#: vhffs-panel/group/create.pl:88
+msgid "Owner"
+msgstr "Propriétaire"
+
+#: vhffs-panel/admin/object/list.pl:90
+msgid "Owner group"
+msgstr "Groupe propriétaire"
+
+#: vhffs-panel/admin/group/list.pl:81
+msgid "Owner name"
+msgstr "Propriétaire"
+
+#: vhffs-panel/admin/object/list.pl:89
+msgid "Owner user"
+msgstr "Propriétaire de l'objet"
+
+#: vhffs-panel/user/prefs.pl:309 vhffs-panel/mail/prefs.pl:116
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:67
+msgid "Password"
+msgstr "Mot de passe"
+
+#: vhffs-panel/pgsql/prefs.pl:135 vhffs-panel/mysql/prefs.pl:146
+msgid "Password change request taken in account, please wait for processing"
+msgstr ""
+"Demande de changement de mot de passe prise en compte, veuillez patienter "
+"pendant l'opération"
+
+#: vhffs-panel/user/prefs.pl:168
+msgid "Password changed"
+msgstr "Mot de passe modifié"
+
+#: vhffs-panel/pgsql/prefs.pl:90 vhffs-panel/mysql/prefs.pl:101
+msgid "Password for this database"
+msgstr "Mot de passe pour cette base de données"
+
+#: vhffs-panel/lost_ack.pl:82
+msgid "Password recovery failed!"
+msgstr "Le mot de passe n'a pas été retrouvé"
+
+#: vhffs-panel/user/prefs.pl:141
+msgid "Passwords don't match"
+msgstr "Les mots de passe ne correspondent pas"
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:66 vhffs-api/src/Vhffs/Panel/Menu.pm:115
+msgid "PgSQL"
+msgstr "PostgreSQL"
+
+#: vhffs-intl/extra_strings.pl:40
+msgid "PgSQL DB"
+msgstr "Base de donnée postgreSQL"
+
+#: vhffs-panel/admin/stats.pl:158
+msgid "PgSQL stats"
+msgstr "Statistiques PostgreSQL"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:324
+msgid "Platform temporary closed."
+msgstr "Plate-forme fermée temporairement."
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:313
+msgid "Platform temporary closed<br/>database error"
+msgstr "Plate-forme fermée temporairement<br/>Erreur de base de données"
+
+#: vhffs-panel/group/create.pl:92 vhffs-panel/object/resubmit.pl:131
+#: vhffs-panel/web/create.pl:104
+msgid ""
+"Please consider that this description is going to be displayed in the public "
+"area. So you have to write it in impersonal form. You should take care to "
+"write it with correct grammar and tenses. Take all the time you need to fill "
+"it with the best content you are able to do."
+msgstr ""
+"Veuillez noter que cette description est destinée à être publiée. Vous devez "
+"donc l'écrire en forme impersonnelle et faire attention à respecter les "
+"temps et les règles de grammaire. Prenez tout le temps nécessaire pour la "
+"remplir avec le meilleur contenu que vous pouvez produire."
+
+#: vhffs-panel/subscribe.pl:159
+msgid "Please enter a correct city"
+msgstr "Merci d'entrer un nom de ville correcte"
+
+#: vhffs-panel/subscribe.pl:163
+msgid "Please enter a correct country"
+msgstr "Merci d'entrer un nom de pays correct"
+
+#: vhffs-panel/subscribe.pl:151
+msgid "Please enter a correct firstname"
+msgstr "Merci d'entrer un prénom correct"
+
+#: vhffs-panel/subscribe.pl:155
+msgid "Please enter a correct lastname"
+msgstr "Merci d'entrer un nom correct"
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:64
+msgid "Please enter your username and password"
+msgstr "Veuillez entrer votre nom d'utilisateur et votre mot de passe"
+
+#: vhffs-panel/subscribe.pl:222
+msgid ""
+"Please fill in all fields, a mail containing your password will be sent to "
+"you"
+msgstr ""
+"Veuillez remplir tous les champs. Un mail contenant votre mot de passe vous "
+"sera envoyé"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:299
+msgid "Please read help of listengine\n"
+msgstr "Veuillez lire l'aide de listengine\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:196
+msgid "Please try again !\n"
+msgstr "Veuillez réessayer !\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:242
+msgid "Please try again.\n"
+msgstr "Veuillez réessayer.\n"
+
+#: vhffs-panel/lost_ack.pl:74
+#, perl-format
+msgid "Please wait %s, a new password will be sent to you in a few minutes..."
+msgstr ""
+"Veuillez patienter %s, un nouveau mot de passe va vous être envoyé dans "
+"quelques minutes..."
+
+#: vhffs-panel/subscribe.pl:189
+msgid ""
+"Please wait while we are creating the account, it will take some minutes"
+msgstr ""
+"Merci de patienter pendant que nous créons votre compte. Cela prendra "
+"quelques minutes"
+
+#: vhffs-panel/dns/prefs.pl:296 vhffs-panel/dns/prefs.pl:381
+msgid "Port"
+msgstr "Port"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:240
+msgid "PostgreSQL Admin"
+msgstr "Administration de la base de donnée PostgreSQL"
+
+#: vhffs-panel/pgsql/prefs.pl:82
+msgid "PostgreSQL Administration"
+msgstr "Administration des bases PostgreSQL"
+
+#: vhffs-panel/pgsql/index.pl:60
+#, perl-format
+msgid "PostgreSQL DBs for %s"
+msgstr "Bases PostgreSQL pour %s"
+
+#: vhffs-panel/pgsql/create.pl:105
+msgid "PostgreSQL database name "
+msgstr "Nom de base de données PostgreSQL"
+
+#: vhffs-panel/admin/pgsql/index.pl:56
+msgid "PostgreSQL databases' administration"
+msgstr "Administration des bases de données PostgreSQL"
+
+#: vhffs-panel/pgsql/create.pl:107
+msgid "PostgreSQL password for this database "
+msgstr "Mot de passe pour la base de donnée PostgreSQL"
+
+#: vhffs-panel/mailinglist/prefs.pl:110
+msgid "Posting control:"
+msgstr "Contrôle des envois:"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:558
+msgid "Preferences"
+msgstr "Préférences"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:195 vhffs-api/src/Vhffs/Panel/DNS.pm:225
+msgid "Prefix already exists"
+msgstr "Ce préfixe existe déjà"
+
+#: vhffs-panel/mailinglist/prefs.pl:138
+msgid "Prefix on subject"
+msgstr "Préfixe devant le sujet du mail"
+
+#: vhffs-panel/dns/prefs.pl:297 vhffs-panel/dns/prefs.pl:382
+msgid "Priority"
+msgstr "Priorité"
+
+#: vhffs-panel/dns/prefs.pl:272
+msgid "Priority of your MX"
+msgstr "Priorité de votre MX"
+
+#: vhffs-panel/dns/prefs.pl:341
+msgid "Priority: "
+msgstr "Priorité : "
+
+#: vhffs-panel/group/prefs.pl:207
+msgid "Project Description"
+msgstr "Description du groupe/projet"
+
+#: vhffs-panel/group/history.pl:75
+msgid "Project History"
+msgstr "Historique du projet"
+
+#: vhffs-panel/group/create.pl:85
+msgid "Project Name"
+msgstr "Nom du groupe"
+
+#: vhffs-panel/group/prefs.pl:205
+msgid "Project Owner"
+msgstr "Propriétaire du groupe"
+
+#: vhffs-panel/group/prefs.pl:201
+msgid "Project Preferences"
+msgstr "Préférences du groupe"
+
+#: vhffs-panel/group/create.pl:76
+msgid "Project Successfully created !"
+msgstr "Projet créé avec succès"
+
+#: vhffs-panel/group/prefs.pl:226
+msgid "Project contact"
+msgstr "Contact du projet"
+
+#: vhffs-panel/group/prefs.pl:209 vhffs-panel/group/create.pl:87
+msgid "Project full name"
+msgstr "Nom complet du projet"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:451
+msgid "Project home"
+msgstr "Accueil du projet"
+
+#: vhffs-panel/group/index.pl:62
+msgid "Projects you contribute to"
+msgstr "Vos contributions"
+
+#: vhffs-panel/group/index.pl:64 vhffs-panel/object/resubmit.pl:108
+#: vhffs-api/src/Vhffs/Panel/Main.pm:809
+msgid "Propose a new description"
+msgstr "Proposer une nouvelle description"
+
+#: vhffs-panel/dns/prefs.pl:293
+msgid "Protocol"
+msgstr "Protocole"
+
+#: vhffs-panel/svn/prefs.pl:91 vhffs-panel/git/prefs.pl:99
+msgid "Public"
+msgstr "Publique"
+
+#: vhffs-panel/mailinglist/prefs.pl:136
+msgid "Public archives"
+msgstr "Archives publiques"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:70
+msgid "Public area is not available on this platform."
+msgstr "La zone publique n'est pas disponible."
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:69
+msgid "Public area not available"
+msgstr "La zone publique n'est pas disponible."
+
+#: vhffs-panel/repository/prefs.pl:85 vhffs-api/src/Vhffs/Panel/Main.pm:550
+#, perl-format
+msgid "Quota (used/total) : %s/%s"
+msgstr "Quota (utilisé/total) : %s/%s"
+
+#: vhffs-public/rss/lastgroups.pl:103 vhffs-public/rss/lastusers.pl:102
+msgid "RSS infos are not published"
+msgstr "Les informations ne sont pas publiées au format RSS"
+
+#: vhffs-panel/admin/user/list.pl:71
+msgid "Real Name"
+msgstr "Nom"
+
+#: vhffs-panel/object/resubmit.pl:125
+msgid "Reason of refusal"
+msgstr "Raison du refus"
+
+#: vhffs-panel/subscribe.pl:239
+msgid "Recopy the code"
+msgstr "Recopier le code"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:161 vhffs-api/src/Vhffs/Panel/DNS.pm:208
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:238 vhffs-api/src/Vhffs/Panel/DNS.pm:262
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:285 vhffs-api/src/Vhffs/Panel/DNS.pm:326
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:353
+msgid "Record does not exists"
+msgstr "L'enregistrement n'existe pas"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:160
+msgid "Record type doesn't exists"
+msgstr "Ce type d'enregistrement n'existe pas"
+
+#: vhffs-panel/admin/moderation.pl:90 vhffs-panel/admin/moderation.pl:117
+msgid "Refuse"
+msgstr "Refuser"
+
+#: vhffs-panel/group/prefs.pl:254
+msgid "Remove"
+msgstr "Enlever"
+
+#: vhffs-panel/mailinglist/prefs.pl:137
+msgid "Reply to: on list"
+msgstr "Champ Reply-to: sur la liste"
+
+#: vhffs-panel/svn/create.pl:96 vhffs-panel/repository/create.pl:92
+#: vhffs-panel/admin/repository/list.pl:75 vhffs-panel/git/create.pl:96
+#: vhffs-panel/cvs/create.pl:102
+msgid "Repository Name"
+msgstr "Nom du dépôt"
+
+#: vhffs-intl/template_strings.pl:71
+msgid "Repository Quota"
+msgstr ""
+
+#: vhffs-panel/repository/prefs.pl:133
+msgid "Repository updated, please wait while quota is updated on filesystem"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:263
+#, perl-format
+msgid "Rights for subscriber %s updated"
+msgstr "Les droits pour le membre %s ont été mis a jour"
+
+#: vhffs-panel/dns/prefs.pl:198
+msgid "SRV Record added"
+msgstr "Enregistrement SRV ajouté"
+
+#: vhffs-panel/dns/prefs.pl:187
+msgid "SRV Record deleted"
+msgstr "Enregistrement SRV supprimé"
+
+#: vhffs-panel/dns/prefs.pl:183
+msgid "SRV Record updated"
+msgstr "Enregistrement SRV mis à jour"
+
+#: vhffs-panel/dns/prefs.pl:290
+msgid "SRV TYPE"
+msgstr "Type SRV"
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:68 vhffs-api/src/Vhffs/Panel/Menu.pm:117
+msgid "SVN"
+msgstr "SVN"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:170
+msgid "SVN Admin"
+msgstr "Administration du dépôt SVN"
+
+#: vhffs-intl/extra_strings.pl:42
+msgid "SVN Repository"
+msgstr "Dépôt subversion"
+
+#: vhffs-panel/svn/index.pl:60
+#, perl-format
+msgid "SVN repositories for %s"
+msgstr "Dépôt subversion pour %s"
+
+#: vhffs-panel/admin/svn/index.pl:56
+msgid "SVN repositories' administration"
+msgstr "Administration du dépôt SVN"
+
+#: vhffs-panel/admin/svn/list.pl:70
+msgid "SVN root"
+msgstr "Racine du dépôt SVN"
+
+#: vhffs-panel/admin/stats.pl:127
+msgid "SVN stats"
+msgstr "Statistiques Subversion"
+
+#: vhffs-panel/mailinglist/prefs.pl:141
+msgid "Save options"
+msgstr "Sauvegarder les options"
+
+#: vhffs-intl/template_strings.pl:7 vhffs-intl/template_strings.pl:14
+#: vhffs-intl/template_strings.pl:20
+msgid "Search"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:11
+msgid "Search a group"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:17
+msgid "Search a website"
+msgstr ""
+
+#: vhffs-panel/admin/object/search.pl:77
+msgid "Search an object (give object_id)"
+msgstr "Rechercher un objet (en donnant son identifiant oid)"
+
+#: vhffs-intl/template_strings.pl:3
+msgid "Search an user"
+msgstr ""
+
+#: vhffs-panel/admin/cvs/search.pl:78 vhffs-api/src/Vhffs/Panel/Admin.pm:186
+msgid "Search for a CVS repository"
+msgstr "Rechercher un dépôt CVS"
+
+#: vhffs-panel/admin/repository/search.pl:78
+msgid "Search for a Download repository"
+msgstr "Rechercher un espace de téléchargement"
+
+#: vhffs-panel/admin/git/search.pl:80
+msgid "Search for a GIT repository"
+msgstr "Rechercher un dépôt Git"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:204
+msgid "Search for a Git repository"
+msgstr "Rechercher un dépôt Git"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:221
+msgid "Search for a MySQL database"
+msgstr "Rechercher une base de données MySQL"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:238
+msgid "Search for a Pg database"
+msgstr "Rechercher une base de données PostgreSQL"
+
+#: vhffs-panel/admin/svn/search.pl:80 vhffs-api/src/Vhffs/Panel/Admin.pm:168
+msgid "Search for a SVN repository"
+msgstr "Rechercher un dépôt svn"
+
+#: vhffs-panel/admin/pgsql/search.pl:79 vhffs-panel/admin/mysql/search.pl:79
+msgid "Search for a database"
+msgstr "Recherche d'une base de données"
+
+#: vhffs-panel/admin/dns/search.pl:79 vhffs-api/src/Vhffs/Panel/Admin.pm:291
+msgid "Search for a domain name"
+msgstr "Recherche d'un nom de domaine"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:309
+msgid "Search for a download repository"
+msgstr "Rechercher un espace de téléchargement"
+
+#: vhffs-panel/admin/group/search.pl:79 vhffs-api/src/Vhffs/Panel/Admin.pm:133
+msgid "Search for a group"
+msgstr "Rechercher un groupe"
+
+#: vhffs-panel/admin/mailinglist/search.pl:78
+msgid "Search for a list"
+msgstr "Rechercher une liste de diffusion"
+
+#: vhffs-panel/admin/mail/search.pl:79 vhffs-api/src/Vhffs/Panel/Admin.pm:255
+msgid "Search for a mail domain"
+msgstr "Rechercher un domaine mail"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:273
+msgid "Search for a mailing list"
+msgstr "Rechercher une liste de diffusion"
+
+#: vhffs-panel/admin/web/search.pl:79
+msgid "Search for a web area"
+msgstr "Rechercher un site web"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:151
+msgid "Search for a webarea"
+msgstr "Rechercher un espace web"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:97
+msgid "Search for an object"
+msgstr "Rechercher un objet"
+
+#: vhffs-panel/admin/user/search.pl:79 vhffs-api/src/Vhffs/Panel/Admin.pm:116
+msgid "Search for an user"
+msgstr "Rechercher un utilisateur"
+
+#: vhffs-panel/admin/group/list.pl:77
+msgid "Search result"
+msgstr "Résultat de la recherche"
+
+#: vhffs-panel/admin/object/list.pl:81
+msgid "Search result "
+msgstr "Résultat de la recherche "
+
+#: vhffs-panel/admin/mailinglist/list.pl:72 vhffs-panel/admin/user/list.pl:63
+#: vhffs-panel/admin/web/list.pl:63 vhffs-panel/admin/mail/list.pl:68
+msgid "Search result for"
+msgstr "Résultat de la recherche pour"
+
+#: vhffs-panel/admin/cvs/list.pl:69
+msgid "Search result for CVS repository"
+msgstr "Résultat de la recherche de dépôt CVS"
+
+#: vhffs-panel/admin/repository/list.pl:68
+msgid "Search result for Download repository"
+msgstr "Résultat de la recherche d'espace de téléchargement"
+
+#: vhffs-panel/admin/svn/list.pl:63
+msgid "Search result for Subversion repository"
+msgstr "Résultat de la recherche de dépôt Subversion"
+
+#: vhffs-panel/admin/pgsql/list.pl:69 vhffs-panel/admin/mysql/list.pl:75
+msgid "Search result for database"
+msgstr "Résultat de la recherche de base de données"
+
+#: vhffs-panel/admin/dns/list.pl:68
+msgid "Search result for domain"
+msgstr "Résultat de la recherche de nom de domaine"
+
+#: vhffs-panel/admin/git/list.pl:65
+msgid "Search result for git repository"
+msgstr "Résultat de la recherche de dépôt Git"
+
+#: vhffs-panel/mail/prefs.pl:189
+msgid "Selected mailbox doesn't exist for this mail domain"
+msgstr "La boite selectionnée n'existe pas sur ce domaine"
+
+#: vhffs-panel/mailinglist/create.pl:112 vhffs-panel/svn/create.pl:101
+#: vhffs-panel/dns/create.pl:78 vhffs-panel/pgsql/create.pl:109
+#: vhffs-panel/group/create.pl:90 vhffs-panel/repository/create.pl:97
+#: vhffs-panel/alert.pl:59 vhffs-panel/admin/broadcast_list.pl:100
+#: vhffs-panel/admin/object/edit.pl:99 vhffs-panel/admin/broadcast_view.pl:101
+#: vhffs-panel/git/create.pl:102 vhffs-panel/web/create.pl:102
+#: vhffs-panel/mysql/create.pl:109 vhffs-panel/cvs/create.pl:107
+#: vhffs-panel/mail/create.pl:96 vhffs-api/src/Vhffs/Panel/Object.pm:103
+msgid "Send"
+msgstr "Envoyer"
+
+#: vhffs-panel/admin/broadcast.pl:77
+msgid "Send an email to all hosted people"
+msgstr "Envoyer un mail à tous les hébergés"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:300
+msgid "Send an email with the subject \"help\" to the following address: \n"
+msgstr "Envoyez un mail ayant pour sujet \"help\" à l'adresse suivante : \n"
+
+#: vhffs-panel/user/prefs.pl:336 vhffs-panel/user/prefs.pl:338
+msgid "Send my avatar"
+msgstr "Envoyer mon avatar"
+
+#: vhffs-panel/admin/web/list.pl:70
+msgid "Servername"
+msgstr "Directive ServerName (nom du site)"
+
+#: vhffs-panel/dns/prefs.pl:294
+msgid "Service"
+msgstr "Service"
+
+#: vhffs-panel/user/prefs.pl:313
+msgid "Shell"
+msgstr "Shell"
+
+#: vhffs-panel/admin/mailinglist/list.pl:90 vhffs-panel/admin/svn/list.pl:81
+#: vhffs-panel/admin/user/list.pl:81 vhffs-panel/admin/dns/list.pl:86
+#: vhffs-panel/admin/pgsql/list.pl:87 vhffs-panel/admin/group/list.pl:91
+#: vhffs-panel/admin/repository/list.pl:86 vhffs-panel/admin/git/list.pl:83
+#: vhffs-panel/admin/web/list.pl:82 vhffs-panel/admin/mysql/list.pl:94
+#: vhffs-panel/admin/cvs/list.pl:86 vhffs-panel/admin/mail/list.pl:86
+msgid "Show"
+msgstr "Voir"
+
+#: vhffs-intl/template_strings.pl:50
+msgid "Signature"
+msgstr "Signature"
+
+#: vhffs-panel/acl/view.pl:92
+msgid "Sorry, can't add or update ACL"
+msgstr "Une erreur est survenue lors de l'ajout ou de la mise à jour de l'ACL"
+
+#: vhffs-panel/mail/prefs.pl:247
+msgid "Spam status updated"
+msgstr "L'état concernant la protection spam a été mis a jour"
+
+#: vhffs-panel/admin/mailinglist/list.pl:81 vhffs-panel/admin/svn/list.pl:72
+#: vhffs-panel/admin/user/list.pl:72 vhffs-panel/admin/dns/list.pl:77
+#: vhffs-panel/admin/pgsql/list.pl:78 vhffs-panel/admin/group/list.pl:82
+#: vhffs-panel/admin/repository/list.pl:77 vhffs-panel/admin/git/list.pl:74
+#: vhffs-panel/admin/object/list.pl:91 vhffs-panel/admin/broadcast_view.pl:88
+#: vhffs-panel/admin/web/list.pl:72 vhffs-panel/admin/mysql/list.pl:84
+#: vhffs-panel/admin/cvs/list.pl:78 vhffs-panel/admin/mail/list.pl:77
+msgid "State"
+msgstr "État"
+
+#: vhffs-panel/admin/object/edit.pl:97 vhffs-api/src/Vhffs/Panel/Object.pm:101
+msgid "Status"
+msgstr "État"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:664
+msgid "Stay over an icon to see its description."
+msgstr "Restez sur une une icône pour voir la description"
+
+#: vhffs-panel/admin/su.pl:74
+msgid "Su !"
+msgstr "Changer d'identité"
+
+#: vhffs-panel/dns/prefs.pl:281
+msgid "Subdomain name"
+msgstr "Nom de sous-domaine"
+
+#: vhffs-panel/admin/broadcast.pl:79 vhffs-panel/admin/broadcast_view.pl:87
+msgid "Subject"
+msgstr "Sujet"
+
+#: vhffs-panel/dns/prefs.pl:273 vhffs-panel/dns/prefs.pl:279
+#: vhffs-panel/dns/prefs.pl:300 vhffs-panel/object/resubmit.pl:134
+msgid "Submit"
+msgstr "Envoyer"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:438
+msgid "Submit a bug"
+msgstr "Signaler un dysfonctionnement"
+
+#: vhffs-panel/subscribe.pl:231 vhffs-api/src/Vhffs/Panel/Commons.pm:70
+msgid "Subscribe"
+msgstr "Inscription"
+
+#: vhffs-panel/mailinglist/prefs.pl:106
+msgid "Subscribe control:"
+msgstr "Contrôle des inscriptions :"
+
+#: vhffs-intl/template_strings.pl:54
+msgid "Subscribed"
+msgstr "Inscrit"
+
+#: vhffs-panel/mailinglist/prefs.pl:242
+#, perl-format
+msgid "Subscriber %s deleted"
+msgstr "Le membre %s a été supprimé"
+
+#: vhffs-panel/subscribe.pl:221
+msgid "Subscription"
+msgstr "Inscription"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:135
+#, perl-format
+msgid ""
+"Subscription to the following list is forbidden:\n"
+" %s\n"
+"\n"
+"Have a nice day.\n"
+msgstr ""
+"L'inscription à cette liste de diffusion n'est pas autorisé:\n"
+" %s\n"
+"\n"
+"Merci de votre compréhension.\n"
+
+#: vhffs-intl/template_strings.pl:29
+msgid "Subversion Repositories for this group"
+msgstr ""
+
+#: vhffs-panel/object/upavatar.pl:126
+msgid "Successfully created or updated avatar"
+msgstr "Avatar créé ou modifié avec succès "
+
+#: vhffs-panel/admin/object/edit.pl:122 vhffs-panel/admin/object/edit.pl:123
+#: vhffs-intl/extra_strings.pl:26 vhffs-api/src/Vhffs/Panel/Object.pm:127
+#: vhffs-api/src/Vhffs/Panel/Object.pm:128
+msgid "Suspended"
+msgstr "Suspendu"
+
+#: vhffs-intl/extra_strings.pl:27
+msgid "Suspended before deletion"
+msgstr "Suspendu avant suppression"
+
+#: vhffs-panel/dns/prefs.pl:203
+msgid "TXT Record added"
+msgstr "Enregistrement TXT ajouté"
+
+#: vhffs-panel/dns/prefs.pl:214
+msgid "TXT Record deleted"
+msgstr "Enregistrement TXT supprimé"
+
+#: vhffs-panel/dns/prefs.pl:209
+msgid "TXT Record updated"
+msgstr "Enregistrement TXT mis à jour"
+
+#: vhffs-panel/mail/create.pl:97
+msgid "Tell us for what purpose you want to create this mail domain"
+msgstr "Expliquez quel sera l'usage de ce domaine mail"
+
+#: vhffs-panel/mailinglist/create.pl:113
+msgid "Tell us what the use of this mailing list will be"
+msgstr "Expliquez quel sera l'usage de cette liste de diffusion"
+
+#: vhffs-panel/web/create.pl:103
+msgid "Tell us what the use of this web space will be"
+msgstr "Expliquez quel sera l'usage de ce site web"
+
+#: vhffs-panel/dns/prefs.pl:306
+msgid "Text"
+msgstr "Texte"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:342 vhffs-api/src/Vhffs/Panel/DNS.pm:354
+msgid "Text can't be empty"
+msgstr "Le texte ne peut être vide"
+
+#: vhffs-panel/cvs/create.pl:89
+msgid "The CVS object was successfully created !"
+msgstr "Dépôt CVS créé avec succès"
+
+#: vhffs-panel/dns/create.pl:57
+msgid "The DNS object was successfully created !"
+msgstr "Le nom de domaine a été créé avec succès !"
+
+#: vhffs-panel/git/create.pl:85
+msgid "The GIT object was successfully created !"
+msgstr "Le dépôt Git a été créé avec succès !"
+
+#: vhffs-panel/mysql/create.pl:90
+msgid "The MySQL DB was successfully created !"
+msgstr "La base de données MySQL a été créée avec succès !"
+
+#: vhffs-panel/pgsql/create.pl:90
+msgid "The PostgreSQL DB was successfully created !"
+msgstr "La base de données PostgreSQL a été créée avec succès !"
+
+#: vhffs-panel/svn/create.pl:85
+msgid "The SVN object was successfully created !"
+msgstr "Le dépôt SVN a été créé avec succès !"
+
+#: vhffs-panel/user/prefs.pl:339
+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 ""
+"L'avatar est une image qui vous décrit. Vous pouvez utiliser une image au "
+"format PNG et l'envoyer pour l'utiliser comme avatar. Cette image apparaitra "
+"sur votre profil dans la section publique."
+
+#: vhffs-panel/group/prefs.pl:246
+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.pm:195
+msgid "The confirmation code was wrong\n"
+msgstr "Le code de confirmation était erroné\n"
+
+#: vhffs-panel/pgsql/create.pl:102 vhffs-panel/mysql/create.pl:102
+#, perl-format
+msgid ""
+"The database name is prefixed by your groupname followed by an underscore (%"
+"s_dbname). The database user is the database full name (%s_dbname)."
+msgstr ""
+"Le nom de la base de données est préfixé par votre nom de groupe suivi d'un "
+"underscore (%s_dbname). L'utilisateur de la base est le nom complet de la "
+"base(%s_dbname)."
+
+#: vhffs-panel/group/prefs.pl:181
+msgid "The email you entered fails syntax check"
+msgstr "L'adresse email fournie n'a pas passé les tests de validité"
+
+#: vhffs-panel/group/prefs.pl:90 vhffs-panel/group/create.pl:72
+msgid "The first letter of groupname and full name must be the same"
+msgstr ""
+"La première lettre de votre nom de groupe et du nom complet de votre groupe "
+"doit être la même"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:389
+#, perl-format
+msgid ""
+"The following address %s is not allowed to execute commands on the list %s\n"
+msgstr ""
+"L'adresse suivante %s n'est pas autorisée à exécuter des commandes sur cette "
+"liste %s\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:210
+#, perl-format
+msgid ""
+"The following address %s is not on the following mailing list:\n"
+" %s\n"
+msgstr ""
+"L'adresse suivante : %s n'est pas dans la liste de diffusion suivante :\n"
+" %s\n"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:518
+msgid ""
+"The following projects have reached or are going to reach the disk quota "
+"limit, please take a look !"
+msgstr ""
+"Les projets suivants ont atteint ou vont atteindre très prochainement la "
+"limite d'espace disque, merci de regarder !"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:270
+#, 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-panel/mailinglist/create.pl:89
+msgid "The mailing list object was successfully created !"
+msgstr "La liste de diffusion a été créé avec succès !"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:320
+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.pm:317
+#, perl-format
+msgid "The message with the following id %s"
+msgstr "Le message avec l'identifiant suivant %s"
+
+#: vhffs-panel/object/resubmit.pl:95 vhffs-panel/object/resubmit.pl:98
+msgid "The new description has been submitted"
+msgstr "La nouvelle description a été soumise"
+
+#: vhffs-panel/repository/create.pl:81
+msgid "The repository was successfully created !"
+msgstr "L'espace de téléchargement a été créé avec succès !"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:122
+msgid ""
+"The state of you subscription was not changed, you are still subscribed\n"
+msgstr ""
+"L'état de votre inscription n'a pas été modifiée, vous êtes toujours "
+"inscrit\n"
+
+#: vhffs-panel/web/create.pl:83
+msgid "The webarea was successfully created !"
+msgstr "L'espace web a été créé avec succès !"
+
+#: vhffs-panel/user/prefs.pl:312
+msgid "Theme"
+msgstr "Thème"
+
+#: vhffs-panel/user/prefs.pl:261
+msgid ""
+"There is a problem with the address you filled in your profile, unable to "
+"add forwarding"
+msgstr ""
+"Il y a un problème avec l'adresse indiqué dans vos informations "
+"personnelles. Impossible d'ajouter la redirection."
+
+#: vhffs-panel/mailinglist/create.pl:103
+msgid ""
+"There is no default mail domain on this platform, you have to create a mail "
+"domain before creating a mailing list"
+msgstr ""
+"Il n'y a pas de domaine mail par défaut sur cette plateforme, vous devez "
+"créer un domaine mail avant de créer une liste de diffusion"
+
+#: vhffs-panel/admin/moderation.pl:79
+msgid "There is nothing to moderate"
+msgstr "Il n'y a rien à modérer"
+
+#: vhffs-panel/user/prefs.pl:412
+msgid "There is two possible usages :"
+msgstr "Il y a deux usages possibles : "
+
+#: vhffs-panel/cvs/delete.pl:86
+msgid "This CVS repository will NOT be deleted"
+msgstr "Ce dépôt CVS ne sera PAS détruit"
+
+#: vhffs-panel/cvs/delete.pl:97
+msgid "This CVS will be deleted"
+msgstr ""
+
+#: vhffs-panel/pgsql/delete.pl:73
+msgid "This DB doesn't exist in VHFFS database"
+msgstr "Cet utilisateur n'existe pas sur la plateforme"
+
+#: vhffs-panel/repository/delete.pl:86
+msgid "This Download repository will NOT be deleted"
+msgstr "Cet espace de téléchargement ne sera PAS détruit"
+
+#: vhffs-panel/repository/delete.pl:99
+msgid "This Download repository will be deleted"
+msgstr "Cet espace de téléchargement sera détruit"
+
+#: vhffs-panel/mailinglist/prefs.pl:179 vhffs-panel/svn/prefs.pl:97
+#: vhffs-panel/dns/prefs.pl:252 vhffs-panel/pgsql/prefs.pl:99
+#: vhffs-panel/group/prefs.pl:213 vhffs-panel/repository/prefs.pl:89
+#: vhffs-panel/git/prefs.pl:105 vhffs-panel/web/prefs.pl:109
+#: vhffs-panel/mysql/prefs.pl:111 vhffs-panel/cvs/prefs.pl:116
+#: vhffs-panel/mail/prefs.pl:136
+msgid ""
+"This action is non-reversible. All services associated to this project will "
+"be DESTROYED."
+msgstr ""
+"Cette action n'est pas réversible. Tous les services associés au projet "
+"seront DÉTRUITS."
+
+#: vhffs-panel/user/prefs.pl:326
+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 "
+"pas annuler."
+
+#: vhffs-panel/mail/prefs.pl:214
+msgid ""
+"This box already exists for this domain or parameters are not valid. Check "
+"your domain."
+msgstr ""
+"Cette boîte mail existe déjà pour le domaine ou les paramètres transmis ne "
+"sont pas valides. Veuillez vérifier votre domaine"
+
+#: vhffs-panel/pgsql/delete.pl:93
+msgid "This database cannot be deleted"
+msgstr "Cette base de données ne peut pas être détruite"
+
+#: vhffs-panel/mysql/delete.pl:71
+msgid "This database doesn't exist in VHFFS database"
+msgstr "Cette base de données n'existe pas"
+
+#: vhffs-panel/mysql/delete.pl:83
+msgid "This database will NOT be deleted"
+msgstr "Cette base de données NE sera PAS détruite"
+
+#: vhffs-panel/dns/delete.pl:105
+msgid "This domain will NOT be DELETED from Vhffs platform"
+msgstr "Ce nom de domaine NE sera PAS détruit"
+
+#: vhffs-panel/dns/delete.pl:100
+msgid "This domain will be DELETED from Vhffs platform"
+msgstr "Ce nom de domaine sera détruit"
+
+#: vhffs-panel/git/delete.pl:90
+msgid "This git repository will NOT be deleted"
+msgstr "Ce dépôt Git NE sera PAS détruit"
+
+#: vhffs-panel/group/delete.pl:85
+msgid "This group will be deleted"
+msgstr "Ce groupe sera détruit"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:315
+msgid "This host is already registered for this service"
+msgstr "Cet hôte est déjà enregistré pour ce service"
+
+#: vhffs-panel/mail/delete.pl:103
+msgid "This mail domain WILL BE DELETED"
+msgstr "Ce domaine mail sera détruit"
+
+#: vhffs-panel/mail/delete.pl:91
+msgid "This mail domain will NOT be DELETED"
+msgstr "Ce domaine mail NE sera PAS détruit"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:104
+#, 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.pm:86
+#, perl-format
+msgid ""
+"This mail must have the following subject : \"confirm subscribe %s\"\n"
+"On most clients it should work by just replying this email\n"
+msgstr ""
+"Ce mail doit avoir le sujet suivant : \"confirm subscribe %s\"\n"
+"Sur la plupart des clients il suffit juste de répondre au mail\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:405
+#, perl-format
+msgid ""
+"This mail was sent by %s with the following subject:\n"
+" %s\n"
+"\n"
+msgstr ""
+"Ce mail a été envoyé par %s avec pour sujet :\n"
+" %s\n"
+"\n"
+
+#: vhffs-panel/object/quickdelete.pl:68 vhffs-panel/object/resubmit.pl:68
+msgid "This object does not exist"
+msgstr "Cet objet n'éxiste pas"
+
+#: vhffs-panel/admin/object/delete_avatar.pl:105
+msgid "This object does not have an avatar"
+msgstr "Cet objet ne possède pas d'avatar"
+
+#: vhffs-panel/object/quickdelete.pl:86 vhffs-panel/object/quickdelete.pl:89
+msgid "This object has been deleted"
+msgstr "Cet objet a été supprimé"
+
+#: vhffs-panel/group/history.pl:68
+msgid "This object is not functional yet. Please wait creation or moderation."
+msgstr ""
+"Ce service n'est pas fonctionnel actuellement. Veuillez attendre la création "
+"ou la modération"
+
+#: vhffs-panel/mailinglist/delete.pl:87 vhffs-panel/group/delete.pl:72
+#: vhffs-panel/git/delete.pl:86 vhffs-panel/web/prefs.pl:80
+#: vhffs-panel/mail/delete.pl:83
+msgid "This object is not functionnal yet. Please wait creation or moderation."
+msgstr ""
+"Ce service n'est pas encore actif. Merci d'attendre la création ou la "
+"modération"
+
+#: vhffs-panel/object/quickdelete.pl:72 vhffs-panel/object/resubmit.pl:72
+msgid "This object is not in refused state"
+msgstr "Cet service n'est pas dans l'état refusé"
+
+#: vhffs-panel/web/delete.pl:96
+msgid "This object will BE DELETED"
+msgstr "Ce service sera détruit"
+
+#: vhffs-panel/group/delete.pl:76 vhffs-panel/web/delete.pl:101
+msgid "This object will NOT be DELETED"
+msgstr "Ce service NE sera PAS détruit"
+
+#: 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"
+
+#: vhffs-panel/admin/object/delete_avatar.pl:74
+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:314
+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 ""
+"Cette plate-forme est fermée temporairement. Les administrateurs sont en "
+"train d'effectuer des opération de maintenance ou la base de données connaît "
+"des disfonctionnements. Merci de revenir dans quelques minutes pour vous "
+"identifier."
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:325
+msgid ""
+"This platform is temporary closed. Administrators are performing some "
+"maintenances tasks. Please come back in a few minutes to log in."
+msgstr ""
+"Cette plate-forme est fermée temporairement. Les administrateurs sont en "
+"train d'effectuer des opérations de maintenance. Merci de revenir dans "
+"quelques minutes pour vous identifier."
+
+#: vhffs-panel/svn/delete.pl:98 vhffs-panel/git/delete.pl:103
+msgid "This repository will be deleted"
+msgstr "Ce dépôt sera détruit"
+
+#: vhffs-panel/svn/delete.pl:85
+msgid "This subversion repository will NOT be deleted"
+msgstr "Ce dépôt Subversion NE sera PAS détruit"
+
+#: vhffs-panel/user/delete.pl:76
+msgid "This user is always in a group"
+msgstr "Cet utilisateur est toujours dans un groupe"
+
+#: vhffs-panel/user/delete.pl:87
+msgid "This user will BE DELETED"
+msgstr "Cet utilisateur sera détruit"
+
+#: vhffs-panel/user/delete.pl:93
+msgid "This user will NOT be DELETED"
+msgstr "Cet utilisateur NE sera PAS détruit"
+
+#: vhffs-panel/group/prefs.pl:112
+msgid "This user will be removed from this group as soon as possible"
+msgstr "Cet utilisateur sera supprimé de ce groupe dès que possible"
+
+#: vhffs-panel/web/delete.pl:79
+msgid "This web area doesn't exist in VHFFS database"
+msgstr "Ce site web n'existe pas"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:424
+msgid "To accept this subscriber, send a message to\n"
+msgstr "Pour accepter cet inscrit, envoyez un message à\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:406
+#, perl-format
+msgid ""
+"To put this post on the list, send a message to:\n"
+" %s-request@%s\n"
+msgstr ""
+"Pour ajouter ce mail à la liste, envoyez un message à :\n"
+" %s-request@%s\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:427
+msgid "To refuse this subscriber, send a message to\n"
+msgstr "Pour refuser cet inscrit, envoyez un message à\n"
+
+#: vhffs-panel/ajax/help.pl:53
+msgid "Topic not found"
+msgstr "Sujet non trouvé"
+
+#: vhffs-panel/admin/stats.pl:94
+msgid "Total Admin Users in VHFFS database"
+msgstr "Total d'administrateurs"
+
+#: vhffs-panel/admin/stats.pl:121
+msgid "Total CVS in moderation"
+msgstr "Total de dépôts CVS en modération"
+
+#: vhffs-panel/admin/stats.pl:113
+msgid "Total DNS in moderation"
+msgstr "Total de noms de domaine en modération"
+
+#: vhffs-panel/admin/stats.pl:134
+msgid "Total GIT in moderation"
+msgstr "Total de dépôts Git en modération"
+
+#: vhffs-panel/admin/stats.pl:140
+msgid "Total Mail domains in moderation"
+msgstr "Total de domaines mail en modération"
+
+#: vhffs-panel/admin/stats.pl:96
+msgid "Total Moderator Users in VHFFS database"
+msgstr "Total de modérateurs"
+
+#: vhffs-panel/admin/stats.pl:152
+msgid "Total MySQL in moderation"
+msgstr "Total de bases de données MySQL en modération"
+
+#: vhffs-panel/admin/stats.pl:159
+msgid "Total PostgreSQL in moderation"
+msgstr "Total de bases de données PostgreSQL en modération"
+
+#: vhffs-panel/admin/stats.pl:128
+msgid "Total SVN in moderation"
+msgstr "Total de dépôt Subversion en modération"
+
+#: vhffs-panel/admin/stats.pl:92
+msgid "Total Users in VHFFS database"
+msgstr "Total d'utilisateurs"
+
+#: vhffs-panel/admin/stats.pl:106
+msgid "Total Web Areas in moderation"
+msgstr "Total de sites web en modération"
+
+#: vhffs-panel/admin/stats.pl:123
+msgid "Total activated CVS"
+msgstr "Total de dépôts CVS activés"
+
+#: vhffs-panel/admin/stats.pl:115
+msgid "Total activated DNS"
+msgstr "Total de noms de domaine activés"
+
+#: vhffs-panel/admin/stats.pl:136
+msgid "Total activated GIT"
+msgstr "Total de dépôts Git activés"
+
+#: vhffs-panel/admin/stats.pl:142
+msgid "Total activated Mail domains"
+msgstr "Total de domaines mail activés"
+
+#: vhffs-panel/admin/stats.pl:154
+msgid "Total activated MySQL"
+msgstr "Total de bases de données MySQL activées"
+
+#: vhffs-panel/admin/stats.pl:161
+msgid "Total activated PostgreSQL"
+msgstr "Total de bases de données PostgreSQL activées"
+
+#: vhffs-panel/admin/stats.pl:130
+msgid "Total activated SVN"
+msgstr "Total de dépôts Subversion activés"
+
+#: vhffs-panel/admin/stats.pl:108
+msgid "Total activated Web Areas"
+msgstr "Total de sites web activés"
+
+#: vhffs-panel/admin/stats.pl:102
+msgid "Total activated groups"
+msgstr "Total de groupes activés"
+
+#: vhffs-panel/admin/stats.pl:169
+msgid "Total activated lists"
+msgstr "Total de listes de diffusion activées"
+
+#: vhffs-panel/admin/stats.pl:100
+msgid "Total groups in database"
+msgstr "Total de groupes"
+
+#: vhffs-panel/admin/stats.pl:146
+msgid "Total hosted boxes"
+msgstr "Total de boîtes mail"
+
+#: vhffs-panel/admin/stats.pl:144
+msgid "Total hosted forwards"
+msgstr "Total de redirection"
+
+#: vhffs-panel/admin/stats.pl:167
+msgid "Total lists in moderation"
+msgstr "Total des listes de diffusion en modération"
+
+#: vhffs-panel/admin/stats.pl:171
+msgid "Total subscribtion for lists"
+msgstr "Total des inscriptions sur les listes de diffusion"
+
+#: vhffs-panel/group/history.pl:78 vhffs-panel/admin/moderation.pl:84
+msgid "Type"
+msgstr "Type"
+
+#: vhffs-panel/admin/object/edit.pl:95 vhffs-api/src/Vhffs/Panel/Object.pm:99
+msgid "UID of owner"
+msgstr "Identifiant utilisateur du propriétaire"
+
+#: vhffs-panel/dns/prefs.pl:135
+#, perl-format
+msgid "Unable to add A record: %s"
+msgstr "Impossible d'ajouter un enregistrement de type A : %s"
+
+#: vhffs-panel/dns/prefs.pl:130
+#, perl-format
+msgid "Unable to add AAAA record: %s"
+msgstr "Impossible d'ajouter un enregistrement de type AAAA : %s"
+
+#: vhffs-panel/dns/prefs.pl:174
+#, perl-format
+msgid "Unable to add CNAME record: %s"
+msgstr "Impossible d'ajouter un enregistrement de type CNAME : %s"
+
+#: vhffs-panel/dns/prefs.pl:151
+#, perl-format
+msgid "Unable to add MX record: %s"
+msgstr "Impossible d'ajouter un enregistrement de type MX : %s"
+
+#: vhffs-panel/dns/prefs.pl:160
+#, perl-format
+msgid "Unable to add NS record: %s"
+msgstr "Impossible d'ajouter un enregistrement de type NS : %s"
+
+#: vhffs-panel/dns/prefs.pl:197
+#, perl-format
+msgid "Unable to add SRV record: %s"
+msgstr "Impossible d'ajouter un enregistrement de type SRV : %s"
+
+#: vhffs-panel/dns/prefs.pl:202
+#, perl-format
+msgid "Unable to add TXT record: %s"
+msgstr "Impossible d'ajouter un enregistrement de type TXT : %s"
+
+#: vhffs-panel/mail/prefs.pl:286
+#, perl-format
+msgid "Unable to add forward %s"
+msgstr "Impossible d'ajouter la redirection %s"
+
+#: vhffs-panel/group/prefs.pl:137 vhffs-panel/group/prefs.pl:171
+msgid ""
+"Unable to add user, he might already be in the group (waiting for addition "
+"or deletion)"
+msgstr ""
+"Impossible d'ajouter l'utilisateur, il doit être déjà dans le groupe (en "
+"cours d'ajout ou de suppression)"
+
+#: vhffs-panel/pgsql/prefs.pl:131 vhffs-panel/mysql/prefs.pl:142
+msgid "Unable to apply changes"
+msgstr "Impossible d'appliquer les modifications"
+
+#: vhffs-panel/git/prefs.pl:149 vhffs-panel/git/prefs.pl:194
+#: vhffs-panel/web/prefs.pl:141
+msgid "Unable to apply modifications"
+msgstr "Impossible d'appliquer les modifications"
+
+#: vhffs-panel/group/prefs.pl:291 vhffs-panel/repository/prefs.pl:131
+msgid "Unable to apply modifications, please try again later"
+msgstr "Impossible d'appliquer les modifications, veuillez réessayer plus tard"
+
+#: vhffs-panel/mailinglist/prefs.pl:261
+#, perl-format
+msgid "Unable to change rights for subscriber %s"
+msgstr "Impossible de changer les droits pour le membre %s"
+
+#: vhffs-panel/dns/prefs.pl:112
+#, perl-format
+msgid "Unable to delete A record: %s"
+msgstr "Impossible de supprimer l'enregistrement de type A : %s"
+
+#: vhffs-panel/dns/prefs.pl:124
+#, perl-format
+msgid "Unable to delete AAAA record: %s"
+msgstr "Impossible de supprimer l'enregistrement de type AAAA : %s"
+
+#: vhffs-panel/dns/prefs.pl:169
+#, perl-format
+msgid "Unable to delete CNAME record: %s"
+msgstr "Impossible de supprimer l'enregistrement de type CNAME : %s"
+
+#: vhffs-panel/dns/prefs.pl:146
+#, perl-format
+msgid "Unable to delete MX record: %s"
+msgstr "Impossible de supprimer l'enregistrement de type MX : %s"
+
+#: vhffs-panel/dns/prefs.pl:156
+#, perl-format
+msgid "Unable to delete NS record: %s"
+msgstr "Impossible de supprimer l'enregistrement de type NS : %s"
+
+#: vhffs-panel/dns/prefs.pl:186
+#, perl-format
+msgid "Unable to delete SRV record: %s"
+msgstr "Impossible de supprimer l'enregistrement de type SRV : %s"
+
+#: vhffs-panel/dns/prefs.pl:213
+#, perl-format
+msgid "Unable to delete TXT record: %s"
+msgstr "Impossible de supprimer l'enregistrement de type TXT : %s"
+
+#: vhffs-panel/mail/prefs.pl:270
+#, perl-format
+msgid "Unable to delete box %s"
+msgstr "Impossible de supprimer la boite %s"
+
+#: vhffs-panel/mail/prefs.pl:317
+#, perl-format
+msgid "Unable to delete forward %s"
+msgstr "Impossible de supprimer la redirection %s"
+
+#: vhffs-panel/mail/delete.pl:99
+msgid "Unable to delete this domain"
+msgstr "Impossible de détruire ce domaine mail"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:196 vhffs-api/src/Vhffs/Panel/DNS.pm:226
+msgid ""
+"Unable to find default redirection address, please contact administrators"
+msgstr ""
+"Impossible de trouver l'adresse de redirection par défaut, merci de "
+"contacter les administrateurs"
+
+#: vhffs-panel/cvs/index.pl:63
+msgid "Unable to get CVS repositories"
+msgstr "Impossible d'obtenir les dépôts CVS"
+
+#: vhffs-panel/dns/index.pl:63
+msgid "Unable to get DNS"
+msgstr "Impossible d'obtenir les noms de domaine"
+
+#: vhffs-panel/git/index.pl:64
+msgid "Unable to get GIT repositories"
+msgstr "Impossible d'obtenir les dépôts GIT"
+
+#: vhffs-panel/mysql/index.pl:63
+msgid "Unable to get MySQL databases."
+msgstr "Impossible d'obtenir les bases de données MySQL"
+
+#: vhffs-panel/pgsql/index.pl:63
+msgid "Unable to get PgSQL databases"
+msgstr "Impossible d'obtenir les bases de données MySQL"
+
+#: vhffs-panel/svn/index.pl:63
+msgid "Unable to get SVN repositories"
+msgstr "Impossible d'obtenir les dépôts SVN"
+
+#: vhffs-panel/mail/delete.pl:79 vhffs-panel/mail/prefs.pl:74
+#, perl-format
+msgid "Unable to get information on mail domain %s"
+msgstr "Impossible d'obtenir des information sur le domain mail %s"
+
+#: vhffs-panel/mail/index.pl:63
+msgid "Unable to get mail domains"
+msgstr "Impossible d'obtenir les domaines mails"
+
+#: vhffs-panel/mailinglist/index.pl:63
+msgid "Unable to get mailing lists"
+msgstr "Impossible d'obtenir les listes de diffusions"
+
+#: vhffs-panel/repository/index.pl:63
+msgid "Unable to get repositories"
+msgstr "Impossible d'obtenir les espaces de téléchargement"
+
+#: vhffs-panel/web/index.pl:63
+msgid "Unable to get webareas"
+msgstr "Impossible d'obtenir les espaces web"
+
+#: vhffs-panel/dns/prefs.pl:107
+#, perl-format
+msgid "Unable to modify A record: %s"
+msgstr "Impossible de modifier l'enregistrement de type A : %s"
+
+#: vhffs-panel/dns/prefs.pl:119
+#, perl-format
+msgid "Unable to modify AAAA record: %s"
+msgstr "Impossible de modifier l'enregistrement de type AAAA : %s"
+
+#: vhffs-panel/dns/prefs.pl:165
+#, perl-format
+msgid "Unable to modify CNAME record: %s"
+msgstr "Impossible de modifier l'enregistrement de type CNAME : %s"
+
+#: vhffs-panel/dns/prefs.pl:141
+#, perl-format
+msgid "Unable to modify MX record: %s"
+msgstr "Impossible de modifier l'enregistrement de type MX : %s"
+
+#: vhffs-panel/dns/prefs.pl:182
+#, perl-format
+msgid "Unable to modify SRV record: %s"
+msgstr "Impossible de modifier l'enregistrement de type SRV : %s"
+
+#: vhffs-panel/dns/prefs.pl:208
+#, perl-format
+msgid "Unable to modify TXT record: %s"
+msgstr "Impossible de modifier l'enregistrement de type TXT : %s"
+
+#: vhffs-panel/mail/prefs.pl:302
+#, perl-format
+msgid "Unable to modify forward %s"
+msgstr "Impossible de modifier la redirection %s"
+
+#: vhffs-panel/group/prefs.pl:114
+msgid "Unable to remove user from group"
+msgstr "Impossible de supprimer l'utilisateur du groupe"
+
+#: vhffs-panel/mailinglist/prefs.pl:220
+msgid "Unable to save object"
+msgstr "Impossible de sauver l'objet"
+
+#: vhffs-panel/svn/prefs.pl:168
+msgid "Unable to update repository"
+msgstr "Impossible de mettre à jour le dépôt"
+
+#: vhffs-panel/user/prefs.pl:475
+msgid "Unable to update user, please try again later"
+msgstr ""
+"Impossible de mettre à jour l'utilisateur, veuillez réessayer plus tard."
+
+#: vhffs-api/src/Vhffs/Listengine.pm:298
+msgid ""
+"Unknow command\n"
+"\n"
+msgstr ""
+"Commande inconnue\n"
+"\n"
+
+#: vhffs-api/src/Vhffs/Functions.pm:448 vhffs-api/src/Vhffs/Functions.pm:453
+msgid "Unknown"
+msgstr "Inconnu"
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:163 vhffs-api/src/Vhffs/Panel/DNS.pm:199
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:211 vhffs-api/src/Vhffs/Panel/DNS.pm:229
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:241 vhffs-api/src/Vhffs/Panel/DNS.pm:253
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:265 vhffs-api/src/Vhffs/Panel/DNS.pm:276
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:288 vhffs-api/src/Vhffs/Panel/DNS.pm:301
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:317 vhffs-api/src/Vhffs/Panel/DNS.pm:332
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:344 vhffs-api/src/Vhffs/Panel/DNS.pm:356
+msgid "Unknown error"
+msgstr "Erreur inconnue"
+
+#: vhffs-panel/admin/broadcast_list.pl:104
+#: vhffs-panel/admin/broadcast_view.pl:105
+msgid "Unknown status"
+msgstr "Statut inconnu"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:240
+#, 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"
+
+#: vhffs-panel/group/prefs.pl:244 vhffs-intl/template_strings.pl:87
+msgid "Update"
+msgstr "Mettre à jour"
+
+#: vhffs-intl/template_strings.pl:64
+msgid "Update Permissions"
+msgstr "Mettre à jour les permissions"
+
+#: vhffs-intl/template_strings.pl:70 vhffs-intl/template_strings.pl:75
+msgid "Update Quota"
+msgstr "Mettre à jour les quotas"
+
+#: vhffs-panel/group/prefs.pl:248
+msgid "Update avatar"
+msgstr "Mettre à jour l'avatar l'avatar"
+
+#: vhffs-panel/mailinglist/prefs.pl:144
+msgid "Update signature"
+msgstr "Mettre à jour la signature"
+
+#: vhffs-panel/object/upavatar.pl:118
+msgid "Uploaded file is too big. The maximum size is 20 Kbytes."
+msgstr "Le fichier envoyé est trop gros. La taille maximun est de 20 KB"
+
+#: vhffs-panel/dns/prefs.pl:240
+#, perl-format
+msgid "Use @ for origin (%s)"
+msgstr "Utiliser @ pour l'origine (%s)"
+
+#: vhffs-panel/user/prefs.pl:413
+#, perl-format
+msgid ""
+"Use VHFFS servers to manage this mail,<br/>you should use use the host pop.%"
+"s or imap.%s to fetch your mails"
+msgstr ""
+"Utiliser nos serveurs pour gérer ce mail,<br/>vous devez utiliser pop.%s ou "
+"imap.%s pour récupérer vos emails"
+
+#: vhffs-panel/user/prefs.pl:424
+msgid "Use anti-spam protection"
+msgstr "Utiliser la protection anti-spam"
+
+#: vhffs-panel/user/prefs.pl:432
+msgid "Use anti-virus protection"
+msgstr "Utiliser la protection par anti-virus"
+
+#: vhffs-intl/template_strings.pl:67 vhffs-intl/template_strings.pl:72
+msgid "Used Quota"
+msgstr "Quota utilisé"
+
+#: vhffs-panel/acl/view.pl:103 vhffs-panel/admin/moderation.pl:86
+#: vhffs-intl/extra_strings.pl:35
+msgid "User"
+msgstr "Utilisateur"
+
+#: vhffs-panel/admin/su.pl:96
+#, perl-format
+msgid "User %s does not exist"
+msgstr "L'utilisateur %s n'existe pas"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:118
+msgid "User Admin"
+msgstr "Administration des Utilisateurs"
+
+#: vhffs-panel/user/prefs.pl:297 vhffs-api/src/Vhffs/Panel/Main.pm:435
+msgid "User Preferences"
+msgstr "Préférences utilisateur"
+
+#: vhffs-panel/subscribe.pl:188
+msgid "User Successfully created"
+msgstr "Utilisateur créé avec succès"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:432
+msgid "User account"
+msgstr "Compte utilisateur"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:368
+msgid "User does not exist"
+msgstr "L'utilisateur n'existe pas"
+
+#: vhffs-panel/auth.pl:74
+msgid "User is not active yet"
+msgstr "L'utilisateur n'est pas encore actif"
+
+#: vhffs-panel/group/prefs.pl:144
+msgid "User not found"
+msgstr "Utilisateur Introuvable"
+
+#: vhffs-panel/user/prefs.pl:477
+msgid "User successfully updated"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:134 vhffs-panel/group/prefs.pl:168
+msgid "User will be added as soon as possible"
+msgstr "L'utilisateur sera ajouté le plus rapidement possible"
+
+#: vhffs-intl/template_strings.pl:59
+msgid "User's Permissions"
+msgstr "Permissions de l'utilisateur"
+
+#: vhffs-intl/template_strings.pl:60
+msgid "User's permissions"
+msgstr "Permissions de l'utilisateur"
+
+#: vhffs-panel/subscribe.pl:223 vhffs-panel/user/prefs.pl:301
+#: vhffs-panel/group/prefs.pl:238 vhffs-panel/admin/user/list.pl:70
+#: vhffs-panel/admin/su.pl:73 vhffs-panel/lost.pl:57
+#: vhffs-intl/template_strings.pl:4 vhffs-intl/template_strings.pl:34
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:65
+msgid "Username"
+msgstr "Nom d'utilisateur"
+
+#: vhffs-panel/pgsql/prefs.pl:87 vhffs-panel/mysql/prefs.pl:98
+msgid "Username for this database"
+msgstr "Nom d'utilisateur pour cette base de données"
+
+#: vhffs-panel/group/prefs.pl:256 vhffs-intl/template_strings.pl:1
+#: vhffs-intl/template_strings.pl:21 vhffs-intl/template_strings.pl:41
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:111
+msgid "Users"
+msgstr "Utilisateurs"
+
+#: vhffs-panel/admin/stats.pl:91
+msgid "Users stats"
+msgstr "Statistiques des utilisateurs"
+
+#: vhffs-panel/admin/user/index.pl:56
+msgid "Users' administration"
+msgstr "Administration des utilisateurs"
+
+#: vhffs-panel/admin/object/edit.pl:117 vhffs-intl/extra_strings.pl:21
+#: vhffs-api/src/Vhffs/Panel/Object.pm:122
+msgid "Validation refused"
+msgstr "Validation refusée"
+
+#: vhffs-panel/admin/stats.pl:89
+msgid "Vhffs Statistics"
+msgstr "Statistiques de VHFFS"
+
+#: vhffs-intl/template_strings.pl:32
+msgid "View Archives"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_view.pl:85
+msgid "View mailing"
+msgstr "Voir l'envoi de masse"
+
+#: vhffs-panel/admin/broadcast_list.pl:90
+msgid "View this mailing"
+msgstr "Visualiser cet envoi"
+
+#: vhffs-panel/mail/prefs.pl:254
+msgid "Virus status updated"
+msgstr "La protection anti virus a été mise à jour"
+
+#: vhffs-panel/admin/stats.pl:105
+msgid "WEB stats"
+msgstr "Statistiques des sites web"
+
+#: vhffs-intl/template_strings.pl:52
+msgid "Waiting for confirmation"
+msgstr "En attente de confirmation"
+
+#: vhffs-panel/admin/object/edit.pl:118 vhffs-intl/extra_strings.pl:22
+#: vhffs-api/src/Vhffs/Panel/Object.pm:123
+msgid "Waiting for creation"
+msgstr "En attente de création"
+
+#: vhffs-intl/template_strings.pl:55
+msgid "Waiting for deletion"
+msgstr "En attente de suppression"
+
+#: vhffs-panel/admin/object/edit.pl:124 vhffs-intl/extra_strings.pl:28
+#: vhffs-api/src/Vhffs/Panel/Object.pm:129
+msgid "Waiting for modification"
+msgstr "En attente de modification"
+
+#: vhffs-panel/admin/object/edit.pl:116 vhffs-intl/template_strings.pl:53
+#: vhffs-intl/extra_strings.pl:20 vhffs-api/src/Vhffs/Panel/Object.pm:121
+msgid "Waiting for validation"
+msgstr "En attente de validation"
+
+#: vhffs-panel/user/prefs.pl:149
+msgid "Wanted shell is not in the shell list"
+msgstr "Le shell demandé n'est pas disponible"
+
+#: vhffs-panel/alert.pl:56
+msgid "Warn the admin team"
+msgstr "Alerter l'équipe d'administrateurs"
+
+#: vhffs-intl/template_strings.pl:65 vhffs-intl/template_strings.pl:77
+msgid ""
+"Warning, password change isn't immediate, you've to check periodically to "
+"see if it's done"
+msgstr ""
+"Attention, le changement de mot de passe n'est pas immédiat, vous devez "
+"vérifier de temps en temps que l'opération a été effectuée"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:481
+#, perl-format
+msgid ""
+"We confirm that you REFUSED the subscription of:\n"
+" %s\n"
+"\n"
+"to the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+"Nous confirmons que vous avez REFUSÉ l'inscription de :\n"
+" %s\n"
+"\n"
+"à la liste de diffusion suivante :\n"
+" %s\n"
+"\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:457
+#, perl-format
+msgid ""
+"We confirm that you accepted the subscription of:\n"
+" %s\n"
+"\n"
+"to the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+"Nous confirmons que vous avez accepté l'inscription de :\n"
+" %s\n"
+"\n"
+"à la liste de diffusion suivante :\n"
+" %s\n"
+"\n"
+
+#: vhffs-panel/group/prefs.pl:227
+#, perl-format
+msgid "We offer you the possibility to forward emails from %s@%s."
+msgstr "Nous vous offrons la possibilité de rediriger les emails depuis %s@%s."
+
+#: vhffs-panel/user/prefs.pl:443
+#, perl-format
+msgid "We offer you the possibility to have one email box on the domain %s"
+msgstr ""
+"Nous vous offrons la possibilité de bénéficier d'un compte mail sur le "
+"domaine %s"
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:64 vhffs-api/src/Vhffs/Panel/Menu.pm:113
+msgid "Web"
+msgstr "Web"
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:153
+msgid "Web Admin"
+msgstr "Administration web"
+
+#: vhffs-panel/web/prefs.pl:93
+msgid "Web Area Administration"
+msgstr "Administration web"
+
+#: vhffs-panel/web/prefs.pl:143
+msgid "Web area successfully modified"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:37
+msgid "Webarea"
+msgstr "Espace web"
+
+#: vhffs-panel/web/index.pl:60
+#, perl-format
+msgid "Webareas for %s"
+msgstr "Espaces web pour %s"
+
+#: vhffs-panel/admin/web/index.pl:56
+msgid "Webareas' administration"
+msgstr "Administration des espaces web"
+
+#: vhffs-intl/template_strings.pl:19
+msgid "Website description"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:18
+msgid "Website name"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:15
+msgid "Websites"
+msgstr ""
+
+#: vhffs-public/group.pl:99 vhffs-intl/template_strings.pl:27
+msgid "Websites for this group"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:298 vhffs-panel/dns/prefs.pl:383
+msgid "Weight"
+msgstr "Poids"
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:62
+#, perl-format
+msgid "Welcome on %s"
+msgstr "Bienvenue sur %s"
+
+#: vhffs-panel/mailinglist/delete.pl:107
+msgid "Will be DELETED in a few minutes"
+msgstr "Sera détruit dans quelques minutes"
+
+#: vhffs-panel/admin/object/edit.pl:127 vhffs-intl/extra_strings.pl:31
+#: vhffs-api/src/Vhffs/Panel/Object.pm:132
+msgid "Will be deleted"
+msgstr "Sera détruit"
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:81
+#, 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:93 vhffs-panel/dns/prefs.pl:261
+#: vhffs-panel/git/prefs.pl:101 vhffs-panel/cvs/prefs.pl:112
+#: vhffs-intl/template_strings.pl:82 vhffs-intl/template_strings.pl:85
+msgid "Yes"
+msgstr "Oui"
+
+#: vhffs-panel/mailinglist/prefs.pl:181 vhffs-panel/svn/prefs.pl:99
+#: vhffs-panel/user/prefs.pl:328 vhffs-panel/dns/prefs.pl:254
+#: vhffs-panel/pgsql/prefs.pl:101 vhffs-panel/group/prefs.pl:215
+#: vhffs-panel/repository/prefs.pl:91 vhffs-panel/git/prefs.pl:107
+#: vhffs-panel/web/prefs.pl:111 vhffs-panel/mysql/prefs.pl:113
+#: vhffs-panel/cvs/prefs.pl:118 vhffs-panel/mail/prefs.pl:138
+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.pm:227
+msgid "You are not a subscriber on this list.\n"
+msgstr "Vous n'êtes pas inscrit sur la liste.\n"
+
+#: vhffs-panel/mailinglist/prefs.pl:271
+msgid "You are not allowed to add members (ACL rights)"
+msgstr ""
+"Vous n'êtes pas autorisé à ajouter des membres (droits ACL insuffisants)"
+
+#: vhffs-panel/object/quickdelete.pl:77 vhffs-panel/object/resubmit.pl:77
+msgid "You are not allowed to do it, you don't own this object"
+msgstr ""
+"Vous n'êtes pas autorisé à faire ceci, vous n'êtes pas propriétaire de cet "
+"objet"
+
+#: vhffs-panel/mailinglist/prefs.pl:251
+msgid "You are not allowed to manager subscribers' rights (ACL rights)"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:177 vhffs-panel/mail/prefs.pl:207
+#: vhffs-panel/mail/prefs.pl:225 vhffs-panel/mail/prefs.pl:265
+#: vhffs-panel/mail/prefs.pl:279 vhffs-panel/mail/prefs.pl:295
+#: vhffs-panel/mail/prefs.pl:311
+msgid "You are not allowed to modify this object"
+msgstr "Vous n'êtes pas autorisé à modifier cet objet"
+
+#: vhffs-panel/web/prefs.pl:125
+msgid "You are not allowed to modify this web area"
+msgstr "Vous n'êtes pas autorisé à modifier ce site web"
+
+#: vhffs-panel/admin/mailinglist/search.pl:71
+#: vhffs-panel/admin/mailinglist/list.pl:63 vhffs-panel/admin/svn/search.pl:73
+#: vhffs-panel/admin/svn/list.pl:55 vhffs-panel/admin/broadcast.pl:70
+#: vhffs-panel/admin/stats.pl:82 vhffs-panel/admin/user/search.pl:72
+#: vhffs-panel/admin/user/list.pl:55 vhffs-panel/admin/dns/search.pl:72
+#: vhffs-panel/admin/dns/list.pl:59 vhffs-panel/admin/pgsql/search.pl:72
+#: vhffs-panel/admin/pgsql/list.pl:60 vhffs-panel/admin/group/search.pl:72
+#: vhffs-panel/admin/group/list.pl:65 vhffs-panel/admin/broadcast_list.pl:71
+#: vhffs-panel/admin/repository/search.pl:71
+#: vhffs-panel/admin/repository/list.pl:59 vhffs-panel/admin/git/search.pl:73
+#: vhffs-panel/admin/git/list.pl:56 vhffs-panel/admin/object/edit_submit.pl:74
+#: vhffs-panel/admin/object/delete_avatar.pl:78
+#: vhffs-panel/admin/object/edit.pl:74 vhffs-panel/admin/object/search.pl:71
+#: vhffs-panel/admin/object/list.pl:72 vhffs-panel/admin/broadcast_view.pl:73
+#: vhffs-panel/admin/web/search.pl:72 vhffs-panel/admin/web/list.pl:54
+#: vhffs-panel/admin/mysql/search.pl:72 vhffs-panel/admin/mysql/list.pl:66
+#: vhffs-panel/admin/cvs/search.pl:71 vhffs-panel/admin/cvs/list.pl:60
+#: vhffs-panel/admin/mail/search.pl:72 vhffs-panel/admin/mail/list.pl:59
+msgid "You are not allowed to see it"
+msgstr "Vous n'êtes pas autorisé à voir ceci"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:186 vhffs-api/src/Vhffs/Panel/Main.pm:207
+msgid "You are not granted to access this page"
+msgstr "Vous n'êtes pas autorisé à voir cette page"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:119
+#, perl-format
+msgid ""
+"You asked to be subscribed to the following list:\n"
+"\n"
+"%s\n"
+"\n"
+msgstr ""
+"Vous avez demandé à être inscrit sur cette liste de diffusion:\n"
+"\n"
+"%s\n"
+"\n"
+
+#: vhffs-panel/svn/prefs.pl:105 vhffs-panel/dns/prefs.pl:246
+#: vhffs-panel/git/prefs.pl:113 vhffs-panel/web/prefs.pl:104
+#: vhffs-panel/mail/prefs.pl:144
+msgid ""
+"You can Manage rights on this service for each user in the VHFFS database. "
+"Please read help before manage it."
+msgstr ""
+"Vous pouvez gérer les droits de chaque utilisateur sur ce service. Merci de "
+"lire l'aide avant de modifier."
+
+#: vhffs-api/src/Vhffs/Listengine.pm:49
+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-panel/group/prefs.pl:110
+msgid "You cannot remove the owner of the group"
+msgstr "Vous ne pouvez pas supprimer le propriétaire du groupe"
+
+#: vhffs-panel/subscribe.pl:89
+msgid "You cannot subscribe to VHFFS"
+msgstr "Vous ne pouvez pas vous inscrire"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:226
+#, 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.pm:211
+msgid "You demand was refused\n"
+msgstr "Votre demande a été refusée\n"
+
+#: vhffs-panel/mailinglist/create.pl:87
+msgid "You do not own this domain !"
+msgstr "Vous n'êtes pas propriétaire de ce domaine !"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:182
+#, perl-format
+msgid ""
+"You have been successfully removed from the following list:\n"
+" %s\n"
+msgstr ""
+"Vous avez été supprimé avec succès de la liste de diffusion suivante:\n"
+" %s\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:255
+#, 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.pm:147 vhffs-api/src/Vhffs/Listengine.pm:163
+#, perl-format
+msgid ""
+"You have been successfully subscribed to the following mailing list:\n"
+" %s\n"
+msgstr ""
+"Vous avez été inscrit avec succès à la liste de diffusion suivante:\n"
+" %s\n"
+
+#: vhffs-panel/web/prefs.pl:135
+msgid "You have to enter a description"
+msgstr "Vous devez fournir une description"
+
+#: vhffs-panel/group/prefs.pl:284 vhffs-panel/repository/prefs.pl:125
+msgid "You have to enter a quota greater than the current used quota"
+msgstr ""
+"Vous devez rentrer un quota plus grand que l'espace disque utilisé "
+"actuellement"
+
+#: vhffs-panel/mailinglist/index.pl:54 vhffs-panel/svn/index.pl:54
+#: vhffs-panel/dns/index.pl:54 vhffs-panel/pgsql/index.pl:54
+#: vhffs-panel/repository/index.pl:54 vhffs-panel/git/index.pl:55
+#: vhffs-panel/web/index.pl:54 vhffs-panel/mysql/index.pl:54
+#: vhffs-panel/cvs/index.pl:54 vhffs-panel/mail/index.pl:54
+msgid "You have to select a group first"
+msgstr "Vous devez d'abord selectionner un groupe"
+
+#: vhffs-panel/auth.pl:105
+msgid "You left your VHFFS session!"
+msgstr "Vous avez quitté votre session"
+
+#: vhffs-panel/lost.pl:55
+msgid "You lost your password? You're a bad guy!"
+msgstr "Vous avez perdu votre mot de passe ? Saimal(tm)"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:149 vhffs-api/src/Vhffs/Listengine.pm:168
+#: vhffs-api/src/Vhffs/Listengine.pm:443
+msgid "You may get some help on listengine by sending an email to\n"
+msgstr ""
+"Si vous souhaitez obtenir des informations sur le fonctionnement de la "
+"liste, vous pouvrez envoyer un mail à \n"
+
+#: vhffs-panel/user/prefs.pl:204
+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.pm:85 vhffs-api/src/Vhffs/Listengine.pm:103
+msgid "You must confirm your request by sending a confirmation email\n"
+msgstr ""
+"Vous devez valider votre demande en envoyant un email de confirmation.\n"
+
+#: vhffs-panel/subscribe.pl:143
+msgid "You must declare a valid mail address"
+msgstr "Vous devez déclarer une adresse mail valide"
+
+#: vhffs-panel/subscribe.pl:123
+msgid "You must declare your city"
+msgstr "Vous devez entrer un nom de ville correct"
+
+#: vhffs-panel/subscribe.pl:119
+msgid "You must declare your country"
+msgstr "Vous devez entrer un nom de pays correct"
+
+#: vhffs-panel/subscribe.pl:131
+msgid "You must declare your firstname"
+msgstr "Vous devez entrer votre prénom"
+
+#: vhffs-panel/subscribe.pl:135
+msgid "You must declare your lastname"
+msgstr "Vous devez entrer votre nom"
+
+#: vhffs-panel/subscribe.pl:139
+msgid "You must declare your mail address"
+msgstr "Vous devez entrer votre adresse email"
+
+#: vhffs-panel/subscribe.pl:111
+msgid "You must declare your username"
+msgstr "Vous devez entrer votre nom d'utilisateur"
+
+#: vhffs-panel/subscribe.pl:127
+msgid "You must declare your zipcode"
+msgstr "Vous devez entrer un code postal valide"
+
+#: vhffs-panel/mailinglist/create.pl:83 vhffs-panel/svn/create.pl:83
+#: vhffs-panel/dns/create.pl:53 vhffs-panel/pgsql/create.pl:84
+#: vhffs-panel/group/prefs.pl:86 vhffs-panel/group/create.pl:68
+#: vhffs-panel/repository/create.pl:79 vhffs-panel/git/create.pl:83
+#: vhffs-panel/object/resubmit.pl:90 vhffs-panel/web/create.pl:81
+#: vhffs-panel/mysql/create.pl:84 vhffs-panel/cvs/create.pl:84
+#: vhffs-panel/mail/create.pl:78
+msgid "You must enter a description"
+msgstr "Vous devez saisir une description"
+
+#: vhffs-panel/group/prefs.pl:88 vhffs-panel/group/create.pl:70
+msgid "You must enter a full name"
+msgstr "Vous devez entrer un nom complet"
+
+#: vhffs-panel/group/prefs.pl:126
+msgid "You must enter an username"
+msgstr "Vous devez entrer un nom d'utilisateur"
+
+#: vhffs-panel/group/view.pl:55
+msgid "You must specify a project name"
+msgstr "Vous devez spécifier un nom de projet"
+
+#: vhffs-panel/mailinglist/prefs.pl:281
+msgid "You need to enter at least one new member"
+msgstr "Vous devez ajouter au moins un nouveau membre"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:166
+msgid "You will receive an email with the decision of administrators.\n"
+msgstr "Vous allez recevoir un email avec la décision des administrateurs\n"
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:375
+msgid "You're are not allowed to browse panel"
+msgstr "Vous n'êtes pas autorisé à parcourir le panel"
+
+#: vhffs-panel/mailinglist/create.pl:62 vhffs-panel/svn/create.pl:63
+#: vhffs-panel/dns/create.pl:34 vhffs-panel/pgsql/create.pl:63
+#: vhffs-panel/group/delete.pl:68 vhffs-panel/group/history.pl:71
+#: vhffs-panel/group/prefs.pl:78 vhffs-panel/group/prefs.pl:108
+#: vhffs-panel/group/prefs.pl:119 vhffs-panel/group/prefs.pl:160
+#: vhffs-panel/group/prefs.pl:177 vhffs-panel/repository/create.pl:64
+#: vhffs-panel/admin/moderation_submit.pl:67
+#: vhffs-panel/admin/moderation.pl:70 vhffs-panel/admin/broadcast_submit.pl:79
+#: vhffs-panel/admin/broadcast_delete.pl:79 vhffs-panel/git/create.pl:64
+#: vhffs-panel/web/prefs.pl:84 vhffs-panel/web/create.pl:63
+#: vhffs-panel/mysql/create.pl:63 vhffs-panel/cvs/create.pl:64
+#: vhffs-panel/mail/create.pl:60
+msgid "You're not allowed to do this (ACL rights)"
+msgstr "Vous n'êtes pas autorisé à voir ceci (droits ACL insuffisants)"
+
+#: vhffs-panel/mailinglist/delete.pl:91 vhffs-panel/mailinglist/prefs.pl:84
+#: vhffs-panel/mailinglist/prefs.pl:205 vhffs-panel/mailinglist/prefs.pl:230
+#: vhffs-panel/svn/delete.pl:81 vhffs-panel/svn/prefs.pl:76
+#: vhffs-panel/svn/prefs.pl:134 vhffs-panel/user/prefs.pl:78
+#: vhffs-panel/user/prefs.pl:84 vhffs-panel/dns/delete.pl:87
+#: vhffs-panel/dns/prefs.pl:86 vhffs-panel/dns/prefs.pl:95
+#: vhffs-panel/pgsql/delete.pl:77 vhffs-panel/pgsql/prefs.pl:71
+#: vhffs-panel/pgsql/prefs.pl:115 vhffs-panel/group/prefs.pl:70
+#: vhffs-panel/repository/delete.pl:82 vhffs-panel/repository/prefs.pl:74
+#: vhffs-panel/git/delete.pl:82 vhffs-panel/git/prefs.pl:80
+#: vhffs-panel/git/prefs.pl:142 vhffs-panel/git/prefs.pl:164
+#: vhffs-panel/web/delete.pl:83 vhffs-panel/mysql/delete.pl:79
+#: vhffs-panel/mysql/prefs.pl:80 vhffs-panel/cvs/delete.pl:82
+#: vhffs-panel/cvs/prefs.pl:73 vhffs-panel/cvs/prefs.pl:78
+#: vhffs-panel/cvs/prefs.pl:94 vhffs-panel/mail/delete.pl:87
+#: vhffs-panel/mail/prefs.pl:77
+msgid ""
+"You're not allowed to do this, object is not in active state or you don't "
+"have enough ACL rights"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:89
+msgid "You're not allowed to manage this object's ACL"
+msgstr "Vous n'êtes pas autorisé à modifier les ACL pour cet objet"
+
+#: vhffs-panel/history.pl:94 vhffs-panel/acl/view.pl:76
+msgid "You're not allowed to view this object's ACL"
+msgstr "Vous n'êtes pas autorisé à voir l'ACL de ce service"
+
+#: vhffs-panel/admin/su.pl:65
+msgid "You're not an administrator"
+msgstr "Vous n'êtes pas un administrateur"
+
+#: vhffs-api/src/Vhffs/Object.pm:512
+#, perl-format
+msgid "Your %s (%s) on %s has been deleted due to lack of updates"
+msgstr ""
+"Votre %s (%s) sur %s a été supprimé car il n'a pas été mis a jour depuis "
+"longtemps"
+
+#: vhffs-api/src/Vhffs/User.pm:333
+#, perl-format
+msgid ""
+"Your account (%s) on %s has been deleted because it was unused for a long "
+"time"
+msgstr ""
+"Votre compte (%s) sur %s a été supprimé car il n'a pas été utilisé pendant "
+"très.longtemps"
+
+#: vhffs-panel/subscribe.pl:243
+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 ""
+"Votre adresse email. Elle sera utilisée pour vous contacter si nécessaire et "
+"comme adresse de destination si vous utilisez le service de redirection "
+"d'email"
+
+#: vhffs-panel/alert.pl:58
+msgid "Your message"
+msgstr "Votre message"
+
+#: vhffs-panel/group/index.pl:61
+msgid "Your projects"
+msgstr "Vos projets"
+
+#: vhffs-api/src/Vhffs/Object.pm:416
+#, perl-format
+msgid "Your request for a %s (%s) on %s was accepted"
+msgstr "Votre demande pour un %s (%s) sur %s a été acceptée"
+
+#: vhffs-api/src/Vhffs/Object.pm:466
+#, perl-format
+msgid "Your request for a %s (%s) on %s was refused"
+msgstr "Votre demande pour un %s (%s) sur %s a été refusée"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:441
+#, perl-format
+msgid ""
+"Your subscription was accepted to the following mailing list:\n"
+" %s\n"
+msgstr ""
+"Votre inscription a été accepté pour la liste de diffusion suivante :\n"
+" %s\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:469
+#, perl-format
+msgid ""
+"Your subscription was refused to the following mailing list:\n"
+" %s\n"
+"\n"
+"Have a nice day.\n"
+msgstr ""
+"Votre inscription pour la liste de diffusion suivante a été refusée :\n"
+" %s\n"
+"\n"
+"Merci de votre compréhension.\n"
+
+#: vhffs-panel/subscribe.pl:242
+msgid ""
+"Your username. It must contains only alphanumeric characters in lowercase, "
+"its length must be between 3 and 12 chars"
+msgstr ""
+"Votre nom d'utilisateur. Il doit contenir seulement des chiffres ou des "
+"lettres en minuscule et doit faire entre 3 et 12 caractères"
+
+#: vhffs-panel/subscribe.pl:147
+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:227 vhffs-panel/user/prefs.pl:305
+msgid "Zipcode"
+msgstr "Code postal"
+
+#: vhffs-panel/user/prefs.pl:132
+msgid "Zipcode is not correct !"
+msgstr "Le code postal n'est pas correct"
+
+#: vhffs-panel/mailinglist/prefs.pl:301
+#, perl-format
+msgid "[%s] You've been added to the list %s"
+msgstr "[%s] Vous avez été ajouté à la liste %s"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:355
+msgid "cannot be removed from the list\n"
+msgstr "ne peut pas être supprimé de la liste\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:319
+msgid "cannot be removed.\n"
+msgstr "ne peut pas être supprimé.\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:53
+msgid "help\t\t - show this help\n"
+msgstr "help\t\t - affiche l'aide\n"
+
+#: vhffs-intl/extra_strings.pl:17
+msgid "help_user_admin"
+msgstr ""
+"<h2>Administration</h2><p>Accédez aux fonctionnalités d'administration et/ou "
+"de modération.</p>"
+
+#: vhffs-intl/extra_strings.pl:13
+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:12
+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:14
+msgid "help_user_logout"
+msgstr ""
+"<h2>Déconnexion</h2><p>N'oubliez pas de vous déconnecter une fois que vous "
+"avez terminé.</p>"
+
+#: vhffs-intl/extra_strings.pl:11
+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 informations personnelles."
+
+#: vhffs-intl/extra_strings.pl:16
+msgid "help_user_project"
+msgstr ""
+"<h2>Accueil du projet</h2><p>Accédez aux fonctionnalités de gestion de votre "
+"projet.</p><p>Vous pourrez créer de nouveau objets ou encore gérer les "
+"droits d'accès de vos collaborateurs.</p>"
+
+#: vhffs-intl/extra_strings.pl:15
+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.pm:372
+#, 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.pm:56
+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:965
+#, 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:848
+#: vhffs-listengine/src/listengine.pl:870
+#: vhffs-listengine/src/listengine.pl:881
+msgid "listengine help"
+msgstr "aide listengine"
+
+#: vhffs-listengine/src/listengine.pl:913
+#: vhffs-listengine/src/listengine.pl:924
+#: vhffs-listengine/src/listengine.pl:940
+#: vhffs-listengine/src/listengine.pl:952
+#: vhffs-listengine/src/listengine.pl:979
+#: vhffs-listengine/src/listengine.pl:990
+msgid "listengine moderation"
+msgstr "modération sur listengine"
+
+#: vhffs-listengine/src/listengine.pl:898
+msgid "listengine result command"
+msgstr "résultat de la commande sur listengine"
+
+#: vhffs-listengine/src/listengine.pl:1031
+msgid "listengine: unknown command"
+msgstr "listengine : commande inconnue"
+
+#: vhffs-panel/subscribe.pl:224 vhffs-panel/user/prefs.pl:302
+msgid "mail"
+msgstr "adresse mail"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:61
+msgid "moderate XXXXX\t\t\t - accept the message with message-id XXXXX\n"
+msgstr "moderate XXXXX\t\t\t - accepter le message ayant l'identifiant XXXXX\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:62
+msgid ""
+"moderate accept XXXXX\t\t\t - accept the message with message-id XXXXX\n"
+msgstr "moderate XXXXX\t\t\t - accepter le message ayant l'identifiant XXXXX\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:64
+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.pm:63
+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-panel/web/create.pl:90
+msgid "new site"
+msgstr "nouveau site"
+
+#: vhffs-panel/admin/object/edit.pl:113
+#: vhffs-api/src/Vhffs/Panel/Object.pm:118
+msgid "no date"
+msgstr "pas de date"
+
+#: vhffs-api/src/Vhffs/Object.pm:380
+msgid "no reason given"
+msgstr "Pas de raison donnée"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:318 vhffs-api/src/Vhffs/Listengine.pm:354
+#, 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.pm:54
+msgid "subscribe\t - subscribe the shipper to the list\n"
+msgstr "subscribe\t - souscrire à la liste\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:59
+msgid ""
+"subscription accept XXXXX\t\t - accept the subscription with key XXXXX\n"
+msgstr ""
+"subscription accept XXXXX\t\t - accepter l'inscription avec la clé XXXXX\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:60
+msgid ""
+"subscription refuse XXXXX\t\t - refuse the subscription with key XXXXX\n"
+msgstr ""
+"subscription refuse XXXXX\t\t - refuser l'inscription avec la clé XXXXX\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:55
+msgid "unsubscribe\t - unsubscribe from this list\n"
+msgstr "unsubscribe\t - désinscrire de la liste\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:69
+msgid "user info user@xxxxxxxxxx\t\t - show user information\n"
+msgstr ""
+"user info user@xxxxxxxxxx\t\t - afficher les informations de l'utilisateur\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:67
+msgid "user right RIGHT user@xxxxxxxxxx\t - change right for this user\n"
+msgstr ""
+"user right RIGHT user@xxxxxxxxxx\t - changer les droits pour l'utilisateur "
+"spécifié\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:66
+msgid ""
+"user subscribe user@xxxxxxxxxx\t\t - register the user user@xxxxxxxxxx on "
+"the list\n"
+msgstr ""
+"user subscribe user@xxxxxxxxxx\t\t - enregistrer user@xxxxxxxxxx sur la "
+"liste\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:65
+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.pm:337
+#, 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.pm:373
+msgid "was sent on the list.\n"
+msgstr "a été envoyé sur la liste\n"
+
+#: vhffs-intl/template_strings.pl:23
+msgid "website(s)"
+msgstr ""
+
+#: vhffs-panel/group/create.pl:86
+msgid ""
+"with only lowercase alphanumerical letters, no space, from 3 to 12 characters"
+msgstr ""
+"avec seulement des lettres minuscules, alphanumériques, pas d'espace, "
+"longeur totale de 3 à 12 charactères"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:407
+#, perl-format
+msgid ""
+"with the following subject :\n"
+" \"moderate %s\" \n"
+msgstr ""
+"avec le sujet :\n"
+" \"moderate %s\" \n"
+
+#~ msgid "Box sucessfully added"
+#~ msgstr "La boite a été ajouté"
+
+#~ msgid "CGI ERROR"
+#~ msgstr "Erreur CGI"
+
+#~ msgid "CGI ERROR !"
+#~ msgstr "Erreur CGI !"
+
+#~ msgid "CGI ERROR!"
+#~ msgstr "Erreur CGI!"
+
+#~ msgid "CGI Error"
+#~ msgstr "Erreur CGI"
+
+#~ msgid "CGI Error!"
+#~ msgstr "Erreur CGI !"
+
+#~ msgid "CGI error"
+#~ msgstr "Erreur CGI"
+
+#~ msgid "CGI problem"
+#~ msgstr "Problème CGI"
+
+#~ msgid "CVS repository for this group"
+#~ msgstr "Dépôts CVS pour ce groupe"
+
+#~ msgid "GIT repository for this group"
+#~ msgstr "Dépôts GIT pour ce groupe"
+
+#~ msgid "Go on login page"
+#~ msgstr "Aller à la page d'authentification"
+
+#~ msgid "Group public area"
+#~ msgstr "Zone publique des groupes"
+
+#~ msgid "Last groups"
+#~ msgstr "Derniers groupes"
+
+#~ msgid "List(s) for this group"
+#~ msgstr "Liste(s) de diffusion de ce groupe"
+
+#~ msgid "No cvs repository available for this group"
+#~ msgstr "Aucun dépôt CVS pour ce groupe"
+
+#~ msgid "No git repository available for this group"
+#~ msgstr "Aucun dépôt Git disponible pour ce groupe"
+
+#~ msgid "No group for this user"
+#~ msgstr "Aucun groupe pour cet utilisateur"
+
+#~ msgid "No list available for this group"
+#~ msgstr "Aucune liste de diffusion n'existe pour ce groupe"
+
+#~ msgid "No subversion repository available for this group"
+#~ msgstr "Aucun dépôt Subversion disponible pour ce groupe"
+
+#~ msgid "No such user"
+#~ msgstr "Ne trouve pas l'utilisateur"
+
+#~ msgid "No webarea"
+#~ msgstr "Aucune zone web"
+
+#~ msgid "No website available for this group"
+#~ msgstr "Aucun site web pour ce groupe"
+
+#~ msgid "Please wait modification, creation or deletion"
+#~ msgstr "Veuillez attendre la modification, création ou suppression"
+
+#~ msgid "SVN repository for this group"
+#~ msgstr "Dépôt Subversion pour ce groupe"
+
+#~ msgid "Search for a website"
+#~ msgstr "Rechercher un site web"
+
+#~ msgid "Search:"
+#~ msgstr "Recherche :"
+
+#~ msgid "Show me all groups on %s"
+#~ msgstr "Voir tous les groupes/projets enregistrés sur %s"
+
+#~ msgid "Show me all websites"
+#~ msgstr "Voir tous les sites web"
+
+#~ msgid "Show me last groups on %s"
+#~ msgstr "Voir les derniers groupes sur %s"
+
+#~ msgid "Show me last users on %s"
+#~ msgstr "Voir les derniers utilisateurs sur %s"
+
+#~ msgid "Show me this group according to this groupname"
+#~ msgstr "Voir ce groupe"
+
+#~ msgid "Show me this user according to this username"
+#~ msgstr "Voir cet utilisateur"
+
+#~ msgid "This CVS will be delete"
+#~ msgstr "Ce dépôt CVS sera détruit"
+
+#~ msgid ""
+#~ "This object is not functionnal yet. Please wait creation, moderation or "
+#~ "modification."
+#~ msgstr ""
+#~ "Ce service n'est pas/plus actif. Veuillez attendre la création, "
+#~ "modification ou modération"
+
+#~ msgid "User public area"
+#~ msgstr "Zone publique des utilisateurs"
+
+#~ msgid "User sucessfuly updated"
+#~ msgstr "Utilisateur mis à jour avec succès"
+
+#~ msgid "View archives"
+#~ msgstr "Aller aux archives de cette liste"
+
+#~ msgid "Web area successfuly modified"
+#~ msgstr "Site web modifié avec succès"
+
+#~ msgid "Website for this group"
+#~ msgstr "Site web pour ce groupe"
+
+#~ msgid "Websites area"
+#~ msgstr "Zone des sites web"
+
+#~ msgid "You are not allowed to change options (ACL rights)"
+#~ msgstr ""
+#~ "Vous n'êtes pas autorisé à changer les options (droits ACL insuffisants)"
+
+#~ msgid "You are not allowed to delete members (ACL rights)"
+#~ msgstr ""
+#~ "Vous n'êtes pas autorisé à supprimer des membres (droits ACL insuffisants)"
+
+#~ msgid "You are not allowed to modify this GIT repository (ACL rights)"
+#~ msgstr ""
+#~ "Vous n'êtes pas autorisé à modifier ce dépot GIT (droits ACL insuffisants)"
+
+#~ msgid "You are not allowed to modify this SVN Object (ACL Rights)"
+#~ msgstr ""
+#~ "Vous n'êtes pas autorisé à modifier ce dépot SVN (droits ACL insuffisants)"
+
+#~ msgid "You are not allowed to modify this object (ACL rights)"
+#~ msgstr ""
+#~ "Vous n'êtes pas autorisé à modifier cet objet (droits ACL insuffisants)"
Added: trunk/vhffs-intl/insert-header.sin
===================================================================
--- trunk/vhffs-intl/insert-header.sin (rev 0)
+++ trunk/vhffs-intl/insert-header.sin 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,23 @@
+# Sed script that inserts the file called HEADER before the header entry.
+#
+# At each occurrence of a line starting with "msgid ", we execute the following
+# commands. At the first occurrence, insert the file. At the following
+# occurrences, do nothing. The distinction between the first and the following
+# occurrences is achieved by looking at the hold space.
+/^msgid /{
+x
+# Test if the hold space is empty.
+s/m/m/
+ta
+# Yes it was empty. First occurrence. Read the file.
+r HEADER
+# Output the file's contents by reading the next line. But don't lose the
+# current line while doing this.
+g
+N
+bb
+:a
+# The hold space was nonempty. Following occurrences. Do nothing.
+x
+:b
+}
Added: trunk/vhffs-intl/quot.sed
===================================================================
--- trunk/vhffs-intl/quot.sed (rev 0)
+++ trunk/vhffs-intl/quot.sed 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,6 @@
+s/"\([^"]*\)"/“\1”/g
+s/`\([^`']*\)'/‘\1’/g
+s/ '\([^`']*\)' / ‘\1’ /g
+s/ '\([^`']*\)'$/ ‘\1’/g
+s/^'\([^`']*\)' /‘\1’ /g
+s/“”/""/g
Added: trunk/vhffs-intl/remove-potcdate.sin
===================================================================
--- trunk/vhffs-intl/remove-potcdate.sin (rev 0)
+++ trunk/vhffs-intl/remove-potcdate.sin 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,19 @@
+# Sed script that remove the POT-Creation-Date line in the header entry
+# from a POT file.
+#
+# The distinction between the first and the following occurrences of the
+# pattern is achieved by looking at the hold space.
+/^"POT-Creation-Date: .*"$/{
+x
+# Test if the hold space is empty.
+s/P/P/
+ta
+# Yes it was empty. First occurrence. Remove the line.
+g
+d
+bb
+:a
+# The hold space was nonempty. Following occurrences. Do nothing.
+x
+:b
+}
Deleted: trunk/vhffs-intl/update_po.sh
===================================================================
--- trunk/vhffs-intl/update_po.sh 2008-01-09 20:46:27 UTC (rev 1118)
+++ trunk/vhffs-intl/update_po.sh 2008-01-10 06:39:28 UTC (rev 1119)
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-# Make a backup in case something goes wrong
-msgmerge --no-fuzzy-matching --backup=simple --suffix=.old -U src/fr.po src/vhffs.pot
-
-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
-
-msgmerge --no-fuzzy-matching --backup=simple --suffix=.old -U src/de.po src/vhffs.pot
Added: trunk/vhffs-intl/vhffs.pot
===================================================================
--- trunk/vhffs-intl/vhffs.pot (rev 0)
+++ trunk/vhffs-intl/vhffs.pot 2008-01-10 06:39:28 UTC (rev 1119)
@@ -0,0 +1,4698 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR VHFFS Project and its contributors.
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: vhffs-dev@xxxxxxxxx\n"
+"POT-Creation-Date: 2008-01-09 21:38+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@xxxxxx>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: vhffs-api/src/Vhffs/Listengine.pm:68
+msgid "\t\t\t\t RIGHT can be subscriber or admin\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:148 vhffs-api/src/Vhffs/Listengine.pm:164
+#: vhffs-api/src/Vhffs/Listengine.pm:167 vhffs-api/src/Vhffs/Listengine.pm:442
+msgid "\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:425
+#, perl-format
+msgid ""
+" %s-request@%s\n"
+"with the following subject :\n"
+" \"subscription accept %s %s\" \n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:428
+#, perl-format
+msgid ""
+" %s-request@%s\n"
+"with the following subject :\n"
+" \"subscription refuse %s %s\" \n"
+msgstr ""
+
+#: vhffs-public/groupsearch.pl:79
+#, perl-format
+msgid "%d group(s) found"
+msgstr ""
+
+#: vhffs-public/usersearch.pl:80
+#, perl-format
+msgid "%d user(s) found"
+msgstr ""
+
+#: vhffs-public/websitesearch.pl:78
+#, perl-format
+msgid "%d websites(s) found"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:296
+#, perl-format
+msgid "%s has been added"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:294
+#, perl-format
+msgid "%s is already a member of this list"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:195
+#, perl-format
+msgid "%s is not a correct mail address"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:292
+#, perl-format
+msgid "%s is not a valid mail"
+msgstr ""
+
+#: vhffs-public/index.pl:65
+#, perl-format
+msgid "%s public area"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:710
+#, perl-format
+msgid "%s's Panel"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:150 vhffs-api/src/Vhffs/Listengine.pm:169
+#: vhffs-api/src/Vhffs/Listengine.pm:444
+#, perl-format
+msgid "%s-request@%s with subject \"help\"\n"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:312
+#, perl-format
+msgid "@ represents the origin (%s)"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:299
+msgid ""
+"A CNAME, A or AAAA record with the same name already exists for this domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:113
+msgid "A Record deleted"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:108
+msgid "A Record updated"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:404
+#, perl-format
+msgid ""
+"A mail to moderate is on the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:421
+#, perl-format
+msgid ""
+"A new person wants to subscribe to the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:136
+msgid "A record added"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:125
+msgid "AAAA Record deleted"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:120
+msgid "AAAA Record updated"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:131
+msgid "AAAA record added"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:99
+msgid "ACL Administration"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:93
+msgid "ACL added"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:95
+msgid "ACL deleted"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:94
+msgid "ACL updated"
+msgstr ""
+
+#: vhffs-panel/admin/moderation.pl:89 vhffs-panel/admin/moderation.pl:116
+msgid "Accept"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:185 vhffs-api/src/Vhffs/Panel/Main.pm:206
+msgid "Access denied"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:68
+msgid "Access to panel"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:111
+msgid "Accounts"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:411
+#, perl-format
+msgid "Activate %s@%s email"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:120 vhffs-intl/extra_strings.pl:25
+#: vhffs-api/src/Vhffs/Panel/Object.pm:125
+msgid "Activated"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:150 vhffs-panel/group/prefs.pl:240
+msgid "Add"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:265
+msgid "Add !"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:278
+msgid "Add a CNAME field to your domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:270
+msgid "Add a MX field to your domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:286
+msgid "Add a NS field to your domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:292
+msgid "Add a SRV record to your domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:304
+msgid "Add a TXT record"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:122 vhffs-panel/mail/prefs.pl:132
+msgid "Add a forward on this domain"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:131
+msgid "Add a popbox to this domain"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:239
+msgid "Add a user in this group"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:238
+msgid "Add an A record"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:239
+msgid "Add an AAAA record"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:113
+msgid "Add an account"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:148
+msgid "Add members"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:150
+msgid "Add them !"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:230 vhffs-panel/user/prefs.pl:307
+msgid "Address"
+msgstr ""
+
+#: vhffs-panel/web/create.pl:96
+msgid "Address (ServerName directive)"
+msgstr ""
+
+#: vhffs-panel/web/prefs.pl:95
+msgid "Address (Servername)"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:138
+msgid "Address is not correct !"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:149
+msgid "Addresses (one per line)"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:56
+msgid "Admin"
+msgstr ""
+
+#: vhffs-panel/cvs/prefs.pl:107
+msgid "Admin CVS Repository"
+msgstr ""
+
+#: vhffs-panel/repository/prefs.pl:81
+msgid "Admin Download repository"
+msgstr ""
+
+#: vhffs-panel/git/prefs.pl:96
+msgid "Admin Git Repository"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:104 vhffs-panel/dns/prefs.pl:245
+#: vhffs-panel/git/prefs.pl:112 vhffs-panel/web/prefs.pl:103
+#: vhffs-panel/mail/prefs.pl:143
+msgid "Admin Rights on this object (ACL)"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:87
+msgid "Admin Subversion Repository"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:426
+msgid "Admin account"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Object.pm:96
+msgid "Admin part"
+msgstr ""
+
+#: vhffs-panel/admin/index.pl:55 vhffs-api/src/Vhffs/Panel/Main.pm:427
+#: vhffs-api/src/Vhffs/Panel/Main.pm:430
+msgid "Administration"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:99
+#, perl-format
+msgid "Administration for list %s"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:63
+msgid "Administrator"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:116
+msgid "Admins only"
+msgstr ""
+
+#: vhffs-panel/alert_submit.pl:64
+msgid "Alert on Vhffs platform"
+msgstr ""
+
+#: vhffs-public/allwebsites.pl:74 vhffs-public/allgroups.pl:74
+msgid "All"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:232
+msgid "All A TYPE for your domain name"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:233
+msgid "All AAAA TYPE for your domain name"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:277
+msgid "All CNAME TYPE for your domain name"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:235
+msgid "All CNAME for your domain name"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:10
+msgid "All Groups"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:234 vhffs-panel/dns/prefs.pl:269
+msgid "All MX TYPE for your domain name"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:285
+msgid "All NS TYPE for your domain name"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:291
+msgid "All SRV records for your domain name"
+msgstr ""
+
+#: vhffs-panel/admin/svn/list.pl:67
+msgid "All Subversion repositories lists"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:305
+msgid "All TXT records for your domain name"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:16
+msgid "All Websites"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:48
+msgid "All commands can be sent as mail subject.\n"
+msgstr ""
+
+#: vhffs-panel/admin/git/list.pl:69
+msgid "All git repositories lists"
+msgstr ""
+
+#: vhffs-public/allgroups.pl:72
+#, perl-format
+msgid "All groups on %s"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_list.pl:77
+msgid "All mailings sent to hosted"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:50
+msgid ""
+"All mails with commands must be sent on YOURLIST-request@xxxxxxxxxx list.\n"
+msgstr ""
+
+#: vhffs-panel/admin/object/list.pl:85
+msgid "All objects List"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:257
+msgid "All users in this group"
+msgstr ""
+
+#: vhffs-public/allwebsites.pl:72
+#, perl-format
+msgid "All websites on %s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:251
+msgid "An MX record with the same name already exists for this domain"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:274
+msgid "An NS record with the same name already exists for this domain"
+msgstr ""
+
+#: vhffs-panel/cvs/prefs.pl:87 vhffs-panel/cvs/prefs.pl:100
+msgid "An error occured during CVS repository update"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:493
+#, perl-format
+msgid ""
+"An error occured during your approval of subscription of:\n"
+" %s\n"
+"into the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:194
+#, perl-format
+msgid ""
+"An error occured during your subscription to the following list:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:217
+msgid "An error occured while adding the box"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:219
+msgid "An error occured while adding the box (anti-spam adding)"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:221
+msgid "An error occured while adding the box (anti-virus adding)"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:266
+msgid "An error occured while adding the forwarding"
+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/git/create.pl:88
+msgid "An error occured while creating the git repository"
+msgstr ""
+
+#: vhffs-panel/mail/create.pl:83
+msgid "An error occured while creating the mail area"
+msgstr ""
+
+#: vhffs-panel/repository/create.pl:84
+msgid ""
+"An error occured while creating the object. Check that this group doesn't "
+"already have a download repository"
+msgstr ""
+
+#: vhffs-panel/dns/create.pl:60
+msgid ""
+"An error occured while creating the object. The domain is not correct or "
+"aleady exists in Vhffs database"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:92 vhffs-panel/cvs/create.pl:92
+msgid "An error occured while creating the object.It probably already exists"
+msgstr ""
+
+#: vhffs-panel/svn/create.pl:88
+msgid "An error occured while creating the svn repository"
+msgstr ""
+
+#: vhffs-panel/cvs/delete.pl:93
+msgid "An error occured while deleting the CVS repository"
+msgstr ""
+
+#: vhffs-panel/repository/delete.pl:95
+msgid "An error occured while deleting the Download repository"
+msgstr ""
+
+#: vhffs-panel/svn/delete.pl:94
+msgid "An error occured while deleting the Subversion repository"
+msgstr ""
+
+#: vhffs-panel/git/delete.pl:99
+msgid "An error occured while deleting the git repository"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_delete.pl:96
+msgid "An error occured while deleting this mailing"
+msgstr ""
+
+#: vhffs-panel/object/quickdelete.pl:96
+msgid "An error occured while deleting this object."
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Robots/Mysql.pm:109
+msgid "An error occured while granting privileges to an admin user"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:275
+msgid "An error occured while the forwarding"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:285
+#, perl-format
+msgid ""
+"An error occured while updating language for the following address: %s.\n"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:197
+msgid "An error occured while updating the mail domain"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit_submit.pl:91
+msgid "An error occured while updating the object"
+msgstr ""
+
+#: vhffs-panel/group/delete.pl:83 vhffs-panel/group/prefs.pl:95
+msgid "An error occured while updating the project"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:188
+msgid "An error occured while updating the user account"
+msgstr ""
+
+#: vhffs-panel/object/resubmit.pl:103
+msgid "An error occured while updating this object."
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:98
+msgid "Are you SURE you want DELETE this subversion repository ?"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:137
+msgid "Are you SURE you want DELETE this Mail Area ?"
+msgstr ""
+
+#: vhffs-panel/mysql/prefs.pl:112
+msgid "Are you SURE you want DELETE this MySQL database ?"
+msgstr ""
+
+#: vhffs-panel/pgsql/prefs.pl:100
+msgid "Are you SURE you want DELETE this PostgreSQL database ?"
+msgstr ""
+
+#: vhffs-panel/web/prefs.pl:110
+msgid "Are you SURE you want DELETE this Web Area ?"
+msgstr ""
+
+#: vhffs-panel/cvs/prefs.pl:117
+msgid "Are you SURE you want DELETE this cvs repository ?"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:253
+msgid "Are you SURE you want DELETE this domain ?"
+msgstr ""
+
+#: vhffs-panel/repository/prefs.pl:90
+msgid "Are you SURE you want DELETE this download repository ?"
+msgstr ""
+
+#: vhffs-panel/git/prefs.pl:106
+msgid "Are you SURE you want DELETE this git repository?"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:180
+msgid "Are you SURE you want DELETE this mailing list ?"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:214
+msgid "Are you SURE you want DELETE this project ?"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:327
+msgid "Are you SURE you want DELETE this user?"
+msgstr ""
+
+#: vhffs-panel/admin/object/delete_avatar.pl:100
+msgid "Avatar deleted"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:195
+#: vhffs-api/src/Vhffs/Panel/Object.pm:199
+msgid "Avatar management"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_list.pl:96
+#: vhffs-panel/admin/broadcast_view.pl:97
+msgid "Awaiting sending"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:191 vhffs-panel/subscribe.pl:232
+msgid "Back to Login"
+msgstr ""
+
+#: vhffs-panel/lost.pl:59 vhffs-intl/template_strings.pl:45
+msgid "Back to login page"
+msgstr ""
+
+#: vhffs-panel/pgsql/prefs.pl:126 vhffs-panel/mysql/prefs.pl:137
+msgid "Bad password, should be at least 3 chars"
+msgstr ""
+
+#: vhffs-panel/dns/create.pl:73
+msgid ""
+"Be careful ! You must give the reason why you want to host this domain on "
+"our servers."
+msgstr ""
+
+#: vhffs-panel/web/create.pl:97
+msgid ""
+"Be careful, if you want create www.domain.tld, you should create a webspace "
+"with domain.tld as servername. VHFFS redirect all request from www.domain."
+"tld to domain.tld"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_view.pl:89
+msgid "Body"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:272
+#, perl-format
+msgid "Box %s deleted"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:239
+msgid "Box password updated"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:216
+msgid "Box successfully added"
+msgstr ""
+
+#: vhffs-panel/lost.pl:56
+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-public/user.pl:60 vhffs-public/user.pl:64 vhffs-public/group.pl:72
+#: vhffs-panel/mailinglist/delete.pl:79 vhffs-panel/mailinglist/prefs.pl:210
+#: vhffs-panel/mailinglist/prefs.pl:235 vhffs-panel/mailinglist/prefs.pl:256
+#: vhffs-panel/mailinglist/prefs.pl:276 vhffs-panel/mailinglist/create.pl:81
+#: vhffs-panel/svn/delete.pl:73 vhffs-panel/svn/prefs.pl:66
+#: vhffs-panel/svn/prefs.pl:139 vhffs-panel/svn/create.pl:79
+#: vhffs-panel/history.pl:84 vhffs-panel/user/prefs.pl:114
+#: vhffs-panel/user/prefs.pl:469 vhffs-panel/dns/delete.pl:79
+#: vhffs-panel/dns/prefs.pl:76 vhffs-panel/dns/create.pl:49
+#: vhffs-panel/acl/view.pl:85 vhffs-panel/pgsql/delete.pl:81
+#: vhffs-panel/pgsql/prefs.pl:121 vhffs-panel/pgsql/create.pl:82
+#: vhffs-panel/group/prefs.pl:84 vhffs-panel/group/prefs.pl:105
+#: vhffs-panel/group/prefs.pl:123 vhffs-panel/group/prefs.pl:164
+#: vhffs-panel/repository/prefs.pl:68 vhffs-panel/repository/create.pl:77
+#: vhffs-panel/admin/moderation_submit.pl:77
+#: vhffs-panel/admin/broadcast_submit.pl:84
+#: vhffs-panel/admin/broadcast_delete.pl:84
+#: vhffs-panel/admin/object/edit_submit.pl:78
+#: vhffs-panel/admin/object/delete_avatar.pl:82
+#: vhffs-panel/admin/object/edit.pl:80 vhffs-panel/admin/broadcast_view.pl:79
+#: vhffs-panel/git/delete.pl:74 vhffs-panel/git/prefs.pl:70
+#: vhffs-panel/git/create.pl:79 vhffs-panel/object/quickdelete.pl:63
+#: vhffs-panel/object/resubmit.pl:63 vhffs-panel/object/resubmit.pl:87
+#: vhffs-panel/web/prefs.pl:130 vhffs-panel/web/create.pl:77
+#: vhffs-panel/mysql/delete.pl:75 vhffs-panel/mysql/prefs.pl:70
+#: vhffs-panel/mysql/prefs.pl:132 vhffs-panel/mysql/create.pl:82
+#: vhffs-panel/cvs/delete.pl:74 vhffs-panel/cvs/prefs.pl:67
+#: vhffs-panel/cvs/prefs.pl:80 vhffs-panel/cvs/create.pl:80
+#: vhffs-panel/mail/delete.pl:75 vhffs-panel/mail/prefs.pl:185
+#: vhffs-panel/mail/prefs.pl:212 vhffs-panel/mail/prefs.pl:233
+#: vhffs-panel/mail/prefs.pl:268 vhffs-panel/mail/prefs.pl:284
+#: vhffs-panel/mail/prefs.pl:300 vhffs-panel/mail/prefs.pl:315
+#: vhffs-panel/mail/create.pl:74
+#, perl-format
+msgid "CGI Error !"
+msgstr ""
+
+#: vhffs-panel/repository/delete.pl:74
+#, perl-format
+msgid "CGI Error ! %s"
+msgstr ""
+
+#: vhffs-panel/git/prefs.pl:169
+msgid "CGI error !"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:175
+msgid "CNAME Record added"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:170
+msgid "CNAME Record deleted"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:166
+msgid "CNAME Record updated"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:67 vhffs-api/src/Vhffs/Panel/Menu.pm:116
+msgid "CVS"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:188
+msgid "CVS Admin"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:28
+msgid "CVS Repositories for this group"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:41
+msgid "CVS Repository"
+msgstr ""
+
+#: vhffs-panel/admin/cvs/list.pl:76
+msgid "CVS Root"
+msgstr ""
+
+#: vhffs-panel/cvs/index.pl:60
+#, perl-format
+msgid "CVS repositories for %s"
+msgstr ""
+
+#: vhffs-panel/admin/cvs/index.pl:56
+msgid "CVS repositories' administration"
+msgstr ""
+
+#: vhffs-panel/cvs/prefs.pl:85 vhffs-panel/cvs/prefs.pl:98
+msgid "CVS repository updated"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:120
+msgid "CVS stats"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:113
+msgid "Can destroy this service"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:112
+msgid "Can manage ACL for this service"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:111
+msgid "Can modify this service"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:110
+msgid "Can view this service"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:109
+msgid "Can't access"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:184
+msgid "Cannot apply changes to the user"
+msgstr ""
+
+#: vhffs-panel/admin/moderation_submit.pl:94
+msgid "Cannot apply modifications"
+msgstr ""
+
+#: vhffs-panel/mailinglist/delete.pl:103
+msgid "Cannot commit changes on this object, will NOT be deleted"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:352
+msgid ""
+"Cannot create or fetch session file, please check that /tmp is readable and "
+"writeable"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:174
+msgid "Cannot create user, the username you entered already exists"
+msgstr ""
+
+#: vhffs-panel/admin/object/delete_avatar.pl:96
+msgid "Cannot delete this avatar"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit_submit.pl:82
+#: vhffs-panel/admin/object/delete_avatar.pl:86
+#: vhffs-panel/admin/object/edit.pl:85
+msgid "Cannot fetch object"
+msgstr ""
+
+#: vhffs-panel/object/upavatar.pl:101
+msgid "Cannot find object"
+msgstr ""
+
+#: vhffs-panel/history.pl:89
+msgid "Cannot get information on this object"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:71
+#, perl-format
+msgid "Cannot get informations on object #%d"
+msgstr ""
+
+#: vhffs-panel/mailinglist/delete.pl:83 vhffs-panel/svn/prefs.pl:71
+#: vhffs-panel/user/prefs.pl:73 vhffs-panel/dns/delete.pl:83
+#: vhffs-panel/dns/prefs.pl:81 vhffs-panel/pgsql/prefs.pl:68
+#: vhffs-panel/repository/prefs.pl:71 vhffs-panel/git/prefs.pl:75
+#: vhffs-panel/web/prefs.pl:74 vhffs-panel/mysql/prefs.pl:75
+#: vhffs-panel/cvs/prefs.pl:70
+msgid "Cannot get informations on this object"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:74
+msgid "Cannot get statistics"
+msgstr ""
+
+#: vhffs-panel/cvs/delete.pl:78
+msgid "Cannot retrieve informations about this CVS repository"
+msgstr ""
+
+#: vhffs-panel/repository/delete.pl:78
+msgid "Cannot retrieve informations about this Download repository"
+msgstr ""
+
+#: vhffs-panel/svn/delete.pl:77 vhffs-panel/git/delete.pl:78
+msgid "Cannot retrieve informations about this repository"
+msgstr ""
+
+#: vhffs-panel/alert_submit.pl:72
+msgid "Cannot send message, CGI error..."
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:105
+msgid "Catchall address"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:199
+msgid "Catchall address successfully changed"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:180
+msgid "Catchall isn't enabled on this platform"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:108
+msgid "Catchall mail"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:78
+msgid "Change Forward"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:80
+msgid "Change Password"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:130
+msgid "Change catchall forward"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:57
+msgid "Change rights"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:237
+msgid "Change spam protection status for your account\n"
+msgstr ""
+
+#: vhffs-panel/admin/su.pl:72 vhffs-api/src/Vhffs/Panel/Admin.pm:94
+msgid "Change user-id"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:248
+msgid "Changed anti-virus status for your account\n"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:228 vhffs-panel/user/prefs.pl:306
+msgid "City"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:126
+msgid "City is not correct !"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:109
+msgid "Closed"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:238
+msgid "Code confirmation"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:107
+msgid "Codes do not match"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:310
+msgid "Confirm Password"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:241
+msgid "Confirmation code was wrong.\n"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:240
+msgid "Confirmation code, contact administrator team if you can't read it"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:237
+msgid "Could not change box password"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:252
+#, perl-format
+msgid "Could not update antivirus status for box %s"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:245
+#, perl-format
+msgid "Could not update spam status for box %s"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:229 vhffs-panel/user/prefs.pl:308
+msgid "Country"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:135
+msgid "Country is not correct !"
+msgstr ""
+
+#: vhffs-panel/cvs/create.pl:100
+msgid "Create a CVS Repository"
+msgstr ""
+
+#: vhffs-panel/dns/create.pl:68
+msgid "Create a DNS"
+msgstr ""
+
+#: vhffs-panel/repository/create.pl:91
+msgid "Create a Download Repository"
+msgstr ""
+
+#: vhffs-panel/mysql/create.pl:100
+msgid "Create a MySQL database"
+msgstr ""
+
+#: vhffs-panel/pgsql/create.pl:100
+msgid "Create a PostgreSQL database"
+msgstr ""
+
+#: vhffs-panel/group/create.pl:84
+msgid "Create a Project"
+msgstr ""
+
+#: vhffs-panel/svn/create.pl:95
+msgid "Create a Subversion Repository"
+msgstr ""
+
+#: vhffs-panel/git/create.pl:95
+msgid "Create a git Repository"
+msgstr ""
+
+#: vhffs-panel/mail/create.pl:90
+msgid "Create a mail space"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:100
+msgid "Create a new mailing list"
+msgstr ""
+
+#: vhffs-panel/web/create.pl:95
+msgid "Create a web space"
+msgstr ""
+
+#: vhffs-panel/group/index.pl:63
+msgid "Create new project"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:121 vhffs-intl/extra_strings.pl:24
+#: vhffs-api/src/Vhffs/Panel/Object.pm:126
+msgid "Created"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:119
+#: vhffs-api/src/Vhffs/Panel/Object.pm:124
+msgid "Creating error"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:23
+msgid "Creation error"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:337 vhffs-panel/group/prefs.pl:247
+msgid "Current avatar"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:450
+msgid "Current group:"
+msgstr ""
+
+#: vhffs-panel/admin/pgsql/list.pl:76 vhffs-panel/admin/mysql/list.pl:82
+msgid "DB Name"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:293
+msgid "DNS Admin"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:227
+#, perl-format
+msgid "DNS Administration - %s"
+msgstr ""
+
+#: vhffs-panel/dns/create.pl:74
+msgid "DNS servers:"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:112
+msgid "DNS stats"
+msgstr ""
+
+#: vhffs-panel/admin/dns/index.pl:56
+msgid "DNS' administration"
+msgstr ""
+
+#: vhffs-panel/ajax/help.pl:49 vhffs-api/src/Vhffs/Panel/DNS.pm:162
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:198 vhffs-api/src/Vhffs/Panel/DNS.pm:210
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:228 vhffs-api/src/Vhffs/Panel/DNS.pm:240
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:252 vhffs-api/src/Vhffs/Panel/DNS.pm:264
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:275 vhffs-api/src/Vhffs/Panel/DNS.pm:287
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:300 vhffs-api/src/Vhffs/Panel/DNS.pm:316
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:331 vhffs-api/src/Vhffs/Panel/DNS.pm:343
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:355
+msgid "Database error"
+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/group/history.pl:77 vhffs-panel/admin/broadcast_view.pl:86
+msgid "Date"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:96 vhffs-api/src/Vhffs/Panel/Object.pm:100
+msgid "Date of creation"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:107 vhffs-panel/acl/view.pl:108
+msgid "Default"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:183 vhffs-panel/svn/prefs.pl:101
+#: vhffs-panel/user/prefs.pl:330 vhffs-panel/dns/prefs.pl:256
+#: vhffs-panel/dns/prefs.pl:313 vhffs-panel/dns/prefs.pl:325
+#: vhffs-panel/dns/prefs.pl:338 vhffs-panel/dns/prefs.pl:350
+#: vhffs-panel/dns/prefs.pl:366 vhffs-panel/dns/prefs.pl:377
+#: vhffs-panel/dns/prefs.pl:393 vhffs-panel/pgsql/prefs.pl:103
+#: vhffs-panel/group/prefs.pl:217 vhffs-panel/group/index.pl:65
+#: vhffs-panel/repository/prefs.pl:93 vhffs-panel/git/prefs.pl:109
+#: vhffs-panel/web/prefs.pl:113 vhffs-panel/mysql/prefs.pl:115
+#: vhffs-panel/cvs/prefs.pl:120 vhffs-panel/mail/prefs.pl:140
+#: vhffs-api/src/Vhffs/Panel/Main.pm:810
+msgid "Delete"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:325
+msgid "Delete YOUR user"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:196
+#: vhffs-api/src/Vhffs/Panel/Object.pm:200
+msgid "Delete avatar for this object"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:58
+msgid "Delete from list"
+msgstr ""
+
+#: vhffs-panel/pgsql/prefs.pl:98
+msgid "Delete this PostgreSQL database"
+msgstr ""
+
+#: vhffs-panel/mysql/prefs.pl:110
+msgid "Delete this database"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:251
+msgid "Delete this domain name from the VHFFS platform"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:79
+msgid "Delete this forward"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:178
+msgid "Delete this list"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:135
+msgid "Delete this mail domain"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_list.pl:89
+msgid "Delete this mailing"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:212 vhffs-panel/repository/prefs.pl:88
+#: vhffs-panel/cvs/prefs.pl:115
+msgid "Delete this project"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:96 vhffs-panel/git/prefs.pl:104
+msgid "Delete this repository"
+msgstr ""
+
+#: vhffs-panel/web/prefs.pl:108
+msgid "Delete this web area"
+msgstr ""
+
+#: vhffs-panel/svn/create.pl:102 vhffs-panel/dns/create.pl:79
+#: vhffs-panel/pgsql/create.pl:110 vhffs-panel/group/create.pl:91
+#: vhffs-panel/repository/create.pl:98 vhffs-panel/admin/moderation.pl:88
+#: vhffs-panel/admin/object/edit.pl:98 vhffs-panel/git/create.pl:103
+#: vhffs-panel/object/resubmit.pl:128 vhffs-panel/mysql/create.pl:110
+#: vhffs-panel/cvs/create.pl:108 vhffs-intl/template_strings.pl:26
+#: vhffs-intl/template_strings.pl:39 vhffs-intl/template_strings.pl:42
+#: vhffs-api/src/Vhffs/Panel/Object.pm:102
+msgid "Description"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:13
+msgid "Description contains"
+msgstr ""
+
+#: vhffs-panel/web/prefs.pl:99
+msgid "Description of your webarea"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:280
+msgid "Destination"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:71 vhffs-api/src/Vhffs/Panel/Menu.pm:120
+msgid "Dl repos"
+msgstr ""
+
+#: vhffs-panel/mail/create.pl:91
+msgid "Domain"
+msgstr ""
+
+#: vhffs-panel/dns/create.pl:70 vhffs-panel/admin/dns/list.pl:75
+#: vhffs-panel/admin/mail/list.pl:75 vhffs-intl/extra_strings.pl:43
+msgid "Domain Name"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:70 vhffs-api/src/Vhffs/Panel/Menu.pm:119
+msgid "Domain names"
+msgstr ""
+
+#: vhffs-panel/dns/index.pl:60
+#, perl-format
+msgid "Domain names for %s"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:110 vhffs-panel/git/prefs.pl:121
+#, perl-format
+msgid ""
+"Don't forget to subscribe %s to your mailing list if you are filtering posts"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:38
+msgid "Download Repository"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:311
+msgid "Download repositories Admin"
+msgstr ""
+
+#: vhffs-panel/repository/index.pl:60
+#, perl-format
+msgid "Download repositories for %s"
+msgstr ""
+
+#: vhffs-panel/admin/repository/index.pl:56
+msgid "Download repositories' administration"
+msgstr ""
+
+#: vhffs-panel/admin/web/list.pl:80
+msgid "Edit"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:91
+msgid "Edit Object"
+msgstr ""
+
+#: vhffs-panel/admin/object/list.pl:98
+msgid "Edit this object"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:183
+msgid "Email address changed"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:129
+msgid "Email is not correct !"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:81
+msgid "Enable anti-spam"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:84
+msgid "Enable anti-virus"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:107
+msgid "Enter a mail address to catch all email for this domain"
+msgstr ""
+
+#: vhffs-panel/mailinglist/index.pl:53 vhffs-panel/svn/index.pl:53
+#: vhffs-panel/dns/index.pl:53 vhffs-panel/pgsql/index.pl:53
+#: vhffs-panel/repository/index.pl:53 vhffs-panel/git/index.pl:54
+#: vhffs-panel/web/index.pl:53 vhffs-panel/mysql/index.pl:53
+#: vhffs-panel/cvs/index.pl:53 vhffs-panel/mail/index.pl:53
+msgid "Error"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_submit.pl:96
+msgid "Error !"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:212
+msgid ""
+"Error ! You MUST provide a password in your account when you create your "
+"popable account"
+msgstr ""
+
+#: vhffs-panel/group/create.pl:74
+msgid "Error creating group (maybe a group with the same name already exists)"
+msgstr ""
+
+#: vhffs-panel/web/create.pl:86
+msgid "Error creating webarea."
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:239
+msgid "Error for spam protection\n"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:250
+msgid "Error for virus protection\n"
+msgstr ""
+
+#: vhffs-panel/object/upavatar.pl:130
+msgid "Error when uploading avatar for this object"
+msgstr ""
+
+#: vhffs-panel/dns/delete.pl:96
+msgid "Error while switching state. DNS will NOT be deleted"
+msgstr ""
+
+#: vhffs-panel/group/history.pl:65 vhffs-panel/group/prefs.pl:67
+msgid "Error. This group doesn't exists"
+msgstr ""
+
+#: vhffs-panel/group/history.pl:80
+msgid "Event"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:360
+msgid "Expired session ! Please login again"
+msgstr ""
+
+#: vhffs-panel/object/upavatar.pl:114
+msgid "Filetype not supported, only png is supported"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:51
+msgid "Fill with project's members emails"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:225 vhffs-panel/user/prefs.pl:303
+#: vhffs-intl/template_strings.pl:5 vhffs-intl/template_strings.pl:35
+msgid "Firstname"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:120
+msgid "Firstname is not correct !"
+msgstr ""
+
+#: vhffs-panel/git/prefs.pl:115
+msgid "Fix permissions in this repository"
+msgstr ""
+
+#: vhffs-panel/git/prefs.pl:117
+msgid "Fix them !"
+msgstr ""
+
+#: vhffs-panel/git/prefs.pl:116
+msgid ""
+"Fixing permissions on a repository solve permission access on the "
+"repository. Can be helpful if you encounter problems"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:319
+#, perl-format
+msgid "Forward %s deleted"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:304
+#, perl-format
+msgid "Forward %s successfully updated"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:268 vhffs-panel/group/prefs.pl:191
+#: vhffs-panel/mail/prefs.pl:288
+msgid "Forward added"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:188
+msgid "Forward deleted"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:414
+#, perl-format
+msgid "Forward emails from %s@%s to %s"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:125
+msgid "Forward mail"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:277
+msgid "Forward updated"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:120
+msgid "Forwards"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:560
+msgid "Full history"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:69 vhffs-api/src/Vhffs/Panel/Menu.pm:118
+msgid "GIT"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:30
+msgid "GIT Repositories for this group"
+msgstr ""
+
+#: vhffs-panel/git/index.pl:61
+#, perl-format
+msgid "GIT repositories for %s"
+msgstr ""
+
+#: vhffs-panel/admin/git/index.pl:57
+msgid "GIT repositories' administration"
+msgstr ""
+
+#: vhffs-panel/admin/git/list.pl:72
+msgid "GIT root"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:133
+msgid "GIT stats"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:559 vhffs-api/src/Vhffs/Panel/Admin.pm:79
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:101
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:110
+msgid "General"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:76 vhffs-api/src/Vhffs/Panel/Admin.pm:93
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:91
+msgid "Get Statistics"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:206
+msgid "Git Admin"
+msgstr ""
+
+#: vhffs-panel/lost.pl:58
+msgid "Give me a new password"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:808
+msgid "Go to administration"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:85
+msgid "Go to public area"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:302
+#, perl-format
+msgid ""
+"Greetings,\n"
+"\n"
+"You've been added to the list %s on platform %s.\n"
+"\n"
+"You may get some help on listengine by sending an email to %s-request@%s "
+"with subject help.\n"
+"\n"
+"Cheers."
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/list.pl:80 vhffs-panel/admin/svn/list.pl:71
+#: vhffs-panel/admin/dns/list.pl:76 vhffs-panel/admin/moderation.pl:87
+#: vhffs-panel/admin/pgsql/list.pl:77 vhffs-panel/admin/repository/list.pl:76
+#: vhffs-panel/admin/git/list.pl:73 vhffs-panel/admin/web/list.pl:71
+#: vhffs-panel/admin/mysql/list.pl:83 vhffs-panel/admin/cvs/list.pl:77
+#: vhffs-panel/admin/mail/list.pl:76 vhffs-intl/extra_strings.pl:36
+msgid "Group"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:546
+#, perl-format
+msgid "Group %s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:135
+msgid "Group Admin"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:66
+msgid "Group Quota"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:543
+msgid "Group error"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:87
+msgid "Group or user not found"
+msgstr ""
+
+#: vhffs-panel/cvs/create.pl:104
+msgid "Group owning this CVS"
+msgstr ""
+
+#: vhffs-panel/dns/create.pl:75
+msgid "Group owning this DNS"
+msgstr ""
+
+#: vhffs-panel/svn/create.pl:98
+msgid "Group owning this Subversion repository"
+msgstr ""
+
+#: vhffs-panel/pgsql/create.pl:103 vhffs-panel/mysql/create.pl:103
+msgid "Group owning this database"
+msgstr ""
+
+#: vhffs-panel/git/create.pl:98
+msgid "Group owning this git repository"
+msgstr ""
+
+#: vhffs-panel/mail/create.pl:93
+msgid "Group owning this mail domain"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:108
+msgid "Group owning this mailing list"
+msgstr ""
+
+#: vhffs-panel/repository/create.pl:93
+msgid "Group owning this repository"
+msgstr ""
+
+#: vhffs-panel/web/create.pl:99
+msgid "Group owning this web space"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:97
+msgid "Group updated"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:293
+msgid "Group updated, please wait while quota is updated on filesystem"
+msgstr ""
+
+#: vhffs-panel/admin/group/list.pl:80 vhffs-intl/template_strings.pl:12
+#: vhffs-intl/template_strings.pl:25 vhffs-intl/template_strings.pl:38
+#: vhffs-intl/template_strings.pl:40
+msgid "Groupname"
+msgstr ""
+
+#: vhffs-panel/group/create.pl:66
+msgid ""
+"Groupname must contain between 3 and 12 characters, only letters or numbers "
+"in lower case"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:43 vhffs-api/src/Vhffs/Panel/Menu.pm:112
+msgid "Groups"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:99
+msgid "Groups stats"
+msgstr ""
+
+#: vhffs-panel/admin/group/index.pl:56
+msgid "Groups' administration"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:8
+msgid "Groups/Projects"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:181
+#, 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/Object.pm:499
+#, perl-format
+msgid ""
+"Hello %s %s,\n"
+"\n"
+"Your %s (%s) on %s has been deleted.\n"
+"\n"
+"This is because it have been refused a long time ago and you didn't\n"
+"submit an update since.\n"
+"\n"
+"For reminder, the reason of refusal was:\n"
+"%s\n"
+"\n"
+"Don't be upset, submit it again if you forgot to update it in time.\n"
+"If you need further information, just reply to this email !\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/User.pm:322
+#, perl-format
+msgid ""
+"Hello %s %s,\n"
+"\n"
+"Your account (%s) on %s has been deleted.\n"
+"\n"
+"This is because it was left unused for a long time\n"
+"\n"
+"Don't be upset, create it again and reply to this email to tell us\n"
+"why you really need to keep your account.\n"
+"If you need further information, just reply to this email !\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Object.pm:404
+#, perl-format
+msgid ""
+"Hello %s %s,\n"
+"\n"
+"Your request for a %s (%s) on %s was accepted.\n"
+"Please wait while we are creating your object.\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Object.pm:453
+#, perl-format
+msgid ""
+"Hello %s %s,\n"
+"\n"
+"Your request for a %s (%s) on %s was refused.\n"
+"\n"
+"The reason of refusal given by moderators is:\n"
+"%s\n"
+"\n"
+"You can change the description and submit it again for moderation on the\n"
+"panel. You can delete this object on the panel if you have made\n"
+"a mistake. Don't be upset, if you don't understand why your request has\n"
+"been refused, just reply to this email !\n"
+"\n"
+"Cheers,\n"
+"The moderator team\n"
+"\n"
+"---------\n"
+"%s\n"
+"%s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:502
+#, perl-format
+msgid "Hello %s, welcome in VHFFS !"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:46
+msgid "Hello and welcome on listengine help\n"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:417 vhffs-panel/group/prefs.pl:233
+#: vhffs-api/src/Vhffs/Panel/Main.pm:437 vhffs-api/src/Vhffs/Panel/Main.pm:564
+#: vhffs-api/src/Vhffs/Panel/Main.pm:663 vhffs-api/src/Vhffs/Panel/Main.pm:818
+msgid "Help"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:52
+msgid "Here are the basic listengine commands:\n"
+msgstr ""
+
+#: vhffs-panel/alert.pl:57
+msgid "Here, you can report a bug to the admin team"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:422
+#, perl-format
+msgid ""
+"His email address is:\n"
+" %s\n"
+msgstr ""
+
+#: vhffs-panel/history.pl:98 vhffs-panel/admin/object/list.pl:92
+#: vhffs-panel/admin/object/list.pl:99 vhffs-api/src/Vhffs/Panel/Main.pm:811
+msgid "History"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:198
+#: vhffs-api/src/Vhffs/Panel/Object.pm:203
+msgid "History of this object"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:434
+msgid "Home page"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:46
+msgid "Homepage of public area"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:295 vhffs-panel/dns/prefs.pl:380
+#: vhffs-panel/dns/prefs.pl:396
+msgid "Host"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:287
+msgid "Host of your name server"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:165
+msgid "However this list require approval for new subscribers.\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:120
+#, perl-format
+msgid "However you are (%s) already subscribed to this list.\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:69
+msgid "I've lost my password"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:263
+msgid "IP"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:505
+msgid ""
+"If you are new to VHFFS, you should start to read quickly the whole help "
+"available by clicking on the help button in the upper right of your screen"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:88
+msgid ""
+"If you don't asked to be subscribed to this mailing list,\n"
+"just forget this email\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:106
+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:203
+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-api/src/Vhffs/Panel/DNS.pm:197 vhffs-api/src/Vhffs/Panel/DNS.pm:209
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:239
+msgid "Invalid IP address"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:227
+msgid "Invalid IP v6 address"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:297
+msgid "Invalid alias"
+msgstr ""
+
+#: vhffs-panel/pgsql/create.pl:86 vhffs-panel/mysql/create.pl:86
+msgid ""
+"Invalid database name, it must contain only numbers, lowercase letters and "
+"underscore (the latter isn't allowed in first or last position) and be "
+"between 3 and 32 characters."
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:286
+msgid "Invalid destination"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:311 vhffs-api/src/Vhffs/Panel/DNS.pm:327
+msgid "Invalid destination domain name"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:298
+msgid "Invalid destination host"
+msgstr ""
+
+#: vhffs-panel/dns/create.pl:51 vhffs-panel/mail/create.pl:76
+msgid "Invalid domain name"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:263
+msgid "Invalid host"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:249 vhffs-api/src/Vhffs/Panel/DNS.pm:273
+msgid "Invalid hostname"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:85
+msgid "Invalid local part"
+msgstr ""
+
+#: vhffs-panel/git/prefs.pl:188
+msgid "Invalid mailing list address"
+msgstr ""
+
+#: vhffs-panel/pgsql/create.pl:88
+msgid "Invalid password. It must be at least 3 chars"
+msgstr ""
+
+#: vhffs-panel/mysql/create.pl:88
+msgid "Invalid password. It must contain at least 3 characters"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:312 vhffs-api/src/Vhffs/Panel/DNS.pm:328
+msgid "Invalid port"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:194 vhffs-api/src/Vhffs/Panel/DNS.pm:224
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:341
+msgid "Invalid prefix"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:250 vhffs-api/src/Vhffs/Panel/DNS.pm:313
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:329
+msgid "Invalid priority"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:309
+msgid "Invalid protocol syntax"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:274 vhffs-panel/repository/prefs.pl:120
+msgid "Invalid quota"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:159 vhffs-api/src/Vhffs/Panel/DNS.pm:207
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:237 vhffs-api/src/Vhffs/Panel/DNS.pm:261
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:284 vhffs-api/src/Vhffs/Panel/DNS.pm:325
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:352
+msgid "Invalid record"
+msgstr ""
+
+#: vhffs-panel/svn/create.pl:81 vhffs-panel/git/create.pl:81
+#: vhffs-panel/cvs/create.pl:82
+msgid ""
+"Invalid reponame. It must contain between 3 and 64 characters, only "
+"lowercase letters and numbers"
+msgstr ""
+
+#: vhffs-panel/web/create.pl:79
+msgid "Invalid servername (doesn't conform to domain names rules)"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:310
+msgid "Invalid service syntax"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:115
+msgid ""
+"Invalid username, it must contain between 3 and 12 alphanumeric characters, "
+"all in lowercase"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:314 vhffs-api/src/Vhffs/Panel/DNS.pm:330
+msgid "Invalid weight"
+msgstr ""
+
+#: vhffs-panel/cvs/prefs.pl:111
+msgid "Is this CVS repository public ??"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:92 vhffs-panel/git/prefs.pl:100
+msgid "Is this a public repository ?"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:311
+msgid "Language"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:9 vhffs-intl/template_strings.pl:48
+msgid "Last Groups"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:47
+msgid "Last Users"
+msgstr ""
+
+#: vhffs-public/lastgroups.pl:58
+#, perl-format
+msgid "Last groups on %s"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:2
+msgid "Last users"
+msgstr ""
+
+#: vhffs-public/lastusers.pl:60
+#, perl-format
+msgid "Last users on %s"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:226 vhffs-panel/user/prefs.pl:304
+#: vhffs-intl/template_strings.pl:6 vhffs-intl/template_strings.pl:36
+msgid "Lastname"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:123
+msgid "Lastname is not correct !"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:236
+msgid "List all A reccords"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:237
+msgid "List all AAAA reccords"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:185
+msgid "List all CVS repos"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:203
+msgid "List all Git repos"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:220
+msgid "List all MySQL databases"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:237
+msgid "List all Pg databases"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:167
+msgid "List all SVN repos"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:303
+msgid "List all TXT records"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:112
+msgid "List all accounts"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:290
+msgid "List all domain names"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:308
+msgid "List all download repositories"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:121
+msgid "List all forwardings for this domain"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:132
+msgid "List all groups"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:254
+msgid "List all mail domains"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:272
+msgid "List all mailing lists"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:147
+msgid "List all members"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:96
+msgid "List all objects"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:115
+msgid "List all users"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:150
+msgid "List all webareas"
+msgstr ""
+
+#: vhffs-panel/admin/cvs/list.pl:73
+msgid "List of all CVS repositories"
+msgstr ""
+
+#: vhffs-panel/admin/repository/list.pl:72
+msgid "List of all Download repositories"
+msgstr ""
+
+#: vhffs-panel/admin/mysql/list.pl:79
+msgid "List of all MySQL databases"
+msgstr ""
+
+#: vhffs-panel/admin/pgsql/list.pl:73
+msgid "List of all PostgreSQL databases"
+msgstr ""
+
+#: vhffs-panel/admin/dns/list.pl:72
+msgid "List of all domains"
+msgstr ""
+
+#: vhffs-panel/admin/group/list.pl:73
+msgid "List of all groups"
+msgstr ""
+
+#: vhffs-panel/admin/mail/list.pl:72
+msgid "List of all mail-domain"
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/list.pl:76
+msgid "List of all mailing-list"
+msgstr ""
+
+#: vhffs-panel/admin/user/list.pl:67
+msgid "List of all users"
+msgstr ""
+
+#: vhffs-panel/admin/web/list.pl:67 vhffs-intl/template_strings.pl:49
+msgid "List of all websites"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:222
+msgid "List updated"
+msgstr ""
+
+#: vhffs-panel/mailinglist/delete.pl:95
+msgid "List will NOT be deleted"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:166
+msgid "Listengine stats"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:124
+msgid "Local Part"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:115
+msgid "Local Part for this account"
+msgstr ""
+
+#: vhffs-panel/lost_ack.pl:75 vhffs-panel/lost_ack.pl:83
+msgid "Login"
+msgstr ""
+
+#: vhffs-panel/auth.pl:72
+msgid "Login failed !"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:245
+msgid "Logo"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:439
+msgid "Logout"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:69 vhffs-intl/template_strings.pl:74
+msgid "MB"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:73 vhffs-api/src/Vhffs/Panel/Menu.pm:122
+msgid "ML"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:152
+msgid "MX Record added"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:147
+msgid "MX Record deleted"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:142
+msgid "MX Record updated"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:72 vhffs-api/src/Vhffs/Panel/Menu.pm:121
+msgid "Mail"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:101
+msgid "Mail Administration for domain "
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:44
+msgid "Mail Domain"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:282
+msgid "Mail deleted"
+msgstr ""
+
+#: vhffs-panel/mail/create.pl:80
+msgid "Mail domain successfully created !"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:257
+msgid "Mail domains Admin"
+msgstr ""
+
+#: vhffs-panel/mail/index.pl:60
+#, perl-format
+msgid "Mail domains for %s"
+msgstr ""
+
+#: vhffs-panel/admin/mail/index.pl:56
+msgid "Mail domains' administration"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:107
+msgid "Mail for the list"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:139
+msgid "Mail stats"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:98
+msgid "Mail to all hosted people"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:371
+#, perl-format
+msgid "Mail with id %s"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:180
+msgid "Mailbox modified"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:223
+msgid "Mailbox successfully added"
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/list.pl:79 vhffs-intl/extra_strings.pl:45
+msgid "Mailing List"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:31
+msgid "Mailing Lists for this group"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:81
+#, perl-format
+msgid "Mailing list %s@%s not found"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:157
+msgid "Mailing list address is invalid"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:275
+msgid "Mailing lists Admin"
+msgstr ""
+
+#: vhffs-panel/mailinglist/index.pl:60
+#, perl-format
+msgid "Mailing lists for %s"
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/index.pl:56
+msgid "Mailing lists' administration"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_submit.pl:92
+msgid "Mailing successfully added"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_delete.pl:92
+msgid "Mailing successfully deleted"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:99
+msgid "Manage mailings"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:146
+msgid "Manage members"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:152
+msgid "Many users matched your query. Please choose between them"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:114
+msgid "Members only"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:115
+msgid "Members only and moderated"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast.pl:80
+msgid "Message"
+msgstr ""
+
+#: vhffs-panel/alert_submit.pl:65
+msgid "Message sent by the following account"
+msgstr ""
+
+#: vhffs-panel/alert_submit.pl:68
+msgid "Message sent successfully"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:336 vhffs-api/src/Vhffs/Listengine.pm:353
+#, perl-format
+msgid "Message with id: %s"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:112
+msgid "Moderated for everyone"
+msgstr ""
+
+#: vhffs-panel/admin/moderation.pl:74 vhffs-api/src/Vhffs/Panel/Admin.pm:77
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:95 vhffs-api/src/Vhffs/Panel/Menu.pm:92
+msgid "Moderation"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:62
+msgid "Moderator"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:429
+msgid "Moderator account"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:126 vhffs-intl/extra_strings.pl:30
+#: vhffs-api/src/Vhffs/Panel/Object.pm:131
+msgid "Modification applied"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:125 vhffs-intl/extra_strings.pl:29
+#: vhffs-api/src/Vhffs/Panel/Object.pm:130
+msgid "Modification error"
+msgstr ""
+
+#: vhffs-panel/admin/moderation_submit.pl:98
+msgid "Modifications applied successfully"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:163 vhffs-panel/git/prefs.pl:152
+#: vhffs-panel/git/prefs.pl:197
+msgid ""
+"Modifications applied. Please wait while your repository is being updated"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:95 vhffs-panel/user/prefs.pl:314
+#: vhffs-panel/dns/prefs.pl:315 vhffs-panel/dns/prefs.pl:327
+#: vhffs-panel/dns/prefs.pl:340 vhffs-panel/dns/prefs.pl:351
+#: vhffs-panel/dns/prefs.pl:378 vhffs-panel/dns/prefs.pl:394
+#: vhffs-panel/acl/view.pl:105 vhffs-panel/pgsql/prefs.pl:97
+#: vhffs-panel/group/prefs.pl:211 vhffs-panel/group/prefs.pl:229
+#: vhffs-panel/admin/mailinglist/list.pl:88 vhffs-panel/admin/svn/list.pl:79
+#: vhffs-panel/admin/user/list.pl:79 vhffs-panel/admin/dns/list.pl:84
+#: vhffs-panel/admin/pgsql/list.pl:85 vhffs-panel/admin/group/list.pl:89
+#: vhffs-panel/admin/repository/list.pl:84 vhffs-panel/admin/git/list.pl:81
+#: vhffs-panel/admin/mysql/list.pl:92 vhffs-panel/admin/cvs/list.pl:84
+#: vhffs-panel/admin/mail/list.pl:84 vhffs-panel/git/prefs.pl:103
+#: vhffs-panel/web/prefs.pl:101 vhffs-panel/mysql/prefs.pl:109
+#: vhffs-panel/cvs/prefs.pl:114
+msgid "Modify"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:260
+msgid "Must we redirect the DNS on our servers ?"
+msgstr ""
+
+#: vhffs-panel/group/index.pl:54 vhffs-api/src/Vhffs/Panel/Main.pm:436
+msgid "My Projects"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:65 vhffs-api/src/Vhffs/Panel/Menu.pm:114
+msgid "MySQL"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:223
+msgid "MySQL Admin"
+msgstr ""
+
+#: vhffs-panel/mysql/prefs.pl:93
+msgid "MySQL Administration"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:39
+msgid "MySQL DB"
+msgstr ""
+
+#: vhffs-panel/mysql/index.pl:60
+#, perl-format
+msgid "MySQL DBs for %s"
+msgstr ""
+
+#: vhffs-panel/mysql/create.pl:105
+msgid "MySQL database name "
+msgstr ""
+
+#: vhffs-panel/admin/mysql/index.pl:56
+msgid "MySQL databases' administration"
+msgstr ""
+
+#: vhffs-panel/mysql/create.pl:107
+msgid "MySQL password for this database "
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:151
+msgid "MySQL stats"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:161
+msgid "NS Record added"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:157
+msgid "NS Record deleted"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:284
+msgid "NS TYPE"
+msgstr ""
+
+#: vhffs-panel/group/history.pl:79 vhffs-panel/admin/moderation.pl:85
+msgid "Name"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:264
+msgid "Name for reccord"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:307
+msgid "Name for record"
+msgstr ""
+
+#: vhffs-panel/pgsql/prefs.pl:84 vhffs-panel/mysql/prefs.pl:95
+msgid "Name of the database"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:271
+msgid "Name of your MX"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:812
+msgid "New"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:68 vhffs-intl/template_strings.pl:73
+msgid "New Quota"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:271
+#, perl-format
+msgid "New language is: %s\n"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:94 vhffs-panel/dns/prefs.pl:262
+#: vhffs-panel/git/prefs.pl:102 vhffs-panel/cvs/prefs.pl:113
+#: vhffs-intl/template_strings.pl:83 vhffs-intl/template_strings.pl:86
+msgid "No"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:319
+msgid "No A type found"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:331
+msgid "No AAAA type found"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:358
+msgid "No CNAME available on this domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:345
+msgid "No MX reccord for this domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:371
+msgid "No NS available on this domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:387
+msgid "No SRV available on this domain"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:400
+msgid "No TXT available on this domain"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:345
+msgid "No cookie found, please accept the cookie and then please login again !"
+msgstr ""
+
+#: vhffs-panel/object/upavatar.pl:105
+msgid "No enough rights"
+msgstr ""
+
+#: vhffs-panel/group/history.pl:83
+msgid "No event about this group"
+msgstr ""
+
+#: vhffs-panel/history.pl:106 vhffs-panel/admin/object/edit.pl:204
+#: vhffs-api/src/Vhffs/Panel/Object.pm:208
+msgid "No event about this object"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:44
+msgid "No group"
+msgstr ""
+
+#: vhffs-public/groupsearch.pl:74
+msgid "No group found"
+msgstr ""
+
+#: vhffs-listengine/src/listengine.pl:775
+msgid "No message to moderate"
+msgstr ""
+
+#: vhffs-public/group.pl:79
+msgid "No such group"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:22
+msgid "No user"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:255
+msgid "No user for this group"
+msgstr ""
+
+#: vhffs-public/usersearch.pl:75
+msgid "No user found"
+msgstr ""
+
+#: vhffs-public/websitesearch.pl:74
+msgid "No website found"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:24
+msgid "No websites"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:329 vhffs-panel/dns/prefs.pl:255
+#: vhffs-panel/web/prefs.pl:112
+msgid "No, I'm not sure, I prefer to keep it."
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:182 vhffs-panel/svn/prefs.pl:100
+#: vhffs-panel/pgsql/prefs.pl:102 vhffs-panel/group/prefs.pl:216
+#: vhffs-panel/repository/prefs.pl:92 vhffs-panel/git/prefs.pl:108
+#: vhffs-panel/mysql/prefs.pl:114 vhffs-panel/cvs/prefs.pl:119
+#: vhffs-panel/mail/prefs.pl:139
+msgid "No, I'm not sure, I prefer to keep this project."
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:813
+msgid "None"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:61
+msgid "Normal"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:109 vhffs-panel/git/prefs.pl:120
+msgid "Notify changes on mailing-list :"
+msgstr ""
+
+#: vhffs-panel/admin/object/list.pl:88
+msgid "Object ID"
+msgstr ""
+
+#: vhffs-panel/object/quickdelete.pl:103
+msgid "Object deletion"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:94 vhffs-api/src/Vhffs/Panel/Object.pm:98
+msgid "Object id"
+msgstr ""
+
+#: vhffs-panel/object/resubmit.pl:122
+msgid "Object name"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit_submit.pl:95
+msgid "Object successfully updated"
+msgstr ""
+
+#: vhffs-panel/object/resubmit.pl:119
+msgid "Object type"
+msgstr ""
+
+#: vhffs-panel/object/upavatar.pl:97
+msgid "Object-ID error"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:106 vhffs-panel/dns/prefs.pl:247
+#: vhffs-panel/git/prefs.pl:114 vhffs-panel/web/prefs.pl:105
+#: vhffs-panel/mail/prefs.pl:145
+msgid "Ok, go to ACL admin"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast.pl:81
+msgid "Ok, send it !"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:279 vhffs-panel/repository/prefs.pl:114
+msgid "Only administrators are allowed to do this"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:463
+msgid "Only administrators can do this"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:58
+msgid "Only this list administrators can use the following commands.\n"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:111
+msgid "Open for everyone"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:113
+msgid "Open for members, moderated for non-members"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:108
+msgid "Open, approval required"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:107
+msgid "Open, no approval required"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:105 vhffs-panel/svn/prefs.pl:108
+#: vhffs-panel/git/prefs.pl:119 vhffs-intl/template_strings.pl:76
+msgid "Options"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:33 vhffs-intl/template_strings.pl:37
+msgid "Owned by"
+msgstr ""
+
+#: vhffs-panel/group/create.pl:88
+msgid "Owner"
+msgstr ""
+
+#: vhffs-panel/admin/object/list.pl:90
+msgid "Owner group"
+msgstr ""
+
+#: vhffs-panel/admin/group/list.pl:81
+msgid "Owner name"
+msgstr ""
+
+#: vhffs-panel/admin/object/list.pl:89
+msgid "Owner user"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:309 vhffs-panel/mail/prefs.pl:116
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:67
+msgid "Password"
+msgstr ""
+
+#: vhffs-panel/pgsql/prefs.pl:135 vhffs-panel/mysql/prefs.pl:146
+msgid "Password change request taken in account, please wait for processing"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:168
+msgid "Password changed"
+msgstr ""
+
+#: vhffs-panel/pgsql/prefs.pl:90 vhffs-panel/mysql/prefs.pl:101
+msgid "Password for this database"
+msgstr ""
+
+#: vhffs-panel/lost_ack.pl:82
+msgid "Password recovery failed!"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:141
+msgid "Passwords don't match"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:66 vhffs-api/src/Vhffs/Panel/Menu.pm:115
+msgid "PgSQL"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:40
+msgid "PgSQL DB"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:158
+msgid "PgSQL stats"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:324
+msgid "Platform temporary closed."
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:313
+msgid "Platform temporary closed<br/>database error"
+msgstr ""
+
+#: vhffs-panel/group/create.pl:92 vhffs-panel/object/resubmit.pl:131
+#: vhffs-panel/web/create.pl:104
+msgid ""
+"Please consider that this description is going to be displayed in the public "
+"area. So you have to write it in impersonal form. You should take care to "
+"write it with correct grammar and tenses. Take all the time you need to fill "
+"it with the best content you are able to do."
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:159
+msgid "Please enter a correct city"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:163
+msgid "Please enter a correct country"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:151
+msgid "Please enter a correct firstname"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:155
+msgid "Please enter a correct lastname"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:64
+msgid "Please enter your username and password"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:222
+msgid ""
+"Please fill in all fields, a mail containing your password will be sent to "
+"you"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:299
+msgid "Please read help of listengine\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:196
+msgid "Please try again !\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:242
+msgid "Please try again.\n"
+msgstr ""
+
+#: vhffs-panel/lost_ack.pl:74
+#, perl-format
+msgid "Please wait %s, a new password will be sent to you in a few minutes..."
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:189
+msgid ""
+"Please wait while we are creating the account, it will take some minutes"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:296 vhffs-panel/dns/prefs.pl:381
+msgid "Port"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:240
+msgid "PostgreSQL Admin"
+msgstr ""
+
+#: vhffs-panel/pgsql/prefs.pl:82
+msgid "PostgreSQL Administration"
+msgstr ""
+
+#: vhffs-panel/pgsql/index.pl:60
+#, perl-format
+msgid "PostgreSQL DBs for %s"
+msgstr ""
+
+#: vhffs-panel/pgsql/create.pl:105
+msgid "PostgreSQL database name "
+msgstr ""
+
+#: vhffs-panel/admin/pgsql/index.pl:56
+msgid "PostgreSQL databases' administration"
+msgstr ""
+
+#: vhffs-panel/pgsql/create.pl:107
+msgid "PostgreSQL password for this database "
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:110
+msgid "Posting control:"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:558
+msgid "Preferences"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:195 vhffs-api/src/Vhffs/Panel/DNS.pm:225
+msgid "Prefix already exists"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:138
+msgid "Prefix on subject"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:297 vhffs-panel/dns/prefs.pl:382
+msgid "Priority"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:272
+msgid "Priority of your MX"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:341
+msgid "Priority: "
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:207
+msgid "Project Description"
+msgstr ""
+
+#: vhffs-panel/group/history.pl:75
+msgid "Project History"
+msgstr ""
+
+#: vhffs-panel/group/create.pl:85
+msgid "Project Name"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:205
+msgid "Project Owner"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:201
+msgid "Project Preferences"
+msgstr ""
+
+#: vhffs-panel/group/create.pl:76
+msgid "Project Successfully created !"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:226
+msgid "Project contact"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:209 vhffs-panel/group/create.pl:87
+msgid "Project full name"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:451
+msgid "Project home"
+msgstr ""
+
+#: vhffs-panel/group/index.pl:62
+msgid "Projects you contribute to"
+msgstr ""
+
+#: vhffs-panel/group/index.pl:64 vhffs-panel/object/resubmit.pl:108
+#: vhffs-api/src/Vhffs/Panel/Main.pm:809
+msgid "Propose a new description"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:293
+msgid "Protocol"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:91 vhffs-panel/git/prefs.pl:99
+msgid "Public"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:136
+msgid "Public archives"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:70
+msgid "Public area is not available on this platform."
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:69
+msgid "Public area not available"
+msgstr ""
+
+#: vhffs-panel/repository/prefs.pl:85 vhffs-api/src/Vhffs/Panel/Main.pm:550
+#, perl-format
+msgid "Quota (used/total) : %s/%s"
+msgstr ""
+
+#: vhffs-public/rss/lastgroups.pl:103 vhffs-public/rss/lastusers.pl:102
+msgid "RSS infos are not published"
+msgstr ""
+
+#: vhffs-panel/admin/user/list.pl:71
+msgid "Real Name"
+msgstr ""
+
+#: vhffs-panel/object/resubmit.pl:125
+msgid "Reason of refusal"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:239
+msgid "Recopy the code"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:161 vhffs-api/src/Vhffs/Panel/DNS.pm:208
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:238 vhffs-api/src/Vhffs/Panel/DNS.pm:262
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:285 vhffs-api/src/Vhffs/Panel/DNS.pm:326
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:353
+msgid "Record does not exists"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:160
+msgid "Record type doesn't exists"
+msgstr ""
+
+#: vhffs-panel/admin/moderation.pl:90 vhffs-panel/admin/moderation.pl:117
+msgid "Refuse"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:254
+msgid "Remove"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:137
+msgid "Reply to: on list"
+msgstr ""
+
+#: vhffs-panel/svn/create.pl:96 vhffs-panel/repository/create.pl:92
+#: vhffs-panel/admin/repository/list.pl:75 vhffs-panel/git/create.pl:96
+#: vhffs-panel/cvs/create.pl:102
+msgid "Repository Name"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:71
+msgid "Repository Quota"
+msgstr ""
+
+#: vhffs-panel/repository/prefs.pl:133
+msgid "Repository updated, please wait while quota is updated on filesystem"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:263
+#, perl-format
+msgid "Rights for subscriber %s updated"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:198
+msgid "SRV Record added"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:187
+msgid "SRV Record deleted"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:183
+msgid "SRV Record updated"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:290
+msgid "SRV TYPE"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:68 vhffs-api/src/Vhffs/Panel/Menu.pm:117
+msgid "SVN"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:170
+msgid "SVN Admin"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:42
+msgid "SVN Repository"
+msgstr ""
+
+#: vhffs-panel/svn/index.pl:60
+#, perl-format
+msgid "SVN repositories for %s"
+msgstr ""
+
+#: vhffs-panel/admin/svn/index.pl:56
+msgid "SVN repositories' administration"
+msgstr ""
+
+#: vhffs-panel/admin/svn/list.pl:70
+msgid "SVN root"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:127
+msgid "SVN stats"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:141
+msgid "Save options"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:7 vhffs-intl/template_strings.pl:14
+#: vhffs-intl/template_strings.pl:20
+msgid "Search"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:11
+msgid "Search a group"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:17
+msgid "Search a website"
+msgstr ""
+
+#: vhffs-panel/admin/object/search.pl:77
+msgid "Search an object (give object_id)"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:3
+msgid "Search an user"
+msgstr ""
+
+#: vhffs-panel/admin/cvs/search.pl:78 vhffs-api/src/Vhffs/Panel/Admin.pm:186
+msgid "Search for a CVS repository"
+msgstr ""
+
+#: vhffs-panel/admin/repository/search.pl:78
+msgid "Search for a Download repository"
+msgstr ""
+
+#: vhffs-panel/admin/git/search.pl:80
+msgid "Search for a GIT repository"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:204
+msgid "Search for a Git repository"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:221
+msgid "Search for a MySQL database"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:238
+msgid "Search for a Pg database"
+msgstr ""
+
+#: vhffs-panel/admin/svn/search.pl:80 vhffs-api/src/Vhffs/Panel/Admin.pm:168
+msgid "Search for a SVN repository"
+msgstr ""
+
+#: vhffs-panel/admin/pgsql/search.pl:79 vhffs-panel/admin/mysql/search.pl:79
+msgid "Search for a database"
+msgstr ""
+
+#: vhffs-panel/admin/dns/search.pl:79 vhffs-api/src/Vhffs/Panel/Admin.pm:291
+msgid "Search for a domain name"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:309
+msgid "Search for a download repository"
+msgstr ""
+
+#: vhffs-panel/admin/group/search.pl:79 vhffs-api/src/Vhffs/Panel/Admin.pm:133
+msgid "Search for a group"
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/search.pl:78
+msgid "Search for a list"
+msgstr ""
+
+#: vhffs-panel/admin/mail/search.pl:79 vhffs-api/src/Vhffs/Panel/Admin.pm:255
+msgid "Search for a mail domain"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:273
+msgid "Search for a mailing list"
+msgstr ""
+
+#: vhffs-panel/admin/web/search.pl:79
+msgid "Search for a web area"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:151
+msgid "Search for a webarea"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:97
+msgid "Search for an object"
+msgstr ""
+
+#: vhffs-panel/admin/user/search.pl:79 vhffs-api/src/Vhffs/Panel/Admin.pm:116
+msgid "Search for an user"
+msgstr ""
+
+#: vhffs-panel/admin/group/list.pl:77
+msgid "Search result"
+msgstr ""
+
+#: vhffs-panel/admin/object/list.pl:81
+msgid "Search result "
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/list.pl:72 vhffs-panel/admin/user/list.pl:63
+#: vhffs-panel/admin/web/list.pl:63 vhffs-panel/admin/mail/list.pl:68
+msgid "Search result for"
+msgstr ""
+
+#: vhffs-panel/admin/cvs/list.pl:69
+msgid "Search result for CVS repository"
+msgstr ""
+
+#: vhffs-panel/admin/repository/list.pl:68
+msgid "Search result for Download repository"
+msgstr ""
+
+#: vhffs-panel/admin/svn/list.pl:63
+msgid "Search result for Subversion repository"
+msgstr ""
+
+#: vhffs-panel/admin/pgsql/list.pl:69 vhffs-panel/admin/mysql/list.pl:75
+msgid "Search result for database"
+msgstr ""
+
+#: vhffs-panel/admin/dns/list.pl:68
+msgid "Search result for domain"
+msgstr ""
+
+#: vhffs-panel/admin/git/list.pl:65
+msgid "Search result for git repository"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:189
+msgid "Selected mailbox doesn't exist for this mail domain"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:112 vhffs-panel/svn/create.pl:101
+#: vhffs-panel/dns/create.pl:78 vhffs-panel/pgsql/create.pl:109
+#: vhffs-panel/group/create.pl:90 vhffs-panel/repository/create.pl:97
+#: vhffs-panel/alert.pl:59 vhffs-panel/admin/broadcast_list.pl:100
+#: vhffs-panel/admin/object/edit.pl:99 vhffs-panel/admin/broadcast_view.pl:101
+#: vhffs-panel/git/create.pl:102 vhffs-panel/web/create.pl:102
+#: vhffs-panel/mysql/create.pl:109 vhffs-panel/cvs/create.pl:107
+#: vhffs-panel/mail/create.pl:96 vhffs-api/src/Vhffs/Panel/Object.pm:103
+msgid "Send"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast.pl:77
+msgid "Send an email to all hosted people"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:300
+msgid "Send an email with the subject \"help\" to the following address: \n"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:336 vhffs-panel/user/prefs.pl:338
+msgid "Send my avatar"
+msgstr ""
+
+#: vhffs-panel/admin/web/list.pl:70
+msgid "Servername"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:294
+msgid "Service"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:313
+msgid "Shell"
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/list.pl:90 vhffs-panel/admin/svn/list.pl:81
+#: vhffs-panel/admin/user/list.pl:81 vhffs-panel/admin/dns/list.pl:86
+#: vhffs-panel/admin/pgsql/list.pl:87 vhffs-panel/admin/group/list.pl:91
+#: vhffs-panel/admin/repository/list.pl:86 vhffs-panel/admin/git/list.pl:83
+#: vhffs-panel/admin/web/list.pl:82 vhffs-panel/admin/mysql/list.pl:94
+#: vhffs-panel/admin/cvs/list.pl:86 vhffs-panel/admin/mail/list.pl:86
+msgid "Show"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:50
+msgid "Signature"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:92
+msgid "Sorry, can't add or update ACL"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:247
+msgid "Spam status updated"
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/list.pl:81 vhffs-panel/admin/svn/list.pl:72
+#: vhffs-panel/admin/user/list.pl:72 vhffs-panel/admin/dns/list.pl:77
+#: vhffs-panel/admin/pgsql/list.pl:78 vhffs-panel/admin/group/list.pl:82
+#: vhffs-panel/admin/repository/list.pl:77 vhffs-panel/admin/git/list.pl:74
+#: vhffs-panel/admin/object/list.pl:91 vhffs-panel/admin/broadcast_view.pl:88
+#: vhffs-panel/admin/web/list.pl:72 vhffs-panel/admin/mysql/list.pl:84
+#: vhffs-panel/admin/cvs/list.pl:78 vhffs-panel/admin/mail/list.pl:77
+msgid "State"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:97 vhffs-api/src/Vhffs/Panel/Object.pm:101
+msgid "Status"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:664
+msgid "Stay over an icon to see its description."
+msgstr ""
+
+#: vhffs-panel/admin/su.pl:74
+msgid "Su !"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:281
+msgid "Subdomain name"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast.pl:79 vhffs-panel/admin/broadcast_view.pl:87
+msgid "Subject"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:273 vhffs-panel/dns/prefs.pl:279
+#: vhffs-panel/dns/prefs.pl:300 vhffs-panel/object/resubmit.pl:134
+msgid "Submit"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:438
+msgid "Submit a bug"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:231 vhffs-api/src/Vhffs/Panel/Commons.pm:70
+msgid "Subscribe"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:106
+msgid "Subscribe control:"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:54
+msgid "Subscribed"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:242
+#, perl-format
+msgid "Subscriber %s deleted"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:221
+msgid "Subscription"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:135
+#, perl-format
+msgid ""
+"Subscription to the following list is forbidden:\n"
+" %s\n"
+"\n"
+"Have a nice day.\n"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:29
+msgid "Subversion Repositories for this group"
+msgstr ""
+
+#: vhffs-panel/object/upavatar.pl:126
+msgid "Successfully created or updated avatar"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:122 vhffs-panel/admin/object/edit.pl:123
+#: vhffs-intl/extra_strings.pl:26 vhffs-api/src/Vhffs/Panel/Object.pm:127
+#: vhffs-api/src/Vhffs/Panel/Object.pm:128
+msgid "Suspended"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:27
+msgid "Suspended before deletion"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:203
+msgid "TXT Record added"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:214
+msgid "TXT Record deleted"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:209
+msgid "TXT Record updated"
+msgstr ""
+
+#: vhffs-panel/mail/create.pl:97
+msgid "Tell us for what purpose you want to create this mail domain"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:113
+msgid "Tell us what the use of this mailing list will be"
+msgstr ""
+
+#: vhffs-panel/web/create.pl:103
+msgid "Tell us what the use of this web space will be"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:306
+msgid "Text"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:342 vhffs-api/src/Vhffs/Panel/DNS.pm:354
+msgid "Text can't be empty"
+msgstr ""
+
+#: vhffs-panel/cvs/create.pl:89
+msgid "The CVS object was successfully created !"
+msgstr ""
+
+#: vhffs-panel/dns/create.pl:57
+msgid "The DNS object was successfully created !"
+msgstr ""
+
+#: vhffs-panel/git/create.pl:85
+msgid "The GIT object was successfully created !"
+msgstr ""
+
+#: vhffs-panel/mysql/create.pl:90
+msgid "The MySQL DB was successfully created !"
+msgstr ""
+
+#: vhffs-panel/pgsql/create.pl:90
+msgid "The PostgreSQL DB was successfully created !"
+msgstr ""
+
+#: vhffs-panel/svn/create.pl:85
+msgid "The SVN object was successfully created !"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:339
+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:246
+msgid "The avatar is an image to describe the group"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:195
+msgid "The confirmation code was wrong\n"
+msgstr ""
+
+#: vhffs-panel/pgsql/create.pl:102 vhffs-panel/mysql/create.pl:102
+#, perl-format
+msgid ""
+"The database name is prefixed by your groupname followed by an underscore (%"
+"s_dbname). The database user is the database full name (%s_dbname)."
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:181
+msgid "The email you entered fails syntax check"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:90 vhffs-panel/group/create.pl:72
+msgid "The first letter of groupname and full name must be the same"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:389
+#, perl-format
+msgid ""
+"The following address %s is not allowed to execute commands on the list %s\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:210
+#, perl-format
+msgid ""
+"The following address %s is not on the following mailing list:\n"
+" %s\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:518
+msgid ""
+"The following projects have reached or are going to reach the disk quota "
+"limit, please take a look !"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:270
+#, perl-format
+msgid ""
+"The listengine language preference was changed for the following address %"
+"s.\n"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:89
+msgid "The mailing list object was successfully created !"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:320
+msgid "The message does not exists or was moderated before you.\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:317
+#, perl-format
+msgid "The message with the following id %s"
+msgstr ""
+
+#: vhffs-panel/object/resubmit.pl:95 vhffs-panel/object/resubmit.pl:98
+msgid "The new description has been submitted"
+msgstr ""
+
+#: vhffs-panel/repository/create.pl:81
+msgid "The repository was successfully created !"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:122
+msgid ""
+"The state of you subscription was not changed, you are still subscribed\n"
+msgstr ""
+
+#: vhffs-panel/web/create.pl:83
+msgid "The webarea was successfully created !"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:312
+msgid "Theme"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:261
+msgid ""
+"There is a problem with the address you filled in your profile, unable to "
+"add forwarding"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:103
+msgid ""
+"There is no default mail domain on this platform, you have to create a mail "
+"domain before creating a mailing list"
+msgstr ""
+
+#: vhffs-panel/admin/moderation.pl:79
+msgid "There is nothing to moderate"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:412
+msgid "There is two possible usages :"
+msgstr ""
+
+#: vhffs-panel/cvs/delete.pl:86
+msgid "This CVS repository will NOT be deleted"
+msgstr ""
+
+#: vhffs-panel/cvs/delete.pl:97
+msgid "This CVS will be deleted"
+msgstr ""
+
+#: vhffs-panel/pgsql/delete.pl:73
+msgid "This DB doesn't exist in VHFFS database"
+msgstr ""
+
+#: vhffs-panel/repository/delete.pl:86
+msgid "This Download repository will NOT be deleted"
+msgstr ""
+
+#: vhffs-panel/repository/delete.pl:99
+msgid "This Download repository will be deleted"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:179 vhffs-panel/svn/prefs.pl:97
+#: vhffs-panel/dns/prefs.pl:252 vhffs-panel/pgsql/prefs.pl:99
+#: vhffs-panel/group/prefs.pl:213 vhffs-panel/repository/prefs.pl:89
+#: vhffs-panel/git/prefs.pl:105 vhffs-panel/web/prefs.pl:109
+#: vhffs-panel/mysql/prefs.pl:111 vhffs-panel/cvs/prefs.pl:116
+#: vhffs-panel/mail/prefs.pl:136
+msgid ""
+"This action is non-reversible. All services associated to this project will "
+"be DESTROYED."
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:326
+msgid "This action is non-reversible. WHEN YOU DELETE IT, YOU CANNOT CANCEL."
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:214
+msgid ""
+"This box already exists for this domain or parameters are not valid. Check "
+"your domain."
+msgstr ""
+
+#: vhffs-panel/pgsql/delete.pl:93
+msgid "This database cannot be deleted"
+msgstr ""
+
+#: vhffs-panel/mysql/delete.pl:71
+msgid "This database doesn't exist in VHFFS database"
+msgstr ""
+
+#: vhffs-panel/mysql/delete.pl:83
+msgid "This database will NOT be deleted"
+msgstr ""
+
+#: vhffs-panel/dns/delete.pl:105
+msgid "This domain will NOT be DELETED from Vhffs platform"
+msgstr ""
+
+#: vhffs-panel/dns/delete.pl:100
+msgid "This domain will be DELETED from Vhffs platform"
+msgstr ""
+
+#: vhffs-panel/git/delete.pl:90
+msgid "This git repository will NOT be deleted"
+msgstr ""
+
+#: vhffs-panel/group/delete.pl:85
+msgid "This group will be deleted"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:315
+msgid "This host is already registered for this service"
+msgstr ""
+
+#: vhffs-panel/mail/delete.pl:103
+msgid "This mail domain WILL BE DELETED"
+msgstr ""
+
+#: vhffs-panel/mail/delete.pl:91
+msgid "This mail domain will NOT be DELETED"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:104
+#, perl-format
+msgid ""
+"This mail must contains the following subject : \"confirm unsubscribe %s\"\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:86
+#, perl-format
+msgid ""
+"This mail must have the following subject : \"confirm subscribe %s\"\n"
+"On most clients it should work by just replying this email\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:405
+#, perl-format
+msgid ""
+"This mail was sent by %s with the following subject:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: vhffs-panel/object/quickdelete.pl:68 vhffs-panel/object/resubmit.pl:68
+msgid "This object does not exist"
+msgstr ""
+
+#: vhffs-panel/admin/object/delete_avatar.pl:105
+msgid "This object does not have an avatar"
+msgstr ""
+
+#: vhffs-panel/object/quickdelete.pl:86 vhffs-panel/object/quickdelete.pl:89
+msgid "This object has been deleted"
+msgstr ""
+
+#: vhffs-panel/group/history.pl:68
+msgid "This object is not functional yet. Please wait creation or moderation."
+msgstr ""
+
+#: vhffs-panel/mailinglist/delete.pl:87 vhffs-panel/group/delete.pl:72
+#: vhffs-panel/git/delete.pl:86 vhffs-panel/web/prefs.pl:80
+#: vhffs-panel/mail/delete.pl:83
+msgid "This object is not functionnal yet. Please wait creation or moderation."
+msgstr ""
+
+#: vhffs-panel/object/quickdelete.pl:72 vhffs-panel/object/resubmit.pl:72
+msgid "This object is not in refused state"
+msgstr ""
+
+#: vhffs-panel/web/delete.pl:96
+msgid "This object will BE DELETED"
+msgstr ""
+
+#: vhffs-panel/group/delete.pl:76 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:74
+msgid "This platform does not support avatar"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:314
+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:325
+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/delete.pl:98 vhffs-panel/git/delete.pl:103
+msgid "This repository will be deleted"
+msgstr ""
+
+#: vhffs-panel/svn/delete.pl:85
+msgid "This subversion repository will NOT be deleted"
+msgstr ""
+
+#: vhffs-panel/user/delete.pl:76
+msgid "This user is always in a 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/prefs.pl:112
+msgid "This user will be removed from this group as soon as possible"
+msgstr ""
+
+#: vhffs-panel/web/delete.pl:79
+msgid "This web area doesn't exist in VHFFS database"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:424
+msgid "To accept this subscriber, send a message to\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:406
+#, perl-format
+msgid ""
+"To put this post on the list, send a message to:\n"
+" %s-request@%s\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:427
+msgid "To refuse this subscriber, send a message to\n"
+msgstr ""
+
+#: vhffs-panel/ajax/help.pl:53
+msgid "Topic not found"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:94
+msgid "Total Admin Users in VHFFS database"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:121
+msgid "Total CVS in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:113
+msgid "Total DNS in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:134
+msgid "Total GIT in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:140
+msgid "Total Mail domains in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:96
+msgid "Total Moderator Users in VHFFS database"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:152
+msgid "Total MySQL in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:159
+msgid "Total PostgreSQL in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:128
+msgid "Total SVN in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:92
+msgid "Total Users in VHFFS database"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:106
+msgid "Total Web Areas in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:123
+msgid "Total activated CVS"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:115
+msgid "Total activated DNS"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:136
+msgid "Total activated GIT"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:142
+msgid "Total activated Mail domains"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:154
+msgid "Total activated MySQL"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:161
+msgid "Total activated PostgreSQL"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:130
+msgid "Total activated SVN"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:108
+msgid "Total activated Web Areas"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:102
+msgid "Total activated groups"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:169
+msgid "Total activated lists"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:100
+msgid "Total groups in database"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:146
+msgid "Total hosted boxes"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:144
+msgid "Total hosted forwards"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:167
+msgid "Total lists in moderation"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:171
+msgid "Total subscribtion for lists"
+msgstr ""
+
+#: vhffs-panel/group/history.pl:78 vhffs-panel/admin/moderation.pl:84
+msgid "Type"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:95 vhffs-api/src/Vhffs/Panel/Object.pm:99
+msgid "UID of owner"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:135
+#, perl-format
+msgid "Unable to add A record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:130
+#, perl-format
+msgid "Unable to add AAAA record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:174
+#, perl-format
+msgid "Unable to add CNAME record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:151
+#, perl-format
+msgid "Unable to add MX record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:160
+#, perl-format
+msgid "Unable to add NS record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:197
+#, perl-format
+msgid "Unable to add SRV record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:202
+#, perl-format
+msgid "Unable to add TXT record: %s"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:286
+#, perl-format
+msgid "Unable to add forward %s"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:137 vhffs-panel/group/prefs.pl:171
+msgid ""
+"Unable to add user, he might already be in the group (waiting for addition "
+"or deletion)"
+msgstr ""
+
+#: vhffs-panel/pgsql/prefs.pl:131 vhffs-panel/mysql/prefs.pl:142
+msgid "Unable to apply changes"
+msgstr ""
+
+#: vhffs-panel/git/prefs.pl:149 vhffs-panel/git/prefs.pl:194
+#: vhffs-panel/web/prefs.pl:141
+msgid "Unable to apply modifications"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:291 vhffs-panel/repository/prefs.pl:131
+msgid "Unable to apply modifications, please try again later"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:261
+#, perl-format
+msgid "Unable to change rights for subscriber %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:112
+#, perl-format
+msgid "Unable to delete A record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:124
+#, perl-format
+msgid "Unable to delete AAAA record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:169
+#, perl-format
+msgid "Unable to delete CNAME record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:146
+#, perl-format
+msgid "Unable to delete MX record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:156
+#, perl-format
+msgid "Unable to delete NS record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:186
+#, perl-format
+msgid "Unable to delete SRV record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:213
+#, perl-format
+msgid "Unable to delete TXT record: %s"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:270
+#, perl-format
+msgid "Unable to delete box %s"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:317
+#, perl-format
+msgid "Unable to delete forward %s"
+msgstr ""
+
+#: vhffs-panel/mail/delete.pl:99
+msgid "Unable to delete this domain"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:196 vhffs-api/src/Vhffs/Panel/DNS.pm:226
+msgid ""
+"Unable to find default redirection address, please contact administrators"
+msgstr ""
+
+#: vhffs-panel/cvs/index.pl:63
+msgid "Unable to get CVS repositories"
+msgstr ""
+
+#: vhffs-panel/dns/index.pl:63
+msgid "Unable to get DNS"
+msgstr ""
+
+#: vhffs-panel/git/index.pl:64
+msgid "Unable to get GIT repositories"
+msgstr ""
+
+#: vhffs-panel/mysql/index.pl:63
+msgid "Unable to get MySQL databases."
+msgstr ""
+
+#: vhffs-panel/pgsql/index.pl:63
+msgid "Unable to get PgSQL databases"
+msgstr ""
+
+#: vhffs-panel/svn/index.pl:63
+msgid "Unable to get SVN repositories"
+msgstr ""
+
+#: vhffs-panel/mail/delete.pl:79 vhffs-panel/mail/prefs.pl:74
+#, perl-format
+msgid "Unable to get information on mail domain %s"
+msgstr ""
+
+#: vhffs-panel/mail/index.pl:63
+msgid "Unable to get mail domains"
+msgstr ""
+
+#: vhffs-panel/mailinglist/index.pl:63
+msgid "Unable to get mailing lists"
+msgstr ""
+
+#: vhffs-panel/repository/index.pl:63
+msgid "Unable to get repositories"
+msgstr ""
+
+#: vhffs-panel/web/index.pl:63
+msgid "Unable to get webareas"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:107
+#, perl-format
+msgid "Unable to modify A record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:119
+#, perl-format
+msgid "Unable to modify AAAA record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:165
+#, perl-format
+msgid "Unable to modify CNAME record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:141
+#, perl-format
+msgid "Unable to modify MX record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:182
+#, perl-format
+msgid "Unable to modify SRV record: %s"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:208
+#, perl-format
+msgid "Unable to modify TXT record: %s"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:302
+#, perl-format
+msgid "Unable to modify forward %s"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:114
+msgid "Unable to remove user from group"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:220
+msgid "Unable to save object"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:168
+msgid "Unable to update repository"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:475
+msgid "Unable to update user, please try again later"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:298
+msgid ""
+"Unknow command\n"
+"\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Functions.pm:448 vhffs-api/src/Vhffs/Functions.pm:453
+msgid "Unknown"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:163 vhffs-api/src/Vhffs/Panel/DNS.pm:199
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:211 vhffs-api/src/Vhffs/Panel/DNS.pm:229
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:241 vhffs-api/src/Vhffs/Panel/DNS.pm:253
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:265 vhffs-api/src/Vhffs/Panel/DNS.pm:276
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:288 vhffs-api/src/Vhffs/Panel/DNS.pm:301
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:317 vhffs-api/src/Vhffs/Panel/DNS.pm:332
+#: vhffs-api/src/Vhffs/Panel/DNS.pm:344 vhffs-api/src/Vhffs/Panel/DNS.pm:356
+msgid "Unknown error"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_list.pl:104
+#: vhffs-panel/admin/broadcast_view.pl:105
+msgid "Unknown status"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:240
+#, perl-format
+msgid "Unsubscribe for the list %s was not complete.\n"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:244 vhffs-intl/template_strings.pl:87
+msgid "Update"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:64
+msgid "Update Permissions"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:70 vhffs-intl/template_strings.pl:75
+msgid "Update Quota"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:248
+msgid "Update avatar"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:144
+msgid "Update signature"
+msgstr ""
+
+#: vhffs-panel/object/upavatar.pl:118
+msgid "Uploaded file is too big. The maximum size is 20 Kbytes."
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:240
+#, perl-format
+msgid "Use @ for origin (%s)"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:413
+#, 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:424
+msgid "Use anti-spam protection"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:432
+msgid "Use anti-virus protection"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:67 vhffs-intl/template_strings.pl:72
+msgid "Used Quota"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:103 vhffs-panel/admin/moderation.pl:86
+#: vhffs-intl/extra_strings.pl:35
+msgid "User"
+msgstr ""
+
+#: vhffs-panel/admin/su.pl:96
+#, perl-format
+msgid "User %s does not exist"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:118
+msgid "User Admin"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:297 vhffs-api/src/Vhffs/Panel/Main.pm:435
+msgid "User Preferences"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:188
+msgid "User Successfully created"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:432
+msgid "User account"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:368
+msgid "User does not exist"
+msgstr ""
+
+#: vhffs-panel/auth.pl:74
+msgid "User is not active yet"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:144
+msgid "User not found"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:477
+msgid "User successfully updated"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:134 vhffs-panel/group/prefs.pl:168
+msgid "User will be added as soon as possible"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:59
+msgid "User's Permissions"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:60
+msgid "User's permissions"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:223 vhffs-panel/user/prefs.pl:301
+#: vhffs-panel/group/prefs.pl:238 vhffs-panel/admin/user/list.pl:70
+#: vhffs-panel/admin/su.pl:73 vhffs-panel/lost.pl:57
+#: vhffs-intl/template_strings.pl:4 vhffs-intl/template_strings.pl:34
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:65
+msgid "Username"
+msgstr ""
+
+#: vhffs-panel/pgsql/prefs.pl:87 vhffs-panel/mysql/prefs.pl:98
+msgid "Username for this database"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:256 vhffs-intl/template_strings.pl:1
+#: vhffs-intl/template_strings.pl:21 vhffs-intl/template_strings.pl:41
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:111
+msgid "Users"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:91
+msgid "Users stats"
+msgstr ""
+
+#: vhffs-panel/admin/user/index.pl:56
+msgid "Users' administration"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:117 vhffs-intl/extra_strings.pl:21
+#: vhffs-api/src/Vhffs/Panel/Object.pm:122
+msgid "Validation refused"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:89
+msgid "Vhffs Statistics"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:32
+msgid "View Archives"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_view.pl:85
+msgid "View mailing"
+msgstr ""
+
+#: vhffs-panel/admin/broadcast_list.pl:90
+msgid "View this mailing"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:254
+msgid "Virus status updated"
+msgstr ""
+
+#: vhffs-panel/admin/stats.pl:105
+msgid "WEB stats"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:52
+msgid "Waiting for confirmation"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:118 vhffs-intl/extra_strings.pl:22
+#: vhffs-api/src/Vhffs/Panel/Object.pm:123
+msgid "Waiting for creation"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:55
+msgid "Waiting for deletion"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:124 vhffs-intl/extra_strings.pl:28
+#: vhffs-api/src/Vhffs/Panel/Object.pm:129
+msgid "Waiting for modification"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:116 vhffs-intl/template_strings.pl:53
+#: vhffs-intl/extra_strings.pl:20 vhffs-api/src/Vhffs/Panel/Object.pm:121
+msgid "Waiting for validation"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:149
+msgid "Wanted shell is not in the shell list"
+msgstr ""
+
+#: vhffs-panel/alert.pl:56
+msgid "Warn the admin team"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:65 vhffs-intl/template_strings.pl:77
+msgid ""
+"Warning, password change isn't immediate, you've to check periodically to "
+"see if it's done"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:481
+#, perl-format
+msgid ""
+"We confirm that you REFUSED the subscription of:\n"
+" %s\n"
+"\n"
+"to the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:457
+#, perl-format
+msgid ""
+"We confirm that you accepted the subscription of:\n"
+" %s\n"
+"\n"
+"to the following mailing list:\n"
+" %s\n"
+"\n"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:227
+#, perl-format
+msgid "We offer you the possibility to forward emails from %s@%s."
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:443
+#, perl-format
+msgid "We offer you the possibility to have one email box on the domain %s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Menu.pm:64 vhffs-api/src/Vhffs/Panel/Menu.pm:113
+msgid "Web"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Admin.pm:153
+msgid "Web Admin"
+msgstr ""
+
+#: vhffs-panel/web/prefs.pl:93
+msgid "Web Area Administration"
+msgstr ""
+
+#: vhffs-panel/web/prefs.pl:143
+msgid "Web area successfully modified"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:37
+msgid "Webarea"
+msgstr ""
+
+#: vhffs-panel/web/index.pl:60
+#, perl-format
+msgid "Webareas for %s"
+msgstr ""
+
+#: vhffs-panel/admin/web/index.pl:56
+msgid "Webareas' administration"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:19
+msgid "Website description"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:18
+msgid "Website name"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:15
+msgid "Websites"
+msgstr ""
+
+#: vhffs-public/group.pl:99 vhffs-intl/template_strings.pl:27
+msgid "Websites for this group"
+msgstr ""
+
+#: vhffs-panel/dns/prefs.pl:298 vhffs-panel/dns/prefs.pl:383
+msgid "Weight"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:62
+#, perl-format
+msgid "Welcome on %s"
+msgstr ""
+
+#: vhffs-panel/mailinglist/delete.pl:107
+msgid "Will be DELETED in a few minutes"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:127 vhffs-intl/extra_strings.pl:31
+#: vhffs-api/src/Vhffs/Panel/Object.pm:132
+msgid "Will be deleted"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Commons.pm:81
+#, perl-format
+msgid "Woah, %s users and %s groups already trust %s"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:93 vhffs-panel/dns/prefs.pl:261
+#: vhffs-panel/git/prefs.pl:101 vhffs-panel/cvs/prefs.pl:112
+#: vhffs-intl/template_strings.pl:82 vhffs-intl/template_strings.pl:85
+msgid "Yes"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:181 vhffs-panel/svn/prefs.pl:99
+#: vhffs-panel/user/prefs.pl:328 vhffs-panel/dns/prefs.pl:254
+#: vhffs-panel/pgsql/prefs.pl:101 vhffs-panel/group/prefs.pl:215
+#: vhffs-panel/repository/prefs.pl:91 vhffs-panel/git/prefs.pl:107
+#: vhffs-panel/web/prefs.pl:111 vhffs-panel/mysql/prefs.pl:113
+#: vhffs-panel/cvs/prefs.pl:118 vhffs-panel/mail/prefs.pl:138
+msgid "Yes I'm sure of what I do"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:227
+msgid "You are not a subscriber on this list.\n"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:271
+msgid "You are not allowed to add members (ACL rights)"
+msgstr ""
+
+#: vhffs-panel/object/quickdelete.pl:77 vhffs-panel/object/resubmit.pl:77
+msgid "You are not allowed to do it, you don't own this object"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:251
+msgid "You are not allowed to manager subscribers' rights (ACL rights)"
+msgstr ""
+
+#: vhffs-panel/mail/prefs.pl:177 vhffs-panel/mail/prefs.pl:207
+#: vhffs-panel/mail/prefs.pl:225 vhffs-panel/mail/prefs.pl:265
+#: vhffs-panel/mail/prefs.pl:279 vhffs-panel/mail/prefs.pl:295
+#: vhffs-panel/mail/prefs.pl:311
+msgid "You are not allowed to modify this object"
+msgstr ""
+
+#: vhffs-panel/web/prefs.pl:125
+msgid "You are not allowed to modify this web area"
+msgstr ""
+
+#: vhffs-panel/admin/mailinglist/search.pl:71
+#: vhffs-panel/admin/mailinglist/list.pl:63 vhffs-panel/admin/svn/search.pl:73
+#: vhffs-panel/admin/svn/list.pl:55 vhffs-panel/admin/broadcast.pl:70
+#: vhffs-panel/admin/stats.pl:82 vhffs-panel/admin/user/search.pl:72
+#: vhffs-panel/admin/user/list.pl:55 vhffs-panel/admin/dns/search.pl:72
+#: vhffs-panel/admin/dns/list.pl:59 vhffs-panel/admin/pgsql/search.pl:72
+#: vhffs-panel/admin/pgsql/list.pl:60 vhffs-panel/admin/group/search.pl:72
+#: vhffs-panel/admin/group/list.pl:65 vhffs-panel/admin/broadcast_list.pl:71
+#: vhffs-panel/admin/repository/search.pl:71
+#: vhffs-panel/admin/repository/list.pl:59 vhffs-panel/admin/git/search.pl:73
+#: vhffs-panel/admin/git/list.pl:56 vhffs-panel/admin/object/edit_submit.pl:74
+#: vhffs-panel/admin/object/delete_avatar.pl:78
+#: vhffs-panel/admin/object/edit.pl:74 vhffs-panel/admin/object/search.pl:71
+#: vhffs-panel/admin/object/list.pl:72 vhffs-panel/admin/broadcast_view.pl:73
+#: vhffs-panel/admin/web/search.pl:72 vhffs-panel/admin/web/list.pl:54
+#: vhffs-panel/admin/mysql/search.pl:72 vhffs-panel/admin/mysql/list.pl:66
+#: vhffs-panel/admin/cvs/search.pl:71 vhffs-panel/admin/cvs/list.pl:60
+#: vhffs-panel/admin/mail/search.pl:72 vhffs-panel/admin/mail/list.pl:59
+msgid "You are not allowed to see it"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:186 vhffs-api/src/Vhffs/Panel/Main.pm:207
+msgid "You are not granted to access this page"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:119
+#, perl-format
+msgid ""
+"You asked to be subscribed to the following list:\n"
+"\n"
+"%s\n"
+"\n"
+msgstr ""
+
+#: vhffs-panel/svn/prefs.pl:105 vhffs-panel/dns/prefs.pl:246
+#: vhffs-panel/git/prefs.pl:113 vhffs-panel/web/prefs.pl:104
+#: vhffs-panel/mail/prefs.pl:144
+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.pm:49
+msgid "You can also send a command list in the mail body.\n"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:110
+msgid "You cannot remove the owner of the group"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:89
+msgid "You cannot subscribe to VHFFS"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:226
+#, perl-format
+msgid "You cannot unsubscribe from the list %s\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:211
+msgid "You demand was refused\n"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:87
+msgid "You do not own this domain !"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:182
+#, perl-format
+msgid ""
+"You have been successfully removed from the following list:\n"
+" %s\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:255
+#, perl-format
+msgid "You have been successfully removed from the list %s.\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:147 vhffs-api/src/Vhffs/Listengine.pm:163
+#, perl-format
+msgid ""
+"You have been successfully subscribed to the following mailing list:\n"
+" %s\n"
+msgstr ""
+
+#: vhffs-panel/web/prefs.pl:135
+msgid "You have to enter a description"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:284 vhffs-panel/repository/prefs.pl:125
+msgid "You have to enter a quota greater than the current used quota"
+msgstr ""
+
+#: vhffs-panel/mailinglist/index.pl:54 vhffs-panel/svn/index.pl:54
+#: vhffs-panel/dns/index.pl:54 vhffs-panel/pgsql/index.pl:54
+#: vhffs-panel/repository/index.pl:54 vhffs-panel/git/index.pl:55
+#: vhffs-panel/web/index.pl:54 vhffs-panel/mysql/index.pl:54
+#: vhffs-panel/cvs/index.pl:54 vhffs-panel/mail/index.pl:54
+msgid "You have to select a group first"
+msgstr ""
+
+#: vhffs-panel/auth.pl:105
+msgid "You left your VHFFS session!"
+msgstr ""
+
+#: vhffs-panel/lost.pl:55
+msgid "You lost your password? You're a bad guy!"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:149 vhffs-api/src/Vhffs/Listengine.pm:168
+#: vhffs-api/src/Vhffs/Listengine.pm:443
+msgid "You may get some help on listengine by sending an email to\n"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:204
+msgid "You must choose a method for your mail"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:85 vhffs-api/src/Vhffs/Listengine.pm:103
+msgid "You must confirm your request by sending a confirmation email\n"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:143
+msgid "You must declare a valid mail address"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:123
+msgid "You must declare your city"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:119
+msgid "You must declare your country"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:131
+msgid "You must declare your firstname"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:135
+msgid "You must declare your lastname"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:139
+msgid "You must declare your mail address"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:111
+msgid "You must declare your username"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:127
+msgid "You must declare your zipcode"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:83 vhffs-panel/svn/create.pl:83
+#: vhffs-panel/dns/create.pl:53 vhffs-panel/pgsql/create.pl:84
+#: vhffs-panel/group/prefs.pl:86 vhffs-panel/group/create.pl:68
+#: vhffs-panel/repository/create.pl:79 vhffs-panel/git/create.pl:83
+#: vhffs-panel/object/resubmit.pl:90 vhffs-panel/web/create.pl:81
+#: vhffs-panel/mysql/create.pl:84 vhffs-panel/cvs/create.pl:84
+#: vhffs-panel/mail/create.pl:78
+msgid "You must enter a description"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:88 vhffs-panel/group/create.pl:70
+msgid "You must enter a full name"
+msgstr ""
+
+#: vhffs-panel/group/prefs.pl:126
+msgid "You must enter an username"
+msgstr ""
+
+#: vhffs-panel/group/view.pl:55
+msgid "You must specify a project name"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:281
+msgid "You need to enter at least one new member"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:166
+msgid "You will receive an email with the decision of administrators.\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Panel/Main.pm:375
+msgid "You're are not allowed to browse panel"
+msgstr ""
+
+#: vhffs-panel/mailinglist/create.pl:62 vhffs-panel/svn/create.pl:63
+#: vhffs-panel/dns/create.pl:34 vhffs-panel/pgsql/create.pl:63
+#: vhffs-panel/group/delete.pl:68 vhffs-panel/group/history.pl:71
+#: vhffs-panel/group/prefs.pl:78 vhffs-panel/group/prefs.pl:108
+#: vhffs-panel/group/prefs.pl:119 vhffs-panel/group/prefs.pl:160
+#: vhffs-panel/group/prefs.pl:177 vhffs-panel/repository/create.pl:64
+#: vhffs-panel/admin/moderation_submit.pl:67
+#: vhffs-panel/admin/moderation.pl:70 vhffs-panel/admin/broadcast_submit.pl:79
+#: vhffs-panel/admin/broadcast_delete.pl:79 vhffs-panel/git/create.pl:64
+#: vhffs-panel/web/prefs.pl:84 vhffs-panel/web/create.pl:63
+#: vhffs-panel/mysql/create.pl:63 vhffs-panel/cvs/create.pl:64
+#: vhffs-panel/mail/create.pl:60
+msgid "You're not allowed to do this (ACL rights)"
+msgstr ""
+
+#: vhffs-panel/mailinglist/delete.pl:91 vhffs-panel/mailinglist/prefs.pl:84
+#: vhffs-panel/mailinglist/prefs.pl:205 vhffs-panel/mailinglist/prefs.pl:230
+#: vhffs-panel/svn/delete.pl:81 vhffs-panel/svn/prefs.pl:76
+#: vhffs-panel/svn/prefs.pl:134 vhffs-panel/user/prefs.pl:78
+#: vhffs-panel/user/prefs.pl:84 vhffs-panel/dns/delete.pl:87
+#: vhffs-panel/dns/prefs.pl:86 vhffs-panel/dns/prefs.pl:95
+#: vhffs-panel/pgsql/delete.pl:77 vhffs-panel/pgsql/prefs.pl:71
+#: vhffs-panel/pgsql/prefs.pl:115 vhffs-panel/group/prefs.pl:70
+#: vhffs-panel/repository/delete.pl:82 vhffs-panel/repository/prefs.pl:74
+#: vhffs-panel/git/delete.pl:82 vhffs-panel/git/prefs.pl:80
+#: vhffs-panel/git/prefs.pl:142 vhffs-panel/git/prefs.pl:164
+#: vhffs-panel/web/delete.pl:83 vhffs-panel/mysql/delete.pl:79
+#: vhffs-panel/mysql/prefs.pl:80 vhffs-panel/cvs/delete.pl:82
+#: vhffs-panel/cvs/prefs.pl:73 vhffs-panel/cvs/prefs.pl:78
+#: vhffs-panel/cvs/prefs.pl:94 vhffs-panel/mail/delete.pl:87
+#: vhffs-panel/mail/prefs.pl:77
+msgid ""
+"You're not allowed to do this, object is not in active state or you don't "
+"have enough ACL rights"
+msgstr ""
+
+#: vhffs-panel/acl/view.pl:89
+msgid "You're not allowed to manage this object's ACL"
+msgstr ""
+
+#: vhffs-panel/history.pl:94 vhffs-panel/acl/view.pl:76
+msgid "You're not allowed to view this object's ACL"
+msgstr ""
+
+#: vhffs-panel/admin/su.pl:65
+msgid "You're not an administrator"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Object.pm:512
+#, perl-format
+msgid "Your %s (%s) on %s has been deleted due to lack of updates"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/User.pm:333
+#, perl-format
+msgid ""
+"Your account (%s) on %s has been deleted because it was unused for a long "
+"time"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:243
+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-panel/alert.pl:58
+msgid "Your message"
+msgstr ""
+
+#: vhffs-panel/group/index.pl:61
+msgid "Your projects"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Object.pm:416
+#, perl-format
+msgid "Your request for a %s (%s) on %s was accepted"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Object.pm:466
+#, perl-format
+msgid "Your request for a %s (%s) on %s was refused"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:441
+#, perl-format
+msgid ""
+"Your subscription was accepted to the following mailing list:\n"
+" %s\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:469
+#, perl-format
+msgid ""
+"Your subscription was refused to the following mailing list:\n"
+" %s\n"
+"\n"
+"Have a nice day.\n"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:242
+msgid ""
+"Your username. It must contains only alphanumeric characters in lowercase, "
+"its length must be between 3 and 12 chars"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:147
+msgid "Your zipcode is not correct! Please enter a correct zipcode"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:227 vhffs-panel/user/prefs.pl:305
+msgid "Zipcode"
+msgstr ""
+
+#: vhffs-panel/user/prefs.pl:132
+msgid "Zipcode is not correct !"
+msgstr ""
+
+#: vhffs-panel/mailinglist/prefs.pl:301
+#, perl-format
+msgid "[%s] You've been added to the list %s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:355
+msgid "cannot be removed from the list\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:319
+msgid "cannot be removed.\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:53
+msgid "help\t\t - show this help\n"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:17
+msgid "help_user_admin"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:13
+msgid "help_user_bug"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:12
+msgid "help_user_help"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:14
+msgid "help_user_logout"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:11
+msgid "help_user_preferences"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:16
+msgid "help_user_project"
+msgstr ""
+
+#: vhffs-intl/extra_strings.pl:15
+msgid "help_user_projects"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:372
+#, perl-format
+msgid "in the moderation queue of the list %s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:56
+msgid "lang [fr|us|es]\t - set listengine language\n"
+msgstr ""
+
+#: vhffs-listengine/src/listengine.pl:965
+#, perl-format
+msgid "listengine - list of messages to moderate for %s"
+msgstr ""
+
+#: vhffs-listengine/src/listengine.pl:848
+#: vhffs-listengine/src/listengine.pl:870
+#: vhffs-listengine/src/listengine.pl:881
+msgid "listengine help"
+msgstr ""
+
+#: vhffs-listengine/src/listengine.pl:913
+#: vhffs-listengine/src/listengine.pl:924
+#: vhffs-listengine/src/listengine.pl:940
+#: vhffs-listengine/src/listengine.pl:952
+#: vhffs-listengine/src/listengine.pl:979
+#: vhffs-listengine/src/listengine.pl:990
+msgid "listengine moderation"
+msgstr ""
+
+#: vhffs-listengine/src/listengine.pl:898
+msgid "listengine result command"
+msgstr ""
+
+#: vhffs-listengine/src/listengine.pl:1031
+msgid "listengine: unknown command"
+msgstr ""
+
+#: vhffs-panel/subscribe.pl:224 vhffs-panel/user/prefs.pl:302
+msgid "mail"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:61
+msgid "moderate XXXXX\t\t\t - accept the message with message-id XXXXX\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:62
+msgid ""
+"moderate accept XXXXX\t\t\t - accept the message with message-id XXXXX\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:64
+msgid "moderate list\t\t\t - give the message list for moderation\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:63
+msgid ""
+"moderate refused XXXXX\t\t\t - refuse the message with message-id XXXXX\n"
+msgstr ""
+
+#: vhffs-panel/web/create.pl:90
+msgid "new site"
+msgstr ""
+
+#: vhffs-panel/admin/object/edit.pl:113
+#: vhffs-api/src/Vhffs/Panel/Object.pm:118
+msgid "no date"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Object.pm:380
+msgid "no reason given"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:318 vhffs-api/src/Vhffs/Listengine.pm:354
+#, perl-format
+msgid "present in the moderation queue for the list %s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:54
+msgid "subscribe\t - subscribe the shipper to the list\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:59
+msgid ""
+"subscription accept XXXXX\t\t - accept the subscription with key XXXXX\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:60
+msgid ""
+"subscription refuse XXXXX\t\t - refuse the subscription with key XXXXX\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:55
+msgid "unsubscribe\t - unsubscribe from this list\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:69
+msgid "user info user@xxxxxxxxxx\t\t - show user information\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:67
+msgid "user right RIGHT user@xxxxxxxxxx\t - change right for this user\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:66
+msgid ""
+"user subscribe user@xxxxxxxxxx\t\t - register the user user@xxxxxxxxxx on "
+"the list\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:65
+msgid ""
+"user unsubscribe user@xxxxxxxxxx\t - delete user user@xxxxxxxxxx from list\n"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:337
+#, perl-format
+msgid "was removed from the moderation queue from the list %s"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:373
+msgid "was sent on the list.\n"
+msgstr ""
+
+#: vhffs-intl/template_strings.pl:23
+msgid "website(s)"
+msgstr ""
+
+#: vhffs-panel/group/create.pl:86
+msgid ""
+"with only lowercase alphanumerical letters, no space, from 3 to 12 characters"
+msgstr ""
+
+#: vhffs-api/src/Vhffs/Listengine.pm:407
+#, perl-format
+msgid ""
+"with the following subject :\n"
+" \"moderate %s\" \n"
+msgstr ""
Modified: trunk/vhffs-listengine/src/Makefile.am
===================================================================
--- trunk/vhffs-listengine/src/Makefile.am 2008-01-09 20:46:27 UTC (rev 1118)
+++ trunk/vhffs-listengine/src/Makefile.am 2008-01-10 06:39:28 UTC (rev 1119)
@@ -4,6 +4,7 @@
# Define the substitution we need to point perl script at correct location
do_sed = $(SED) --in-place \
-e 's,%PERL%,$(PERL),g' \
+ -e 's,%localedir%,$(localedir),g' \
-e 's,'%VHFFS_LIB_DIR%',$(VHFFS_LIBDIR),g'
# Because automake, exec-hook is executed before install-scripts
Modified: trunk/vhffs-listengine/src/listengine.pl
===================================================================
--- trunk/vhffs-listengine/src/listengine.pl 2008-01-09 20:46:27 UTC (rev 1118)
+++ trunk/vhffs-listengine/src/listengine.pl 2008-01-10 06:39:28 UTC (rev 1119)
@@ -832,7 +832,7 @@
#If the user specified a lang, we change it to get internationalized messages
if( defined $lang )
{
- bindtextdomain("vhffs", $vhffs->get_config->get_intldir);
+ bindtextdomain("vhffs", '%localedir%');
textdomain("vhffs");
}
@@ -1113,7 +1113,7 @@
if( defined $lang )
{
#Change current locale to user preferences if defined
- bindtextdomain("vhffs", $vhffs->get_config->get_intldir);
+ bindtextdomain("vhffs", '%localedir%');
textdomain("vhffs");
setlocale(LC_ALL, $lang );
}