From da9791395d06c9ea930a0f4b1b793823bcb661b9 Mon Sep 17 00:00:00 2001 From: Benjamin Sonntag Date: Sat, 20 Sep 2014 19:23:57 +0200 Subject: [PATCH] adding alternc-ssl module into a new branch --- debian/alternc-ssl.cron.d | 2 + debian/alternc-ssl.dirs | 12 + debian/alternc-ssl.postinst | 49 + debian/alternc-ssl.postrm | 23 + debian/changelog | 1 + debian/control | 21 + debian/rules | 1 + ssl/Makefile | 38 + ssl/alternc-ssl.install | 9 + ssl/hosting_vhost-ssl.sh | 17 + ssl/openssl.cnf | 16 + ssl/panel/admin/images/ssl.png | Bin 0 -> 561 bytes ssl/panel/admin/ssl_doimport.php | 52 + ssl/panel/admin/ssl_donew.php | 54 + ssl/panel/admin/ssl_finalize.php | 44 + ssl/panel/admin/ssl_list.php | 106 + ssl/panel/admin/ssl_new.php | 163 + ssl/panel/admin/ssl_share.php | 44 + ssl/panel/admin/ssl_view.php | 197 + ssl/panel/admin/styles/style.css | 1072 +++ ssl/panel/class/m_ssl.php | 569 ++ ssl/panel/index.php | 3 + ssl/panel/locales/Makefile | 8 + ssl/panel/locales/README | 46 + .../locales/de_DE/LC_MESSAGES/alternc.mo | Bin 0 -> 56202 bytes ssl/panel/locales/de_DE/LC_MESSAGES/manual.po | 710 ++ .../locales/de_DE/LC_MESSAGES/messages.po | 5066 +++++++++++++ ssl/panel/locales/en_GB | 1 + .../locales/en_US/LC_MESSAGES/alternc.mo | Bin 0 -> 416 bytes ssl/panel/locales/en_US/LC_MESSAGES/manual.po | 793 +++ .../locales/en_US/LC_MESSAGES/messages.po | 4969 +++++++++++++ .../locales/es_ES/LC_MESSAGES/alternc.mo | Bin 0 -> 32813 bytes ssl/panel/locales/es_ES/LC_MESSAGES/manual.po | 839 +++ .../locales/es_ES/LC_MESSAGES/messages.po | 5986 ++++++++++++++++ ssl/panel/locales/fr_CA | 1 + .../locales/fr_FR/LC_MESSAGES/alternc.mo | Bin 0 -> 141346 bytes ssl/panel/locales/fr_FR/LC_MESSAGES/manual.po | 866 +++ .../locales/fr_FR/LC_MESSAGES/messages.po | 6076 ++++++++++++++++ .../locales/it_IT/LC_MESSAGES/alternc.mo | Bin 0 -> 2906 bytes ssl/panel/locales/it_IT/LC_MESSAGES/manual.po | 710 ++ .../locales/it_IT/LC_MESSAGES/messages.po | 4969 +++++++++++++ ssl/panel/locales/manual.pot | 710 ++ ssl/panel/locales/messages.pot | 4969 +++++++++++++ .../locales/nl_NL/LC_MESSAGES/alternc.mo | Bin 0 -> 89312 bytes .../locales/nl_NL/LC_MESSAGES/messages.po | 4969 +++++++++++++ .../locales/pt_BR/LC_MESSAGES/alternc.mo | Bin 0 -> 12940 bytes ssl/panel/locales/pt_BR/LC_MESSAGES/manual.po | 710 ++ .../locales/pt_BR/LC_MESSAGES/messages.po | 6271 +++++++++++++++++ ssl/ssl.sql | 20 + ssl/ssl_alias_manager.sh | 21 + ssl/templates/panel-ssl.conf | 30 + ssl/templates/roundcube-ssl.conf | 58 + ssl/templates/squirrelmail-ssl.conf | 26 + ssl/templates/url-ssl.conf | 17 + ssl/templates/vhost-ssl.conf | 22 + ssl/update_ssl.php | 8 + 56 files changed, 51364 insertions(+) create mode 100644 debian/alternc-ssl.cron.d create mode 100644 debian/alternc-ssl.dirs create mode 100755 debian/alternc-ssl.postinst create mode 100755 debian/alternc-ssl.postrm create mode 100755 ssl/Makefile create mode 100644 ssl/alternc-ssl.install create mode 100755 ssl/hosting_vhost-ssl.sh create mode 100644 ssl/openssl.cnf create mode 100644 ssl/panel/admin/images/ssl.png create mode 100644 ssl/panel/admin/ssl_doimport.php create mode 100644 ssl/panel/admin/ssl_donew.php create mode 100644 ssl/panel/admin/ssl_finalize.php create mode 100644 ssl/panel/admin/ssl_list.php create mode 100644 ssl/panel/admin/ssl_new.php create mode 100644 ssl/panel/admin/ssl_share.php create mode 100644 ssl/panel/admin/ssl_view.php create mode 100644 ssl/panel/admin/styles/style.css create mode 100644 ssl/panel/class/m_ssl.php create mode 100644 ssl/panel/index.php create mode 100644 ssl/panel/locales/Makefile create mode 100644 ssl/panel/locales/README create mode 100644 ssl/panel/locales/de_DE/LC_MESSAGES/alternc.mo create mode 100644 ssl/panel/locales/de_DE/LC_MESSAGES/manual.po create mode 100644 ssl/panel/locales/de_DE/LC_MESSAGES/messages.po create mode 120000 ssl/panel/locales/en_GB create mode 100644 ssl/panel/locales/en_US/LC_MESSAGES/alternc.mo create mode 100644 ssl/panel/locales/en_US/LC_MESSAGES/manual.po create mode 100644 ssl/panel/locales/en_US/LC_MESSAGES/messages.po create mode 100644 ssl/panel/locales/es_ES/LC_MESSAGES/alternc.mo create mode 100644 ssl/panel/locales/es_ES/LC_MESSAGES/manual.po create mode 100644 ssl/panel/locales/es_ES/LC_MESSAGES/messages.po create mode 120000 ssl/panel/locales/fr_CA create mode 100644 ssl/panel/locales/fr_FR/LC_MESSAGES/alternc.mo create mode 100644 ssl/panel/locales/fr_FR/LC_MESSAGES/manual.po create mode 100644 ssl/panel/locales/fr_FR/LC_MESSAGES/messages.po create mode 100644 ssl/panel/locales/it_IT/LC_MESSAGES/alternc.mo create mode 100644 ssl/panel/locales/it_IT/LC_MESSAGES/manual.po create mode 100644 ssl/panel/locales/it_IT/LC_MESSAGES/messages.po create mode 100644 ssl/panel/locales/manual.pot create mode 100644 ssl/panel/locales/messages.pot create mode 100644 ssl/panel/locales/nl_NL/LC_MESSAGES/alternc.mo create mode 100644 ssl/panel/locales/nl_NL/LC_MESSAGES/messages.po create mode 100644 ssl/panel/locales/pt_BR/LC_MESSAGES/alternc.mo create mode 100644 ssl/panel/locales/pt_BR/LC_MESSAGES/manual.po create mode 100644 ssl/panel/locales/pt_BR/LC_MESSAGES/messages.po create mode 100644 ssl/ssl.sql create mode 100644 ssl/ssl_alias_manager.sh create mode 100644 ssl/templates/panel-ssl.conf create mode 100644 ssl/templates/roundcube-ssl.conf create mode 100644 ssl/templates/squirrelmail-ssl.conf create mode 100644 ssl/templates/url-ssl.conf create mode 100644 ssl/templates/vhost-ssl.conf create mode 100644 ssl/update_ssl.php diff --git a/debian/alternc-ssl.cron.d b/debian/alternc-ssl.cron.d new file mode 100644 index 00000000..47d3a9b2 --- /dev/null +++ b/debian/alternc-ssl.cron.d @@ -0,0 +1,2 @@ +# Every hour, do ssl actions +33 * * * * root /usr/lib/alternc/update_ssl.php diff --git a/debian/alternc-ssl.dirs b/debian/alternc-ssl.dirs new file mode 100644 index 00000000..c28022f9 --- /dev/null +++ b/debian/alternc-ssl.dirs @@ -0,0 +1,12 @@ +etc/alternc/templates/apache2 +etc/apache2/conf.d +usr/lib/alternc/install.d +usr/share/alternc/install +usr/share/doc/alternc-ssl +usr/share/alternc/panel/admin/images +usr/share/alternc/panel/admin/styles +usr/share/alternc/panel/class +usr/share/alternc/panel/locales/en_US/LC_MESSAGES +usr/share/alternc/panel/locales/fr_FR/LC_MESSAGES +var/lib/alternc/backups +etc/alternc/functions_hosting diff --git a/debian/alternc-ssl.postinst b/debian/alternc-ssl.postinst new file mode 100755 index 00000000..28c3cfb1 --- /dev/null +++ b/debian/alternc-ssl.postinst @@ -0,0 +1,49 @@ +#!/bin/bash -e + +. /usr/share/debconf/confmodule + +CONFIGFILE="/etc/alternc/local.sh" + +case "$1" in + configure) + . "$CONFIGFILE" + + # Then, configure the quota for "ssl" + /usr/lib/alternc/quota_init ssl 0 + + echo "Installing mysql table" + mysql --defaults-file=/etc/alternc/my.cnf < /usr/share/alternc/install/ssl.sql + + # Create default quota "ssl" with value 0 + mysql --defaults-file=/etc/alternc/my.cnf -Bse "INSERT INTO defquotas VALUES ('ssl', 0, 'default')" || true + + echo "installing required apache modules" + a2enmod ssl + + echo "$2" >/var/lib/alternc/backups/alternc-ssl-lastversion + + echo -e "\033[31m**********************************************" + echo "* *" + echo "* ALTERNC-SSL ACTION REQUESTED *" + echo "* *" + echo "* Please run alternc.install to fully deploy *" + echo "* Then change your quota to activate SSL Cert*" + echo "* *" + echo "**********************************************" + echo -e "\033[0m" + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. +#DEBHELPER# + +# vim: et sw=4 diff --git a/debian/alternc-ssl.postrm b/debian/alternc-ssl.postrm new file mode 100755 index 00000000..a04820e9 --- /dev/null +++ b/debian/alternc-ssl.postrm @@ -0,0 +1,23 @@ +#!/bin/sh -e + +CONFIGFILE="/etc/alternc/my.cnf" +MENUFILE="/etc/alternc/menulist.txt" + +case "$1" in + remove) + alternc.install || true # don't fail removal if alternc.install bails out + + # TODO : we don't purge *-ssl vhosts or *-ssl templates, they may break the hosting ... + ;; + purge) + # but yes, at purge time we should + #if [ -e "$CONFIGFILE" -a -x "/usr/bin/mysql" ]; then + # mysql --defaults-file=${CONFIGFILE} -f -e "DROP TABLE IF EXISTS certificate" + # and other purges... + #fi + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. +#DEBHELPER# diff --git a/debian/changelog b/debian/changelog index e6e5b2a9..ae8d6cbb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ alternc (3.3~rc1) stable; urgency=low * unofficial Prerelease of AlternC 3.3 * update_domaines now in PHP and using classes and hooks instead of BASH * AlternC-API package is now included. Compatibile with alternc >= 3.0 + * AlternC-SSL package is now included. Compatibile with alternc >= 3.0 -- Benjamin Sonntag Thu, 20 Sep 2014 18:13:00 +0200 diff --git a/debian/control b/debian/control index 5651fb53..93da471a 100644 --- a/debian/control +++ b/debian/control @@ -330,3 +330,24 @@ Description: Rest or get/post API for AlternC More information at http://www.alternc.com/ Homepage: http://www.alternc.com/ +Package: alternc-ssl +Priority: optional +Section: admin +Architecture: all +Depends: openssl, mysql-client, debconf, alternc (>= 3.1), php5-cli, ${misc:Depends} +Description: HTTPS module for AlternC + AlternC is a mutualized hosting software manager for Linux. + It allows you to manage your websites, domains, ftp, emails, aliases, + web statistics, mailing-lists, jabber accounts, etc. + . + This package is an optional module that adds HTTPS vhosts and SSL Certificates + management to the virtual desktop. + . + More information on http://www.alternc.com/ +Description-fr.UTF-8: Module HTTPS pour AlternC + AlternC est un logiciel d'hébergement mutualisé pour serveur Linux. + Il permet de gérer les sites web, domaines, ftp, emails, alias, + statistiques web, listes de discussions, comptes jabber, etc. + . + Ce paquet est un module optionnel qui permet aux utilisateurs + de gérer des hôtes virtuels HTTPS et des certificats SSL dans AlternC. diff --git a/debian/rules b/debian/rules index cd53887f..7b05a38a 100755 --- a/debian/rules +++ b/debian/rules @@ -21,6 +21,7 @@ override_dh_install: $(MAKE) install-awstats DESTDIR=$(CURDIR)/debian/alternc-awstats $(MAKE) install-slave DESTDIR=$(CURDIR)/debian/alternc-slave $(MAKE) install-api DESTDIR=$(CURDIR)/debian/alternc-api + $(MAKE) -C ssl install DESTDIR=$(CURDIR)/debian/alternc-ssl %: dh $@ diff --git a/ssl/Makefile b/ssl/Makefile new file mode 100755 index 00000000..2a1a9539 --- /dev/null +++ b/ssl/Makefile @@ -0,0 +1,38 @@ +# ---------------------------------------------------------------------- +# LICENSE +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License (GPL) +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# To read the license please visit http://www.gnu.org/copyleft/gpl.html +# ---------------------------------------------------------------------- +# Purpose of file: Install the files of alternc-ssl packages +# ---------------------------------------------------------------------- + +install: + install -m 0644 -g root -o root ssl.sql $(DESTDIR)/usr/share/alternc/install/ + install -m 0755 -g root -o root alternc-ssl.install $(DESTDIR)/usr/lib/alternc/install.d/ + install -m 0755 -g root -o root update_ssl.php $(DESTDIR)/usr/lib/alternc/ +# incron + install -m 0755 -g root -o root ssl_alias_manager.sh $(DESTDIR)/usr/lib/alternc/ + install -m 0644 -g root -o root + + install -m 0644 -g 1999 -o root panel/class/m_ssl.php $(DESTDIR)/usr/share/alternc/panel/class/ + install -m 0644 -g 1999 -o root panel/admin/*.php $(DESTDIR)/usr/share/alternc/panel/admin/ + install -m 0644 -g 1999 -o root panel/admin/images/* $(DESTDIR)/usr/share/alternc/panel/admin/images/ + install -m 0644 -g 1999 -o root panel/admin/styles/* $(DESTDIR)/usr/share/alternc/panel/admin/styles/ + install -m 0644 -g 1999 -o root templates/* $(DESTDIR)/etc/alternc/templates/apache2/ + install -m 0644 -g 1999 -o root openssl.cnf $(DESTDIR)/etc/alternc/ + install -m 0755 -g 1999 -o root hosting_vhost-ssl.sh $(DESTDIR)/etc/alternc/functions_hosting/ + ln -s $(DESTDIR)/etc/alternc/functions_hosting/hosting_vhost-ssl.sh $(DESTDIR)/etc/alternc/functions_hosting/hosting_panel-ssl.sh + ln -s $(DESTDIR)/etc/alternc/functions_hosting/hosting_vhost-ssl.sh $(DESTDIR)/etc/alternc/functions_hosting/hosting_url-ssl.sh + ln -s $(DESTDIR)/etc/alternc/functions_hosting/hosting_vhost-ssl.sh $(DESTDIR)/etc/alternc/functions_hosting/hosting_roundcube-ssl.sh + ln -s $(DESTDIR)/etc/alternc/functions_hosting/hosting_vhost-ssl.sh $(DESTDIR)/etc/alternc/functions_hosting/hosting_squirrelmail-ssl.sh + ln -s $(DESTDIR)/etc/alternc/functions_hosting/hosting_vhost-ssl.sh $(DESTDIR)/etc/alternc/functions_hosting/hosting_php52-ssl.sh diff --git a/ssl/alternc-ssl.install b/ssl/alternc-ssl.install new file mode 100644 index 00000000..ce2a92dd --- /dev/null +++ b/ssl/alternc-ssl.install @@ -0,0 +1,9 @@ +#!/usr/bin/php +N*h9Kr56x%7OHK=LYnWvB7z$9g!_JJ=XKR&1j6ffyX~}EEkBt| zrvI)d5{b9PV$tn%I`gHozDGfjmm(*--R|${bovV`X0ut(w(Xyu=jlsl&5snsB;+{G zjD@u+*)R-uKA+Rl2^B=qb)6ByG)>6+h`52z`1SKAK0EDWbTz?n_yGIX1A&n;x3GVt z;o$uVzSqad7pjC6fv@1R$f;{+t_5}(2?f~J0mESI?kU(kd?${NjgKHzh{Z@oCJ1s3 zsHzX5fE1n}TB0b}$UhZTU7o(FU?cyzKn=7JVKO8wa z+`G^J2SgMHps!_1qDe^NOCBYj array ("post", "string", ""), + "crt" => array ("post", "string", ""), + "chain" => array ("post", "string", ""), + ); + getFields($fields); +} + +if (!$key && !$crt) { + $error=_("Please enter an ssl key and a certificate"); + require_once("ssl_new.php"); + exit(); +} + +$id=$ssl->import_cert($key,$crt,$chain); +$error=$err->errstr(); +if ($error) { + require_once("ssl_new.php"); + exit(); +} + +header("Location: /ssl_view.php?id=".$id); + + diff --git a/ssl/panel/admin/ssl_donew.php b/ssl/panel/admin/ssl_donew.php new file mode 100644 index 00000000..4897f3b3 --- /dev/null +++ b/ssl/panel/admin/ssl_donew.php @@ -0,0 +1,54 @@ + array ("request", "string", ""), + "fqdnt" => array ("request", "string", ""), + ); + getFields($fields); +} + +if (!$fqdn && !$fqdnt) { + $error=_("Please enter a proper domain name"); + require_once("ssl_new.php"); + exit(); +} + +if ($fqdnt) $d=$fqdnt; +if ($fqdn) $d=$fqdn; + +$id=$ssl->new_csr($d); +$error=$err->errstr(); +if ($error) { + require_once("ssl_new.php"); + exit(); +} + +$is_include=true; +require_once("ssl_view.php"); + diff --git a/ssl/panel/admin/ssl_finalize.php b/ssl/panel/admin/ssl_finalize.php new file mode 100644 index 00000000..2e61b9b2 --- /dev/null +++ b/ssl/panel/admin/ssl_finalize.php @@ -0,0 +1,44 @@ + array ("post", "integer", ""), + "crt" => array ("post", "string", ""), + "chain" => array ("post", "string", ""), + ); +getFields($fields); + +$cert=$ssl->finalize($id,$crt,$chain); +echo $ssl->error; +$error=$err->errstr(); +if ($error) { + require_once("ssl_list.php"); + exit(); +} +$info=_("Your ssl certificate has been imported successfully"); + +require_once("ssl_view.php"); diff --git a/ssl/panel/admin/ssl_list.php b/ssl/panel/admin/ssl_list.php new file mode 100644 index 00000000..3ea52986 --- /dev/null +++ b/ssl/panel/admin/ssl_list.php @@ -0,0 +1,106 @@ + array ("request", "integer", null), + "filter1" => array ("request", "integer", 0), + "filter2" => array ("request", "integer", 0), + "filter4" => array ("request", "integer", 0), + "filter8" => array ("request", "integer", 0), + ); + getFields($fields); +} + +if (isset($filter1) && isset($filter2) && isset($filter4) && isset($filter8)) { + $filter=$filter1+$filter2+$filter4+$filter8; + if ($filter==0) $filter=null; +} + +$r=$ssl->get_list($filter); + +if (!$error) $error.=$err->errstr(); + +$astatus=array( + $ssl::STATUS_PENDING => _("Pending Certificate"), + $ssl::STATUS_OK => _("Valid"), + $ssl::STATUS_EXPIRED => ("Expired"), + ); + +include_once("head.php"); + +if ($error) { + echo "

$error

"; +} +if ($info) { + echo "

$info

"; +} + +?> +

+ +

+
+


+ + + +
+ +     +"/> +

+ + + + + + + + + + + + + + + + + +
"._("(shared)").""; ?>
+

+ +

+ + diff --git a/ssl/panel/admin/ssl_new.php b/ssl/panel/admin/ssl_new.php new file mode 100644 index 00000000..0fd49104 --- /dev/null +++ b/ssl/panel/admin/ssl_new.php @@ -0,0 +1,163 @@ + array ("request", "string", ""), + "key" => array ("request", "string", ""), + "crt" => array ("request", "string", ""), + "chain" => array ("request", "string", ""), + ); + getFields($fields); +} + +$advice=$ssl->get_new_advice(); +?> + +

+ +$error

"; +} +?> +

+ +

+

+ Certificate Request (CSR) and a RSA Key (KEY) here, then give the CSR to the Certificate Authority, which will give you a certificate (CRT) and also often a chained certificate (CHAIN)."); ?> +

+

+ +

+ + +
+
+ +
    +
  • +
  • +
+ +
+

+ +

Certificate Request file (CSR) and a RSA Key file (KEY) for a given domain name"); ?>

+ + + +
+ + + + + + +
+ +
+ + type="text" class="int" name="fqdnt" id="fqdnt" value="" size="40" maxlength="64" /> type="button" id="relist" name="relist" value=" list v " onclick="switchlist()" /> +
+

+ "/>   + " onclick="document.location='ssl_list.php'"/> +

+
+ +
+

www.example.com is NOT valid for intranet.example.com or intranet.www.example.com !"); ?>
(If you want to get a valid certificate for all the subdomains of a domain, use a wildcard notation (eg: *.example.com). Please note that a wildcard certificate is usually more expensive than normal one.)"); ?>

+
+ +
+ + +
+

+ +

+

+ +
+ + + + + + + + + + + + + +
+

+ "/>   + " onclick="document.location='ssl_list.php'"/> +

+
+
+ +
+
+ + diff --git a/ssl/panel/admin/ssl_share.php b/ssl/panel/admin/ssl_share.php new file mode 100644 index 00000000..4368031e --- /dev/null +++ b/ssl/panel/admin/ssl_share.php @@ -0,0 +1,44 @@ +enabled) { + __("This page is restricted to authorized staff"); + exit(); +} + +$fields = array ( + "id" => array ("request", "integer", 0), + "action" => array ("request", "integer", 0), + ); +getFields($fields); + +if ($ssl->share($id,$action)) { + require_once("ssl_view.php"); +} else { + require_once("ssl_list.php"); +} + diff --git a/ssl/panel/admin/ssl_view.php b/ssl/panel/admin/ssl_view.php new file mode 100644 index 00000000..c4a2cd27 --- /dev/null +++ b/ssl/panel/admin/ssl_view.php @@ -0,0 +1,197 @@ + array ("request", "integer", ""), + ); + getFields($fields); +} + +$cert=$ssl->get_certificate($id); +$error=$err->errstr(); +if ($error) { + require_once("ssl_list.php"); + exit(); +} + +include_once("head.php"); + +if ($info) { + echo "

$info

"; +} + +if ($cert["status"]==$ssl::STATUS_PENDING) { +?> +

+ +

Certificate Request File (CSR) has been created, along with its private RSA Key (KEY). Please find below the CSR you must send to your SSL Certificate provider."); ?>

+ +

Certificate File (CRT) and a Chained Certificate File (CHAIN), please paste them here to finish the enrollment."); ?>

+ +
+"/> + + + + + + + + + + + + + + + + + + + + + +
+

+ "/>   + " onclick="document.location='ssl_list.php'"/> + +

+
+ + +

+

+ + +

+

+ + +

+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+enabled) { +?> +

(This is only useful for wildcard or multi-domain certificates)."); ?>

+

+shared"); + if ($cert["uid"]==$cuid) { +?> +

+
+"/> + +" /> +
+NOT shared"); + if ($cert["uid"]==$cuid) { + ?> +

+
+"/> + +" /> +
+ + + diff --git a/ssl/panel/admin/styles/style.css b/ssl/panel/admin/styles/style.css new file mode 100644 index 00000000..1770c4e4 --- /dev/null +++ b/ssl/panel/admin/styles/style.css @@ -0,0 +1,1072 @@ +html, body { + margin: 0px; + padding: 0px; +} + +body { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 11px; + color: #000000; + background-color: #B2CFE4; +} + +body.light { + background-color: #F0F0F4; +} + +.hlp { + font-family: Helvetica, Tahoma, sans-serif; + font-size: 11px; + color: #202020; +} + +table { + border-collapse: collapse; +} + +td { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 11px; + color: #000000; + padding-right: 6px; +} + +th { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 11px; + color: black; + background: #B2CFE4; + font-weight: normal; + text-align: left; +} + +h3 { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 23px; + font-weight: normal; + color: #444; + text-align: left; + padding: 11px; + padding-left: 0; + margin: 0px; + word-wrap: break-word; +} + +.trbtn { + text-align: right; +} + +h4 { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 16px; + font-weight: bold; + color: #007777 +} + +hr { + /*color: #007799;*/ + height: 1px; + /*border: 1px solid #007799;*/ + border: 1px solid #555; + border-width: 1px 0 0 0; +} + +a { + text-decoration: none; + color: #0D5689; +} + +a:hover { + text-decoration: underline; + color: #000000; +} + +fieldset { + border: 1px solid #555; +} + +pre { + overflow: auto; + background-color: #ddd; + padding: 10px; + border: solid 1px #999; + border-radius: 4px; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; +} + +.inp { + /* Should not be use anymore !!! */ + border-color: blue; + border-width: 5px; + background-color: #500000; + color: white; +} + +.inc, .inl { + border: 1px solid black; + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 10px; + border-style: none; + color: black; + background: white; +} + +.inb { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + border: 1px solid #999; + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 11px; + padding: 4px 6px; + color: black; + background-color: #CFE3F1; + cursor: pointer; + margin-right: 4px; + height: 25px; + vertical-align: middle; +} +.inb:hover { + background-color: #BFD3E1; +} +.ina a, .ina a:hover, .inb a, .inb a:hover { + color: #000; + text-decoration: none; + vertical-align: middle; + line-height: 15px; +} + +span.inb { + display: inline-block; + height: 15px; + padding: 4px 6px; +} + +input.ina, input.inav { + border: 1px solid #999; + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 10px; + padding: 2px 4px 2px 4px; + color: black; + cursor: pointer; + /*float: right;*/ +} + +input.ina:hover, input.ina, input.inav, input.inav:hover { + border: 1px solid #999; + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 10px; + color: black; + cursor: pointer; + /*float: right;*/ +} + +input.ina, .ina a { + background-color: #F1F8FD; +} +input.ina:hover, .ina a:hover, +input.inav, .inav a { + background-color: #CFE3F1; +} +input.inav:hover, .inav a:hover, a.inav:hover { + background-color: #F1F8FD; +} + +.ina-active a, a.ina-active, input.ina-active { + background-color: #C1FFCD; +} + +.ina a, a.ina, .inav a, a.inav { + color: black; + white-space: nowrap; + border: 1px solid #999; + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 10px; + padding: 4px 10px; + color: black; + cursor: pointer; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + display: inline-block; + vertical-align: middle; + line-height: 15px; + height: 15px; +} + +.inb a, a.inb { + padding: 4px 10px; +} + +input[type=button], +input[type=submit] { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + height: 25px; +} +.ina a:hover, a.ina:hover, .inav a:hover, a.inav:hover { + text-decoration: none; + color: black; +} + +.ina img, .ina img { + vertical-align: middle; + padding: 0 2px 0 0; + float: left; +} +.bff { + border: 1px solid #999; + background-color: #F1F8FD; + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 10px; + padding-left: 2px; + padding-right: 4px; + color: black; + cursor: pointer; +} +.int { + border: 1px dotted black; + background-color: white; + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 11px; + padding: 2px; +} +.intleft { + border-right: 0px; + padding-right: 0px; +} +.intright { + border-left: 0px; + padding-left: 0px; +} + +.lst2 { + /*background-color: #F1F8FD;*/ + background-color: #E7F0F9; +} +.lst1 { + background-color: #CFE3F1; +} + +.lst:nth-child(even) { background:#E7F0F9; } +.lst:nth-child(odd) { background:#CFE3F1; } + +.dlogin { + text-align: center; +} + +.login { + margin-left: auto; + margin-right: auto; +} + +img { + border: 0px; + vertical-align: middle; +} + +/* Alerts */ +.alert { + border: 1px solid transparent; + border-radius: 4px 4px 4px 4px; + margin-bottom: 20px; + padding: 15px; +} +.alert h4 { + color: inherit; + margin-top: 0; +} +.alert .alert-link { + font-weight: bold; +} +.alert > p, .alert > ul { + margin-bottom: 0; +} +.alert > p + p { + margin-top: 5px; +} +.alert-dismissable { + padding-right: 35px; +} +.alert-dismissable .close { + color: inherit; + position: relative; + right: -21px; + top: -2px; +} +.alert-success { + background-color: #DFF0D8; + border-color: #D6E9C6; + color: #356635; +} +.alert-success hr { + border-top-color: #C9E2B3; +} +.alert-success .alert-link, +.alert-success a{ + color: #234323; +} +.alert-info { + background-color: #D9EDF7; + border-color: #BCE8F1; + color: #2D6987;} +.alert-info hr { + border-top-color: #A6E1EC; +} +.alert-info .alert-link, +.alert-info a +{ + color: #193B4D; +} +.alert-warning { + background-color: #FCF8E3; + border-color: #FBEED5; + color: #A47E3C; +} +.alert-warning hr { + border-top-color: #F8E5BE; +} +.alert-warning .alert-link, +.alert-warning a { + color: #6C5228; +} +.alert-danger { + background-color: #F2DEDE; + border-color: #EED3D7; + color: #953B39; +} +.alert-danger hr { + border-top-color: #E6C1C7; +} +.alert-danger .alert-link, +.alert-danger a{ + color: #6F2B2A; +} + +/* Alert icons */ +#content .alert { + background-position: 12px 10px; + background-repeat: no-repeat; + padding-left: 48px; +} +#content .alert-danger { + background-image: url("../images/danger.png"); +} +#content .alert-info{ + background-image: url("../images/info.png"); +} +#content .alert-success { + background-image: url("../images/success.png"); +} +#content .alert-warning { + background-image: url("../images/warning.png"); +} + + +.alerte { + color: #A00; + font-style: italic; +} + +/* Over quota class */ +.over { + color: red; +} + +.code { + font-size: 16px; + font-family: Courier New, Fixed; + font-weight: bold; + text-align: center; +} + +#global { + display: block; + margin-left: auto; + margin-right: auto; + margin-top: 20px; + margin-bottom: 20px; + width: 1020px; + border: 1px solid #888; + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + border-radius: 10px; + box-shadow: 1px 1px 15px #555; + background-color: #F0F0F4; +} + +/* Main container */ + +#menu { + display: block; + border-right: 1px solid #888; + padding: 0; +} + +#content { + display: block; + width: 770px; + float: right; + margin-left: 10px; + padding-right: 10px; + vertical-align: top; +} + +.clearfix:after { + visibility: hidden; + display: block; + content: ""; + clear: both; + height: 0; + } + +/* Menu */ + +#menu { + display: block; + float: left; + padding: 0px; + margin: 0px; + width: 200px; + padding-right: 10px; + padding-bottom: 10px; + padding-left: 10px; + border-radius: 10px 0 0 10px; + -webkit-border-radius: 10px 0 0 10px; + -moz-border-radius: 10px 0 0 10px; +} + +.menu-box { + margin-bottom: 10px; + font-size: 11px; + background-color: #F4F4FA; + border: 1px solid #888; + box-shadow: 1px 1px 5px #888; + border-radius: 4px 4px 0 0; + -webkit-border-radius: 4px 4px 0 0; + -moz-border-radius: 4px 4px 0 0; +} + +.menu-box .menu-title { + display: block; + color: #000000; + border-bottom: 2px solid #AAA; + background-color: #CFE3F1; + padding: 3px; + -webkit-border-radius: 4px 4px 0 0; + -moz-border-radius: 4px 4px 0 0; + border-radius: 4px 4px 0 0; +} + +.menu-box a .menu-title { + min-height: 16px; +} + +.menu-box .menu-conmargin { + margin: 0 5px 5px 5px; +} + +.menu-box ul { + margin: 0px; + padding: 5px 0 5px 0; + list-style-type: none; +} + +.menu-box li { +} + +.menu-box a { + text-decoration: none; + color: #0D5689; +} + +.menu-box a:hover, +.menu-box a:hover .menu-title { + text-decoration: none; + background-color: #DFEEF8; +} + +.menu-box li a { + display: block; + padding: 5px 5px 5px 10px; + color: #0D5689; + text-decoration: none; + border: 1px solid transparent; + border-width: 1px 0; + line-height: 0.75em; + height: 10px; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + -o-text-overflow: ellipsis; /* Opera 9*/ + outline:none; +} + +.menu-box li a img { + float: left; + width: 16px; + height: 16px; + margin: 0px; + padding: 0px; + top: -3px; + position: relative; +} + +.menu-box li a:hover { + color: #000000; + border: 1px solid #C1D8E9; + border-width: 1px 0; + text-decoration: none; + background-color: #DFEEF8; +} + +.menu-box .full { + color: red; +} + +/* Bars */ + +.barempty { + background-color: white; + border: 1px solid black; + height: 8px; + -webkit-border-radius:4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +.barfill { + float: left; + background-color: red; + height: 8px; +} + +/* Infos */ +#recap table { + text-align: center; + margin-left: auto; + margin-right: auto; +} + +table.searchtable { + width: 700px; + border: 1px dotted #99f; + margin: 20px 0 20px 0px; +} + +table.searchtable td { + padding: 5px; +} + +/* Others */ +.center { + text-align: center; + margin-left: auto; + margin-right: auto; +} + +.border { + border: 1px solid #C0DCF0; +} + +.bold { + font-weight: bold; +} + + +#sendthisfile { + margin-top: 6px; +} + +.breadcrumb { + font-size: 12px; + +} + +#newdomwww, #sub, #usernpfx, #dbnpfx { + border-right: 0; + padding-right: 0; +} +#newdomain, #newsubname, #usern, #dbn { + border-left: 0; + padding-left: 0; +} + +#create_dom_list_pfx { + border-right: 0; + padding: 3px; +} +#create_dom_list { + border-left: 0; + padding-left: 0; +} + + + +input#email { + border-right: 0; + padding-right: 0; + text-align: right; +} + +span#emaildom { + border-left: 0; + padding-left: 2px; +} + +.tedit { + border: 1px solid #aaa; + padding: 6px; + margin: 0; + border-collapse: collapse; + } +.tedit td, .tedit th { + border: 1px solid #aaa; + padding: 10px; + margin: 0; +} + +.formcell { + vertical-align: top; + border: 1px solid #aaa; + padding: 10px; +} + +.tlist, .tlist td, .tlist th, +.tlist2, .tlist2 td, .tlist2 th { + padding: 4px; + margin: 0; + border-collapse: collapse; +} + +.tlist { + width: 100%; + border: 1px solid #C1D8E9; +} + +.tlistb, .tlistb td, .tlistb th { + padding: 4px; + margin: 0; + border-collapse: collapse; +} + +table.tlistb, .tlistb tr { + border: solid 1px #C1D8E9; +} + +.tlist tr:hover, .tlist2 tr:hover { + background-color: #F1D5CF; +} + +.tlist th, .tlist2 th { + font-size: 125%; +} + +input#dir, input#sub_local { + width: 200px; +} + +.tab-ok { + background-color: lightgreen; +} +.tab-err { + background-color: red; +} +.tab-warn { + background-color: coral; +} + +.warningmsg { + width: 500px; +} + +#mx { + width: 300px; +} + +#admlistbtn { + padding-bottom: 6px; +} + +.advdom { + padding-top: 6px; +} + +.grey, .grey td { + color: #999; +} + +.retour-auto { + max-width:220px; + word-wrap:break-word; +} + +.menutoplogo { + margin: 10px 0 0 5px; + width: 190px; +} + +.currentuser { + margin: 5px 5px 10px 5px; + color:#444; +} + +.adminmenu { + color: #800; +} + +.menu-quota dd { + margin: 5px 5px 5px 10px; +} + +.menu-quota div.progress-bar { + width: 180px; + background: #fff; + border: solid 1px #AAA; + margin-left: 10px; +} + +div.progress-bar { + position: relative; + width: 100%; + height: 20px; + background-color: #fff; + border: solid 1px #aaa; + overflow: hidden; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +div.progress-bar div.barre { + position: absolute; + top: 0; + left: 0; + height: 20px; + background-color: #CCC; + border: none; +} + +div.progress-bar div.txt { + position: absolute; + top: 3px; + left: 0; + width: 100%; + text-align:center; +} + +.ombrage { + border: 1px solid #888; + box-shadow: 1px 1px 15px #555; +} + +.petit, +.petit p, +.petit th, +.petit td { + font-size:95%; +} + +#adm_panel li, #adm_panel_root li { + padding: 4px 0 4px 0; +} +#adm_panel li:hover, #adm_panel_root li:hover { + background-color: #BFD3E1; +} + +.edit a, a.edit, input.edit { + background-image: url(../images/edit.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.view a, a.view, input.view { + background-image: url(../images/code.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.delete a, a.delete, input.delete { + background-image: url(../icon/delete.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.lock a, a.lock, input.lock { + background-image: url(../icon/encrypted.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.settings a, a.settings, input.settings { + background-image: url(../icon/settings.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.ok a, a.ok, input.ok { + background-image: url(../icon/ok.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.cancel a, a.cancel, input.cancel { + background-image: url(../icon/cancel.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.add a, a.add, input.add { + background-image: url(../icon/add.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.configure a, a.configure, input.configure { + background-image: url(../icon/configure.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.edit a, a.edit, input.edit { + background-image: url(../icon/edit.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.save a, a.save, input.save { + background-image: url(../icon/save.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.down a, a.down, input.down { + background-image: url(../icon/save.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.up a, a.up, input.up { + background-image: url(../icon/up.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.back a, a.back, input.back { + background-image: url(../icon/back.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.admin a, a.admin, input.admin, .admin-menu .menu-title { + background-image: url(../images/admin.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.home a, a.home, input.home, .home-menu .menu-title { + background-image: url(../images/home.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.dom a, a.dom, input.dom, .dom-menu .menu-title { + background-image: url(../images/dom.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.mail a, a.mail, input.mail, .mail-menu .menu-title { + background-image: url(../images/mail.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.bro a, a.bro, input.bro, .bro-menu .menu-title { + background-image: url(../images/folder.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.hta a, a.hta, input.hta, .hta-menu .menu-title { + background-image: url(../images/password.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.ftp a, a.ftp, input.ftp, .ftp-menu .menu-title { + background-image: url(../images/ftp.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.cron a, a.cron, input.cron, .cron-menu .menu-title { + background-image: url(../images/schedule.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.lxc a, a.lxc, input.lxc, .lxc-menu .menu-title { + background-image: url(../images/ssh.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.mysql a, a.mysql, input.mysql, .mysql-menu .menu-title { + background-image: url(../images/mysql.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.quota a, a.quota, input.quota, .quota-menu .menu-title { + background-image: url(../images/quota.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.authip a, a.authip, input.authip, .authip-menu .menu-title { + background-image: url(../images/ip.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.log a, a.log, input.log, .log-menu .menu-title { + background-image: url(../images/logs.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.help a, a.help, input.help, .help-menu .menu-title { + background-image: url(../images/help.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.lang a, a.lang, input.lang, .lang-menu .menu-title { + background-image: url(../images/lang.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.mem a, a.mem, input.mem, .mem-menu .menu-title { + background-image: url(../images/settings.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.logout a, a.logout, input.logout, .logout-menu .menu-title { + background-image: url(../images/exit.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.ssl a, a.ssl, input.ssl, .ssl-menu .menu-title { + background-image: url(../images/ssl.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +.filter a, a.edit, input.filter { + background-image: url(../icon/filter.png); + background-repeat: no-repeat; + background-position: 8px 3px; + padding-left: 30px; +} + +/* Jquery-ui */ + +body .ui-widget-content { +/* margin-top: 15px; */ +} + +body .ui-widget-header { + background: #CFE3F1; +} + +body .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { + color: #0D5689; +} + +body .ui-state-default, body .ui-widget-content .ui-state-default, body .ui-widget-header .ui-state-default { + background: #F0F0F4; +} + +body .ui-state-active, body .ui-widget-content, body .ui-state-active, body .ui-widget-header .ui-state-active { + background: #F0F0F4; +} + +body .ui-state-active a, body .ui-state-active a:link { + color: black; +} + +body .ui-tabs .ui-tabs-panel { + background: #F0F0F4; +} + +body .ui-tabs .ui-tabs-nav li a { + padding: .5em 1em .5em 30px; +} + +body .ui-state-active, body .ui-widget-content .ui-state-active, body .ui-widget-header .ui-state-active, +body ui-state-hover, body .ui-widget-content .ui-state-hover, body .ui-widget-header .ui-state-hover, body .ui-state-focus, body .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, +body .ui-state-default, body .ui-widget-content .ui-state-default, body .ui-widget-header .ui-state-default { + font-weight: normal; +} + +body .ui-dialog .ui-dialog-title { + color: black; +} + +body .ui-widget-content a { + color: #0D5689; +} + +.ui-tabs .ui-tabs-nav li.ui-tabs-active a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-tabs-loading a { + outline:none; +} + +.ui-tabs .ui-tabs-nav li a, .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { + outline:none; +} + +textarea.cert { + font-family: Courier New, Courier, monospace, fixed; + font-size: 12px; +} +textarea[readonly='readonly'] { + background-color: #ddd; +} diff --git a/ssl/panel/class/m_ssl.php b/ssl/panel/class/m_ssl.php new file mode 100644 index 00000000..28377def --- /dev/null +++ b/ssl/panel/class/m_ssl.php @@ -0,0 +1,569 @@ +getquota("ssl"); + $obj=null; + if ($q['t']>0) { + $obj = array( + 'title' => _("SSL Certificates"), + 'ico' => 'images/ssl.png', + 'link' => 'toggle', + 'pos' => 130, + 'links' => array(), + ) ; + + if ( $quota->cancreate("ssl") ) { + $obj['links'][] = + array ( + 'ico' => 'images/new.png', + 'txt' => _("New SSL certificate"), + 'url' => "ssl_new.php", + 'class' => '', + ); + } + + // or admin shared >0 ! + $db->query("SELECT COUNT(*) AS cnt FROM certificates WHERE uid='$cuid' OR shared=1"); + $used=$q['u']; + if ($db->next_record()) { + $used=$db->f("cnt"); + } + if ( $used > 0 ) { // if there are some SSL certificates + $obj['links'][] = + array ( + 'txt' => _("List SSL Certificates"), + 'url' => "ssl_list.php" + ); + } + } + return $obj; + } + + + + /* ----------------------------------------------------------------- */ + /** Return all the SSL certificates for an account (or the searched one) + * @param $filter an integer telling which certificate we want to see (see FILTER_* constants above) + * the default is showing all certificate, but only Pending and OK certificates, not expired or shared one + * when there is more than 10. + * @return array all the ssl certificate this user can use + * (each array is the content of the certificates table) + */ + function get_list(&$filter=null) { + global $db,$err,$cuid; + $err->log("ssl","get_list"); + $r=array(); + // If we have no filter, we filter by default on pending and ok certificates if there is more than 10 of them for the same user. + if (is_null($filter)) { + $db->query("SELECT count(*) AS cnt FROM certificates WHERE uid='$cuid' OR shared=1;"); + $db->next_record(); + if ($db->f("cnt")>10) { + $filter=(self::FILTER_PENDING | self::FILTER_OK); + } else { + $filter=(self::FILTER_PENDING | self::FILTER_OK | self::FILTER_EXPIRED | self::FILTER_SHARED); + } + } + // filter the filter values :) + $filter=($filter & (self::FILTER_PENDING | self::FILTER_OK | self::FILTER_EXPIRED | self::FILTER_SHARED)); + // Here filter can't be null (and will be returned to the caller !) + $sql=""; + if ($filter & self::FILTER_SHARED) { + $sql=" (uid='$cuid' OR shared=1) "; + } else { + $sql=" uid='$cuid' "; + } + $sql.=" AND status IN (-1"; + if ($filter & self::FILTER_PENDING) $sql.=",".self::STATUS_PENDING; + if ($filter & self::FILTER_OK) $sql.=",".self::STATUS_OK; + if ($filter & self::FILTER_EXPIRED) $sql.=",".self::STATUS_EXPIRED; + $sql.=") "; + $db->query("SELECT *, UNIX_TIMESTAMP(validstart) AS validstartts, UNIX_TIMESTAMP(validend) AS validendts FROM certificates WHERE $sql ORDER BY shared, fqdn;"); + if ($db->num_rows()) { + while ($db->next_record()) { + $r[]=$db->Record; + } + return $r; + } else { + $err->raise("ssl",_("No SSL certificates available")); + return array(); + } + } + + + /* ----------------------------------------------------------------- */ + /** Generate a new CSR, a new Private RSA Key, for FQDN. + * @param $fqdn string the FQDN of the domain name for which we want a CSR. + * a wildcard certificate must start by *. + * @return integer the Certificate ID created in the MySQL database + * or false if an error occurred + */ + function new_csr($fqdn) { + global $db,$err,$cuid; + $err->log("ssl","new_csr"); + if (substr($fqdn,0,2)=="*.") { + $f=substr($fqdn,2); + } else { + $f=$fqdn; + } + if (checkfqdn($f)) { + $err->raise("ssl",_("Bad FQDN domain name")); + return false; + } + putenv("OPENSSL_CONF=/etc/alternc/openssl.cnf"); + $pkey=openssl_pkey_new(); + if (!$pkey) { + $err->raise("ssl",_("Can't generate a private key (1)")); + return false; + } + if (!openssl_pkey_export($pkey, $privKey)) { + $err->raise("ssl",_("Can't generate a private key (2)")); + return false; + } + $dn=array("commonName" => $fqdn); + // override the (not taken from openssl.cnf) digest to use SHA-2 / SHA256 and not SHA-1 or MD5 : + $config=array("digest_alg"=>"sha256"); + $csr=openssl_csr_new($dn, $pkey,$config); + openssl_csr_export($csr, $csrout); + $db->query("INSERT INTO certificates SET uid='$cuid', status=".self::STATUS_PENDING.", shared=0, fqdn='".addslashes($fqdn)."', altnames='', validstart=NOW(), sslcsr='".addslashes($csrout)."', sslkey='".addslashes($privKey)."';"); + if (!($id=$db->lastid())) { + $err->raise("ssl",_("Can't generate a CSR")); + return false; + } + return $id; + } + + + /* ----------------------------------------------------------------- */ + /** Return all informations of a given certificate for the current user. + * @return array all the informations of the current certificate as a hash. + */ + function get_certificate($id) { + global $db,$err,$cuid; + $err->log("ssl","get_certificate"); + $id=intval($id); + $db->query("SELECT *, UNIX_TIMESTAMP(validstart) AS validstartts, UNIX_TIMESTAMP(validend) AS validendts FROM certificates WHERE (uid='$cuid' OR (shared=1 AND status=".self::STATUS_OK.") ) AND id='$id';"); + if (!$db->next_record()) { + $err->raise("ssl",_("Can't find this Certifcate")); + return false; + } + return $db->Record; + } + + + /* ----------------------------------------------------------------- */ + /** Share (or unshare) an ssl certificate + * @param $id integer the id of the certificate in the table. + * @param $action integer share (1) or unshare (0) this certificate + * @return boolean + */ + function share($id,$action=1) { + global $db,$err,$cuid; + $err->log("ssl","share"); + $id=intval($id); + $db->query("SELECT id FROM certificates WHERE uid='$cuid' AND status=".self::STATUS_OK." AND id='$id';"); + if (!$db->next_record()) { + $err->raise("ssl",_("Can't find this Certifcate")); + return false; + } + if ($action) $action=1; else $action=0; + $db->query("UPDATE certificates SET shared=$action WHERE id='$id';"); + return true; + } + + + /* ----------------------------------------------------------------- */ + /** Return all the subdomains that can be ssl-enabled for the current account. + * @return array of strings : all the subdomains. + * Excludes the one for which a cert is already available + */ + function get_new_advice() { + global $db,$err,$cuid; + $err->log("ssl","get_new_advice"); + $r=array(); + // my certificates, either OK or PENDING (not expired) or the SHARED one (only OK then) + $db->query("SELECT fqdn FROM certificates WHERE + (uid='$cuid' AND status IN (".self::STATUS_PENDING.",".self::STATUS_OK.") ) + OR (shared=1 AND status=".self::STATUS_OK.") + ORDER BY shared, fqdn;"); + $r=array(); + while ($db->next_record()) { + $r[]=$db->f("fqdn"); + } + // Now we get all our subdomains for certain domaines_types + $db->query("SELECT sub,domaine FROM sub_domaines WHERE compte='$cuid' AND type IN ('vhost', 'url', 'roundcube', 'squirrelmail', 'panel', 'php52');"); + $advice=array(); + while ($db->next_record()) { + $me=$db->f("sub"); + if ($me) $me.="."; + $me.=$db->f("domaine"); + if (!in_array($me,$r) && !in_array($me,$advice)) { + $advice[]=$me; + } + if (!in_array("*.".$db->f("domaine"),$r) && !in_array("*.".$db->f("domaine"),$advice)) { + $advice[]="*.".$db->f("domaine"); + } + } + sort($advice); + return($advice); + } + + + /* ----------------------------------------------------------------- */ + /** Import an existing ssl Key, Certificate and (maybe) a Chained Cert + * @param $key string the X.509 PEM-encoded RSA key + * @param $crt string the X.509 PEM-encoded certificate, which *must* + * be the one signinf the private RSA key in $key + * @param $chain string the X.509 PEM-encoded list of SSL Certificate chain if intermediate authorities + * @return integer the ID of the newly created certificate in the table + * or false if an error occurred + */ + function import_cert($key,$crt,$chain) { + global $cuid, $err, $db; + $err->log("ssl","import_cert"); + + $result=$this->check_cert($crt,$chain,$key); + if ($result===false) { + $err->raise("ssl",$this->error); + return false; + } + list($crt,$chain,$key,$crtdata)=$result; + + $validstart=$crtdata['validFrom_time_t']; + $validend=$crtdata['validTo_time_t']; + $fqdn=$crtdata["subject"]["CN"]; + $altnames=$this->parseAltNames($crtdata["extensions"]["subjectAltName"]); + + // Everything is PERFECT and has been thoroughly checked, let's insert those in the DB ! + $sql="INSERT INTO certificates SET uid='$cuid', status=".self::STATUS_OK.", shared=0, fqdn='".addslashes($fqdn)."', altnames='".addslashes($altnames)."', validstart=FROM_UNIXTIME(".intval($validstart)."), validend=FROM_UNIXTIME(".intval($validend)."), sslkey='".addslashes($key)."', sslcrt='".addslashes($crt)."', sslchain='".addslashes($chain)."';"; + $db->query($sql); + if (!($id=$db->lastid())) { + $err->raise("ssl",_("Can't save the Key/Crt/Chain now. Please try later.")); + return false; + } + return $id; + } + + + /* ----------------------------------------------------------------- */ + /** Import an ssl certificate into an existing certificate entry in the DB. + * (finalize an enrollment process) + * @param $certid integer the ID in the database of the SSL Certificate + * @param $crt string the X.509 PEM-encoded certificate, which *must* + * be the one signinf the private RSA key in certificate $certid + * @param $chain string the X.509 PEM-encoded list of SSL Certificate chain if intermediate authorities + * @return integer the ID of the updated certificate in the table + * or false if an error occurred + */ + function finalize($certid,$crt,$chain) { + global $cuid, $err, $db; + $err->log("ssl","finalize"); + + $certid=intval($certid); + $result=$this->check_cert($crt,$chain,"",$certid); + if ($result===false) { + $err->raise("ssl",$this->error); + return false; + } + list($crt,$chain,$key,$crtdata)=$result; + + $validstart=$crtdata['validFrom_time_t']; + $validend=$crtdata['validTo_time_t']; + $fqdn=$crtdata["subject"]["CN"]; + $altnames=$this->parseAltNames($crtdata["extensions"]["subjectAltName"]); + + // Everything is PERFECT and has been thoroughly checked, let's insert those in the DB ! + $sql="UPDATE certificates SET status=".self::STATUS_OK.", shared=0, fqdn='".addslashes($fqdn)."', altnames='".addslashes($altnames)."', validstart=FROM_UNIXTIME(".intval($validstart)."), validend=FROM_UNIXTIME(".intval($validend)."), sslcrt='".addslashes($crt)."', sslchain='".addslashes($chain)."' WHERE id='$certid' ;"; + if (!$db->query($sql)) { + $err->raise("ssl",_("Can't save the Crt/Chain now. Please try later.")); + return false; + } + return $certid; + } + + + /* ----------------------------------------------------------------- */ + /** Function called by a hook when an AlternC member is deleted. + * @access private + * TODO: delete unused ssl certificates ?? > do this in the crontab. + */ + function alternc_del_member() { + global $db,$err,$cuid; + $err->log("ssl","alternc_del_member"); + $db->query("UPDATE certificates SET ssl_action='DELETE' WHERE uid='$cuid'"); + return true; + } + + + /* ----------------------------------------------------------------- */ + /** Hook which returns the used quota for the $name service for the current user. + * @param $name string name of the quota + * @return integer the number of service used or false if an error occured + * @access private + */ + function hook_quota_get() { + global $db,$err,$cuid; + $err->log("ssl","getquota"); + $q=Array("name"=>"ssl", "description"=>_("SSL Certificates"), "used"=>0); + $db->query("SELECT COUNT(*) AS cnt FROM certificates WHERE uid='$cuid' AND status!=".self::STATUS_EXPIRED); + if ($db->next_record()) { + $q['used']=$db->f("cnt"); + } + return $q; + } + + + /* ----------------------------------------------------------------- */ + /** Export every information for an AlternC's account + * @access private + * EXPERIMENTAL 'sid' function ;) + */ + function alternc_export_conf() { + global $db,$err; + $err->log("ssl","export"); + $f=$this->get_list(); + $str=" "; + $db->query("SELECT COUNT(*) AS cnt FROM certificates WHERE uid='$cuid' AND status!=".self::STATUS_EXPIRED); + while ($db->next_record()) { + $str.=" ".($db->Record["id"])."\n"; + $str.=" ".($db->Record["sslcsr"])."\n"; + $str.=" ".($db->Record["sslkey"])."\n"; + $str.=" ".($db->Record["sslcrt"])."\n"; + $str.=" ".($db->Record["sslchain"])."\n"; + } + $str.=" \n"; + return $str; + } + + + /* ----------------------------------------------------------------- */ + /** Returns the list of alternate names of an X.509 SSL Certificate + * from the attribute list. + * @param $str string the $crtdata["extensions"]["subjectAltName"] from openssl + * @return array an array of FQDNs + */ + function parseAltNames($str) { + if (preg_match_all("#DNS:([^,]*),#",$str,$mat, PREG_PATTERN_ORDER)) { + return implode("\n",$mat[1]); + } else { + return ""; + } + } + + + /* ----------------------------------------------------------------- */ + /** Add (immediately) a global alias to the HTTP + * certif_alias table and add it to apache configuration + * by launching a incron action. + * name is the name of the alias, starting by / + * value is the value of the filename stored at this location + * If an alias with the same name already exists, return false. + * if the alias has been properly defined, return true. + * @return boolean + */ + function alias_add($name,$value) { + global $err,$cuid,$db; + $db->query("SELECT name FROM certif_alias WHERE name='".addslashes($name)."';"); + if ($db->next_record()) { + $err->raise("ssl",_("Alias already exists")); + return false; + } + $db->query("INSERT INTO certif_alias SET name='".addslashes($name)."', value='".addslashes($value)."', uid=".intval($cuid).";"); + touch("/tmp/generate_certif_alias"); + return true; + } + + + /* ----------------------------------------------------------------- */ + /** Removes (immediately) a global alias to the HTTP + * certif_alias table and add it to apache configuration + * by launching a incron action. + * name is the name of the alias, starting by / + * @return boolean + */ + function alias_del($name) { + global $err,$cuid,$db; + $db->query("SELECT name FROM certif_alias WHERE name='".addslashes($name)."' AND uid=".intval($cuid).";"); + if (!$db->next_record()) { + $err->raise("ssl",_("Alias not found")); + return false; + } + $db->query("DELETE FROM certif_alias WHERE name='".addslashes($name)."' AND uid=".intval($cuid).";"); + touch("/tmp/generate_certif_alias"); + return true; + } + + + /* ----------------------------------------------------------------- */ + /** Check that a crt is a proper certificate + * @param $crt string an SSL Certificate + * @param $chain string is a list of certificates + * @param $key string is a rsa key associated with certificate + * @param $certid if no key is specified, use it from this certificate ID in the table + * @return array the crt, chain, key, crtdata(array) after a proper reformatting + * or false if an error occurred (in that case $this->error is filled) + */ + function check_cert($crt,$chain,$key="",$certid=null) { + global $err,$cuid,$db; + // Check that the key crt and chain are really SSL certificates and keys + $crt=trim(str_replace("\r\n","\n",$crt))."\n"; + $key=trim(str_replace("\r\n","\n",$key))."\n"; + $chain=trim(str_replace("\r\n","\n",$chain))."\n"; + + $this->error=""; + if (trim($key)=="" && !is_null($certid)) { + // find it in the DB : + $db->query("SELECT sslkey FROM certificates WHERE id=".intval($certid).";"); + if (!$db->next_record()) { + $this->error.=_("Can't find the private key in the certificate table, please check your form."); + return false; + } + $key=$db->f("sslkey"); + $key=trim(str_replace("\r\n","\n",$key))."\n"; + } + + if (substr($crt,0,28)!="-----BEGIN CERTIFICATE-----\n" || + substr($crt,-26,26)!="-----END CERTIFICATE-----\n") { + $this->error.=_("The certificate must begin by BEGIN CERTIFICATE and end by END CERTIFICATE lines. Please check you pasted it in PEM form.")."\n"; + } + if ($chain && + (substr($chain,0,28)!="-----BEGIN CERTIFICATE-----\n" || + substr($chain,-26,26)!="-----END CERTIFICATE-----\n")) { + $this->error.=_("The chained certificate must begin by BEGIN CERTIFICATE and end by END CERTIFICATE lines. Please check you pasted it in PEM form.")."\n"; + } + if (substr($key,0,32)!="-----BEGIN RSA PRIVATE KEY-----\n" || + substr($key,-30,30)!="-----END RSA PRIVATE KEY-----\n") { + $this->error.=_("The private key must begin by BEGIN RSA PRIVATE KEY and end by END RSA PRIVATE KEY lines. Please check you pasted it in PEM form.")."\n"; + } + if ($this->error) { + return false; + } + + // We split the chained certificates in individuals certificates : + $chains=array(); + $status=0; $new=""; + $lines=explode("\n",$chain); + foreach($lines as $line) { + if ($line=="-----BEGIN CERTIFICATE-----" && $status==0) { + $status=1; + $new=$line."\n"; + continue; + } + if ($line=="-----END CERTIFICATE-----" && $status==1) { + $status=0; + $new.=$line."\n"; + $chains[]=$new; + $new=""; + continue; + } + if ($status==1) { + $new.=$line."\n"; + } + } + // here chains contains all the ssl certificates in the chained certs. + // Now we check those using Openssl functions (real check :) ) + $rchains=array(); $i=0; + foreach($chains as $tmpcert) { + $i++; + $tmpr=openssl_x509_read($tmpcert); + if ($tmpr===false) { + $this->error.=sprintf(_("The %d-th certificate in the chain is invalid"),$i)."\n"; + } else { + $rchains[]=$tmpr; + } + } + $validstart=0; $validend=0; + $rcrt=openssl_x509_read($crt); + $crtdata = openssl_x509_parse($crt); + if ($rcrt===false || $crtdata===false) { + $this->error.=_("The certificate is invalid.")."\n"; + } + + $rkey=openssl_pkey_get_private($key); + if ($rkey===false) { + $this->error.=_("The private key is invalid.")."\n"; + } + if (!$this->error) { + // check that the private key and the certificates are matching : + if (!openssl_x509_check_private_key($rcrt,$rkey)) { + $this->error.=_("The private key is not the one signed inside the certificate.")."\n"; + } + } + if (!$this->error) { + // Everything is fine, let's recreate crt, chain, key from our internal OpenSSL structures: + if (!openssl_x509_export($rcrt,$crt)) { + $this->error.=_("Can't export your certificate as a string, please check its syntax.")."\n"; + } + $chain=""; + foreach($rchains as $r) { + if (!openssl_x509_export($r,$tmp)) { + $this->error.=_("Can't export one of your chained certificates as a string, please check its syntax.")."\n"; + } else { + $chain.=$tmp; + } + } + if (!openssl_pkey_export($rkey,$key)) { + $this->error.=_("Can't export your private key as a string, please check its syntax.")."\n"; + } + } + return array($crt,$chain,$key,$crtdata); + } // check_cert + + +} /* Class m_ssl */ + diff --git a/ssl/panel/index.php b/ssl/panel/index.php new file mode 100644 index 00000000..7f93307b --- /dev/null +++ b/ssl/panel/index.php @@ -0,0 +1,3 @@ + diff --git a/ssl/panel/locales/Makefile b/ssl/panel/locales/Makefile new file mode 100644 index 00000000..fc80e861 --- /dev/null +++ b/ssl/panel/locales/Makefile @@ -0,0 +1,8 @@ +all: messages.pot */LC_MESSAGES/messages.po + +messages.pot: ../*/*.php ../../squirrelmail/alternc_changepass/*.php + [ -r $@ ] || touch $@ + xgettext --copyright-holder="AlternC Team" --package-name="AlternC" --package-version="2.0" --msgid-bugs-address="i18n@alternc.org" --force-po -o $@ --keyword=__ --keyword=_ -L PHP -F --from-code UTF-8 $^ + +%/LC_MESSAGES/messages.po: messages.pot + msgmerge -v -U $@ $^ diff --git a/ssl/panel/locales/README b/ssl/panel/locales/README new file mode 100644 index 00000000..ab6f871a --- /dev/null +++ b/ssl/panel/locales/README @@ -0,0 +1,46 @@ +Le systme de langue fonctionne ainsi : + +dans bureau/locales/ on trouve un DOSSIER par langue sous la forme +major_minor/ +exemple : fr_FR en_US ... +dans lequel on a un sous-dossier LC_MESSAGES +dans lequel on a des fichiers .po en vrac (normalement 1 ou 2 fichiers .po par module d'AlternC.) + +Le fichier alternc.mo est donc construit partir de TOUS les fichiers .po d'une mme langue. + +Pour mettre a jour les fichiers .po a partir des sources : + +cd bureau/locales +make + +puis allez voir les fichiers .po pour les mettre a jour (cherchez les fuzzy et les msgstr vide a remplir) + +une fois les modifications effectuees, lancer svn commit pour valider vos modifications dans les sources officielles d'AlternC. + +Howto translate AlternC in a new language +========================================= + +This folder contains po and pot files, who are templates that allows you +to translate AlternC in any language. + +1. How to add a language : +- create a folder with your iso language code (ex: de_DE for + German from Germany see `dpkg-reconfigure locales` for available codes.) +- create a subfolder LC_MESSAGES in this folder +- copy .po and .pot files and rename .pot to .po +- Translate them ;) +- Send them to us so that we can add them to the next release or as a language pack. + +2. How to update language files. + +When the programm is updated, the po files in locales/ are changed to +reflect the new developped features. + +You can just call the makefile to have the files regenerated: + +cd bureau/locales +make + +from "locales/" to update your language po files. New strings will have +an empty "msgstr" value, and obsoletes one will be commented out with +#~ diff --git a/ssl/panel/locales/de_DE/LC_MESSAGES/alternc.mo b/ssl/panel/locales/de_DE/LC_MESSAGES/alternc.mo new file mode 100644 index 0000000000000000000000000000000000000000..4f391de3995b14588ffb284e046a5f9841613201 GIT binary patch literal 56202 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

$;Zk>^65*W$N>=a;;13~Bra?ib-c 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 literal 0 HcmV?d00001 diff --git a/ssl/panel/locales/de_DE/LC_MESSAGES/manual.po b/ssl/panel/locales/de_DE/LC_MESSAGES/manual.po new file mode 100644 index 00000000..281f7ca3 --- /dev/null +++ b/ssl/panel/locales/de_DE/LC_MESSAGES/manual.po @@ -0,0 +1,710 @@ +#. Template for AlternC Translation +#. Copyright (c) 2002 the AlternC Development Team +#. +#. $Id: admin.po,v 1.4 2006/02/09 20:12:23 benjamin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: $Id: admin.po,v 1.4 2006/02/09 20:12:23 benjamin Exp $\n" +"Report-Msgid-Bugs-To: i18n@alternc.org\n" +"POT-Creation-Date: 2004-05-24 19:34+0200\n" +"PO-Revision-Date: 2002-06-16 13:50CEST\n" +"Last-Translator: Benjamin Sonntag \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Emacs 21\n" + +#. -- Only administrators can access this page !! -- +msgid "err_admin_1" +msgstr "" + +#. Account not found +msgid "err_admin_2" +msgstr "" + +#. This login already exists +msgid "err_admin_3" +msgstr "" + +#. -- I cannot create this account -- +msgid "err_admin_4" +msgstr "" + +#. Please enter a valid email address +msgid "err_admin_5" +msgstr "" + +#. All fields are mandatory +msgid "err_admin_6" +msgstr "" + +#. You can ask for your password only once a day ! +msgid "err_admin_7" +msgstr "" + +#. This account is ALREADY an administrator account +msgid "err_admin_8" +msgstr "" + +#. This account is NOT an administrator account ! +msgid "err_admin_9" +msgstr "" + +#. Login can only contains characters a-z, 0-9 and - +msgid "err_admin_10" +msgstr "" + +#. This TLD does not exist +msgid "err_admin_11" +msgstr "" + +#. This TLD already exists +msgid "err_admin_12" +msgstr "" + +#. The login is too long (16 chars max) +msgid "err_admin_13" +msgstr "" + +#. Domain names +msgid "quota_dom" +msgstr "" + +#. Domain '%s' not found. +msgid "err_dom_1" +msgstr "" + +#. The domaine '%s' does not belong to you. +msgid "err_dom_2" +msgstr "" + +#. --- Programm error --- No lock on the domains ! +msgid "err_dom_3" +msgstr "" + +#. The domain name is too long. +msgid "err_dom_4" +msgstr "" + +#. One of the domain name member is too long. +msgid "err_dom_5" +msgstr "" + +#. There is some forbidden characters in the domain name (only A-Z 0-9 and - are allowed). +msgid "err_dom_6" +msgstr "" + +#. The last member of the domain name is incorrect or cannot be hosted in that server. +msgid "err_dom_7" +msgstr "" +"The last member of the domain name is incorrect or cannot be hosted in that " +"server." + +#. The domain already exists. +msgid "err_dom_8" +msgstr "" + +#. The domain has been deleted less than 5 minutes ago, please try again later. +msgid "err_dom_9" +msgstr "" +"The domain has been deleted less than 5 minutes ago, please try again later." + +#. Your domain quota is over, you cannot create more domain names. +msgid "err_dom_10" +msgstr "" + +#. The Whois database is unavailable, please try again later. +msgid "err_dom_11" +msgstr "" + +#. The domain cannot be found in the whois database. +msgid "err_dom_12" +msgstr "" + +#. The domain has been changed less than 5 minutes ago. Please try again in a few minutes. +msgid "err_dom_13" +msgstr "" + +#. The sub-domain does not exist. +msgid "err_dom_14" +msgstr "" + +#. No change has been requested... +msgid "err_dom_15" +msgstr "" + +#. The sub-domain already exists. +msgid "err_dom_16" +msgstr "" + +#. --- Programm error --- Lock already obtained ! +msgid "err_dom_17" +msgstr "" + +#. This domain is the server's domain !!! You cannot host it on your account ! +msgid "err_dom_18" +msgstr "" + +#. The IP address you entered is incorrect. +msgid "err_dom_19" +msgstr "" + +#. The URL you entered is incorrect. +msgid "err_dom_20" +msgstr "" + +#. The folder you entered is incorrect or does not exist. +msgid "err_dom_21" +msgstr "" + +#. The requested domain is forbidden in this server, please contact the administrator +msgid "err_dom_22" +msgstr "" + +#. The DNS of this domain do not match the server's DNS. Please change your +#. domain's DNS (and eventually wait 1 day) before you install it again. +msgid "err_dom_23" +msgstr "" + +#. There is some forbidden characters in the sub domain (only A-Z 0-9 and - are allowed). +msgid "err_dom_24" +msgstr "" + +#. There is no MX record pointing to this server, and you are asking us to host the Mail here +msgid "err_dom_25" +msgstr "" + +#. - Entrez le nom du domaine que vous souhaitez héberger. Le nom de domaine +#. doit être complet, mais sans le www.
IMPORTANT : Si vous voulez +#. un hébergement réel de domaine, il faut que les DNS de votre domaine +#. pointent vers nos serveurs DNS. Contacter votre hébergeur pour plus +#. d'information.
Exemples : globenet.org / demo.com / test.eu.org etc. +#.
Plus d'info sur la gestion des domaines dans l'aide en ligne +#. HELPID_200
+msgid "hlp_add_domain" +msgstr "" + +#. Cliquez sur le lien ci-dessus. Vous pourrez ensuite accéder aux paremètres +#. du domaine dans le menu à gauche.2 liens vont apparaitre :
- un +#. premier pour modifier les paramètres d'hébergement du domaine (sous- +#. domaines, redirections, hébergement mails ...)
- un second pour gérer +#. les comptes emails du domaine (si vous souhaitez créer des boites aux +#. lettres).
Plus d'info sur la gestion des domaines dans l'aide en ligne +#. HELPID_200
+msgid "hlp_add_domain_2" +msgstr "" + +#. Le domaine a été effacé, mais les fichiers de votre site n'ont pas été +#. détruits.
Si vous souhaitez détruire les fichiers du site web, utilisez +#. le Gestionnaire de Fichier
Plus d'info sur la gestion des domaines dans +#. l'aide en ligne HELPID_200
+msgid "hlp_del_domain" +msgstr "" + +#. Cette zone vous permet de modifier les paramètres de votre domaine, ainsi +#. que des sous-domaines installés
Vous pouvez créer un nouveau sous- +#. domaine et choisir, soit de le rediriger vers votre espace disque, vers une +#. autre adresse Internet, ou vers une adresse IP (utilisateurs avancés)
+#. Plus d'info sur la gestion des domaines dans l'aide en ligne HELPID_200
+msgid "hlp_edit_domain" +msgstr "" + +#. FTP Accounts +msgid "quota_ftp" +msgstr "" + +#. No ftp account found +msgid "err_ftp_1" +msgstr "" + +#. This ftp account does not exist +msgid "err_ftp_2" +msgstr "" + +#. The chosen prefix is not allowed +msgid "err_ftp_3" +msgstr "" + +#. This ftp account already exists +msgid "err_ftp_4" +msgstr "" + +#. Your ftp account quota is over. You cannot create more ftp accounts. +msgid "err_ftp_5" +msgstr "" + +#. The directory cannot be created. +msgid "err_ftp_6" +msgstr "" + +#. Voici la liste des comptes ftp ayant accès à votre compte. Cliquez sur +#. 'Modifier' pour changer le nom d'utilisateur, le mot de passe, ou le dossier +#. racine.
Pour supprimer un compte, cochez la case correspondante et +#. cliquez sur le bouton 'Supprimer les comptes cochés'
Pour pouvoir +#. accéder à vos fichiers avec un logiciel de ftp, vous devez créer au moins un +#. compte. Chaque compte est associé à un dossier, et n'aura donc accès qu'aux +#. fichiers situés dans ce dossier ou en dessous.
Plus d'info sur le FTP +#. dans l'aide en ligne HELPID_100
+msgid "hlp_ftp_list" +msgstr "" + +#. Vous n'avez actuellement aucun Compte FTP de disponible. Cliquez sur +#. 'Création d'un compte ftp' pour en créer un.
Pour pouvoir accéder à vos +#. fichiers avec un logiciel de ftp, vous devez créer au moins un compte. +#. Chaque compte est associé à un dossier, et n'aura donc accès qu'aux fichiers +#. situés dans ce dossier ou en dessous.
Plus d'info sur le FTP dans +#. l'aide en ligne HELPID_100
+msgid "hlp_ftp_list_no" +msgstr "" + +#. Pour ajouter un compte ftp, vous devez choisir un Nom d'utilisateur, un mot +#. de passe, et un répertoire racine
Le nom d'utilisateur commence +#. toujours par votre nom de login ou le nom d'un de vos domaines.
Le +#. répertoire racine, s'il n'existe pas, sera créé automatiquement.
Note : +#. Le compte que vous créez ainsi aura accès en lecture et en écriture aux +#. fichiers situés dans le répertoire et tous ses sous-répertoires.
Plus +#. d'info sur le FTP dans l'aide en ligne HELPID_100
+msgid "hlp_ftp_add" +msgstr "" + +#. An incompatible .htaccess file exists in this folder. +msgid "err_hta_1" +msgstr "" + +#. .htaccess parsed and syntaxically correct, a .htpassword file has been created. +msgid "err_hta_2" +msgstr "" + +#. .htaccess parsed and syntaxically correct, a .htpasswd already exist. +msgid "err_hta_3" +msgstr "" + +#. No protected folder +msgid "err_hta_4" +msgstr "" + +#. I cannot delete the file '%s'/.htaccess +msgid "err_hta_5" +msgstr "" + +#. I cannot delete the file '%s'/.htpasswd +msgid "err_hta_6" +msgstr "" + +#. The file .htaccess does not exist +msgid "err_hta_7" +msgstr "" + +#. The folder '%s' does not exist +msgid "err_hta_8" +msgstr "" + +#. The file '%s' is not correct +msgid "err_hta_9" +msgstr "" + +#. The user '%s' already exist for this folder +msgid "err_hta_10" +msgstr "" + +#. Please enter a valid username +msgid "err_hta_11" +msgstr "" + +#. Email Accounts +msgid "quota_mail" +msgstr "" + +#. DB connection impossible, please try again later. +msgid "err_mail_1" +msgstr "" + +#. No email on domain '%s' +msgid "err_mail_2" +msgstr "" + +#. The email '%s' does not exist +msgid "err_mail_3" +msgstr "" + +#. Please check 'pop account' and choose a password pop, or enter some +#. redirections, or both +msgid "err_mail_4" +msgstr "" + +#. -- Server error --- Parameter is incorrect (%s) +msgid "err_mail_5" +msgstr "" + +#. The domain '%s' does not exist. +msgid "err_mail_6" +msgstr "" + +#. The email '%s' already exists. +msgid "err_mail_7" +msgstr "" + +#. Your mail account quota is over. You cannot create more email accounts. +msgid "err_mail_8" +msgstr "" + +#. The domain '%s' does not exist. +msgid "err_mail_9" +msgstr "" + +#. -- Programm error -- Mail quota does not exist +msgid "err_mail_10" +msgstr "" + +#. Please enter an Email address +msgid "err_mail_11" +msgstr "" + +#. Please enter a pop password +msgid "err_mail_12" +msgstr "" + +#. Please enter a valid email +msgid "err_mail_13" +msgstr "" + +#. One or more email redirection are invalid +msgid "err_mail_14" +msgstr "" + +#. This mail is not a pop account. It's impossible to change the password ! +msgid "err_mail_15" +msgstr "" + +#. OK +msgid "err_err_0" +msgstr "" + +#. The error message does not exist (%s) +msgid "err_err_1" +msgstr "" + +#. This is a date representation : parameters are the date as follow : +#. $d,$m,$y,$h,$i,$hh,$am +#. 1 2 3 4 5 6 7 +#. hh is the hour in 12 hours format, and am is 'am' or 'pm'. +#. eg: english : %3$d/%1$d/%2$d, at %6$d:%5$d %7$s +msgid "the %3$d-%2$d-%1$d at %4$d:%5$d" +msgstr "" + +#. User or password incorrect +msgid "err_mem_1" +msgstr "" + +#. This account is locked, contact the administrator +msgid "err_mem_2" +msgstr "" + +#. Cookie incorrect, please accept the session cookie +msgid "err_mem_3" +msgstr "" + +#. Session unknown, contact the administrator +msgid "err_mem_4" +msgstr "" + +#. IP address incorrect, please contact the administrator +msgid "err_mem_5" +msgstr "" + +#. The old password is incorrect +#. PROBLEME : il y avait 2 fois le 5, les autres messages doivent surement etre décalés (TODO) +msgid "err_mem_6" +msgstr "" + +#. The new passwords are differents, please retry +msgid "err_mem_7" +msgstr "" + +#. A password must be at least 3 characters long. +msgid "err_mem_8" +msgstr "" + +#. The information you entered is incorrect +msgid "err_mem_9" +msgstr "" + +#. You are not allowed to change your password. +msgid "err_mem_11" +msgstr "" + +#. You must be a system administrator to do this +msgid "err_mem_12" +msgstr "" + +#. Français (France) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "fr_FR" +msgstr "" + +#. Français (Canada) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "fr_CA" +msgstr "" + +#. English (United States) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "en_US" +msgstr "" + +#. English (United Kingdom) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "en_UK" +msgstr "" + +#. Deutsch (Germany) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "de_DE" +msgstr "" + +#. Español (Spania) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "es_ES" +msgstr "" + +#. Español (Venezuela) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "es_VE" +msgstr "" + +#. OK +msgid "err_quota_0" +msgstr "" + +#. Error writing the quota entry ! +msgid "err_quota_1" +msgstr "" + +#. MySQL Databases +msgid "quota_mysql" +msgstr "" + +#. MySQL Users +msgid "quota_mysql_users" +msgstr "" + +#. Disk space +msgid "quota_web" +msgstr "" + +#. Data base name can contain only digits or lowercase alphabetic characters +msgid "err_mysql_2" +msgstr "" + +#. The database does not exist, you'll get an access by creating it. +msgid "err_mysql_3" +msgstr "" + +#. This database already exists! +msgid "err_mysql_4" +msgstr "" + +#. Your backup number is incorrect. +msgid "err_mysql_5" +msgstr "" + +#. The folder is incorrect! +msgid "err_mysql_6" +msgstr "" + +#. The file name you chose does not exist or is incorrect. +msgid "err_mysql_7" +msgstr "" + +#. The password is too long (16 chars max) +msgid "err_mysql_8" +msgstr "" + +#. The file is incorrect or does not exist. +msgid "err_mysql_9" +msgstr "" + +#. Your cannot create your main database : you still have other dbs ! +msgid "err_mysql_10" +msgstr "" + +#. You have no database, click on 'Databases' to create the first one +msgid "err_mysql_11" +msgstr "" + +#. The data base name is too long (64 chars max) +msgid "err_mysql_12" +msgstr "" + +#. You cannot create more MySQL users +msgid "err_mysql_13" +msgstr "" + +#. MySQL users can only have a-z and 0-9 characters. +msgid "err_mysql_14" +msgstr "" + +#. MySQL users must be less than 16 characters long. +msgid "err_mysql_15" +msgstr "" + +#. This MySQL user already exists. +msgid "err_mysql_16" +msgstr "" + +#. Passwords do not match. +msgid "err_mysql_17" +msgstr "" + +#. The requested MySQL user does not exist. +msgid "err_mysql_18" +msgstr "" + +#. You have no MySQL users at the moment. +msgid "err_mysql_19" +msgstr "" + +#. Your MySQL backups are stored in the chosen folder from db.sql.1 to db.sql.19
your database name replaces 'db'.
WARNING: If you modify backup settings (backups, compression...) previous +#. backups may remain in the backup folder. Go to the file manager to delete +#. them. +msgid "hlp_sql_bck" +msgstr "" + +#. Web Statistics +msgid "quota_sta2" +msgstr "" + +#. You cannot create more raw statistic set. +msgid "err_sta2_1" +msgstr "" + +#. There is currently no raw statistic set. +msgid "err_sta2_2" +msgstr "" + +#. The requested raw statistic set has not been found. +msgid "err_sta2_3" +msgstr "" + +#. File or folder name is incorrect +msgid "err_bro_1" +msgstr "" + +#. You cannot move or copy a file to the same folder +msgid "err_bro_2" +msgstr "" + +#. If we manage your DNS
You can manage your mails elsewhere if you want +#. (MX field).
Write %s in this field if your mail +#. must be managed by %s
or put the IP address or name of the mail server +#. used to manage your mails.Warning : if you put nothing in this field, +#. your mails will be unavailable +msgid "help_dns_mx %s %s" +msgstr "" + +#. If we don't manage the DNS for this domain
do we manage your mails? +msgid "help_dns_mail" +msgstr "" + +#. If you want to delete the domain %s, click the button below.Warning : this +#. delete all the ftp, mails, mailing-lists ... associated with thisdomain and +#. all its subdomains! +msgid "help_domain_del %s" +msgstr "" + +#. You can create various databases
Click on 'SQL Admin' in the menu to +#. manage them
or use the table below to backup, retrieve or delete them: +msgid "help_sql_list_ok" +msgstr "" + +#. Your haven't created your main database yet, please enter a password to create it. +msgid "help_sql_list_no" +msgstr "" + +#. This is a date representation : parameters are the date as follow : +#. $d,$m,$y,$h,$i,$hh,$am +#. 1 2 3 4 5 6 7 +#. hh is the hour in 12 hours format, and am is 'am' or 'pm'. +#. eg: english : %3$d/%1$d/%2$d, at %6$d:%5$d %7$s +msgid "%3$d-%2$d-%1$d %4$d:%5$d" +msgstr "" + + +msgid "1 column, detailed" +msgstr "" + +msgid "2 columns, short" +msgstr "" + +msgid "3 columns, short" +msgstr "" + +msgid "Go back to the file manager" +msgstr "" + +msgid "Edit the newly created file" +msgstr "" + +msgid "hlp_login" +msgstr "" + +msgid "err_admin_14" +msgstr "" +"La politique de mot de passe demandée n'a pas été trouvée, Ce password " +"est refusé (c'est une erreur de programmation ...)" + +msgid "err_admin_15" +msgstr "" +"Le mot de passe est trop court selon votre politique de mot de passe, " +"merci de vérifier" + +msgid "err_admin_16" +msgstr "" +"Le mot de passe est trop long selon votre politique de mot de passe, " +"merci de vérifier" + +msgid "err_admin_17" +msgstr "" +"Le mot de passe ne peut pas être le même que le nom d'utilisateur (ou " +"quelque chose de similaire) selon votre politique de mot de passe, merci " +"de vérifier" + +msgid "err_admin_18" +msgstr "" +"Le mot de passe doit contenir des caractères de %s classes différentes " +"selon votre politique de mot de passe (il n'en contient que %s), merci de " +"vérifier" + +msgid "err_hta_12" +msgstr "Le fichier .htpasswd n'existe pas" + +msgid "err_mail_16" +msgstr "Ce compte esclave MX existe déjà" + +msgid "err_mysql_20" +msgstr "Le mot de passe est obligatoire" + +msgid "err_mysql_21" +msgstr "Le nom d'utilisateur ne peut pas être vide" + +msgid "err_bro_3" +msgstr "" +"Vous n'avez pas le droit d'écrire dans ce répertoire. Vérifiez les droits " +"d'accès !" + +# $d,$m,$y +# 1 2 3 +msgid "%3$d-%2$d-%1$d" +msgstr "%1$02d/%2$02d/%3$04d" + +msgid "AlternC's account password" +msgstr "Mots de passe des comptes AlternC" + +msgid "POP/IMAP account passwords" +msgstr "Mots de passe des comptes POP/IMAP" + +msgid "Protected folders passwords" +msgstr "Mots de passe des dossiers protégés" + diff --git a/ssl/panel/locales/de_DE/LC_MESSAGES/messages.po b/ssl/panel/locales/de_DE/LC_MESSAGES/messages.po new file mode 100644 index 00000000..373a1d9d --- /dev/null +++ b/ssl/panel/locales/de_DE/LC_MESSAGES/messages.po @@ -0,0 +1,5066 @@ +# translation of alternc.po to Espagnol +# This file is distributed under the same license as the PACKAGE package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. +# Bruno Marmier , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: alternc\n" +"Report-Msgid-Bugs-To: i18n@alternc.org\n" +"POT-Creation-Date: 2013-10-18 15:42+0200\n" +"PO-Revision-Date: 2004-02-14 19:53-0400\n" +"Last-Translator: Bruno Marmier \n" +"Language-Team: Espagnol \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.0.2\n" + +#: ../../squirrelmail/alternc_changepass/change.php:39 +msgid "Can't connect to MySQL server on AlternC!" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:66 +msgid "Your new passwords are differents, pleasy try again." +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:72 +msgid "" +"Your account has not been found, please try again later or ask an " +"administrator." +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:75 +msgid "Your current password is incorrect, please try again." +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:88 +msgid "" +"Your password has been successfully changed. Don't forget to change it in " +"your mail software if you are using one (Outlook, Mozilla, Thunderbird, " +"Eudora ...)" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:111 +msgid "Changing your mail password" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:115 +#, fuzzy +msgid "Old Password:" +msgstr "Passwört" + +#: ../../squirrelmail/alternc_changepass/change.php:120 +#, fuzzy +msgid "New Password:" +msgstr "Passwört" + +#: ../../squirrelmail/alternc_changepass/change.php:124 +msgid "Verify New Password:" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:129 +msgid "Change my mail password" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/setup.php:21 +#, fuzzy +msgid "Change Password" +msgstr "Passwört" + +#: ../../squirrelmail/alternc_changepass/setup.php:23 +msgid "Change the password of your email account." +msgstr "" + +#: ../admin/about.php:36 +msgid "About AlternC" +msgstr "" + +#: ../admin/about.php:37 +msgid "Hosting control panel" +msgstr "" + +#: ../admin/about.php:41 +msgid "" +"AlternC is an automatic hosting software suite. It features a PHP-based " +"administration interface and scripts that manage server configuration.
It manages, among others, email, Web, Web statistics, and mailing list " +"services. It is available in many languages. It is a free software " +"distributed under GPL license." +msgstr "" + +#: ../admin/about.php:47 +msgid "Official website: " +msgstr "" + +#: ../admin/about.php:48 +msgid "Developer website: " +msgstr "" + +#: ../admin/about.php:49 +#, fuzzy +msgid "Help: " +msgstr "Hilfe" + +#: ../admin/about.php:57 +msgid "You are currently using AlternC " +msgstr "" + +#: ../admin/adm_add.php:36 ../admin/adm_db_servers.php:30 +#: ../admin/adm_deactivate.php:35 ../admin/adm_deactivate.php:52 +#: ../admin/adm_defquotas.php:35 ../admin/adm_dnsweberror.php:33 +#: ../admin/adm_doadd.php:26 ../admin/adm_dodefquotas.php:35 +#: ../admin/adm_dodel.php:33 ../admin/adm_dodel.php:52 +#: ../admin/adm_doedit.php:35 ../admin/adm_doedit.php:59 +#: ../admin/adm_domlock.php:33 ../admin/adm_doms.php:33 +#: ../admin/adm_doms_def_type.php:5 ../admin/adm_domstype.php:33 +#: ../admin/adm_domstypedoedit.php:4 ../admin/adm_domstypeedit.php:32 +#: ../admin/adm_domstyperegenerate.php:4 ../admin/adm_donosu.php:33 +#: ../admin/adm_dorenew.php:34 ../admin/adm_dorenew.php:45 +#: ../admin/adm_dosu.php:33 ../admin/adm_edit.php:36 ../admin/adm_edit.php:48 +#: ../admin/adm_email.php:30 ../admin/adm_list.php:32 ../admin/adm_list.php:58 +#: ../admin/adm_lockpanel.php:33 ../admin/adm_login.php:86 +#: ../admin/adm_login.php:93 ../admin/adm_mxaccount.php:33 +#: ../admin/adm_panel.php:33 ../admin/adm_passpolicy.php:30 +#: ../admin/adm_quotadoedit.php:33 ../admin/adm_quotaedit.php:34 +#: ../admin/adm_slavedns.php:33 ../admin/adm_tld.php:33 +#: ../admin/adm_tldadd.php:33 ../admin/adm_tlddoadd.php:33 +#: ../admin/adm_tlddoedit.php:39 ../admin/adm_tldedit.php:33 +#: ../admin/adm_update_domains.php:34 ../admin/adm_variables.php:33 +#: ../admin/dom_subdel.php:46 ../admin/dom_subdodel.php:47 +#: ../admin/dom_subdoedit.php:53 ../admin/dom_subedit.php:49 +#: ../admin/quotas_users.php:13 ../class/reset_stats_conf.php:6 +msgid "This page is restricted to authorized staff" +msgstr "" + +#: ../admin/adm_add.php:54 +msgid "New AlternC account" +msgstr "" + +#: ../admin/adm_add.php:64 ../admin/adm_edit.php:69 +#: ../admin/adm_quotaedit.php:68 ../admin/ftp_edit.php:71 +#: ../admin/ftp_list.php:72 ../admin/hta_adduser.php:54 +#: ../admin/hta_edit.php:61 ../admin/hta_edit.php:98 ../admin/index.php:89 +#: ../admin/piwik_userlist.php:79 ../admin/sql_users_add.php:59 +msgid "Username" +msgstr "" + +#: ../admin/adm_add.php:68 +msgid "Initial password" +msgstr "" + +#: ../admin/adm_add.php:72 ../admin/adm_edit.php:89 ../admin/ftp_edit.php:88 +#: ../admin/hta_adduser.php:62 ../admin/hta_edit.php:106 +#: ../admin/hta_edituser.php:63 ../admin/mail_edit.php:97 +#: ../admin/sql_users_add.php:67 ../admin/sql_users_password.php:63 +msgid "Confirm password" +msgstr "" + +#: ../admin/adm_add.php:76 +msgid "Can he change its password" +msgstr "" + +#: ../admin/adm_add.php:78 ../admin/adm_domstype.php:82 +#: ../admin/adm_domstype.php:83 ../admin/adm_domstype.php:84 +#: ../admin/adm_domstype.php:85 ../admin/adm_domstype.php:86 +#: ../admin/adm_edit.php:78 ../admin/adm_edit.php:95 +#: ../admin/adm_passpolicy.php:113 ../admin/adm_passpolicy.php:157 +#: ../admin/dom_edit.php:231 ../admin/dom_edit.php:254 +#: ../admin/dom_subdel.php:71 ../admin/mail_edit.php:90 +#: ../admin/mail_list.php:164 ../admin/sql_bck.php:94 ../class/m_bro.php:70 +msgid "No" +msgstr "Nein" + +#: ../admin/adm_add.php:79 ../admin/adm_domstype.php:82 +#: ../admin/adm_domstype.php:83 ../admin/adm_domstype.php:84 +#: ../admin/adm_domstype.php:85 ../admin/adm_domstype.php:86 +#: ../admin/adm_edit.php:79 ../admin/adm_edit.php:96 +#: ../admin/adm_passpolicy.php:114 ../admin/adm_passpolicy.php:157 +#: ../admin/dom_edit.php:230 ../admin/dom_edit.php:253 +#: ../admin/dom_subdel.php:70 ../admin/mail_edit.php:91 +#: ../admin/mail_list.php:209 ../admin/mail_list.php:220 +#: ../admin/mail_list.php:231 ../admin/mail_list.php:249 +#: ../admin/mail_list.php:260 ../admin/mail_list.php:271 +#: ../admin/mail_list.php:282 ../admin/sql_bck.php:95 ../class/m_bro.php:70 +msgid "Yes" +msgstr "Ja" + +#: ../admin/adm_add.php:83 ../admin/adm_edit.php:100 +#, fuzzy +msgid "Notes" +msgstr "Bytes" + +#: ../admin/adm_add.php:87 ../admin/adm_edit.php:104 +msgid "First Name" +msgstr "Vorname" + +#: ../admin/adm_add.php:87 ../admin/adm_edit.php:104 +msgid "Surname" +msgstr "Name" + +#: ../admin/adm_add.php:91 ../admin/adm_edit.php:108 +msgid "Email address" +msgstr "" + +#: ../admin/adm_add.php:95 ../admin/adm_dodefquotas.php:48 +#: ../admin/adm_dodefquotas.php:50 ../admin/adm_dodefquotas.php:57 +#: ../admin/adm_dodefquotas.php:59 ../admin/adm_edit.php:112 +msgid "Account type" +msgstr "" + +#: ../admin/adm_add.php:105 +msgid "Wich database server for this user ?" +msgstr "" + +#: ../admin/adm_add.php:107 +msgid "Warning: you can't change it after the creation of the user." +msgstr "" + +#: ../admin/adm_add.php:124 +#, php-format +msgid "Install the domain" +msgstr "" + +#: ../admin/adm_add.php:140 +msgid "Create this AlternC account" +msgstr "" + +#: ../admin/adm_add.php:141 ../admin/adm_deactivate.php:75 +#: ../admin/adm_domstypeedit.php:134 ../admin/adm_edit.php:124 +#: ../admin/adm_quotaedit.php:88 ../admin/adm_tldadd.php:71 +#: ../admin/adm_tldedit.php:70 ../admin/bro_pref.php:150 +#: ../admin/browseforfolder.php:146 ../admin/browseforfolder2.php:142 +#: ../admin/ftp_del.php:83 ../admin/ftp_edit.php:98 +#: ../admin/hta_adduser.php:68 ../admin/hta_dodeluser.php:65 +#: ../admin/hta_edit.php:113 ../admin/mail_edit.php:116 +#: ../admin/mail_manage_catchall.php:122 ../admin/piwik_site_dodel.php:71 +#: ../admin/piwik_user_dodel.php:69 ../admin/sql_bck.php:108 +#: ../admin/sql_users_add.php:73 ../admin/sql_users_password.php:69 +#: ../admin/sql_users_rights.php:104 +msgid "Cancel" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:31 ../admin/ip_main.php:50 +#: ../class/m_authip.php:40 +msgid "Access security" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:39 +msgid "" +"The IP and subnet you have here are allowed for ALL users and ALL usages" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:39 +msgid "Warning" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:44 +msgid "Add an IP" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:44 ../admin/ip_main.php:174 +msgid "Add my current IP" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:47 ../admin/ip_main.php:177 +msgid "Cancel edit" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:50 +msgid "" +"Enter here the IP address you want.
IPv4, IPv6 and subnet allowed" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:54 +msgid "Add a comment" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:57 ../admin/adm_doms_def_type.php:88 +#: ../admin/bro_editor.php:89 ../admin/ftp_edit.php:97 +#: ../admin/ip_main.php:135 ../admin/ip_main.php:186 +#: ../admin/mail_manage_catchall.php:121 +msgid "Save" +msgstr "Speichern" + +#: ../admin/adm_authip_whitelist.php:64 +msgid "IP" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:64 +msgid "Informations" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:64 ../admin/adm_doms_def_type.php:48 +#: ../admin/dom_edit.php:130 ../admin/ip_main.php:146 +msgid "Type" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:82 ../admin/adm_domstype.php:74 +#: ../admin/adm_list.php:200 ../admin/adm_list.php:222 +#: ../admin/adm_list.php:251 ../admin/adm_passpolicy.php:151 +#: ../admin/adm_tld.php:80 ../admin/dom_edit.php:140 ../admin/ftp_list.php:78 +#: ../admin/ip_main.php:164 ../admin/mail_list.php:150 +msgid "Edit" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:83 ../admin/adm_doms_def_type.php:60 +#: ../admin/adm_mxaccount.php:83 ../admin/adm_slavedns.php:101 +#: ../admin/adm_slavedns.php:145 ../admin/bro_main.php:285 +#: ../admin/cron.php:54 ../admin/dom_edit.php:123 ../admin/dom_edit.php:146 +#: ../admin/ftp_del.php:82 ../admin/hta_dodeluser.php:64 +#: ../admin/ip_main.php:79 ../admin/ip_main.php:165 +#: ../admin/piwik_site_dodel.php:70 ../admin/piwik_sitelist.php:128 +#: ../admin/piwik_user_dodel.php:68 ../admin/piwik_userlist.php:87 +msgid "Delete" +msgstr "" + +#: ../admin/adm_db_servers.php:35 +msgid "List of the databases servers" +msgstr "" + +#: ../admin/adm_db_servers.php:42 +msgid "Here the list of the available databases servers." +msgstr "" + +#: ../admin/adm_db_servers.php:49 +msgid "ID" +msgstr "" + +#: ../admin/adm_db_servers.php:50 ../admin/adm_domstype.php:58 +#: ../admin/adm_domstypeedit.php:74 ../admin/ip_main.php:146 +#: ../admin/ip_main.php:181 ../admin/logs_list.php:53 +#, fuzzy +msgid "Name" +msgstr "Neuer Mitglied" + +#: ../admin/adm_db_servers.php:51 ../admin/vm.php:77 +msgid "Hostname" +msgstr "" + +#: ../admin/adm_db_servers.php:52 ../admin/adm_mxaccount.php:78 +#: ../admin/adm_mxaccount.php:95 ../admin/adm_slavedns.php:140 +#: ../admin/adm_slavedns.php:158 ../admin/sql_getparam.php:70 +msgid "Login" +msgstr "" + +#: ../admin/adm_db_servers.php:53 +msgid "Client" +msgstr "" + +#: ../admin/adm_db_servers.php:54 +#, fuzzy +msgid "Users" +msgstr "Benützt" + +#: ../admin/adm_db_servers.php:71 +msgid "To add a database server, do an INSERT into the db_servers table" +msgstr "" + +#: ../admin/adm_db_servers.php:74 +msgid "" +"To update the list of the server on the PhpMyAdmin login page, launch " +"alternc.install" +msgstr "" + +#: ../admin/adm_deactivate.php:46 ../class/m_admin.php:208 +#: ../class/m_admin.php:234 ../class/m_admin.php:680 ../class/m_admin.php:704 +#: ../class/m_admin.php:728 ../class/m_admin.php:772 ../class/m_admin.php:797 +#: ../class/m_admin.php:821 ../class/m_admin.php:894 ../class/m_admin.php:916 +msgid "Account not found" +msgstr "" + +#: ../admin/adm_deactivate.php:58 +#, fuzzy +msgid "User does not exist" +msgstr "Miglied '%s' existiert nicht" + +#: ../admin/adm_deactivate.php:63 ../admin/adm_deactivate.php:74 +msgid "Confirm" +msgstr "" + +#: ../admin/adm_deactivate.php:67 +msgid "WARNING: experimental feature, use at your own risk" +msgstr "" + +#: ../admin/adm_deactivate.php:68 +msgid "" +"The following domains will be deactivated and redirected to the URL entered " +"in the following box. A backup of the domain configuration will be displayed " +"as a serie of SQL request that you can run to restore the current " +"configuration if you want. Click confirm if you are sure you want to " +"deactivate all this user's domains." +msgstr "" + +#: ../admin/adm_deactivate.php:73 +msgid "Redirection URL:" +msgstr "" + +#: ../admin/adm_deactivate.php:78 +msgid "Domains of user: " +msgstr "" + +#: ../admin/adm_deactivate.php:81 +msgid "Missing redirect url." +msgstr "" + +#: ../admin/adm_deactivate.php:99 +#, php-format +msgid "-- Redirecting all domains and subdomains of the user %s to %s\n" +msgstr "" + +#: ../admin/adm_defquotas.php:46 ../admin/adm_panel.php:54 +msgid "Change the default quotas" +msgstr "" + +#: ../admin/adm_defquotas.php:52 +msgid "User's quotas synchronised" +msgstr "" + +#: ../admin/adm_defquotas.php:65 +msgid "Add account type" +msgstr "" + +#: ../admin/adm_defquotas.php:83 +msgid "Delete account type" +msgstr "" + +#: ../admin/adm_defquotas.php:88 +msgid "" +"Here is the list of the quotas on the server for the new accounts. If you " +"want to change them, enter new values" +msgstr "" + +#: ../admin/adm_defquotas.php:90 +msgid "Synchronise user's quota (only to upper value)" +msgstr "" + +#: ../admin/adm_defquotas.php:102 +msgid "Accounts of type" +msgstr "" + +#: ../admin/adm_defquotas.php:104 +msgid "Default Value" +msgstr "" + +#: ../admin/adm_defquotas.php:104 ../admin/adm_list.php:159 +#: ../admin/adm_list.php:203 ../admin/adm_list.php:223 +#: ../admin/adm_list.php:253 +msgid "Quotas" +msgstr "Quotas" + +#: ../admin/adm_defquotas.php:124 +msgid "Edit the default quotas" +msgstr "" + +#: ../admin/adm_dnsweberror.php:40 +msgid "Domains and Websites having errors" +msgstr "" + +#: ../admin/adm_dnsweberror.php:50 +msgid "List of the websites having errors in the domain database." +msgstr "" + +#: ../admin/adm_dnsweberror.php:53 ../admin/adm_dnsweberror.php:83 +msgid "Uid" +msgstr "" + +#: ../admin/adm_dnsweberror.php:54 ../admin/adm_dnsweberror.php:84 +#: ../admin/adm_list.php:155 ../admin/adm_list.php:233 +#: ../admin/adm_list.php:234 ../admin/adm_list.php:235 +#: ../admin/quotas_users.php:169 +msgid "Account" +msgstr "" + +#: ../admin/adm_dnsweberror.php:55 ../admin/adm_dnsweberror.php:85 +#: ../admin/dom_add.php:57 ../class/m_dom.php:1757 +msgid "Domain name" +msgstr "" + +#: ../admin/adm_dnsweberror.php:56 +msgid "FQDN" +msgstr "" + +#: ../admin/adm_dnsweberror.php:57 ../admin/adm_variables.php:57 +msgid "Value" +msgstr "" + +#: ../admin/adm_dnsweberror.php:58 ../admin/adm_domstype.php:59 +#: ../admin/adm_domstypeedit.php:78 +msgid "Description" +msgstr "" + +#: ../admin/adm_dnsweberror.php:59 +msgid "Web Result field" +msgstr "" + +#: ../admin/adm_dnsweberror.php:80 +msgid "List of the domain names having errors in the domain database." +msgstr "" + +#: ../admin/adm_dnsweberror.php:86 +msgid "DNS Result field" +msgstr "" + +#: ../admin/adm_doadd.php:53 ../admin/adm_doedit.php:64 +#: ../admin/ftp_doedit.php:44 ../admin/hta_doadduser.php:41 +#: ../admin/hta_doedituser.php:42 ../admin/mail_doedit.php:57 +msgid "Passwords do not match" +msgstr "" + +#: ../admin/adm_doadd.php:65 +msgid "The new member has been successfully created" +msgstr "" + +#: ../admin/adm_dodefquotas.php:48 +msgid "added" +msgstr "" + +#: ../admin/adm_dodefquotas.php:50 +msgid "could not be added" +msgstr "" + +#: ../admin/adm_dodefquotas.php:57 +msgid "deleted" +msgstr "" + +#: ../admin/adm_dodefquotas.php:59 +msgid "could not be deleted" +msgstr "" + +#: ../admin/adm_dodefquotas.php:66 +#, php-format +msgid "Deleting quota %s" +msgstr "" + +#: ../admin/adm_dodefquotas.php:72 +msgid "WARNING: Confirm the deletion of the quota" +msgstr "" + +#: ../admin/adm_dodefquotas.php:75 +msgid "Yes, delete this default quota" +msgstr "" + +#: ../admin/adm_dodefquotas.php:76 +msgid "No, don't delete this default quota" +msgstr "" + +#: ../admin/adm_dodefquotas.php:94 +msgid "Default quotas successfully changed" +msgstr "" + +#: ../admin/adm_dodefquotas.php:96 +msgid "Default quotas could not be set." +msgstr "" + +#: ../admin/adm_dodel.php:56 +#, php-format +msgid "Member '%s' does not exist" +msgstr "Miglied '%s' existiert nicht" + +#: ../admin/adm_dodel.php:58 +#, php-format +msgid "Member %s successfully deleted" +msgstr "" + +#: ../admin/adm_dodel.php:65 +msgid "Please check the accounts you want to delete" +msgstr "" + +#: ../admin/adm_dodel.php:73 +#, php-format +msgid "Deleting users" +msgstr "" + +#: ../admin/adm_dodel.php:77 +msgid "WARNING : Confirm the deletion of the users" +msgstr "" + +#: ../admin/adm_dodel.php:87 +msgid "Yes, delete those accounts" +msgstr "" + +#: ../admin/adm_dodel.php:88 +msgid "No, don't delete those accounts" +msgstr "" + +#: ../admin/adm_doedit.php:77 +msgid "The member has been successfully edited" +msgstr "" + +#: ../admin/adm_doms.php:40 ../admin/adm_panel.php:53 +msgid "Manage installed domains" +msgstr "" + +#: ../admin/adm_doms.php:59 +msgid "" +"Here is the list of the domains installed on this server. You can remove a " +"domain if it does not exist or does not point to our server anymore. You can " +"also set the 'Lock' flag on a domain so that the user will not be able to " +"change any DNS parameter or delete this domain from his account." +msgstr "" + +#: ../admin/adm_doms.php:62 +msgid "" +"The domain OK column are green when the domain exists in the worldwide " +"registry and has a proper NS,MX and IP depending on its configuration. It is " +"red if we have serious doubts about its NS, MX or IP configuration. Contact " +"the user of this domain or a system administrator." +msgstr "" + +#: ../admin/adm_doms.php:65 +msgid "If you want to force the check of NS, MX, IP on domains, click the link" +msgstr "" + +#: ../admin/adm_doms.php:65 +msgid "Show domain list with refreshed checked NS, MX, IP information" +msgstr "" + +#: ../admin/adm_doms.php:69 ../admin/adm_mxaccount.php:78 +#: ../admin/adm_slavedns.php:95 ../admin/adm_slavedns.php:140 +msgid "Action" +msgstr "" + +#: ../admin/adm_doms.php:69 ../admin/adm_doms.php:85 ../admin/adm_list.php:196 +#: ../admin/adm_list.php:221 ../admin/adm_list.php:250 +msgid "Connect as" +msgstr "" + +#: ../admin/adm_doms.php:69 +msgid "Creator" +msgstr "" + +#: ../admin/adm_doms.php:69 +msgid "Domain" +msgstr "" + +#: ../admin/adm_doms.php:69 +msgid "OK?" +msgstr "" + +#: ../admin/adm_doms.php:69 ../admin/dom_edit.php:130 +msgid "Status" +msgstr "" + +#: ../admin/adm_doms.php:76 +msgid "Locked Domain" +msgstr "" + +#: ../admin/adm_doms.php:79 +msgid "Lock" +msgstr "" + +#: ../admin/adm_doms.php:79 +msgid "Unlock" +msgstr "" + +#: ../admin/adm_doms_def_type.php:12 ../admin/adm_panel.php:66 +msgid "Manage defaults domains type" +msgstr "" + +#: ../admin/adm_doms_def_type.php:14 ../admin/adm_domstype.php:42 +msgid "" +"If you don't know what this page is about, don't touch anything, and read " +"AlternC documentation about domain types" +msgstr "" + +#: ../admin/adm_doms_def_type.php:15 +msgid "" +"The Type column contains a type of available VirtualHost config on The " +"server." +msgstr "" + +#: ../admin/adm_doms_def_type.php:16 +msgid "" +"The Setting column contains the variables to be expanded in the defaults " +"configuration. Available values are: " +msgstr "" + +#: ../admin/adm_doms_def_type.php:18 +#, php-format +msgid "%%DOMAIN%% : the Domain name" +msgstr "" + +#: ../admin/adm_doms_def_type.php:19 +#, php-format +msgid "%%TARGETDOM%%: The destination domain" +msgstr "" + +#: ../admin/adm_doms_def_type.php:20 +#, php-format +msgid "%%SUB%% : The subdomain name" +msgstr "" + +#: ../admin/adm_doms_def_type.php:21 +#, php-format +msgid "%%DOMAINDIR%%: the domain directory on the file system" +msgstr "" + +#: ../admin/adm_doms_def_type.php:38 +msgid "There was an error during the record." +msgstr "" + +#: ../admin/adm_doms_def_type.php:40 ../admin/cron.php:14 +msgid "Save done." +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +msgid "Activation" +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +msgid "Concerned" +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +msgid "Sub" +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +msgid "settings" +msgstr "" + +#: ../admin/adm_domstype.php:40 ../admin/adm_panel.php:67 +msgid "Manage domains type" +msgstr "" + +#: ../admin/adm_domstype.php:52 +msgid "Here is the list of domain types." +msgstr "" + +#: ../admin/adm_domstype.php:54 +msgid "Create a domain type" +msgstr "" + +#: ../admin/adm_domstype.php:60 +msgid "Target" +msgstr "" + +#: ../admin/adm_domstype.php:61 ../admin/adm_domstypeedit.php:92 +msgid "Entry" +msgstr "" + +#: ../admin/adm_domstype.php:62 +msgid "Compatible with" +msgstr "" + +#: ../admin/adm_domstype.php:62 ../admin/adm_domstypeedit.php:96 +msgid "Enter comma-separated name of other types" +msgstr "" + +#: ../admin/adm_domstype.php:63 +msgid "Enabled?" +msgstr "" + +#: ../admin/adm_domstype.php:64 +msgid "Only DNS?" +msgstr "" + +#: ../admin/adm_domstype.php:65 +msgid "Need to be DNS?" +msgstr "" + +#: ../admin/adm_domstype.php:66 +msgid "Advanced?" +msgstr "" + +#: ../admin/adm_domstype.php:67 ../admin/adm_domstypeedit.php:123 +msgid "Create tmp directory ?" +msgstr "" + +#: ../admin/adm_domstype.php:68 +msgid "create www directory ?" +msgstr "" + +#: ../admin/adm_domstype.php:75 +msgid "Regenerate" +msgstr "" + +#: ../admin/adm_domstypeedit.php:60 +msgid "Edit a domain type" +msgstr "" + +#: ../admin/adm_domstypeedit.php:82 +msgid "Target type" +msgstr "" + +#: ../admin/adm_domstypeedit.php:96 +msgid "Compatibility" +msgstr "" + +#: ../admin/adm_domstypeedit.php:100 ../admin/dom_edit.php:170 +#: ../admin/ftp_list.php:72 ../admin/ftp_list.php:82 +#: ../admin/mail_list.php:125 ../admin/mail_list.php:152 +msgid "Enabled" +msgstr "" + +#: ../admin/adm_domstypeedit.php:110 +msgid "Do only a DNS entry" +msgstr "" + +#: ../admin/adm_domstypeedit.php:114 +msgid "Domain must have our DNS" +msgstr "" + +#: ../admin/adm_domstypeedit.php:118 +msgid "Is it an advanced option?" +msgstr "" + +#: ../admin/adm_domstypeedit.php:128 +msgid "Create target directory ?" +msgstr "" + +#: ../admin/adm_domstypeedit.php:133 +msgid "Change this domain type" +msgstr "" + +#: ../admin/adm_donosu.php:45 +msgid "This account is now a normal account" +msgstr "" + +#: ../admin/adm_dorenew.php:53 +msgid "The member has been successfully renewed" +msgstr "" + +#: ../admin/adm_dosu.php:45 +msgid "This account is now an administrator account" +msgstr "" + +#: ../admin/adm_edit.php:57 +msgid "Member Edition" +msgstr "" + +#: ../admin/adm_edit.php:73 +msgid "Account Enabled?" +msgstr "" + +#: ../admin/adm_edit.php:76 +msgid "You cannot disable your own account." +msgstr "" + +#: ../admin/adm_edit.php:85 ../admin/adm_mxaccount.php:78 +#: ../admin/adm_mxaccount.php:95 ../admin/adm_slavedns.php:140 +#: ../admin/adm_slavedns.php:158 ../admin/cron.php:39 ../admin/ftp_edit.php:84 +#: ../admin/ftp_edit.php:92 ../admin/hta_adduser.php:58 +#: ../admin/hta_edit.php:102 ../admin/index.php:90 ../admin/mem_param.php:58 +#: ../admin/sql_getparam.php:74 ../admin/sql_users_add.php:63 +#: ../admin/sql_users_list.php:48 ../admin/sql_users_password.php:59 +msgid "Password" +msgstr "Passwört" + +#: ../admin/adm_edit.php:93 +#, fuzzy +msgid "Password change allowed?" +msgstr "Passwört" + +#: ../admin/adm_edit.php:116 +msgid "Reset quotas to default?" +msgstr "" + +#: ../admin/adm_edit.php:119 +msgid "Period" +msgstr "" + +#: ../admin/adm_edit.php:123 +msgid "Edit this account" +msgstr "" + +#: ../admin/adm_edit.php:137 +msgid "Renew for" +msgstr "" + +#: ../admin/adm_edit.php:138 +msgid "period(s)" +msgstr "" + +#: ../admin/adm_edit.php:141 +msgid "Renew" +msgstr "" + +#: ../admin/adm_edit.php:153 +msgid "This account is a super-admin account" +msgstr "" + +#: ../admin/adm_edit.php:157 +msgid "" +"There is only one administrator account, you cannot turn this account back " +"to normal" +msgstr "" + +#: ../admin/adm_edit.php:160 +msgid "Turn this account back to normal" +msgstr "" + +#: ../admin/adm_edit.php:163 +msgid "Make this account a super admin one" +msgstr "" + +#: ../admin/adm_edit.php:170 +#, php-format +msgid "Account created by %s" +msgstr "" + +#: ../admin/adm_email.php:43 ../admin/adm_panel.php:56 +msgid "Send an email to all members" +msgstr "" + +#: ../admin/adm_email.php:48 +msgid "The email was successfully sent" +msgstr "" + +#: ../admin/adm_email.php:50 +msgid "There was an error" +msgstr "" + +#: ../admin/adm_email.php:63 +msgid "From" +msgstr "" + +#: ../admin/adm_email.php:67 +msgid "Subject" +msgstr "" + +#: ../admin/adm_email.php:71 ../admin/mem_param.php:59 +msgid "Mail" +msgstr "" + +#: ../admin/adm_email.php:75 +msgid "Send" +msgstr "" + +#: ../admin/adm_list.php:70 +msgid "AlternC account list" +msgstr "" + +#: ../admin/adm_list.php:77 +msgid "Minimal view" +msgstr "" + +#: ../admin/adm_list.php:81 +msgid "Complete view" +msgstr "" + +#: ../admin/adm_list.php:87 +msgid "Filters" +msgstr "" + +#: ../admin/adm_list.php:90 +msgid "Search for a Login" +msgstr "" + +#: ../admin/adm_list.php:91 +msgid "Search for a Domain" +msgstr "" + +#: ../admin/adm_list.php:92 ../admin/piwik_sitelist.php:170 +msgid "submit" +msgstr "" + +#: ../admin/adm_list.php:100 +msgid "List all AlternC accounts" +msgstr "" + +#: ../admin/adm_list.php:110 +msgid "Or only the accounts of:" +msgstr "" + +#: ../admin/adm_list.php:115 +msgid "List only my accounts" +msgstr "" + +#: ../admin/adm_list.php:129 +#, php-format +msgid "%s accounts" +msgstr "" + +#: ../admin/adm_list.php:129 +msgid "Here is the list of hosted AlternC accounts" +msgstr "" + +#: ../admin/adm_list.php:132 +msgid "Create a new AlternC account" +msgstr "" + +#: ../admin/adm_list.php:136 +msgid "No account defined for now" +msgstr "" + +#: ../admin/adm_list.php:149 ../admin/adm_list.php:227 +#: ../admin/adm_list.php:264 ../admin/ftp_list.php:101 +msgid "Delete checked accounts" +msgstr "" + +#: ../admin/adm_list.php:156 +msgid "Manager" +msgstr "" + +#: ../admin/adm_list.php:157 +msgid "Created by" +msgstr "" + +#: ../admin/adm_list.php:158 +msgid "Created on" +msgstr "" + +#: ../admin/adm_list.php:160 +msgid "Last login" +msgstr "" + +#: ../admin/adm_list.php:161 +msgid "Last ip" +msgstr "" + +#: ../admin/adm_list.php:162 +msgid "Fails" +msgstr "" + +#: ../admin/adm_list.php:163 ../admin/main.php:87 +msgid "Expiry" +msgstr "" + +#: ../admin/adm_list.php:181 +msgid "Send an email" +msgstr "" + +#: ../admin/adm_list.php:183 ../admin/mail_list.php:167 +#, php-format +msgid "%3$d-%2$d-%1$d" +msgstr "" + +#: ../admin/adm_list.php:192 +msgid "DB:" +msgstr "" + +#: ../admin/adm_list.php:207 ../admin/dom_edit.php:171 +msgid "Disable" +msgstr "" + +#: ../admin/adm_list.php:221 ../admin/adm_list.php:250 +msgid "C" +msgstr "" + +#: ../admin/adm_list.php:222 ../admin/adm_list.php:251 +msgid "E" +msgstr "" + +#: ../admin/adm_list.php:223 ../admin/adm_list.php:253 +msgid "Q" +msgstr "" + +#: ../admin/adm_list.php:255 +msgid "himself" +msgstr "" + +#: ../admin/adm_list.php:257 +#, php-format +msgid "Creator: %s" +msgstr "" + +#: ../admin/adm_login.php:49 ../admin/adm_login.php:56 +msgid "Your authentication information are incorrect" +msgstr "" + +#: ../admin/adm_login.php:62 +msgid "Your IP is incorrect." +msgstr "" + +#: ../admin/adm_login.php:118 +msgid "Member login" +msgstr "" + +#: ../admin/adm_mxaccount.php:47 ../admin/adm_slavedns.php:51 +msgid "The requested account has been deleted. It is now denied." +msgstr "" + +#: ../admin/adm_mxaccount.php:53 ../admin/adm_slavedns.php:57 +msgid "The requested account address has been created. It is now allowed." +msgstr "" + +#: ../admin/adm_mxaccount.php:60 ../admin/adm_panel.php:64 +msgid "Manage allowed accounts for secondary mx" +msgstr "" + +#: ../admin/adm_mxaccount.php:74 +msgid "" +"Here is the list of the allowed accounts for secondary mx management. You " +"can configure the alternc-secondarymx package on your secondary mx server " +"and give him the login/pass that will grant him access to your server's mx-" +"hosted domain list. " +msgstr "" + +#: ../admin/adm_mxaccount.php:92 +msgid "" +"If you want to allow a new server to access your mx-hosted domain list, give " +"him an account." +msgstr "" + +#: ../admin/adm_mxaccount.php:101 ../admin/adm_slavedns.php:163 +msgid "Add this account to the allowed list" +msgstr "" + +#: ../admin/adm_panel.php:40 ../class/m_admin.php:98 +msgid "Admin Control Panel" +msgstr "" + +#: ../admin/adm_panel.php:51 ../admin/adm_tld.php:56 +#: ../admin/adm_tldadd.php:46 ../admin/adm_tldedit.php:52 +msgid "Manage allowed domains (TLD)" +msgstr "" + +#: ../admin/adm_panel.php:52 +#, fuzzy +msgid "Password Policies" +msgstr "Passwört" + +#: ../admin/adm_panel.php:55 +msgid "Manage IP whitelist" +msgstr "" + +#: ../admin/adm_panel.php:60 +msgid "Advanced features" +msgstr "" + +#: ../admin/adm_panel.php:63 +msgid "Manage slave DNS" +msgstr "" + +#: ../admin/adm_panel.php:65 ../admin/adm_variables.php:47 +msgid "Configure AlternC variables" +msgstr "" + +#: ../admin/adm_panel.php:68 +msgid "DNS and website having errors" +msgstr "" + +#: ../admin/adm_panel.php:69 +msgid "Manage databases servers" +msgstr "" + +#: ../admin/adm_panel.php:70 +msgid "Account creation statistics" +msgstr "" + +#: ../admin/adm_panel.php:95 +msgid "Click here to unlock the panel and allow user to login." +msgstr "" + +#: ../admin/adm_panel.php:97 +msgid "Are you sure you want to kick everyone?" +msgstr "" + +#: ../admin/adm_panel.php:97 +msgid "Click here to lock the panel and force logout of all the user." +msgstr "" + +#: ../admin/adm_passpolicy.php:49 +msgid "Manage Password Policy" +msgstr "" + +#: ../admin/adm_passpolicy.php:63 ../admin/adm_passpolicy.php:78 +msgid "Policy not found" +msgstr "" + +#: ../admin/adm_passpolicy.php:67 +msgid "Policy changed" +msgstr "" + +#: ../admin/adm_passpolicy.php:71 +msgid "Cannot edit the policy, an error occurred" +msgstr "" + +#: ../admin/adm_passpolicy.php:82 +msgid "Please choose which policy you want to apply to this password kind:" +msgstr "" + +#: ../admin/adm_passpolicy.php:90 +msgid "Minimum Password Size:" +msgstr "" + +#: ../admin/adm_passpolicy.php:97 +msgid "Maximum Password Size:" +msgstr "" + +#: ../admin/adm_passpolicy.php:104 +msgid "In how many classes of characters must be the password (at least):" +msgstr "" + +#: ../admin/adm_passpolicy.php:111 +msgid "Do we allow the password to be like the login?" +msgstr "" + +#: ../admin/adm_passpolicy.php:117 +msgid "Apply this password policy" +msgstr "" + +#: ../admin/adm_passpolicy.php:118 +msgid "Cancel and go back to the policy list" +msgstr "" + +#: ../admin/adm_passpolicy.php:121 +msgid "" +"The classes of characters are :
1. Low-case letters (a-z)
2. " +"Upper-case letters (A-Z)
3. Figures (0-9)
4. Ascii symbols (!\"#$" +"%&'()*+,-./:;<=>?@[\\]^_`)
5. Non-Ascii symbols (accents...)" +msgstr "" + +#: ../admin/adm_passpolicy.php:134 +msgid "" +"Here is the list of the password policies for each place a password may be " +"needed in AlternC's services. For each of those password kind, you can " +"choose which policy will be applied to passwords. A policy is a minimum and " +"maximum password size, and how many classes of characters must appear in the " +"password. You can also forbid (or not) to use the login or part of it as a " +"password." +msgstr "" + +#: ../admin/adm_passpolicy.php:138 +#, fuzzy +msgid "Password Kind" +msgstr "Passwört" + +#: ../admin/adm_passpolicy.php:138 +#, fuzzy +msgid "Password Policy" +msgstr "Passwört" + +#: ../admin/adm_passpolicy.php:140 +msgid "Min Size" +msgstr "" + +#: ../admin/adm_passpolicy.php:141 +msgid "Max Size" +msgstr "" + +#: ../admin/adm_passpolicy.php:142 +msgid "Complexity" +msgstr "" + +#: ../admin/adm_passpolicy.php:143 +msgid "Allow Password=Login?" +msgstr "" + +#: ../admin/adm_quotadoedit.php:52 +msgid "The quotas has been successfully edited" +msgstr "" + +#: ../admin/adm_quotaedit.php:55 +msgid "Editing the quotas of a member" +msgstr "" + +#: ../admin/adm_quotaedit.php:69 ../admin/quota_show.php:46 +msgid "Quota" +msgstr "" + +#: ../admin/adm_quotaedit.php:69 ../admin/quota_show.php:46 +#: ../admin/quotas_oneuser.php:87 ../admin/quotas_users.php:154 +#: ../admin/quotas_users.php:178 +msgid "Total" +msgstr "" + +#: ../admin/adm_quotaedit.php:69 ../admin/quota_show.php:46 +msgid "Used" +msgstr "Benützt" + +#: ../admin/adm_quotaedit.php:87 +msgid "Edit the quotas" +msgstr "" + +#: ../admin/adm_slavedns.php:65 +msgid "" +"The requested ip address has been deleted. It will be denied in one hour." +msgstr "" + +#: ../admin/adm_slavedns.php:71 +msgid "" +"The requested ip address has been added to the list. It will be allowed in " +"one hour." +msgstr "" + +#: ../admin/adm_slavedns.php:83 +msgid "Manage allowed ip for slave zone transfers" +msgstr "" + +#: ../admin/adm_slavedns.php:91 +msgid "" +"Here is the list of the allowed ip or ip class for slave dns zone transfer " +"requests (AXFR). You must add the ip address of all the slave DNS you have " +"so that those slaves will be allowed to transfer the zone files. There is " +"also some defaults ip from DNS checks made by some third-party technical " +"offices such as afnic (for .fr domains)" +msgstr "" + +#: ../admin/adm_slavedns.php:95 ../admin/adm_slavedns.php:114 +msgid "IP Address" +msgstr "" + +#: ../admin/adm_slavedns.php:110 +msgid "" +"If you want to allow an ip address or class to connect to your dns server, " +"enter it here. Choose 32 as a prefix for single ip address." +msgstr "" + +#: ../admin/adm_slavedns.php:114 +msgid "Prefix" +msgstr "" + +#: ../admin/adm_slavedns.php:120 +msgid "Add this ip to the slave list" +msgstr "" + +#: ../admin/adm_slavedns.php:129 +msgid "Manage allowed accounts for slave zone transfers" +msgstr "" + +#: ../admin/adm_slavedns.php:137 +msgid "" +"Here is the list of the allowed accounts for slave dns synchronization. You " +"can configure the alternc-slavedns package on your slave server and give him " +"the login/pass that will grant him access to your server's domain list. " +msgstr "" + +#: ../admin/adm_slavedns.php:154 +msgid "" +"If you want to allow a new server to access your domain list, give him an " +"account." +msgstr "" + +#: ../admin/adm_slavedns.php:194 +msgid "Need open DNS Slave servers?" +msgstr "" + +#: ../admin/adm_slavedns.php:196 +msgid "We offer free of charge DNS servers for alternc users." +msgstr "" + +#: ../admin/adm_slavedns.php:197 +msgid "How does it work?" +msgstr "" + +#: ../admin/adm_slavedns.php:199 +#, php-format +msgid "" +"Give access to the alternc.net servers. Follow the " +"instructions on this page. They will help " +"you to configure this page and configure your alternc.net account." +msgstr "" + +#: ../admin/adm_slavedns.php:200 +#, php-format +msgid "" +"Subscribe to alternc.net. Go to the alternc.net site to " +"use the DNS servers provided for free by the AlternC association and enter " +"the required informations for each server you want to connect to the service." +msgstr "" + +#: ../admin/adm_slavedns.php:203 +msgid "" +"The alternc.net servers will take care of transfering and distributing to " +"the world your domains zones." +msgstr "" + +#: ../admin/adm_tld.php:47 +msgid "Some TLD cannot be deleted..." +msgstr "" + +#: ../admin/adm_tld.php:50 +msgid "The requested TLD has been deleted" +msgstr "" + +#: ../admin/adm_tld.php:68 +msgid "" +"Here is the list of the TLD allowed on this server. Each TLD can be allowed " +"or denied after some checks (whois, ns, domain exists...)" +msgstr "" + +#: ../admin/adm_tld.php:70 ../admin/adm_tld.php:91 ../admin/adm_tldadd.php:56 +#: ../admin/adm_tldadd.php:70 +msgid "Add a new TLD" +msgstr "" + +#: ../admin/adm_tld.php:73 ../admin/adm_tldadd.php:66 +#: ../admin/adm_tldedit.php:65 +msgid "Allowed Mode" +msgstr "" + +#: ../admin/adm_tld.php:73 ../admin/adm_tldadd.php:65 +#: ../admin/adm_tldedit.php:64 +msgid "TLD" +msgstr "" + +#: ../admin/adm_tld.php:87 +msgid "Delete the checked TLD" +msgstr "" + +#: ../admin/adm_tldadd.php:58 +msgid "" +"Enter the new TLD (without the first dot) and choose what check should be " +"done." +msgstr "" + +#: ../admin/adm_tldadd.php:59 +msgid "" +"Warning : only some final tld are known in the whois function of AlternC, " +"please check m_dom.php accordingly." +msgstr "" + +#: ../admin/adm_tlddoadd.php:49 +msgid "The TLD has been successfully added" +msgstr "" + +#: ../admin/adm_tlddoedit.php:48 +msgid "The TLD has been successfully edited" +msgstr "" + +#: ../admin/adm_tldedit.php:60 +msgid "Edit a TLD" +msgstr "" + +#: ../admin/adm_tldedit.php:69 +msgid "Edit this TLD" +msgstr "" + +#: ../admin/adm_update_domains.php:40 +msgid "Missing INOTIFY_UPDATE_DOMAIN var in /etc/alternc/local.sh . Fix it!" +msgstr "" + +#: ../admin/adm_variables.php:52 +msgid "Here are the internal AlternC variables that are currently being used." +msgstr "" + +#: ../admin/adm_variables.php:57 +msgid "Comment" +msgstr "" + +#: ../admin/adm_variables.php:57 +msgid "Names" +msgstr "" + +#: ../admin/adm_variables.php:69 +msgid "Save variables" +msgstr "" + +#: ../admin/bro_editor.php:54 ../admin/bro_editor.php:63 +#: ../admin/bro_main.php:355 ../admin/bro_main.php:395 +#, php-format +msgid "%3$d-%2$d-%1$d %4$d:%5$d" +msgstr "" + +#: ../admin/bro_editor.php:54 ../admin/bro_editor.php:63 +#, php-format +msgid "Your file %s has been saved" +msgstr "" + +#: ../admin/bro_editor.php:74 +msgid "File editing" +msgstr "" + +#: ../admin/bro_editor.php:80 +msgid "This file is empty" +msgstr "" + +#: ../admin/bro_editor.php:90 +msgid "Save & Quit" +msgstr "" + +#: ../admin/bro_editor.php:91 +msgid "Quit" +msgstr "" + +#: ../admin/bro_main.php:91 +#, php-format +msgid "Deleting files and/or directories" +msgstr "" + +#: ../admin/bro_main.php:96 +msgid "WARNING: Confirm the deletion of this files" +msgstr "" + +#: ../admin/bro_main.php:105 +msgid "Yes, delete those files/folders" +msgstr "" + +#: ../admin/bro_main.php:106 +msgid "No, don't delete those files/folders" +msgstr "" + +#: ../admin/bro_main.php:144 +msgid "extracting..." +msgstr "" + +#: ../admin/bro_main.php:148 +#, fuzzy +msgid "failed" +msgstr "Datei" + +#: ../admin/bro_main.php:151 +msgid "done" +msgstr "" + +#: ../admin/bro_main.php:156 ../class/m_bro.php:76 +msgid "File browser" +msgstr "Dateimanager" + +#: ../admin/bro_main.php:163 +msgid "Path" +msgstr "" + +#: ../admin/bro_main.php:185 +msgid "Send one file:" +msgstr "" + +#: ../admin/bro_main.php:189 +msgid "Send this file" +msgstr "" + +#: ../admin/bro_main.php:190 +#, php-format +msgid "Warning: max size: %s" +msgstr "" + +#: ../admin/bro_main.php:197 +msgid "New file or folder:" +msgstr "" + +#: ../admin/bro_main.php:202 ../admin/piwik_sitelist.php:86 +#: ../admin/piwik_userlist.php:44 ../admin/piwik_userlist.php:56 +msgid "Create" +msgstr "" + +#: ../admin/bro_main.php:204 ../admin/bro_main.php:244 +msgid "File" +msgstr "Datei" + +#: ../admin/bro_main.php:205 ../admin/bro_main.php:397 +#: ../admin/ftp_edit.php:75 ../admin/ftp_list.php:72 ../admin/hta_add.php:55 +#: ../admin/hta_adduser.php:50 ../admin/hta_edit.php:94 +#: ../admin/hta_edituser.php:51 ../admin/hta_list.php:68 +msgid "Folder" +msgstr "" + +#: ../admin/bro_main.php:222 ../admin/bro_main.php:228 +#: ../admin/bro_main.php:286 +msgid "Rename" +msgstr "" + +#: ../admin/bro_main.php:238 ../admin/bro_main.php:244 +#: ../admin/bro_main.php:287 +msgid "Permissions" +msgstr "" + +#: ../admin/bro_main.php:258 +msgid "write" +msgstr "" + +#: ../admin/bro_main.php:266 +msgid "Change permissions" +msgstr "" + +#: ../admin/bro_main.php:289 +msgid "Copy" +msgstr "" + +#: ../admin/bro_main.php:290 +msgid "Move" +msgstr "" + +#: ../admin/bro_main.php:291 +msgid "To" +msgstr "" + +#: ../admin/bro_main.php:302 +msgid "Please select a destination folder" +msgstr "" + +#: ../admin/bro_main.php:328 +#, fuzzy +msgid "Filename" +msgstr "Datei" + +#: ../admin/bro_main.php:329 ../admin/logs_list.php:53 +#: ../admin/sql_list.php:54 +msgid "Size" +msgstr "" + +#: ../admin/bro_main.php:330 +msgid "Last modification" +msgstr "" + +#: ../admin/bro_main.php:332 +#, fuzzy +msgid "File Type" +msgstr "Datei" + +#: ../admin/bro_main.php:361 ../admin/bro_main.php:542 +#: ../admin/dom_edit.php:121 +msgid "View" +msgstr "" + +#: ../admin/bro_main.php:368 +msgid "Extract" +msgstr "" + +#: ../admin/bro_main.php:374 ../admin/bro_main.php:376 +msgid "Restore SQL" +msgstr "" + +#: ../admin/bro_main.php:376 +msgid "In which database to you want to restore this dump?" +msgstr "" + +#: ../admin/bro_main.php:381 +msgid "Restore it" +msgstr "" + +#: ../admin/bro_main.php:422 ../admin/bro_main.php:450 +#: ../admin/bro_main.php:485 ../admin/bro_main.php:513 +msgid "V" +msgstr "" + +#: ../admin/bro_main.php:568 +msgid "No files in this folder" +msgstr "" + +#: ../admin/bro_main.php:578 +msgid "(slow)" +msgstr "" + +#: ../admin/bro_main.php:578 +msgid "Show size of directories" +msgstr "" + +#: ../admin/bro_main.php:582 +msgid "Edit this folder's protection" +msgstr "" + +#: ../admin/bro_main.php:585 ../admin/hta_add.php:62 +msgid "Protect this folder" +msgstr "" + +#: ../admin/bro_main.php:587 +msgid "with a login and a password" +msgstr "" + +#: ../admin/bro_main.php:590 +msgid "Download this folder" +msgstr "" + +#: ../admin/bro_main.php:592 +#, php-format +msgid "as a %s file" +msgstr "" + +#: ../admin/bro_main.php:599 +msgid "Edit the ftp account" +msgstr "" + +#: ../admin/bro_main.php:600 +msgid "that exists in this folder" +msgstr "" + +#: ../admin/bro_main.php:606 +msgid "Create an ftp account in this folder" +msgstr "" + +#: ../admin/bro_main.php:615 +msgid "Configure the file editor" +msgstr "" + +#: ../admin/bro_pref.php:49 +msgid "Your preferences have been updated." +msgstr "" + +#: ../admin/bro_pref.php:59 +msgid "File browser preferences" +msgstr "" + +#: ../admin/bro_pref.php:66 +msgid "Horizontal window size" +msgstr "" + +#: ../admin/bro_pref.php:74 +msgid "Vertical window size" +msgstr "" + +#: ../admin/bro_pref.php:82 +msgid "File editor font name" +msgstr "" + +#: ../admin/bro_pref.php:90 +msgid "File editor font size" +msgstr "" + +#: ../admin/bro_pref.php:98 +msgid "File list view" +msgstr "" + +#: ../admin/bro_pref.php:106 +msgid "Downloading file format" +msgstr "" + +#: ../admin/bro_pref.php:114 +msgid "What to do after creating a file" +msgstr "" + +#: ../admin/bro_pref.php:122 +msgid "Show icons?" +msgstr "" + +#: ../admin/bro_pref.php:130 +msgid "Show file types?" +msgstr "" + +#: ../admin/bro_pref.php:138 +msgid "Remember last visited directory?" +msgstr "" + +#: ../admin/bro_pref.php:149 +msgid "Change my settings" +msgstr "" + +#: ../admin/browseforfolder.php:125 ../admin/browseforfolder2.php:120 +msgid "Searching for a folder" +msgstr "" + +#: ../admin/browseforfolder.php:131 ../admin/browseforfolder2.php:126 +msgid "Error, cannot find this folder" +msgstr "" + +#: ../admin/browseforfolder.php:133 ../admin/browseforfolder2.php:128 +msgid "Back to the root folder" +msgstr "" + +#: ../admin/browseforfolder.php:145 ../admin/browseforfolder2.php:141 +msgid "Select" +msgstr "" + +#: ../admin/cron.php:21 ../class/m_cron.php:72 ../class/m_cron.php:181 +msgid "Scheduled tasks" +msgstr "" + +#: ../admin/cron.php:36 +msgid "URL" +msgstr "" + +#: ../admin/cron.php:37 +msgid "Schedule" +msgstr "" + +#: ../admin/cron.php:38 ../admin/hta_edituser.php:55 +#: ../admin/sql_users_list.php:48 +msgid "User" +msgstr "" + +#: ../admin/cron.php:40 +msgid "Email report" +msgstr "" + +#: ../admin/cron.php:57 +msgid "Called URL" +msgstr "" + +#: ../admin/cron.php:60 +msgid "Period:" +msgstr "" + +#: ../admin/cron.php:72 +msgid "Next execution: " +msgstr "" + +#: ../admin/cron.php:75 +msgid "HTTP user (optional)" +msgstr "" + +#: ../admin/cron.php:76 +msgid "HTTP password (optional)" +msgstr "" + +#: ../admin/cron.php:77 +msgid "Mail address (optional)" +msgstr "" + +#: ../admin/cron.php:81 +msgid "Apply the modifications" +msgstr "" + +#: ../admin/dom_add.php:45 +msgid "Domain hosting" +msgstr "" + +#: ../admin/dom_add.php:49 +msgid "Contact your administrator for more information." +msgstr "" + +#: ../admin/dom_add.php:49 +msgid "You cannot add any new domain, your quota is over." +msgstr "" + +#: ../admin/dom_add.php:57 +msgid "Advanced import" +msgstr "" + +#: ../admin/dom_add.php:60 +msgid "host my dns here" +msgstr "" + +#: ../admin/dom_add.php:68 +msgid "" +"Do you want to point this domain to another domain already installed in your " +"account?" +msgstr "" + +#: ../admin/dom_add.php:71 +msgid "No: This domain will have its own folder." +msgstr "" + +#: ../admin/dom_add.php:73 +msgid "Yes, redirect this new domain to this one:" +msgstr "" + +#: ../admin/dom_add.php:74 +msgid "-- Choose a domain --" +msgstr "" + +#: ../admin/dom_add.php:87 +msgid "Add this domain" +msgstr "" + +#: ../admin/dom_add.php:91 +msgid "" +"If you don't want to host in our server the DNS of your domain, don't check " +"the box 'host my dns here'. If you don't know what it mean, leave it checked." +msgstr "" + +#: ../admin/dom_add.php:96 ../admin/dom_doadd.php:60 +msgid "Whois result on the domain" +msgstr "" + +#: ../admin/dom_dnsdump.php:9 +msgid "Error: no domain" +msgstr "" + +#: ../admin/dom_doadd.php:52 ../class/m_dom.php:104 +msgid "Add a domain" +msgstr "" + +#: ../admin/dom_doadd.php:54 +#, php-format +msgid "Your new domain %s has been successfully installed" +msgstr "" + +#: ../admin/dom_doadd.php:55 ../admin/dom_dodel.php:56 +#: ../admin/dom_dodel.php:86 ../admin/dom_editdns.php:62 +#: ../admin/dom_import.php:87 ../admin/dom_subdodel.php:79 +#: ../admin/hta_doedituser.php:62 +msgid "Click here to continue" +msgstr "" + +#: ../admin/dom_dodel.php:54 +msgid "Deletion have been successfully cancelled" +msgstr "" + +#: ../admin/dom_dodel.php:64 ../admin/dom_dodel.php:67 +#, php-format +msgid "Confirm the deletion of domain %s" +msgstr "" + +#: ../admin/dom_dodel.php:67 ../admin/sql_del.php:75 +#: ../admin/sql_users_del.php:61 +msgid "WARNING" +msgstr "" + +#: ../admin/dom_dodel.php:69 +msgid "This will delete the related sub-domains too." +msgstr "" + +#: ../admin/dom_dodel.php:74 +msgid "Yes, delete this domain name" +msgstr "" + +#: ../admin/dom_dodel.php:75 +msgid "No, don't delete this domain name" +msgstr "" + +#: ../admin/dom_dodel.php:81 +#, php-format +msgid "Domain %s deleted" +msgstr "" + +#: ../admin/dom_dodel.php:85 +#, php-format +msgid "The domain %s has been successfully deleted." +msgstr "" + +#: ../admin/dom_edit.inc.php:40 +msgid "Edit a subdomain:" +msgstr "" + +#: ../admin/dom_edit.inc.php:42 +msgid "Create a subdomain:" +msgstr "" + +#: ../admin/dom_edit.inc.php:63 +msgid "Show advanced options" +msgstr "" + +#: ../admin/dom_edit.inc.php:64 +msgid "Hide advanced options" +msgstr "" + +#: ../admin/dom_edit.inc.php:88 +msgid "(enter an URL here)" +msgstr "" + +#: ../admin/dom_edit.inc.php:92 +msgid "(enter an IPv4 address, for example 192.168.1.2)" +msgstr "" + +#: ../admin/dom_edit.inc.php:96 +msgid "(enter an IPv6 address, for example 2001:0910::0)" +msgstr "" + +#: ../admin/dom_edit.inc.php:100 +msgid "(enter a TXT content for this domain)" +msgstr "" + +#: ../admin/dom_edit.inc.php:104 +msgid "(enter a domain name or subdomain)" +msgstr "" + +#: ../admin/dom_edit.inc.php:114 +msgid "Edit this subdomain" +msgstr "" + +#: ../admin/dom_edit.inc.php:116 +msgid "Add this subdomain" +msgstr "" + +#: ../admin/dom_edit.inc.php:135 +msgid "Missing value for this sub-domain" +msgstr "" + +#: ../admin/dom_edit.inc.php:141 +msgid "Please select a type for this sub-domain" +msgstr "" + +#: ../admin/dom_edit.php:80 +msgid "" +"Are you sure you want to do this? This will DELETE ALL the mailboxes, " +"messages and aliases on this domain ?" +msgstr "" + +#: ../admin/dom_edit.php:91 +#, php-format +msgid "Manage %s" +msgstr "" + +#: ../admin/dom_edit.php:96 +msgid "This domain have some DNS change pending. Please wait." +msgstr "" + +#: ../admin/dom_edit.php:99 +#, php-format +msgid "You requested deletion of domain %s." +msgstr "" + +#: ../admin/dom_edit.php:117 +msgid "Edit subdomains" +msgstr "" + +#: ../admin/dom_edit.php:118 +msgid "Add subdomains" +msgstr "" + +#: ../admin/dom_edit.php:119 ../class/m_mem.php:63 +msgid "Settings" +msgstr "" + +#: ../admin/dom_edit.php:128 +#, php-format +msgid "Editing subdomains of %s" +msgstr "" + +#: ../admin/dom_edit.php:130 +msgid "Subdomain" +msgstr "" + +#: ../admin/dom_edit.php:153 +msgid "ERROR, please check your server setup" +msgstr "" + +#: ../admin/dom_edit.php:160 ../admin/ftp_list.php:94 +#, fuzzy +msgid "Directory not found" +msgstr "Miglied '%s' existiert nicht" + +#: ../admin/dom_edit.php:174 +msgid "Activation pending" +msgstr "" + +#: ../admin/dom_edit.php:177 ../admin/ftp_list.php:84 +#: ../admin/mail_list.php:144 ../admin/mail_list.php:154 +msgid "Disabled" +msgstr "" + +#: ../admin/dom_edit.php:178 +msgid "Enable" +msgstr "" + +#: ../admin/dom_edit.php:181 +msgid "Desactivation pending" +msgstr "" + +#: ../admin/dom_edit.php:189 +msgid "Update pending" +msgstr "" + +#: ../admin/dom_edit.php:192 +msgid "Deletion pending" +msgstr "" + +#: ../admin/dom_edit.php:206 +#, php-format +msgid "Add a subdomains to %s" +msgstr "" + +#: ../admin/dom_edit.php:223 +msgid "DNS & Email parameters" +msgstr "" + +#: ../admin/dom_edit.php:228 +msgid "Manage the DNS on the server ?" +msgstr "" + +#: ../admin/dom_edit.php:239 +msgid "Define TTL for the zone records" +msgstr "" + +#: ../admin/dom_edit.php:241 +msgid "" +"Warning: a low TTL can be problematic. It is recommended not to use a lower " +"TTL than 3600 seconds." +msgstr "" + +#: ../admin/dom_edit.php:241 +msgid "seconds" +msgstr "" + +#: ../admin/dom_edit.php:250 +msgid "Manage the Emails Addresses of this domain on the server?" +msgstr "" + +#: ../admin/dom_edit.php:258 +msgid "" +"Warning: If you set this to 'no', all your email accounts and aliases on " +"this domain will be immediately deleted." +msgstr "" + +#: ../admin/dom_edit.php:259 +msgid "Submit the changes" +msgstr "" + +#: ../admin/dom_edit.php:267 +msgid "" +"Here is the actual DNS zone running on the AlternC server. If you just made " +"some changes, you have to wait for it." +msgstr "" + +#: ../admin/dom_edit.php:271 +msgid "Click here to view the dump" +msgstr "" + +#: ../admin/dom_edit.php:279 +msgid "Domain removal" +msgstr "" + +#: ../admin/dom_edit.php:280 +#, php-format +msgid "" +"If you want to destroy the domain %s, click on the button below. Warning: " +"this also deletes all FTP accounts, email, mailing lists associated with the " +"domain and subdomains." +msgstr "" + +#: ../admin/dom_edit.php:283 +#, php-format +msgid "Delete %s from this server" +msgstr "" + +#: ../admin/dom_editdns.php:52 +#, php-format +msgid "Editing domain %s" +msgstr "" + +#: ../admin/dom_editdns.php:57 +#, php-format +msgid "The domain %s has been changed." +msgstr "" + +#: ../admin/dom_editdns.php:60 ../admin/dom_subdodel.php:75 +msgid "The modifications will take effect at %time. Server time is %now." +msgstr "" + +#: ../admin/dom_import.php:43 +msgid "Import a DNS zone" +msgstr "" + +#: ../admin/dom_import.php:55 +#, fuzzy +msgid "The domain field seems to be empty" +msgstr "Miglied '%s' existiert nicht" + +#: ../admin/dom_import.php:57 +msgid "" +"Here is my proposition. Modify your zone until my proposition seems good to " +"you" +msgstr "" + +#: ../admin/dom_import.php:59 +#, php-format +msgid "Working on %s" +msgstr "" + +#: ../admin/dom_import.php:61 +msgid "Generated entry" +msgstr "" + +#: ../admin/dom_import.php:61 +msgid "Result" +msgstr "" + +#: ../admin/dom_import.php:61 +msgid "Zone" +msgstr "" + +#: ../admin/dom_import.php:74 +msgid "ERROR" +msgstr "" + +#: ../admin/dom_import.php:74 ../admin/mem_cm.php:56 +msgid "OK" +msgstr "" + +#: ../admin/dom_import.php:96 +#, fuzzy +msgid "Enter the domain name you want to import" +msgstr "Miglied '%s' existiert nicht" + +#: ../admin/dom_import.php:104 +msgid "Do you want to detect the redirection?" +msgstr "" + +#: ../admin/dom_import.php:115 +msgid "Paste your existing DNS zone here." +msgstr "" + +#: ../admin/dom_import.php:117 +msgid "If you don't know what it is, don't submit this form." +msgstr "" + +#: ../admin/dom_import.php:122 +msgid "Do you want to import the zone as it?" +msgstr "" + +#: ../admin/dom_import.php:126 +msgid "Submit" +msgstr "" + +#: ../admin/dom_subdel.php:51 +#, php-format +msgid "Deleting subdomain %s" +msgstr "" + +#: ../admin/dom_subdel.php:67 +msgid "WARNING : Confirm the deletion of the subdomain" +msgstr "" + +#: ../admin/dom_subdodel.php:64 +#, php-format +msgid "Deleting the subdomain %s:" +msgstr "" + +#: ../admin/dom_subdoedit.php:72 ../admin/dom_substatus.php:29 +msgid "The modifications will take effect at %time. Server time is %now." +msgstr "" + +#: ../admin/dom_subedit.php:56 +msgid "Editing subdomain" +msgstr "" + +#: ../admin/ftp_del.php:60 +#, php-format +msgid "The ftp account %s has been successfully deleted" +msgstr "" + +#: ../admin/ftp_del.php:68 +msgid "Confirm the FTP accounts deletion" +msgstr "" + +#: ../admin/ftp_del.php:71 +msgid "Do you really want to delete those accounts?" +msgstr "" + +#: ../admin/ftp_doedit.php:46 ../admin/ftp_edit.php:44 +#: ../admin/ftp_edit.php:51 +#, fuzzy +msgid "Create a FTP account" +msgstr "Miglied '%s' existiert nicht" + +#: ../admin/ftp_doedit.php:52 +msgid "Error: neither a creation nor an edition" +msgstr "" + +#: ../admin/ftp_doedit.php:72 +msgid "The ftp account has been successfully saved" +msgstr "" + +#: ../admin/ftp_edit.php:43 +msgid "Neither a creation nor a edition" +msgstr "" + +#: ../admin/ftp_edit.php:53 +msgid "Editing a FTP account" +msgstr "" + +#: ../admin/ftp_edit.php:79 +msgid "" +"This is the root folder for this FTP user. i.e. this FTP user can access to " +"this forlder and all its sub-folders." +msgstr "" + +#: ../admin/ftp_edit.php:93 +msgid "Click here if you want to edit password" +msgstr "" + +#: ../admin/ftp_edit.php:114 +#, fuzzy +msgid "Password do not match" +msgstr "Passwört" + +#: ../admin/ftp_edit.php:120 ../class/m_admin.php:1279 ../class/m_hta.php:235 +msgid "Please enter a password" +msgstr "" + +#: ../admin/ftp_list.php:45 ../class/m_ftp.php:76 +msgid "FTP accounts list" +msgstr "" + +#: ../admin/ftp_list.php:57 ../class/m_ftp.php:67 +msgid "Create a new ftp account" +msgstr "" + +#: ../admin/ftp_list.php:80 +msgid "Are you sure you want to change his status?" +msgstr "" + +#: ../admin/ftp_list.php:107 +msgid "FTP configuration information" +msgstr "" + +#: ../admin/ftp_list.php:109 +msgid "" +"Here are some configuration information you will need to configure your FTP " +"application." +msgstr "" + +#: ../admin/ftp_list.php:112 +#, fuzzy +msgid "Server:" +msgstr "Datei" + +#: ../admin/ftp_list.php:113 +msgid "FTP mode for data transfer:" +msgstr "" + +#: ../admin/ftp_list.php:113 +msgid "passive" +msgstr "" + +#: ../admin/ftp_list.php:114 +#, fuzzy +msgid "User/password:" +msgstr "Passwört" + +#: ../admin/ftp_list.php:114 +msgid "" +"the one you specified when you created the account. You can edit them in the " +"panel." +msgstr "" + +#: ../admin/head.php:32 +msgid "AlternC Control Panel" +msgstr "" + +#: ../admin/head.php:59 +msgid "" +"Administrator session. you may return to your " +"account or cancel this feature." +msgstr "" + +#: ../admin/head.php:60 +msgid "You can also apply changes." +msgstr "" + +#: ../admin/head.php:65 +msgid "Panel is locked! No one can login!" +msgstr "" + +#: ../admin/hta_add.php:39 ../admin/hta_list.php:49 ../admin/hta_list.php:87 +msgid "Protect a folder" +msgstr "" + +#: ../admin/hta_add.php:43 +msgid "" +"Enter the name of the folder you want to protect. It must already exists." +msgstr "" + +#: ../admin/hta_adduser.php:40 +#, php-format +msgid "Adding a username in %s" +msgstr "" + +#: ../admin/hta_adduser.php:67 ../admin/hta_edit.php:112 +msgid "Add this user" +msgstr "" + +#: ../admin/hta_del.php:42 +#, php-format +msgid "The protected folder %s has been successfully unprotected" +msgstr "" + +#: ../admin/hta_dodeluser.php:49 +msgid "Authorized user deletion confirm" +msgstr "" + +#: ../admin/hta_dodeluser.php:52 +msgid "Do you really want to delete those users ?" +msgstr "" + +#: ../admin/hta_doedituser.php:52 +#, php-format +msgid "Change the user %s in the protected folder %s" +msgstr "" + +#: ../admin/hta_doedituser.php:60 +#, php-format +msgid "The password of the user %s has been successfully changed" +msgstr "" + +#: ../admin/hta_edit.php:39 +msgid "No folder selected!" +msgstr "" + +#: ../admin/hta_edit.php:48 +#, php-format +msgid "List of authorized user in folder %s" +msgstr "" + +#: ../admin/hta_edit.php:53 +#, php-format +msgid "No authorized user in %s" +msgstr "" + +#: ../admin/hta_edit.php:68 ../admin/sql_users_password.php:38 +msgid "Change this user's password" +msgstr "" + +#: ../admin/hta_edit.php:78 ../admin/sql_users_list.php:70 +msgid "Delete the checked users" +msgstr "" + +#: ../admin/hta_edit.php:83 +msgid "Show this folder's content in the File Browser" +msgstr "" + +#: ../admin/hta_edit.php:89 +msgid "Adding an authorized user" +msgstr "" + +#: ../admin/hta_edituser.php:40 +#, php-format +msgid "Editing user %s in the protected folder %s" +msgstr "" + +#: ../admin/hta_edituser.php:59 ../admin/mem_param.php:83 +#: ../admin/mem_param.php:84 +msgid "New password" +msgstr "" + +#: ../admin/hta_edituser.php:68 +msgid "Change the password" +msgstr "" + +#: ../admin/hta_list.php:40 +msgid "Protected folders list" +msgstr "" + +#: ../admin/hta_list.php:60 +msgid "" +"You can set passwords to protect some of your folders.
This will create ." +"htaccess and .htpasswd files that restrict access to these directory and to " +"any sub-elements." +msgstr "" + +#: ../admin/hta_list.php:77 +msgid "Edit login and passwords" +msgstr "" + +#: ../admin/hta_list.php:86 +msgid "Unprotect the checked folders" +msgstr "" + +#: ../admin/index.php:67 +msgid "Web Hosting Control Panel" +msgstr "" + +#: ../admin/index.php:83 +msgid "" +"To connect to the hosting control panel, enter your AlternC's login and " +"password in the following form and click 'Enter'" +msgstr "" + +#: ../admin/index.php:84 +msgid "You are attemping to connect without IP restriction." +msgstr "" + +#: ../admin/index.php:88 +msgid "AlternC access" +msgstr "" + +#: ../admin/index.php:91 +msgid "Enter" +msgstr "" + +#: ../admin/index.php:111 +msgid "" +"To read your mail in a browser, click here to go to your server's Webmail" +msgstr "" + +#: ../admin/index.php:123 +msgid "You must accept the session cookie to log-in" +msgstr "" + +#: ../admin/index.php:152 +msgid "Need a login and a password" +msgstr "" + +#: ../admin/ip_main.php:58 +msgid "" +"Here you can add rules to restrict access to AlternC's services, filtered by " +"IP. First, add trusted IPs in the 'Known IP and networks' list. Then, add " +"rules to grant access on services to the chosen IPs from this list." +msgstr "" + +#: ../admin/ip_main.php:60 +msgid "Enabled rules" +msgstr "" + +#: ../admin/ip_main.php:64 +msgid "Authorised IP address or network" +msgstr "" + +#: ../admin/ip_main.php:65 ../admin/ip_main.php:95 +msgid "Access type" +msgstr "" + +#: ../admin/ip_main.php:76 +msgid "for" +msgstr "" + +#: ../admin/ip_main.php:86 +msgid "Add a new rule" +msgstr "" + +#: ../admin/ip_main.php:89 +msgid "" +"You need to have some 'Known IP and networks' defined below to define a new " +"rule." +msgstr "" + +#: ../admin/ip_main.php:119 +msgid "Authorized IP address or network" +msgstr "" + +#: ../admin/ip_main.php:144 +msgid "Known IP and networks" +msgstr "" + +#: ../admin/ip_main.php:146 +msgid "IP or network" +msgstr "" + +#: ../admin/ip_main.php:172 +msgid "Add an IP or a networks" +msgstr "" + +#: ../admin/ip_main.php:181 +msgid "IP or network. IPv4, IPv6 and subnet allowed" +msgstr "" + +#: ../admin/ip_main.php:214 +msgid "Please select an access type" +msgstr "" + +#: ../admin/logs_list.php:35 +msgid "Logs Listing" +msgstr "" + +#: ../admin/logs_list.php:43 +msgid "You have no web logs to list at the moment." +msgstr "" + +#: ../admin/logs_list.php:49 +msgid "" +"Here are web logs of your account.
You can download them to do specific " +"extract and statistics." +msgstr "" + +#: ../admin/logs_list.php:53 +msgid "Creation Date" +msgstr "" + +#: ../admin/logs_list.php:53 +msgid "Download link" +msgstr "" + +#: ../admin/logs_list.php:65 +msgid "Download" +msgstr "" + +#: ../admin/mail_del.php:54 +msgid "Deleting mail accounts" +msgstr "" + +#: ../admin/mail_del.php:57 +msgid "Please confirm the deletion of the following mail accounts:" +msgstr "" + +#: ../admin/mail_del.php:74 +msgid "Confirm the deletion" +msgstr "" + +#: ../admin/mail_del.php:74 +msgid "Don't delete anything and go back to the email list" +msgstr "" + +#: ../admin/mail_del.php:78 +msgid "" +"Warning: Deleting an email address will destroy all the messages it " +"contains! You will NOT be able to get it back!" +msgstr "" + +#: ../admin/mail_doedit.php:120 +msgid "Your email has been edited successfully" +msgstr "" + +#: ../admin/mail_edit.php:53 +#, php-format +msgid "Editing the email %s" +msgstr "" + +#: ../admin/mail_edit.php:67 +msgid "Is this email enabled?" +msgstr "" + +#: ../admin/mail_edit.php:69 +msgid "" +"You can enable or disable this email anytime. This will bounce any mail " +"received on this address, but will not delete the stored email, or the " +"redirections or password." +msgstr "" + +#: ../admin/mail_edit.php:73 +msgid "No (email disabled)" +msgstr "" + +#: ../admin/mail_edit.php:74 +msgid "Yes (email enabled)" +msgstr "" + +#: ../admin/mail_edit.php:78 +msgid "Is it a POP/IMAP account?" +msgstr "" + +#: ../admin/mail_edit.php:79 +msgid "" +"POP/IMAP accounts are receiving emails in the server. To read those emails, " +"you can use a Webmail, or a mail client such as Thunderbird. If you don't " +"use POP/IMAP, you can configure your email to be a redirection to other " +"existing emails. The maximum size is in megabytes, use 0 to make it infinite." +msgstr "" + +#: ../admin/mail_edit.php:82 +#, php-format +msgid "This mailbox is currently using %1$s / %2$s" +msgstr "" + +#: ../admin/mail_edit.php:85 +msgid "" +"This mailbox is pending deletion. You can recover its mails by setting it to " +"'Yes' NOW!" +msgstr "" + +#: ../admin/mail_edit.php:95 +msgid "Click here to edit the existing password" +msgstr "" + +#: ../admin/mail_edit.php:96 +#, fuzzy +msgid "Enter a POP/IMAP password" +msgstr "Passwört" + +#: ../admin/mail_edit.php:98 ../class/m_quota.php:537 +msgid "MB" +msgstr "" + +#: ../admin/mail_edit.php:98 +msgid "Maximum allowed size of this Mailbox" +msgstr "" + +#: ../admin/mail_edit.php:103 +msgid "" +"WARNING: turning POP/IMAP off will DELETE the stored messages in this email " +"address." +msgstr "" + +#: ../admin/mail_edit.php:105 +msgid "Is it a redirection to other email addresses?" +msgstr "" + +#: ../admin/mail_edit.php:107 +msgid "" +"If you want to send emails received on this address to other addresses, even " +"outside this server, enter those recipients here." +msgstr "" + +#: ../admin/mail_edit.php:107 +msgid "one recipient per line" +msgstr "" + +#: ../admin/mail_edit.php:115 +msgid "Change this email address" +msgstr "" + +#: ../admin/mail_list.php:72 +msgid "Create a new mail account" +msgstr "" + +#: ../admin/mail_list.php:76 +msgid "Can't have empty mail." +msgstr "" + +#: ../admin/mail_list.php:76 +msgid "Create this email address" +msgstr "" + +#: ../admin/mail_list.php:78 +msgid "Manage Catch-all for this domain" +msgstr "" + +#: ../admin/mail_list.php:92 +#, php-format +msgid "Email addresses of the domain %s" +msgstr "" + +#: ../admin/mail_list.php:96 +msgid "No mails for this domain." +msgstr "" + +#: ../admin/mail_list.php:106 +msgid "Search" +msgstr "" + +#: ../admin/mail_list.php:111 +msgid "Show system emails" +msgstr "" + +#: ../admin/mail_list.php:118 +msgid "Items per page:" +msgstr "" + +#: ../admin/mail_list.php:125 +msgid "Address" +msgstr "" + +#: ../admin/mail_list.php:125 +msgid "Last login time" +msgstr "" + +#: ../admin/mail_list.php:125 +msgid "Other recipients" +msgstr "" + +#: ../admin/mail_list.php:125 +msgid "Pop/Imap" +msgstr "" + +#: ../admin/mail_list.php:136 +msgid "Deleting..." +msgstr "" + +#: ../admin/mail_list.php:141 +msgid "" +"This email will be deleted soon. You may still be able to undelete it by " +"clicking here" +msgstr "" + +#: ../admin/mail_list.php:141 +msgid "Undelete" +msgstr "" + +#: ../admin/mail_list.php:167 ../admin/main.php:34 +msgid "Never" +msgstr "" + +#: ../admin/mail_list.php:178 +msgid "Delete the checked email addresses" +msgstr "" + +#: ../admin/mail_list.php:186 +msgid "Mails configuration information" +msgstr "" + +#: ../admin/mail_list.php:188 +msgid "" +"Here are some configuration information you will need to configure your mail " +"application." +msgstr "" + +#: ../admin/mail_list.php:195 +msgid "Outgoing mail (SMTP)" +msgstr "" + +#: ../admin/mail_list.php:196 +msgid "Incoming mail" +msgstr "" + +#: ../admin/mail_list.php:201 ../admin/mail_list.php:242 +msgid "Which protocol shall you use?" +msgstr "" + +#: ../admin/mail_list.php:203 +msgid "Submission" +msgstr "" + +#: ../admin/mail_list.php:206 ../admin/mail_list.php:217 +#: ../admin/mail_list.php:228 ../admin/mail_list.php:247 +#: ../admin/mail_list.php:258 ../admin/mail_list.php:269 +#: ../admin/mail_list.php:280 +#, fuzzy +msgid "Server name: " +msgstr "Datei" + +#: ../admin/mail_list.php:207 ../admin/mail_list.php:218 +#: ../admin/mail_list.php:229 +msgid "" +"The mail address you want to access (example : myuser@example.tld)" +msgstr "" + +#: ../admin/mail_list.php:207 ../admin/mail_list.php:218 +#: ../admin/mail_list.php:229 +msgid "Username: " +msgstr "" + +#: ../admin/mail_list.php:208 ../admin/mail_list.php:219 +#: ../admin/mail_list.php:230 ../admin/mail_list.php:248 +#: ../admin/mail_list.php:259 ../admin/mail_list.php:270 +#: ../admin/mail_list.php:281 +msgid "Port: " +msgstr "" + +#: ../admin/mail_list.php:209 ../admin/mail_list.php:220 +#: ../admin/mail_list.php:231 ../admin/mail_list.php:249 +#: ../admin/mail_list.php:260 ../admin/mail_list.php:271 +#: ../admin/mail_list.php:282 +msgid "Authentication: " +msgstr "" + +#: ../admin/mail_list.php:210 ../admin/mail_list.php:221 +#: ../admin/mail_list.php:232 ../admin/mail_list.php:250 +#: ../admin/mail_list.php:261 ../admin/mail_list.php:272 +#: ../admin/mail_list.php:283 +msgid "Authentication method: " +msgstr "" + +#: ../admin/mail_list.php:210 ../admin/mail_list.php:250 +#: ../admin/mail_list.php:261 ../admin/mail_list.php:272 +#: ../admin/mail_list.php:283 +#, fuzzy +msgid "Normal password" +msgstr "Passwört" + +#: ../admin/mail_list.php:211 ../admin/mail_list.php:222 +#: ../admin/mail_list.php:233 ../admin/mail_list.php:251 +#: ../admin/mail_list.php:262 ../admin/mail_list.php:273 +#: ../admin/mail_list.php:284 +msgid "Connection security:" +msgstr "" + +#: ../admin/mail_list.php:214 +msgid "SMTP" +msgstr "" + +#: ../admin/mail_list.php:221 ../admin/mail_list.php:232 +#, fuzzy +msgid "Normal Password" +msgstr "Passwört" + +#: ../admin/mail_list.php:225 +msgid "SMTPS" +msgstr "" + +#: ../admin/mail_list.php:244 +msgid "IMAP" +msgstr "" + +#: ../admin/mail_list.php:255 +msgid "IMAPS" +msgstr "" + +#: ../admin/mail_list.php:266 +msgid "POP3" +msgstr "" + +#: ../admin/mail_list.php:277 +msgid "POP3S" +msgstr "" + +#: ../admin/mail_manage_catchall.php:38 +msgid "Problem with the domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:47 +msgid "Catchall successfully deleted" +msgstr "" + +#: ../admin/mail_manage_catchall.php:50 ../admin/mail_manage_catchall.php:53 +msgid "Catchall successfully updated" +msgstr "" + +#: ../admin/mail_manage_catchall.php:56 +msgid "Unknown target type" +msgstr "" + +#: ../admin/mail_manage_catchall.php:63 +#, php-format +msgid "Manage catch-all configuration of %s" +msgstr "" + +#: ../admin/mail_manage_catchall.php:72 +msgid "" +"You can choose what to do with emails sent to unexisting address of this " +"domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:80 +msgid "No catch-all" +msgstr "" + +#: ../admin/mail_manage_catchall.php:84 +msgid "No catch-all for this domain." +msgstr "" + +#: ../admin/mail_manage_catchall.php:88 +msgid "Redirect to same address on a different domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:92 +#, php-format +msgid "" +"Mails sent to john.doe@%s will be redirect to john.doe@anotherdomain.tld" +msgstr "" + +#: ../admin/mail_manage_catchall.php:95 +msgid "Enter the 'target' domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:96 +msgid "example.tld" +msgstr "" + +#: ../admin/mail_manage_catchall.php:98 +msgid "Or choose one of your own" +msgstr "" + +#: ../admin/mail_manage_catchall.php:106 +msgid "Redirect to a specific email" +msgstr "" + +#: ../admin/mail_manage_catchall.php:110 +#, php-format +msgid "" +"Mails sent to an unexisting email on '@%s' will be redirect to user@example." +"tld." +msgstr "" + +#: ../admin/mail_manage_catchall.php:113 +msgid "john.doe@example.tld" +msgstr "" + +#: ../admin/mailautoconfig_outlook.php:16 +msgid "Missing POST of the mail address" +msgstr "" + +#: ../admin/mailautoconfig_thunderbird.php:9 +msgid "Error: Missing GET of emailaddress" +msgstr "" + +#: ../admin/mailautoconfig_thunderbird.php:12 +msgid "Error: Empty $emailDomain" +msgstr "" + +#: ../admin/main.php:31 +msgid "Last Login: " +msgstr "" + +#: ../admin/main.php:36 +#, php-format +msgid "the %3$d-%2$d-%1$d at %4$d:%5$02d" +msgstr "" + +#: ../admin/main.php:37 +#, php-format +msgid "from: %1$s " +msgstr "" + +#: ../admin/main.php:42 +#, php-format +msgid "%1$d login failed since last login" +msgstr "" + +#: ../admin/main.php:85 +msgid "Expired or about to expire accounts" +msgstr "" + +#: ../admin/main.php:87 +msgid "Last name, surname" +msgstr "" + +#: ../admin/main.php:87 +msgid "uid" +msgstr "" + +#: ../admin/main.php:103 +msgid "" +"You are using the AlternC Panel. You can contact the AlternC community for " +"information or feedback by joining the mailing-list" +msgstr "" + +#: ../admin/mem_admin.php:40 +msgid "Your administrator preferences has been successfully changed." +msgstr "" + +#: ../admin/mem_admin.php:46 ../admin/mem_param.php:116 +msgid "Admin preferences" +msgstr "" + +#: ../admin/mem_chgmail.php:44 ../admin/mem_cm.php:42 ../admin/mem_cm.php:53 +#: ../admin/mem_cm2.php:47 ../admin/mem_param.php:92 +msgid "Change the email of the account" +msgstr "" + +#: ../admin/mem_chgmail.php:51 +#, php-format +msgid "help_mem_chgmail %s" +msgstr "" + +#: ../admin/mem_cm.php:54 +msgid "" +"Enter the key you got when you requested the mailbox change, then click the " +"OK button." +msgstr "" + +#: ../admin/mem_cm.php:55 +msgid "Key" +msgstr "" + +#: ../admin/mem_cm2.php:55 +msgid "The mailbox has been successfully changed." +msgstr "" + +#: ../admin/mem_logout.php:41 ../admin/mem_logout.php:49 +msgid "Disconnected" +msgstr "" + +#: ../admin/mem_logout.php:51 +msgid "You have been logged out of your administration desktop." +msgstr "" + +#: ../admin/mem_logout.php:52 +msgid "Click here to log in" +msgstr "" + +#: ../admin/mem_param.php:43 +msgid "Your help setting has been updated." +msgstr "" + +#: ../admin/mem_param.php:47 +msgid "Settings of your account" +msgstr "" + +#: ../admin/mem_param.php:60 ../class/m_mem.php:579 +msgid "Help" +msgstr "Hilfe" + +#: ../admin/mem_param.php:63 +msgid "Administrator" +msgstr "" + +#: ../admin/mem_param.php:69 ../admin/mem_passwd.php:50 +#: ../admin/sql_users_list.php:59 +msgid "Password change" +msgstr "" + +#: ../admin/mem_param.php:73 +msgid "You cannot change your password" +msgstr "" + +#: ../admin/mem_param.php:78 +msgid "help_chg_passwd" +msgstr "" + +#: ../admin/mem_param.php:82 +msgid "Old password" +msgstr "" + +#: ../admin/mem_param.php:85 +msgid "Change my password" +msgstr "" + +#: ../admin/mem_param.php:95 +msgid "help_chg_mail" +msgstr "" + +#: ../admin/mem_param.php:96 +msgid "Current mailbox" +msgstr "" + +#: ../admin/mem_param.php:97 +msgid "New mailbox" +msgstr "" + +#: ../admin/mem_param.php:98 +msgid "Change my email address" +msgstr "" + +#: ../admin/mem_param.php:103 +msgid "Online help settings" +msgstr "" + +#: ../admin/mem_param.php:106 +msgid "help_help_settings" +msgstr "" + +#: ../admin/mem_param.php:107 +msgid "Do you want to see the help texts and links on each page?" +msgstr "" + +#: ../admin/mem_param.php:108 +msgid "Change these settings" +msgstr "" + +#: ../admin/mem_param.php:119 +msgid "Members list view" +msgstr "" + +#: ../admin/mem_param.php:120 +msgid "Large view" +msgstr "" + +#: ../admin/mem_param.php:121 +msgid "Short view" +msgstr "" + +#: ../admin/mem_param.php:123 +msgid "Change my admin preferences" +msgstr "" + +#: ../admin/mem_passwd.php:44 +msgid "Your password has been successfully changed." +msgstr "" + +#: ../admin/menu.php:37 +#, php-format +msgid "Welcome %s" +msgstr "" + +#: ../admin/menu.php:105 +msgid "About" +msgstr "" + +#: ../admin/nowebmail.php:28 +msgid "" +"There is currently no webmail configured. If you need one, contact your " +"server administrator" +msgstr "" + +#: ../admin/piwik_addaccount.php:34 +msgid "You cannot add any new Piwik account, your quota is over." +msgstr "" + +#: ../admin/piwik_addaccount.php:44 +msgid "Error : missing arguments." +msgstr "" + +#: ../admin/piwik_addaccount.php:50 +#, php-format +msgid "Creation of Piwik account \"%s\"" +msgstr "" + +#: ../admin/piwik_addaccount.php:67 +msgid "Successfully added piwik user" +msgstr "" + +#: ../admin/piwik_addsites.php:44 +msgid "Error while adding website.
" +msgstr "" + +#: ../admin/piwik_addsites.php:46 +msgid "Website added Successfully" +msgstr "" + +#: ../admin/piwik_site_dodel.php:39 +msgid "Missing site parameters" +msgstr "" + +#: ../admin/piwik_site_dodel.php:50 +msgid "Site successfully deleted" +msgstr "" + +#: ../admin/piwik_site_dodel.php:61 +msgid "Piwik site deletion confirm" +msgstr "" + +#: ../admin/piwik_site_dodel.php:64 +msgid "Do you really want to delete this Piwik website ?" +msgstr "" + +#: ../admin/piwik_sitelist.php:48 +msgid "You don't own this piwik site!" +msgstr "" + +#: ../admin/piwik_sitelist.php:56 +msgid "You dont own user" +msgstr "" + +#: ../admin/piwik_sitelist.php:83 ../admin/piwik_userlist.php:53 +msgid "Add a new website" +msgstr "" + +#: ../admin/piwik_sitelist.php:85 ../admin/piwik_userlist.php:55 +msgid "URL of the website" +msgstr "" + +#: ../admin/piwik_sitelist.php:106 +msgid "Existing Piwik monitored websites" +msgstr "" + +#: ../admin/piwik_sitelist.php:114 +msgid "No existing Piwik websites" +msgstr "" + +#: ../admin/piwik_sitelist.php:120 +#, fuzzy +msgid "Site name" +msgstr "Datei" + +#: ../admin/piwik_sitelist.php:120 +msgid "Site url" +msgstr "" + +#: ../admin/piwik_sitelist.php:147 +msgid "Credentials management" +msgstr "" + +#: ../admin/piwik_user_dodel.php:39 +msgid "Missing login parameters" +msgstr "" + +#: ../admin/piwik_user_dodel.php:59 +msgid "Piwik accounts deletion confirm" +msgstr "" + +#: ../admin/piwik_user_dodel.php:62 +#, php-format +msgid "Do you really want to delete the Piwik account %s ?" +msgstr "" + +#: ../admin/piwik_useradmin.php:42 +msgid "No piwik user specified" +msgstr "" + +#: ../admin/piwik_useradmin.php:52 +msgid "You don't own this piwik website" +msgstr "" + +#: ../admin/piwik_useradmin.php:60 +msgid "You don't own this piwik user" +msgstr "" + +#: ../admin/piwik_useradmin.php:71 +msgid "success" +msgstr "" + +#: ../admin/piwik_useradmin.php:75 +#, fuzzy +msgid "This right does not exist" +msgstr "Miglied '%s' existiert nicht" + +#: ../admin/piwik_useradmin.php:105 +msgid "Rights for user" +msgstr "" + +#: ../admin/piwik_useradmin.php:128 +msgid "Add rights to user" +msgstr "" + +#: ../admin/piwik_useradmin.php:139 +msgid "admin" +msgstr "" + +#: ../admin/piwik_useradmin.php:139 +msgid "noacces" +msgstr "" + +#: ../admin/piwik_useradmin.php:139 +msgid "view" +msgstr "" + +#: ../admin/piwik_userlist.php:41 +msgid "Create a new piwik account" +msgstr "" + +#: ../admin/piwik_userlist.php:66 +msgid "Existing Piwik accounts" +msgstr "" + +#: ../admin/piwik_userlist.php:74 +msgid "No existing Piwik users" +msgstr "" + +#: ../admin/piwik_userlist.php:79 ../admin/piwik_userlist.php:89 +msgid "Connect" +msgstr "" + +#: ../admin/quota_show.php:34 +msgid "Account's quotas" +msgstr "" + +#: ../admin/quota_show.php:40 +msgid "No quotas for this account, or quotas currently unavailable!" +msgstr "" + +#: ../admin/quotas_oneuser.php:14 +#, php-format +msgid "%s account" +msgstr "" + +#: ../admin/quotas_oneuser.php:25 ../class/m_quota.php:60 +#, fuzzy +msgid "quota_web" +msgstr "quota_" + +#: ../admin/quotas_oneuser.php:36 ../admin/quotas_users.php:132 +#: ../class/m_dom.php:93 +msgid "Domains" +msgstr "" + +#: ../admin/quotas_oneuser.php:37 +msgid "Emails" +msgstr "" + +#: ../admin/quotas_oneuser.php:38 ../admin/quotas_oneuser.php:121 +#: ../admin/quotas_oneuser.php:167 ../admin/quotas_users.php:128 +#: ../admin/quotas_users.php:169 +msgid "Space" +msgstr "" + +#: ../admin/quotas_oneuser.php:112 +msgid "Databases:" +msgstr "" + +#: ../admin/quotas_oneuser.php:120 ../admin/quotas_users.php:177 +msgid "DB" +msgstr "" + +#: ../admin/quotas_oneuser.php:158 +msgid "Mailman lists:" +msgstr "" + +#: ../admin/quotas_oneuser.php:166 ../admin/quotas_users.php:173 +#: ../admin/quotas_users.php:176 +msgid "Lists" +msgstr "" + +#: ../admin/quotas_users.php:20 +#, fuzzy +msgid "Quotas status" +msgstr "Quotas" + +#: ../admin/quotas_users.php:29 +msgid "" +"This page shows the space and service count of your AlternC server and each " +"AlternC accounts." +msgstr "" + +#: ../admin/quotas_users.php:30 +#, php-format +msgid "Administration -> Manage the Alternc accounts" +msgstr "" + +#: ../admin/quotas_users.php:30 +#, php-format +msgid "If you want to manage them, go to" +msgstr "" + +#: ../admin/quotas_users.php:33 +#, php-format +msgid "% of the total." +msgstr "" + +#: ../admin/quotas_users.php:33 +msgid "MB." +msgstr "" + +#: ../admin/quotas_users.php:33 +#, php-format +msgid "Sizes are shown as %s" +msgstr "" + +#: ../admin/quotas_users.php:36 +msgid "Global" +msgstr "" + +#: ../admin/quotas_users.php:36 +msgid "Server-side view:" +msgstr "" + +#: ../admin/quotas_users.php:37 +msgid "Detailed view:" +msgstr "" + +#: ../admin/quotas_users.php:38 +msgid "In MB" +msgstr "" + +#: ../admin/quotas_users.php:39 +msgid "Percentage" +msgstr "" + +#: ../admin/quotas_users.php:40 +msgid "Graphical" +msgstr "" + +#: ../admin/quotas_users.php:43 +msgid "Show the domain names" +msgstr "" + +#: ../admin/quotas_users.php:45 +msgid "Hide the domain names" +msgstr "" + +#: ../admin/quotas_users.php:48 +msgid "All accounts" +msgstr "" + +#: ../admin/quotas_users.php:128 ../admin/quotas_users.php:169 +msgid "Count" +msgstr "" + +#: ../admin/quotas_users.php:137 ../class/m_mail.php:177 +msgid "Email addresses" +msgstr "" + +#: ../admin/quotas_users.php:143 +msgid "Mailman lists" +msgstr "" + +#: ../admin/quotas_users.php:149 ../admin/sql_del.php:72 +#: ../admin/sql_dorestore.php:40 ../admin/sql_getparam.php:44 +#: ../admin/sql_list.php:37 ../admin/sql_restore.php:44 +#: ../class/m_mysql.php:990 +msgid "MySQL Databases" +msgstr "" + +#: ../admin/quotas_users.php:171 +msgid "Dom" +msgstr "" + +#: ../admin/quotas_users.php:172 ../admin/quotas_users.php:175 +msgid "Mails" +msgstr "" + +#: ../admin/quotas_users.php:174 +msgid "Web" +msgstr "" + +#: ../admin/sql_bck.php:34 +msgid "MySQL Databases - Configure backups" +msgstr "" + +#: ../admin/sql_bck.php:40 ../admin/sql_dobck.php:34 +msgid "" +"You aren't allowed to access this page. Contact your administrator if you " +"want to." +msgstr "" + +#: ../admin/sql_bck.php:65 +#, php-format +msgid "Manage the SQL backup for database %s" +msgstr "" + +#: ../admin/sql_bck.php:70 +msgid "Do MySQL backup?" +msgstr "" + +#: ../admin/sql_bck.php:73 +msgid "No backup" +msgstr "" + +#: ../admin/sql_bck.php:74 +msgid "Weekly backup" +msgstr "" + +#: ../admin/sql_bck.php:75 +msgid "Daily backup" +msgstr "" + +#: ../admin/sql_bck.php:79 +msgid "How many backups should be kept?" +msgstr "" + +#: ../admin/sql_bck.php:91 +msgid "Compress the backups? (gzip)" +msgstr "" + +#: ../admin/sql_bck.php:100 +msgid "In which folder do you want to store the backups?" +msgstr "" + +#: ../admin/sql_bck.php:107 +msgid "Change the MySQL backup parameters" +msgstr "" + +#: ../admin/sql_bck.php:116 ../admin/sql_dorestore.php:50 +#: ../admin/sql_restore.php:53 +msgid "You currently have no database defined" +msgstr "" + +#: ../admin/sql_del.php:51 +#, php-format +msgid "The database %s has been successfully deleted" +msgstr "" + +#: ../admin/sql_del.php:66 +msgid "Please check which databases you want to delete" +msgstr "" + +#: ../admin/sql_del.php:75 +msgid "Confirm the deletion of the following SQL databases" +msgstr "" + +#: ../admin/sql_del.php:76 +msgid "This will delete all the tables currently in those db." +msgstr "" + +#: ../admin/sql_del.php:90 +msgid "No, don't delete the database" +msgstr "" + +#: ../admin/sql_del.php:90 +msgid "Yes, delete the database" +msgstr "" + +#: ../admin/sql_doadd.php:37 +msgid "Can't create a database: your quota is over" +msgstr "" + +#: ../admin/sql_dobck.php:56 +msgid "Your backup parameters has been successfully changed." +msgstr "" + +#: ../admin/sql_dorestore.php:56 +msgid "Restore a SQL backup" +msgstr "" + +#: ../admin/sql_dorestore.php:63 +msgid "" +"Your database has been restored, check out the previous text for error " +"messages." +msgstr "" + +#: ../admin/sql_getparam.php:53 +msgid "Your current connection settings are" +msgstr "" + +#: ../admin/sql_getparam.php:59 +msgid "Mysql Server" +msgstr "" + +#: ../admin/sql_getparam.php:63 ../admin/sql_list.php:54 +msgid "Database" +msgstr "" + +#: ../admin/sql_getparam.php:79 +msgid "Web interface PhpMyAdmin" +msgstr "" + +#: ../admin/sql_getparam.php:91 +msgid "" +"You changed the MySQL User base configuration. Please refer to your " +"configuration" +msgstr "" + +#: ../admin/sql_getparam.php:94 +msgid "Back to the MySQL database list" +msgstr "" + +#: ../admin/sql_list.php:45 +msgid "You have no sql user at the moment." +msgstr "" + +#: ../admin/sql_list.php:54 ../admin/sql_list.php:65 +msgid "Backup" +msgstr "" + +#: ../admin/sql_list.php:54 ../admin/sql_list.php:67 +msgid "Restore" +msgstr "" + +#: ../admin/sql_list.php:54 ../admin/sql_list.php:68 +msgid "Show Settings" +msgstr "" + +#: ../admin/sql_list.php:77 +msgid "Delete the checked databases" +msgstr "" + +#: ../admin/sql_list.php:90 +msgid "Create a new MySQL database" +msgstr "" + +#: ../admin/sql_list.php:96 +msgid "MySQL Database" +msgstr "" + +#: ../admin/sql_list.php:103 +msgid "Can't have empty MySQL suffix" +msgstr "" + +#: ../admin/sql_list.php:103 +msgid "Create this new MySQL database." +msgstr "" + +#: ../admin/sql_pma_sso.php:46 +msgid "SQL Admin" +msgstr "" + +#: ../admin/sql_restore.php:58 +#, php-format +msgid "Restore a MySQL backup for database %s" +msgstr "" + +#: ../admin/sql_restore.php:61 +msgid "" +"Warning: Write the complete path and the filename.
For example if your " +"backups are in the directory /Backups,
write /Backups/file.sql.gz " +"(where file.sql.gz is the filename)." +msgstr "" + +#: ../admin/sql_restore.php:66 +msgid "" +"Please enter the path and the filename containing SQL data to be restored." +msgstr "" + +#: ../admin/sql_restore.php:67 +msgid "Restore my database" +msgstr "" + +#: ../admin/sql_restore.php:67 +msgid "Tip: you can restore a file directly in the File Browser" +msgstr "" + +#: ../admin/sql_restore.php:72 +msgid "Please the complete path of the filename" +msgstr "" + +#: ../admin/sql_restore.php:81 +msgid "Note: If the filename ends with .gz, it will be uncompressed before." +msgstr "" + +#: ../admin/sql_users_add.php:41 ../admin/sql_users_list.php:79 +msgid "Create a new MySQL user" +msgstr "" + +#: ../admin/sql_users_add.php:72 +msgid "Create this new MySQL user" +msgstr "" + +#: ../admin/sql_users_del.php:47 +#, php-format +msgid "The user %s has been successfully deleted" +msgstr "" + +#: ../admin/sql_users_del.php:58 +msgid "MySQL users" +msgstr "" + +#: ../admin/sql_users_del.php:61 +msgid "Confirm the deletion of the following MySQL users" +msgstr "" + +#: ../admin/sql_users_del.php:76 +msgid "No, don't delete the MySQL user" +msgstr "" + +#: ../admin/sql_users_del.php:76 +msgid "Yes, delete the MySQL user" +msgstr "" + +#: ../admin/sql_users_dorights.php:54 +msgid "The rights has been successfully applied to the user" +msgstr "" + +#: ../admin/sql_users_list.php:37 ../class/m_mysql.php:124 +msgid "MySQL Users" +msgstr "" + +#: ../admin/sql_users_list.php:48 +msgid "Rights" +msgstr "" + +#: ../admin/sql_users_list.php:58 +msgid "Manage the rights" +msgstr "" + +#: ../admin/sql_users_password.php:68 +msgid "Change user password" +msgstr "" + +#: ../admin/sql_users_rights.php:38 +#, php-format +msgid "MySQL Rights for %s" +msgstr "" + +#: ../admin/sql_users_rights.php:89 +msgid "Reverse selection" +msgstr "" + +#: ../admin/sql_users_rights.php:103 +msgid "Apply" +msgstr "" + +#: ../admin/stats_members.php:32 +msgid "" +"Image_Graph not installed. use 'aptitude install php-pear' then 'pear " +"install --alldeps Image_Graph-devel' to see the graph." +msgstr "" + +#: ../admin/stats_members.php:41 +msgid "Account creation per month" +msgstr "" + +#: ../admin/stats_members.php:54 +msgid "before the month" +msgstr "" + +#: ../admin/stats_members.php:56 +msgid "during the month" +msgstr "" + +#: ../admin/vm.php:52 ../class/m_lxc.php:60 +msgid "Console access" +msgstr "" + +#: ../admin/vm.php:69 +msgid "You can start a virtual machine." +msgstr "" + +#: ../admin/vm.php:72 +msgid "Click here to start a virtual machine." +msgstr "" + +#: ../admin/vm.php:78 +msgid "Start time" +msgstr "" + +#: ../admin/vm.php:79 +msgid "SSH Fingerprint" +msgstr "" + +#: ../admin/vm.php:80 +msgid "Useful command" +msgstr "" + +#: ../admin/vm.php:86 +msgid "You can stop your virtual machine." +msgstr "" + +#: ../admin/vm.php:89 +msgid "Click here to stop your running virtual machine." +msgstr "" + +#: ../admin/vm.php:99 +msgid "Tips" +msgstr "" + +#: ../admin/vm.php:104 +msgid "Available softwares" +msgstr "" + +#: ../admin/vm.php:105 +msgid "Remotely start/stop a VM" +msgstr "" + +#: ../admin/vm.php:110 +msgid "" +"You can script the launch the console access in command line by using this " +"url:" +msgstr "" + +#: ../admin/vm.php:112 +msgid "You can halt the vm by using:" +msgstr "" + +#: ../admin/vm.php:114 +msgid "" +"And you can see existing vm information (if the vm is running) by using:" +msgstr "" + +#: ../admin/vm.php:116 +msgid "" +"Warning: if you do not use HTTPS, your password will be transfered without " +"any protection" +msgstr "" + +#: ../admin/vm.php:120 +msgid "To access a remote console with SSH, you can use Putty." +msgstr "" + +#: ../admin/vm.php:122 +msgid "To transfer files, you can use Filezilla in SFTP mode." +msgstr "" + +#: ../class/functions.php:281 +msgid "Bytes" +msgstr "Bytes" + +#: ../class/functions.php:283 +msgid "Byte" +msgstr "Byte" + +#: ../class/functions.php:288 +msgid "Kb" +msgstr "Kb" + +#: ../class/functions.php:292 +msgid "Mb" +msgstr "Mb" + +#: ../class/functions.php:296 +msgid "Gb" +msgstr "Gb" + +#: ../class/functions.php:298 +msgid "Tb" +msgstr "Tb" + +#: ../class/functions.php:389 +msgid "year" +msgstr "" + +#: ../class/functions.php:389 +#, fuzzy +msgid "years" +msgstr "Bytes" + +#: ../class/functions.php:391 +msgid "month" +msgstr "" + +#: ../class/functions.php:391 +msgid "months" +msgstr "" + +#: ../class/functions.php:414 +msgid "Not managed" +msgstr "" + +#: ../class/functions.php:541 ../class/functions.php:543 +msgid "Previous Page" +msgstr "" + +#: ../class/functions.php:597 ../class/functions.php:599 +msgid "Next Page" +msgstr "" + +#: ../class/functions.php:621 +msgid "Clic here to generate a password" +msgstr "" + +#: ../class/functions.php:656 ../class/functions.php:657 +msgid "Choose a folder..." +msgstr "" + +#: ../class/m_action.php:156 +msgid "Error setting actions" +msgstr "" + +#: ../class/m_action.php:168 +msgid "Error selecting old actions" +msgstr "" + +#: ../class/m_action.php:181 +msgid "Error purging old actions" +msgstr "" + +#: ../class/m_admin.php:60 +msgid "This TLD is forbidden" +msgstr "" + +#: ../class/m_admin.php:61 +msgid "primary DNS is checked in WHOIS db" +msgstr "" + +#: ../class/m_admin.php:62 +msgid "primary & secondary DNS are checked in WHOIS db" +msgstr "" + +#: ../class/m_admin.php:63 +msgid "Domain must exist, but don't do any DNS check" +msgstr "" + +#: ../class/m_admin.php:64 +msgid "Domain can be installed, no check at all" +msgstr "" + +#: ../class/m_admin.php:65 +msgid "Domain can be installed, force NO DNS hosting" +msgstr "" + +#: ../class/m_admin.php:75 +msgid "Administration" +msgstr "" + +#: ../class/m_admin.php:83 +msgid "Manage AlternC accounts" +msgstr "" + +#: ../class/m_admin.php:88 +#, fuzzy +msgid "User Quotas" +msgstr "Quotas" + +#: ../class/m_admin.php:104 ../class/m_mysql.php:130 +msgid "PhpMyAdmin" +msgstr "" + +#: ../class/m_admin.php:111 +msgid "Switch debug Off" +msgstr "" + +#: ../class/m_admin.php:111 +msgid "Switch debug On" +msgstr "" + +#: ../class/m_admin.php:118 +msgid "Applying..." +msgstr "" + +#: ../class/m_admin.php:119 +msgid "Domain changes are already applying" +msgstr "" + +#: ../class/m_admin.php:125 +msgid "Apply changes" +msgstr "" + +#: ../class/m_admin.php:128 +msgid "" +"Server configuration changes are applied every 5 minutes. Do you want to do " +"it right now?" +msgstr "" + +#: ../class/m_admin.php:174 ../class/m_admin.php:224 ../class/m_admin.php:288 +#: ../class/m_admin.php:364 ../class/m_admin.php:405 ../class/m_admin.php:436 +#: ../class/m_admin.php:491 ../class/m_admin.php:657 ../class/m_admin.php:696 +#: ../class/m_admin.php:720 ../class/m_admin.php:746 +msgid "-- Only administrators can access this page! --" +msgstr "" + +#: ../class/m_admin.php:322 +msgid "" +"Invalid pattern type provided. Are you even performing a legitimate action?" +msgstr "" + +#: ../class/m_admin.php:372 +msgid "Subject, message and sender are mandatory" +msgstr "" + +#: ../class/m_admin.php:377 +msgid "Sender is syntaxically incorrect" +msgstr "" + +#: ../class/m_admin.php:448 +msgid "-- Only administrators can do that! --" +msgstr "" + +#: ../class/m_admin.php:454 +msgid "You don't seem to be allowed to delegate this domain" +msgstr "" + +#: ../class/m_admin.php:495 +msgid "Missing db_server field" +msgstr "" + +#: ../class/m_admin.php:499 ../class/m_admin.php:504 +msgid "All fields are mandatory" +msgstr "" + +#: ../class/m_admin.php:508 +msgid "Please enter a valid email address" +msgstr "" + +#: ../class/m_admin.php:514 +msgid "Login can only contains characters a-z and 0-9" +msgstr "" + +#: ../class/m_admin.php:521 +msgid "The login is too long (14 chars max)" +msgstr "" + +#: ../class/m_admin.php:526 +msgid "Login can only contains characters a-z, 0-9 and -" +msgstr "" + +#: ../class/m_admin.php:572 +msgid "This login already exists" +msgstr "" + +#: ../class/m_admin.php:589 +#, php-format +msgid "query failed: %s " +msgstr "" + +#: ../class/m_admin.php:616 +#, php-format +msgid "New account %s from %s on %s" +msgstr "" + +#: ../class/m_admin.php:621 +#, php-format +msgid "Cannot send email to %s" +msgstr "" + +#: ../class/m_admin.php:625 +#, php-format +msgid "Query failed: %s" +msgstr "" + +#: ../class/m_admin.php:898 +msgid "This account is ALREADY an administrator account" +msgstr "" + +#: ../class/m_admin.php:920 +msgid "This account is NOT an administrator account!" +msgstr "" + +#: ../class/m_admin.php:1061 +#, php-format +msgid "Domain '%s' not found." +msgstr "" + +#: ../class/m_admin.php:1080 ../class/m_admin.php:1112 +#: ../class/m_admin.php:1162 +#, fuzzy +msgid "This TLD does not exist" +msgstr "Miglied '%s' existiert nicht" + +#: ../class/m_admin.php:1133 +msgid "The TLD name is mandatory" +msgstr "" + +#: ../class/m_admin.php:1140 +msgid "This TLD already exist" +msgstr "" + +#: ../class/m_admin.php:1275 +msgid "Please enter a login" +msgstr "" + +#: ../class/m_admin.php:1285 +msgid "-- Program error -- The requested password policy does not exist!" +msgstr "" + +#: ../class/m_admin.php:1293 +msgid "The password length is too short according to the password policy" +msgstr "" + +#: ../class/m_admin.php:1298 +msgid "The password is too long according to the password policy" +msgstr "" + +#: ../class/m_admin.php:1308 +msgid "" +"The password policy prevents you to use your login name inside your password" +msgstr "" + +#: ../class/m_admin.php:1332 +msgid "" +"Your password contains not enough different classes of character, between " +"low-case, up-case, figures and special characters." +msgstr "" + +#: ../class/m_authip.php:338 +msgid "Object not available" +msgstr "" + +#: ../class/m_authip.php:347 +#, php-format +msgid "Can't identified class for the protocole %s" +msgstr "" + +#: ../class/m_bro.php:68 +msgid "1 column, detailed" +msgstr "" + +#: ../class/m_bro.php:68 +msgid "2 columns, short" +msgstr "" + +#: ../class/m_bro.php:68 +msgid "3 columns, short" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "tar.Z (Unix)" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "tar.bz2 (Linux)" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "tgz (Linux)" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "zip (Windows/Dos)" +msgstr "" + +#: ../class/m_bro.php:71 +msgid "Edit the newly created file" +msgstr "" + +#: ../class/m_bro.php:71 +msgid "Go back to the file manager" +msgstr "" + +#: ../class/m_bro.php:186 +#, fuzzy +msgid "This directory do not exist" +msgstr "Miglied '%s' existiert nicht" + +#: ../class/m_bro.php:365 ../class/m_bro.php:1040 +msgid "Cannot create the requested directory. Please check the permissions" +msgstr "" + +#: ../class/m_bro.php:371 ../class/m_bro.php:388 ../class/m_bro.php:413 +#: ../class/m_bro.php:437 ../class/m_bro.php:469 ../class/m_bro.php:479 +#: ../class/m_bro.php:509 ../class/m_bro.php:546 ../class/m_bro.php:587 +#: ../class/m_bro.php:625 ../class/m_bro.php:630 ../class/m_bro.php:721 +#: ../class/m_bro.php:868 ../class/m_bro.php:900 +msgid "File or folder name is incorrect" +msgstr "" + +#: ../class/m_bro.php:393 ../class/m_bro.php:558 +msgid "Cannot create the requested file. Please check the permissions" +msgstr "" + +#: ../class/m_bro.php:483 ../class/m_bro.php:634 +msgid "You cannot move or copy a file to the same folder" +msgstr "" + +#: ../class/m_bro.php:610 +#, php-format +msgid "" +"I cannot find a way to extract the file %s, it is an unsupported compressed " +"format" +msgstr "" + +#: ../class/m_bro.php:717 +msgid "Cannot read the requested file. Please check the permissions" +msgstr "" + +#: ../class/m_bro.php:792 +msgid "File not in authorized directory" +msgstr "" + +#: ../class/m_bro.php:895 +msgid "Cannot edit the requested file. Please check the permissions" +msgstr "" + +#: ../class/m_cron.php:40 +msgid "Daily" +msgstr "" + +#: ../class/m_cron.php:41 +msgid "Hour" +msgstr "" + +#: ../class/m_cron.php:42 +msgid "Half Hour" +msgstr "" + +#: ../class/m_cron.php:125 +msgid "URL not valid" +msgstr "" + +#: ../class/m_cron.php:133 +msgid "Email address is not valid" +msgstr "" + +#: ../class/m_cron.php:142 +msgid "You quota of cron entries is over. You cannot create more cron entries" +msgstr "" + +#: ../class/m_cron.php:151 +msgid "Identity problem" +msgstr "" + +#: ../class/m_dom.php:178 +msgid "Err: failed to prepare the zone" +msgstr "" + +#: ../class/m_dom.php:200 +msgid "Missing domain name" +msgstr "" + +#: ../class/m_dom.php:495 +msgid "The name MUST contain only letter and digits" +msgstr "" + +#: ../class/m_dom.php:515 ../class/m_dom.php:1291 +msgid "" +"The parameters for this subdomain and domain type are invalid. Please check " +"for subdomain entries incompatibility" +msgstr "" + +#: ../class/m_dom.php:629 ../class/m_dom.php:1054 ../class/m_dom.php:1119 +#: ../class/m_dom.php:1262 ../class/m_dom.php:1351 ../class/m_dom.php:1395 +#: ../class/m_dom.php:1710 +msgid "--- Program error --- No lock on the domains!" +msgstr "" + +#: ../class/m_dom.php:636 ../class/m_dom.php:1059 ../class/m_dom.php:1286 +#: ../class/m_dom.php:1420 +msgid "The domain name is syntaxically incorrect" +msgstr "" + +#: ../class/m_dom.php:642 ../class/m_dom.php:683 ../class/m_dom.php:1498 +msgid "" +"The requested domain is forbidden in this server, please contact the " +"administrator" +msgstr "" + +#: ../class/m_dom.php:646 +msgid "This domain is the server's domain! You cannot host it on your account!" +msgstr "" + +#: ../class/m_dom.php:651 ../class/m_dom.php:656 +#, fuzzy +msgid "The domain already exist" +msgstr "Miglied '%s' existiert nicht" + +#: ../class/m_dom.php:663 ../class/m_dom.php:1402 +msgid "" +"The last member of the domain name is incorrect or cannot be hosted in that " +"server" +msgstr "" + +#: ../class/m_dom.php:667 ../class/m_dom.php:671 +msgid "The domain cannot be found in the whois database" +msgstr "" + +#: ../class/m_dom.php:690 +msgid "Your domain quota is over, you cannot create more domain names" +msgstr "" + +#: ../class/m_dom.php:697 +msgid "An unexpected error occured when creating the domain" +msgstr "" + +#: ../class/m_dom.php:706 ../class/m_dom.php:1065 +#, php-format +msgid "Domain '%s' not found" +msgstr "" + +#: ../class/m_dom.php:820 +msgid "Could not delete default type" +msgstr "" + +#: ../class/m_dom.php:972 +msgid "The Whois database is unavailable, please try again later" +msgstr "" + +#: ../class/m_dom.php:979 ../class/m_dom.php:1406 +msgid "The domain cannot be found in the Whois database" +msgstr "" + +#: ../class/m_dom.php:1124 ../class/m_dom.php:1355 +#, fuzzy +msgid "The sub-domain does not exist" +msgstr "Miglied '%s' existiert nicht" + +#: ../class/m_dom.php:1155 +msgid "invalid url" +msgstr "" + +#: ../class/m_dom.php:1165 +#, fuzzy +msgid "The folder you entered is incorrect or does not exist" +msgstr "Miglied '%s' existiert nicht" + +#: ../class/m_dom.php:1174 ../class/m_dom.php:1182 +msgid "The ip address is invalid" +msgstr "" + +#: ../class/m_dom.php:1190 +#, fuzzy +msgid "The name you entered is incorrect" +msgstr "Miglied '%s' existiert nicht" + +#: ../class/m_dom.php:1198 +#, fuzzy +msgid "The TXT value you entered is incorrect" +msgstr "Miglied '%s' existiert nicht" + +#: ../class/m_dom.php:1203 +msgid "Invalid domain type selected, please check" +msgstr "" + +#: ../class/m_dom.php:1274 +msgid "" +"There is some forbidden characters in the sub domain (only A-Z 0-9 and - are " +"allowed)" +msgstr "" + +#: ../class/m_dom.php:1313 ../class/m_dom.php:1324 +msgid "Cannot write to the destination folder" +msgstr "" + +#: ../class/m_dom.php:1410 +msgid "" +"The DNS of this domain do not match the server's DNS. Please change your " +"domain's DNS before you install it again" +msgstr "" + +#: ../class/m_dom.php:1425 +#, fuzzy, php-format +msgid "The domain name %s does not exist" +msgstr "Miglied '%s' existiert nicht" + +#: ../class/m_dom.php:1431 +msgid "No change has been requested..." +msgstr "" + +#: ../class/m_dom.php:1439 ../class/m_dom.php:1444 +msgid "" +"There is no MX record pointing to this server, and you are asking us to host " +"the mail here. Make sure to update your MX entries or no mail will be " +"received" +msgstr "" + +#: ../class/m_dom.php:1491 ../class/m_dom.php:1515 +msgid "The IP address you entered is incorrect" +msgstr "" + +#: ../class/m_dom.php:1588 ../class/m_dom.php:1594 ../class/m_dom.php:1612 +#: ../class/m_dom.php:1618 +msgid "This domain is not installed in your account" +msgstr "" + +#: ../class/m_dom.php:1660 +msgid "The specified slave account already exists" +msgstr "" + +#: ../class/m_dom.php:1691 +msgid "--- Program error --- Lock already obtained!" +msgstr "" + +#: ../class/m_dom.php:1831 +msgid "Locally hosted" +msgstr "" + +#: ../class/m_dom.php:1832 +msgid "URL redirection" +msgstr "" + +#: ../class/m_dom.php:1833 +msgid "IPv4 redirect" +msgstr "" + +#: ../class/m_dom.php:1834 +msgid "Webmail access" +msgstr "" + +#: ../class/m_dom.php:1835 +msgid "Squirrelmail Webmail access" +msgstr "" + +#: ../class/m_dom.php:1836 +msgid "Roundcube Webmail access" +msgstr "" + +#: ../class/m_dom.php:1837 +msgid "IPv6 redirect" +msgstr "" + +#: ../class/m_dom.php:1838 +msgid "CNAME DNS entry" +msgstr "" + +#: ../class/m_dom.php:1839 +msgid "TXT DNS entry" +msgstr "" + +#: ../class/m_dom.php:1840 +msgid "MX DNS entry" +msgstr "" + +#: ../class/m_dom.php:1841 +msgid "secondary MX DNS entry" +msgstr "" + +#: ../class/m_dom.php:1842 +msgid "Default mail server" +msgstr "" + +#: ../class/m_dom.php:1843 +msgid "Default backup mail server" +msgstr "" + +#: ../class/m_dom.php:1844 +msgid "AlternC panel access" +msgstr "" + +#: ../class/m_err.php:66 ../class/m_err.php:98 +msgid "err_" +msgstr "err_" + +#: ../class/m_ftp.php:56 ../class/m_ftp.php:447 +msgid "FTP accounts" +msgstr "" + +#: ../class/m_ftp.php:105 +#, fuzzy +msgid "This account do not exist or is not of this account" +msgstr "Miglied '%s' existiert nicht" + +#: ../class/m_ftp.php:117 +msgid "Error during update" +msgstr "" + +#: ../class/m_ftp.php:151 +#, fuzzy +msgid "No FTP account found" +msgstr "Miglied '%s' existiert nicht" + +#: ../class/m_ftp.php:187 ../class/m_ftp.php:262 ../class/m_ftp.php:322 +#, fuzzy +msgid "This FTP account does not exist" +msgstr "Miglied '%s' existiert nicht" + +#: ../class/m_ftp.php:217 +#, php-format +msgid "FTP login is incorrect: too many '%s'" +msgstr "" + +#: ../class/m_ftp.php:224 +#, fuzzy +msgid "FTP login is incorrect" +msgstr "Miglied '%s' existiert nicht" + +#: ../class/m_ftp.php:271 ../class/m_ftp.php:351 +msgid "The chosen prefix is not allowed" +msgstr "" + +#: ../class/m_ftp.php:282 ../class/m_ftp.php:360 +#, fuzzy +msgid "This FTP account already exists" +msgstr "Miglied '%s' existiert nicht" + +#: ../class/m_ftp.php:290 ../class/m_ftp.php:372 +msgid "The directory cannot be created" +msgstr "" + +#: ../class/m_ftp.php:347 +#, fuzzy +msgid "Password can't be empty" +msgstr "Passwört" + +#: ../class/m_ftp.php:388 +msgid "Your FTP account quota is over. You cannot create more ftp accounts" +msgstr "" + +#: ../class/m_hta.php:60 +msgid "Protected folders" +msgstr "" + +#: ../class/m_hta.php:81 ../class/m_hta.php:291 ../class/m_hta.php:332 +#, fuzzy, php-format +msgid "The folder '%s' does not exist" +msgstr "Miglied '%s' existiert nicht" + +#: ../class/m_hta.php:89 ../class/m_hta.php:94 ../class/m_hta.php:104 +#: ../class/m_hta.php:253 ../class/m_hta.php:298 ../class/m_hta.php:347 +msgid "File already exist" +msgstr "" + +#: ../class/m_hta.php:98 +msgid "Restricted area" +msgstr "" + +#: ../class/m_hta.php:126 +msgid "No protected folder" +msgstr "" + +#: ../class/m_hta.php:208 +#, php-format +msgid "I cannot delete the file '%s/.htaccess'" +msgstr "" + +#: ../class/m_hta.php:212 +#, php-format +msgid "I cannot delete the file '%s/.htpasswd'" +msgstr "" + +#: ../class/m_hta.php:231 +msgid "Please enter a user" +msgstr "" + +#: ../class/m_hta.php:261 +#, php-format +msgid "The user '%s' already exist for this folder" +msgstr "" + +#: ../class/m_hta.php:273 +msgid "Please enter a valid username" +msgstr "" + +#: ../class/m_hta.php:402 +msgid "An incompatible .htaccess file exists in this folder" +msgstr "" + +#: ../class/m_log.php:60 +msgid "Logs" +msgstr "" + +#: ../class/m_lxc.php:133 +msgid "VM already started" +msgstr "" + +#: ../class/m_mail.php:95 +msgid "Email Addresses" +msgstr "" + +#: ../class/m_mail.php:158 ../class/m_mail.php:243 ../class/m_mail.php:328 +#: ../class/m_mail.php:455 ../class/m_mail.php:509 +msgid "The email you entered is syntaxically incorrect" +msgstr "" + +#: ../class/m_mail.php:191 +msgid "Email account password" +msgstr "" + +#: ../class/m_mail.php:281 +msgid "No email found for this query" +msgstr "" + +#: ../class/m_mail.php:340 +msgid "You cannot create email addresses: your quota is over" +msgstr "" + +#: ../class/m_mail.php:346 +#, fuzzy +msgid "This email address already exists" +msgstr "Miglied '%s' existiert nicht" + +#: ../class/m_mail.php:352 +msgid "An unexpected error occured when creating the email" +msgstr "" + +#: ../class/m_mail.php:406 +msgid "This email is not yours, you can't change anything on it" +msgstr "" + +#: ../class/m_mail.php:469 ../class/m_mail.php:875 +#, php-format +msgid "The email %s does not exist, it can't be deleted" +msgstr "" + +#: ../class/m_mail.php:473 +#, php-format +msgid "The email %s is already marked for deletion, it can't be deleted" +msgstr "" + +#: ../class/m_mail.php:482 +#, php-format +msgid "The email %s has been marked for deletion" +msgstr "" + +#: ../class/m_mail.php:488 +#, php-format +msgid "The email %s has been successfully deleted" +msgstr "" + +#: ../class/m_mail.php:520 +#, php-format +msgid "The email %s does not exist, it can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:524 +#, php-format +msgid "The email %s is special, it can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:528 +#, php-format +msgid "" +"Sorry, deletion of email %s is already in progress, or not marked for " +"deletion, it can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:537 +#, php-format +msgid "The email %s has been undeleted" +msgstr "" + +#: ../class/m_mail.php:540 +#, php-format +msgid "-- Program Error -- The email %s can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:621 +msgid "" +"There is forbidden characters in your email address. You can't make it a POP/" +"IMAP account, you can only use it as redirection to other emails" +msgstr "" + +#: ../class/m_mail.php:641 +msgid "" +"You set a quota smaller than the current mailbox size. Since it's not " +"allowed, we set the quota to the current mailbox size" +msgstr "" + +#: ../class/m_mail.php:826 +#, fuzzy +msgid "The slave MX account was not found" +msgstr "Miglied '%s' existiert nicht" + +#: ../class/m_mem.php:95 ../class/m_mem.php:101 ../class/m_mem.php:168 +#: ../class/m_mem.php:299 +msgid "User or password incorrect" +msgstr "" + +#: ../class/m_mem.php:105 ../class/m_mem.php:483 +msgid "This account is locked, contact the administrator" +msgstr "" + +#: ../class/m_mem.php:112 ../class/m_mem.php:271 +msgid "" +"This website is currently under maintenance, login is currently disabled." +msgstr "" + +#: ../class/m_mem.php:127 +msgid "Your IP isn't allowed to connect" +msgstr "" + +#: ../class/m_mem.php:243 +#, fuzzy +msgid "Missing password" +msgstr "Passwört" + +#: ../class/m_mem.php:252 +msgid "Identity lost or unknown, please login" +msgstr "" + +#: ../class/m_mem.php:258 ../class/m_mem.php:347 +msgid "Session unknown, contact the administrator" +msgstr "" + +#: ../class/m_mem.php:264 ../class/m_mem.php:352 +msgid "IP address incorrect, please contact the administrator" +msgstr "" + +#: ../class/m_mem.php:341 +msgid "Cookie incorrect, please accept the session cookie" +msgstr "" + +#: ../class/m_mem.php:388 +msgid "You are not allowed to change your password." +msgstr "" + +#: ../class/m_mem.php:392 +msgid "The old password is incorrect" +msgstr "" + +#: ../class/m_mem.php:396 ../class/m_mem.php:445 +msgid "The new passwords are differents, please retry" +msgstr "" + +#: ../class/m_mem.php:420 +msgid "You must be a system administrator to do this." +msgstr "" + +#: ../class/m_mem.php:440 +msgid "This account is locked, contact the administrator." +msgstr "" + +#: ../class/m_mem.php:448 +#, php-format +msgid "" +"Hello,\n" +"\n" +"You requested the modification of your password for your\n" +"account %s on %s\n" +"Here are your username and password to access the panel :\n" +"\n" +"--------------------------------------\n" +"\n" +"Username : %s\n" +"Password : %s\n" +"\n" +"--------------------------------------\n" +"\n" +"Note : if you didn't requested that modification, it means that\n" +"someone did it instead of you. You can choose to ignore this message.\n" +"If it happens again, please contact your server's Administrator. \n" +"\n" +"Cordially.\n" +msgstr "" + +#: ../class/m_mem.php:493 +#, php-format +msgid "" +"Hello,\n" +"\n" +"Someone (maybe you) requested an email's address modification of the " +"account\n" +"%s on %s\n" +"To confirm your request, go to this url :\n" +"\n" +"%s\n" +"\n" +"(Warning : if this address is displayed on 2 lines, don't forgot to\n" +"take it on one line).\n" +"The panel will ask you the key given when the email address\n" +"modification was requested.\n" +"\n" +"If you didn't asked for this modification, it means that someone\n" +"did it instead of you. You can choose to ignore this message. If it happens\n" +"again, please contact your server's administrator.\n" +"\n" +"Cordially.\n" +msgstr "" + +#: ../class/m_mem.php:534 +msgid "The information you entered is incorrect." +msgstr "" + +#: ../class/m_menu.php:113 +msgid "Home / Information" +msgstr "" + +#: ../class/m_menu.php:120 +msgid "Logout" +msgstr "" + +#: ../class/m_menu.php:127 +msgid "Online help" +msgstr "" + +#: ../class/m_menu.php:135 +msgid "Languages" +msgstr "" + +#: ../class/m_mysql.php:49 +msgid "" +"There are no databases in db_servers for this user. Please contact your " +"administrator." +msgstr "" + +#: ../class/m_mysql.php:110 +msgid "MySQL" +msgstr "" + +#: ../class/m_mysql.php:119 +msgid "Databases" +msgstr "" + +#: ../class/m_mysql.php:178 +msgid "Cannot connect to PhpMyAdmin" +msgstr "" + +#: ../class/m_mysql.php:219 ../class/m_mysql.php:385 +#, php-format +msgid "Database %s not found" +msgstr "" + +#: ../class/m_mysql.php:246 +msgid "Your databases quota is over. You cannot create more databases" +msgstr "" + +#: ../class/m_mysql.php:257 +msgid "Database can't have empty suffix" +msgstr "" + +#: ../class/m_mysql.php:262 ../class/m_mysql.php:380 ../class/m_mysql.php:462 +msgid "Database name can contain only letters and numbers" +msgstr "" + +#: ../class/m_mysql.php:268 +msgid "Database name cannot exceed 64 characters" +msgstr "" + +#: ../class/m_mysql.php:273 +#, fuzzy, php-format +msgid "Database %s already exists" +msgstr "Miglied '%s' existiert nicht" + +#: ../class/m_mysql.php:291 +msgid "" +"There is a problem with the special PhpMyAdmin user. Contact the " +"administrator" +msgstr "" + +#: ../class/m_mysql.php:310 +msgid "An error occured. The database could not be created" +msgstr "" + +#: ../class/m_mysql.php:328 +msgid "The database was not found. I can't delete it" +msgstr "" + +#: ../class/m_mysql.php:367 +msgid "User aren't allowed to configure their backups" +msgstr "" + +#: ../class/m_mysql.php:398 +msgid "You have to choose how many backups you want to keep" +msgstr "" + +#: ../class/m_mysql.php:402 +#, fuzzy +msgid "Directory does not exist" +msgstr "Miglied '%s' existiert nicht" + +#: ../class/m_mysql.php:420 ../class/m_mysql.php:465 +msgid "Database not found" +msgstr "" + +#: ../class/m_mysql.php:427 ../class/m_mysql.php:711 +#, fuzzy +msgid "The password is mandatory" +msgstr "Passwört" + +#: ../class/m_mysql.php:432 +msgid "MySQL password cannot exceed 16 characters" +msgstr "" + +#: ../class/m_mysql.php:472 +msgid "Databases rights are not correct" +msgstr "" + +#: ../class/m_mysql.php:477 +msgid "The username can contain only letters and numbers." +msgstr "" + +#: ../class/m_mysql.php:483 +#, fuzzy +msgid "Database user not found" +msgstr "Miglied '%s' existiert nicht" + +#: ../class/m_mysql.php:495 +msgid "Could not grant rights" +msgstr "" + +#: ../class/m_mysql.php:513 +msgid "No file specified" +msgstr "" + +#: ../class/m_mysql.php:520 ../class/m_mysql.php:524 +msgid "File not found" +msgstr "" + +#: ../class/m_mysql.php:707 +msgid "The username is mandatory" +msgstr "" + +#: ../class/m_mysql.php:715 ../class/m_mysql.php:792 +msgid "The username can contain only letters and numbers" +msgstr "" + +#: ../class/m_mysql.php:722 +msgid "MySQL username cannot exceed 16 characters" +msgstr "" + +#: ../class/m_mysql.php:727 +#, fuzzy +msgid "The database user already exists" +msgstr "Miglied '%s' existiert nicht" + +#: ../class/m_mysql.php:731 ../class/m_mysql.php:765 +#, fuzzy +msgid "The passwords do not match" +msgstr "Passwört" + +#: ../class/m_mysql.php:802 +#, fuzzy +msgid "The username was not found" +msgstr "Miglied '%s' existiert nicht" + +#: ../class/m_mysql.php:831 +msgid "This user does not exist in the MySQL/User database" +msgstr "" + +#: ../class/m_mysql.php:1105 +msgid "The directory could not be created" +msgstr "" + +#: ../class/m_piwik.php:40 +msgid "Piwik statistics" +msgstr "" + +#: ../class/m_piwik.php:45 +#, fuzzy +msgid "Piwik Users" +msgstr "Benützt" + +#: ../class/m_piwik.php:46 +msgid "Piwik Sites" +msgstr "" + +#: ../class/m_piwik.php:81 +msgid "Statistics through Piwik accounts" +msgstr "" + +#: ../class/m_piwik.php:193 ../class/m_piwik.php:316 +msgid "You are not allowed to delete the statistics of this website" +msgstr "" + +#: ../class/m_piwik.php:366 +msgid "Unable to reach the API" +msgstr "" + +#: ../class/m_piwik.php:372 +msgid "Error while decoding response from the API" +msgstr "" + +#: ../class/m_piwik.php:378 +msgid "Other format than JSON is not implemented yet" +msgstr "" + +#: ../class/m_quota.php:65 +msgid "Show my quotas" +msgstr "" + +#: ../class/m_quota.php:78 +#, php-format +msgid "%s%% of %s" +msgstr "" + +#: ../class/m_quota.php:78 ../class/m_quota.php:105 ../class/m_quota.php:196 +msgid "quota_" +msgstr "quota_" + +#: ../class/m_quota.php:236 +msgid "Error writing the quota entry!" +msgstr "" + +#: ../class/m_quota.php:537 +msgid "B" +msgstr "" + +#: ../class/m_quota.php:537 +msgid "GB" +msgstr "" + +#: ../class/m_quota.php:537 +msgid "KB" +msgstr "" + +#: ../class/mime.php:135 +msgid "CSS Stylesheet" +msgstr "" + +#: ../class/mime.php:136 +msgid "Comma Separated Values data" +msgstr "" + +#: ../class/mime.php:137 +msgid "DIA Diagram" +msgstr "" + +#: ../class/mime.php:138 +msgid "Word Document" +msgstr "" + +#: ../class/mime.php:139 +msgid "Word Document Template" +msgstr "" + +#: ../class/mime.php:140 +msgid "Encapsulated Postscript" +msgstr "" + +#: ../class/mime.php:141 +msgid "GIF Image" +msgstr "" + +#: ../class/mime.php:142 +msgid "Macintosh Executable" +msgstr "" + +#: ../class/mime.php:143 ../class/mime.php:144 +msgid "HTML Document" +msgstr "" + +#: ../class/mime.php:145 ../class/mime.php:146 +msgid "JPEG Image" +msgstr "" + +#: ../class/mime.php:147 +msgid "Music Playlist" +msgstr "" + +#: ../class/mime.php:148 +msgid "MP3 Music File" +msgstr "" + +#: ../class/mime.php:149 +msgid "Ogg Music File" +msgstr "" + +#: ../class/mime.php:150 +msgid "Acrobat PDF" +msgstr "" + +#: ../class/mime.php:151 +msgid "PHP Source" +msgstr "" + +#: ../class/mime.php:152 +msgid "PNG Image" +msgstr "" + +#: ../class/mime.php:153 ../class/mime.php:154 +msgid "Powerpoint Slideshow" +msgstr "" + +#: ../class/mime.php:155 +msgid "Postscript Document" +msgstr "" + +#: ../class/mime.php:156 +msgid "Photoshop Image" +msgstr "" + +#: ../class/mime.php:157 +msgid "Rar Compressed Files" +msgstr "" + +#: ../class/mime.php:158 +msgid "Rich Text Document" +msgstr "" + +#: ../class/mime.php:159 +msgid "OpenOffice Spreadsheet" +msgstr "" + +#: ../class/mime.php:160 +msgid "OpenOffice Drawing" +msgstr "" + +#: ../class/mime.php:161 +msgid "OpenOffice Presentation" +msgstr "" + +#: ../class/mime.php:162 +msgid "OpenOffice Writer" +msgstr "" + +#: ../class/mime.php:163 ../class/mime.php:164 +msgid "TIFF Image" +msgstr "" + +#: ../class/mime.php:165 +msgid "Text Document" +msgstr "" + +#: ../class/mime.php:166 ../class/mime.php:167 +msgid "Virtual Card" +msgstr "" + +#: ../class/mime.php:168 +msgid "Gimp Image" +msgstr "" + +#: ../class/mime.php:169 +msgid "Excel Spreadsheet" +msgstr "" + +#: ../class/mime.php:170 +msgid "Zip Compressed Files" +msgstr "" + +#: ../class/mime.php:171 +msgid "Flash Animation" +msgstr "" + +#: ../class/mime.php:172 ../class/mime.php:173 ../class/mime.php:174 +msgid "Real Media File" +msgstr "" + +#, fuzzy +#~ msgid "The database user was not found" +#~ msgstr "Miglied '%s' existiert nicht" + +#, fuzzy +#~ msgid "Password does not match" +#~ msgstr "Miglied '%s' existiert nicht" + +#, fuzzy +#~ msgid "Password match" +#~ msgstr "Passwört" + +#~ msgid "New member" +#~ msgstr "Neuer Mitglied" + +#~ msgid "Member" +#~ msgstr "Mitglied" + +#~ msgid "mode" +#~ msgstr "mode" + +#, fuzzy +#~ msgid "You can use a different language: " +#~ msgstr "Für eine andere Sprache, click über die Fahne" + +#, fuzzy +#~ msgid "Front page" +#~ msgstr "Vorname" + +#~ msgid "_" +#~ msgstr "_" + +#, fuzzy +#~ msgid "New Name:" +#~ msgstr "Neuer Mitglied" + +#~ msgid "If you want to use a different language, click on the flag below" +#~ msgstr "Für eine andere Sprache, click über die Fahne" + +#~ msgid "lang" +#~ msgstr "lang" diff --git a/ssl/panel/locales/en_GB b/ssl/panel/locales/en_GB new file mode 120000 index 00000000..75882c4f --- /dev/null +++ b/ssl/panel/locales/en_GB @@ -0,0 +1 @@ +/en_US \ No newline at end of file diff --git a/ssl/panel/locales/en_US/LC_MESSAGES/alternc.mo b/ssl/panel/locales/en_US/LC_MESSAGES/alternc.mo new file mode 100644 index 0000000000000000000000000000000000000000..986043e6bb93a147fad84c86cbeb784ce8ff3d4d GIT binary patch literal 416 zcmYL_%}xR_6h<++nx$(OUAWVZEkALrXb6Z22}FXU`^(Iw6o*^V7NQU0>-j8p(7=~| zY0{pwr~NrU`)jIy6ZA#wXYR_}47*qir6}=4 +# $Id: admin.po,v 1.4 2006/02/09 20:12:23 benjamin Exp $ +#. Template for AlternC Translation +#. Copyright (c) 2002 the AlternC Development Team +#. +#. $Id: admin.po,v 1.4 2006/02/09 20:12:23 benjamin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: $Id: admin.po,v 1.4 2006/02/09 20:12:23 benjamin Exp $\n" +"Report-Msgid-Bugs-To: i18n@alternc.org\n" +"POT-Creation-Date: 2004-05-24 19:34+0200\n" +"PO-Revision-Date: 2002-06-16 13:50CEST\n" +"Last-Translator: Benjamin Sonntag \n" +"Language-Team: English \n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Emacs 21\n" + +#. -- Only administrators can access this page !! -- +msgid "err_admin_1" +msgstr "-- Only administrators can access this page! --" + +#. Account not found +msgid "err_admin_2" +msgstr "Account not found" + +#. This login already exists +msgid "err_admin_3" +msgstr "This login already exists" + +#. -- I cannot create this account -- +msgid "err_admin_4" +msgstr "-- I cannot create this account --" + +#. Please enter a valid email address +msgid "err_admin_5" +msgstr "Please enter a valid email address" + +#. All fields are mandatory +msgid "err_admin_6" +msgstr "All fields are mandatory" + +#. You can ask for your password only once a day ! +msgid "err_admin_7" +msgstr "You can ask for your password only once a day!" + +#. This account is ALREADY an administrator account +msgid "err_admin_8" +msgstr "This account is ALREADY an administrator account" + +#. This account is NOT an administrator account ! +msgid "err_admin_9" +msgstr "This account is NOT an administrator account!" + +#. Login can only contains characters a-z, 0-9 and - +msgid "err_admin_10" +msgstr "Login can only contains characters a-z, 0-9 and -" + +#. This TLD does not exist +msgid "err_admin_11" +msgstr "This TLD does not exist" + +#. This TLD already exists +msgid "err_admin_12" +msgstr "This TLD already exist" + +#. The login is too long (16 chars max) +msgid "err_admin_13" +msgstr "The login is too long (16 chars max)" + +#. Domain names +msgid "quota_dom" +msgstr "Domain names" + +#. Domain '%s' not found. +msgid "err_dom_1" +msgstr "Domain '%s' not found." + +#. The domaine '%s' does not belong to you. +msgid "err_dom_2" +msgstr "The domain '%s' does not belong to you." + +#. --- Programm error --- No lock on the domains ! +msgid "err_dom_3" +msgstr "--- Program error --- No lock on the domains!" + +#. The domain name is too long. +msgid "err_dom_4" +msgstr "The domain name is too long." + +#. One of the domain name member is too long. +msgid "err_dom_5" +msgstr "One of the domain name member is too long." + +#. There is some forbidden characters in the domain name (only A-Z 0-9 and - are allowed). +msgid "err_dom_6" +msgstr "" +"There is some forbidden characters in the domain name (only A-Z 0-9 and - " +"are allowed)." + +#. The last member of the domain name is incorrect or cannot be hosted in that server. +msgid "err_dom_7" +msgstr "" +"The last member of the domain name is incorrect or cannot be hosted in that " +"server." + +#. The domain already exists. +msgid "err_dom_8" +msgstr "The domain already exist." + +#. The domain has been deleted less than 5 minutes ago, please try again later. +msgid "err_dom_9" +msgstr "" +"The domain has been deleted less than 5 minutes ago, please try again later." + +#. Your domain quota is over, you cannot create more domain names. +msgid "err_dom_10" +msgstr "Your domain quota is over, you cannot create more domain names." + +#. The Whois database is unavailable, please try again later. +msgid "err_dom_11" +msgstr "The Whois database is unavailable, please try again later." + +#. The domain cannot be found in the whois database. +msgid "err_dom_12" +msgstr "The domain cannot be found in the whois database." + +#. The domain has been changed less than 5 minutes ago. Please try again in a few minutes. +msgid "err_dom_13" +msgstr "" +"The domain has been changed less than 5 minutes ago. Please try again in a " +"few minutes." + +#. The sub-domain does not exist. +msgid "err_dom_14" +msgstr "The sub-domain does not exist." + +#. No change has been requested... +msgid "err_dom_15" +msgstr "No change has been requested..." + +#. The sub-domain already exists. +msgid "err_dom_16" +msgstr "The sub-domain already exist." + +#. --- Programm error --- Lock already obtained ! +msgid "err_dom_17" +msgstr "--- Program error --- Lock already obtained!" + +#. This domain is the server's domain !!! You cannot host it on your account ! +msgid "err_dom_18" +msgstr "" +"This domain is the server's domain! You cannot host it on your account!" + +#. The IP address you entered is incorrect. +msgid "err_dom_19" +msgstr "The IP address you entered is incorrect." + +#. The URL you entered is incorrect. +msgid "err_dom_20" +msgstr "The URL you entered is incorrect." + +#. The folder you entered is incorrect or does not exist. +msgid "err_dom_21" +msgstr "The folder you entered is incorrect or does not exist." + +#. The requested domain is forbidden in this server, please contact the administrator +msgid "err_dom_22" +msgstr "" +"The requested domain is forbidden in this server, please contact the " +"administrator" + +#. The DNS of this domain do not match the server's DNS. Please change your +#. domain's DNS (and eventually wait 1 day) before you install it again. +msgid "err_dom_23" +msgstr "" +"The DNS of this domain do not match the server's DNS. Please change your " +"domain's DNS (you may need to wait 1 day) before you install it again." + +#. There is some forbidden characters in the sub domain (only A-Z 0-9 and - are allowed). +msgid "err_dom_24" +msgstr "" +"There is some forbidden characters in the sub domain (only A-Z 0-9 and - are " +"allowed)." + +#. There is no MX record pointing to this server, and you are asking us to host the Mail here +msgid "err_dom_25" +msgstr "" +"There is no MX record pointing to this server, and you are asking us to host " +"the mail here. Please fix your MX DNS pointer." + +#. - Entrez le nom du domaine que vous souhaitez héberger. Le nom de domaine +#. doit être complet, mais sans le www.
IMPORTANT : Si vous voulez +#. un hébergement réel de domaine, il faut que les DNS de votre domaine +#. pointent vers nos serveurs DNS. Contacter votre hébergeur pour plus +#. d'information.
Exemples : globenet.org / demo.com / test.eu.org etc. +#.
Plus d'info sur la gestion des domaines dans l'aide en ligne +#. HELPID_200
+msgid "hlp_add_domain" +msgstr "" +"- Please enter the domain name you want to hosthere. The domain name must be " +"complete, but without the www.
IMPORTANT: If you want to host " +"that domain properly, the DNS Servers of your domain must point to the DNS " +"Servers of your hosting provider. Contact your hosting provider for more " +"information
Examples of domain name: globenet.org / demo.com / test.eu." +"org etc.
For more information on domain management, read the online " +"help, HELPID_200" + +#. Cliquez sur le lien ci-dessus. Vous pourrez ensuite accéder aux paremètres +#. du domaine dans le menu à gauche.2 liens vont apparaitre :
- un +#. premier pour modifier les paramètres d'hébergement du domaine (sous- +#. domaines, redirections, hébergement mails ...)
- un second pour gérer +#. les comptes emails du domaine (si vous souhaitez créer des boites aux +#. lettres).
Plus d'info sur la gestion des domaines dans l'aide en ligne +#. HELPID_200
+msgid "hlp_add_domain_2" +msgstr "" +"Cliquez sur le lien ci-dessus. Vous pourrez ensuite accéder aux paremètres " +"du domaine dans le menu à gauche.2 liens vont apparaitre :
- un " +"premier pour modifier les paramètres d'hébergement du domaine (sous-" +"domaines, redirections, hébergement mails ...)
- un second pour gérer " +"les comptes emails du domaine (si vous souhaitez créer des boites aux " +"lettres).
Plus d'info sur la gestion des domaines dans l'aide en ligne " +"HELPID_200
" + +#. Le domaine a été effacé, mais les fichiers de votre site n'ont pas été +#. détruits.
Si vous souhaitez détruire les fichiers du site web, utilisez +#. le Gestionnaire de Fichier
Plus d'info sur la gestion des domaines dans +#. l'aide en ligne HELPID_200
+msgid "hlp_del_domain" +msgstr "" +"Le domaine a été effacé, mais les fichiers de votre site n'ont pas été " +"détruits.
Si vous souhaitez détruire les fichiers du site web, utilisez " +"le Gestionnaire de Fichier
Plus d'info sur la gestion des domaines dans " +"l'aide en ligne HELPID_200
" + +#. Cette zone vous permet de modifier les paramètres de votre domaine, ainsi +#. que des sous-domaines installés
Vous pouvez créer un nouveau sous- +#. domaine et choisir, soit de le rediriger vers votre espace disque, vers une +#. autre adresse Internet, ou vers une adresse IP (utilisateurs avancés)
+#. Plus d'info sur la gestion des domaines dans l'aide en ligne HELPID_200
+msgid "hlp_edit_domain" +msgstr "" +"Cette zone vous permet de modifier les paramètres de votre domaine, ainsi " +"que des sous-domaines installés
Vous pouvez créer un nouveau sous-" +"domaine et choisir, soit de le rediriger vers votre espace disque, vers une " +"autre adresse Internet, ou vers une adresse IP (utilisateurs avancés)
Plus d'info sur la gestion des domaines dans l'aide en ligne HELPID_200
" + +#. FTP Accounts +msgid "quota_ftp" +msgstr "FTP Accounts" + +#. No ftp account found +msgid "err_ftp_1" +msgstr "No ftp account found" + +#. This ftp account does not exist +msgid "err_ftp_2" +msgstr "This FTP account does not exist" + +#. The chosen prefix is not allowed +msgid "err_ftp_3" +msgstr "The chosen prefix is not allowed" + +#. This ftp account already exists +msgid "err_ftp_4" +msgstr "This FTP account already exist" + +#. Your ftp account quota is over. You cannot create more ftp accounts. +msgid "err_ftp_5" +msgstr "Your FTP account quota is over. You cannot create more FTP accounts." + +#. The directory cannot be created. +msgid "err_ftp_6" +msgstr "The directory cannot be created." + +#. Voici la liste des comptes ftp ayant accès à votre compte. Cliquez sur +#. 'Modifier' pour changer le nom d'utilisateur, le mot de passe, ou le dossier +#. racine.
Pour supprimer un compte, cochez la case correspondante et +#. cliquez sur le bouton 'Supprimer les comptes cochés'
Pour pouvoir +#. accéder à vos fichiers avec un logiciel de ftp, vous devez créer au moins un +#. compte. Chaque compte est associé à un dossier, et n'aura donc accès qu'aux +#. fichiers situés dans ce dossier ou en dessous.
Plus d'info sur le FTP +#. dans l'aide en ligne HELPID_100
+msgid "hlp_ftp_list" +msgstr "" +"Voici la liste des comptes ftp ayant accès à votre compte. Cliquez sur " +"'Modifier' pour changer le nom d'utilisateur, le mot de passe, ou le dossier " +"racine.
Pour supprimer un compte, cochez la case correspondante et " +"cliquez sur le bouton 'Supprimer les comptes cochés'
Pour pouvoir " +"accéder à vos fichiers avec un logiciel de ftp, vous devez créer au moins un " +"compte. Chaque compte est associé à un dossier, et n'aura donc accès qu'aux " +"fichiers situés dans ce dossier ou en dessous.
Plus d'info sur le FTP " +"dans l'aide en ligne HELPID_100
" + +#. Vous n'avez actuellement aucun Compte FTP de disponible. Cliquez sur +#. 'Création d'un compte ftp' pour en créer un.
Pour pouvoir accéder à vos +#. fichiers avec un logiciel de ftp, vous devez créer au moins un compte. +#. Chaque compte est associé à un dossier, et n'aura donc accès qu'aux fichiers +#. situés dans ce dossier ou en dessous.
Plus d'info sur le FTP dans +#. l'aide en ligne HELPID_100
+msgid "hlp_ftp_list_no" +msgstr "" +"Vous n'avez actuellement aucun Compte FTP de disponible. Cliquez sur " +"'Création d'un compte ftp' pour en créer un.
Pour pouvoir accéder à vos " +"fichiers avec un logiciel de ftp, vous devez créer au moins un compte. " +"Chaque compte est associé à un dossier, et n'aura donc accès qu'aux fichiers " +"situés dans ce dossier ou en dessous.
Plus d'info sur le FTP dans " +"l'aide en ligne HELPID_100
" + +#. Pour ajouter un compte ftp, vous devez choisir un Nom d'utilisateur, un mot +#. de passe, et un répertoire racine
Le nom d'utilisateur commence +#. toujours par votre nom de login ou le nom d'un de vos domaines.
Le +#. répertoire racine, s'il n'existe pas, sera créé automatiquement.
Note : +#. Le compte que vous créez ainsi aura accès en lecture et en écriture aux +#. fichiers situés dans le répertoire et tous ses sous-répertoires.
Plus +#. d'info sur le FTP dans l'aide en ligne HELPID_100
+msgid "hlp_ftp_add" +msgstr "" +"Pour ajouter un compte ftp, vous devez choisir un Nom d'utilisateur, un mot " +"de passe, et un répertoire racine
Le nom d'utilisateur commence " +"toujours par votre nom de login ou le nom d'un de vos domaines.
Le " +"répertoire racine, s'il n'existe pas, sera créé automatiquement.
Note : " +"Le compte que vous créez ainsi aura accès en lecture et en écriture aux " +"fichiers situés dans le répertoire et tous ses sous-répertoires.
Plus " +"d'info sur le FTP dans l'aide en ligne HELPID_100
" + +#. An incompatible .htaccess file exists in this folder. +msgid "err_hta_1" +msgstr "An incompatible .htaccess file exist in this folder." + +#. .htaccess parsed and syntaxically correct, a .htpassword file has been created. +msgid "err_hta_2" +msgstr "" +".htaccess parsed and syntaxically correct, a .htpassword file has been " +"created." + +#. .htaccess parsed and syntaxically correct, a .htpasswd already exist. +msgid "err_hta_3" +msgstr ".htaccess parsed and syntaxically correct, a .htpasswd already exist." + +#. No protected folder +msgid "err_hta_4" +msgstr "No protected folder" + +#. I cannot delete the file '%s'/.htaccess +msgid "err_hta_5" +msgstr "I cannot delete the file '%s'/.htaccess" + +#. I cannot delete the file '%s'/.htpasswd +msgid "err_hta_6" +msgstr "I cannot delete the file '%s'/.htpasswd" + +#. The file .htaccess does not exist +msgid "err_hta_7" +msgstr "The file .htaccess does not exist" + +#. The folder '%s' does not exist +msgid "err_hta_8" +msgstr "The folder '%s' does not exist" + +#. The file '%s' is not correct +msgid "err_hta_9" +msgstr "The file '%s' is not correct" + +#. The user '%s' already exist for this folder +msgid "err_hta_10" +msgstr "The user '%s' already exist for this folder" + +#. Please enter a valid username +msgid "err_hta_11" +msgstr "Please enter a valid username" + +#. Email Accounts +msgid "quota_mail" +msgstr "Email Accounts" + +#. DB connection impossible, please try again later. +msgid "err_mail_1" +msgstr "ldap connexion impossible, please try again later." + +#. No email on domain '%s' +msgid "err_mail_2" +msgstr "No email on domain '%s'" + +#. The email '%s' does not exist +msgid "err_mail_3" +msgstr "The email '%s' does not exist" + +#. Please check 'pop account' and choose a password pop, or enter some +#. redirections, or both +msgid "err_mail_4" +msgstr "" +"Please check 'pop account' and choose a password pop, or enter some " +"redirections, or both" + +#. -- Server error --- Parameter is incorrect (%s) +msgid "err_mail_5" +msgstr "-- Server error --- Parameter is incorrect (%s)" + +#. The domain '%s' does not exist. +msgid "err_mail_6" +msgstr "The domain '%s' does not exist." + +#. The email '%s' already exists. +msgid "err_mail_7" +msgstr "The email '%s' already exists." + +#. Your mail account quota is over. You cannot create more email accounts. +msgid "err_mail_8" +msgstr "" +"Your mail account quota is over. You cannot create more email accounts." + +#. The domain '%s' does not exist. +msgid "err_mail_9" +msgstr "The domain '%s' does not exist." + +#. -- Programm error -- Mail quota does not exist +msgid "err_mail_10" +msgstr "-- Program error -- Mail quota does not exist" + +#. Please enter an Email address +msgid "err_mail_11" +msgstr "Please enter an Email address" + +#. Please enter a pop password +msgid "err_mail_12" +msgstr "Please enter a pop password" + +#. Please enter a valid email +msgid "err_mail_13" +msgstr "Please enter a valid email" + +#. One or more email redirection are invalid +msgid "err_mail_14" +msgstr "One or more email redirection are invalid" + +#. This mail is not a pop account. It's impossible to change the password ! +msgid "err_mail_15" +msgstr "" +"This mail is not a pop account. It's impossible to change the password!" + +#. OK +msgid "err_err_0" +msgstr "OK" + +#. The error message does not exist (%s) +msgid "err_err_1" +msgstr "The error message does not exist (%s)" + +#. This is a date representation : parameters are the date as follow : +#. $d,$m,$y,$h,$i,$hh,$am +#. 1 2 3 4 5 6 7 +#. hh is the hour in 12 hours format, and am is 'am' or 'pm'. +#. eg: english : %3$d/%1$d/%2$d, at %6$d:%5$d %7$s +msgid "the %3$d-%2$d-%1$d at %4$d:%5$d" +msgstr "%3$d/%1$d/%2$d, at %6$d:%5$d %7$s" + +#. User or password incorrect +msgid "err_mem_1" +msgstr "User or password incorrect" + +#. This account is locked, contact the administrator +msgid "err_mem_2" +msgstr "This account is locked, contact the administrator" + +#. Cookie incorrect, please accept the session cookie +msgid "err_mem_3" +msgstr "Cookie incorrect, please accept the session cookie" + +#. Session unknown, contact the administrator +msgid "err_mem_4" +msgstr "Session unknown, contact the administrator" + +#. IP address incorrect, please contact the administrator +msgid "err_mem_5" +msgstr "IP address incorrect, please contact the administrator" + +# PROBLEME : il y avait 2 fois le 5, les autres messages doivent surement etre décalés (TODO) +#. The old password is incorrect +#. PROBLEME : il y avait 2 fois le 5, les autres messages doivent surement etre décalés (TODO) +msgid "err_mem_6" +msgstr "The old password is incorrect" + +#. The new passwords are differents, please retry +msgid "err_mem_7" +msgstr "The new passwords are differents, please retry" + +#. A password must be at least 3 characters long. +msgid "err_mem_8" +msgstr "A password must be at least 3 characters long." + +#. The information you entered is incorrect +msgid "err_mem_9" +msgstr "The information you entered is incorrect" + +#. You are not allowed to change your password. +msgid "err_mem_11" +msgstr "You are not allowed to change your password." + +#. You must be a system administrator to do this +msgid "err_mem_12" +msgstr "You must be a system administrator to do this" + +# Please do NOT translate those strings to each language. Use the original language instead +#. Français (France) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "fr_FR" +msgstr "Français (France)" + +#. Français (Canada) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "fr_CA" +msgstr "Français (Canada)" + +#. English (United States) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "en_US" +msgstr "English (United States)" + +#. English (United Kingdom) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "en_UK" +msgstr "English (United Kingdom)" + +#. Deutsch (Germany) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "de_DE" +msgstr "Deutsch (Germany)" + +#. Español (Spania) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "es_ES" +msgstr "Español (Spania)" + +#. Español (Venezuela) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "es_VE" +msgstr "Español (Venezuela)" + +#. OK +msgid "err_quota_0" +msgstr "OK" + +#. Error writing the quota entry ! +msgid "err_quota_1" +msgstr "Error writing the quota entry !" + +#. MySQL Databases +msgid "quota_mysql" +msgstr "MySQL Databases" + +#. MySQL Users +msgid "quota_mysql_users" +msgstr "MySQL Users" + +#. Disk space +msgid "quota_web" +msgstr "Disk space" + +#. Data base name can contain only digits or lowercase alphabetic characters +msgid "err_mysql_2" +msgstr "" +"Database name can contain only digits or lowercase alphabetic characters" + +#. The database does not exist, you'll get an access by creating it. +msgid "err_mysql_3" +msgstr "The database does not exist, you'll get an access by creating it." + +#. This database already exists! +msgid "err_mysql_4" +msgstr "This database already exists!" + +#. Your backup number is incorrect. +msgid "err_mysql_5" +msgstr "Your backup number is incorrect." + +#. The folder is incorrect! +msgid "err_mysql_6" +msgstr "The folder is incorrect!" + +#. The file name you chose does not exist or is incorrect. +msgid "err_mysql_7" +msgstr "The file name you chose does not exist or is incorrect." + +#. The password is too long (16 chars max) +msgid "err_mysql_8" +msgstr "The password is too long (16 chars max)" + +#. The file is incorrect or does not exist. +msgid "err_mysql_9" +msgstr "The file is incorrect or does not exist." + +#. Your cannot create your main database : you still have other dbs ! +msgid "err_mysql_10" +msgstr "Your cannot create your main database: you still have other dbs !" + +#. You have no database, click on 'Databases' to create the first one +msgid "err_mysql_11" +msgstr "You have no database, click on 'Databases' to create the first one" + +#. The data base name is too long (64 chars max) +msgid "err_mysql_12" +msgstr "The database name is too long (64 chars max)" + +#. You cannot create more MySQL users +msgid "err_mysql_13" +msgstr "You cannot create more MySQL users" + +#. MySQL users can only have a-z and 0-9 characters. +msgid "err_mysql_14" +msgstr "MySQL users can only have a-z and 0-9 characters." + +#. MySQL users must be less than 16 characters long. +msgid "err_mysql_15" +msgstr "MySQL users must be less than 16 characters long." + +#. This MySQL user already exists. +msgid "err_mysql_16" +msgstr "This MySQL user already exists." + +#. Passwords do not match. +msgid "err_mysql_17" +msgstr "Passwords do not match." + +#. The requested MySQL user does not exist. +msgid "err_mysql_18" +msgstr "The requested MySQL user does not exist." + +#. You have no MySQL users at the moment. +msgid "err_mysql_19" +msgstr "You have no MySQL users at the moment." + +#. Your MySQL backups are stored in the chosen folder from db.sql.1 to db.sql.19
your database name replaces 'db'.
WARNING: If you modify backup settings (backups, compression...) previous +#. backups may remain in the backup folder. Go to the file manager to delete +#. them. +msgid "hlp_sql_bck" +msgstr "" +"Your MySQL backups are stored in the chosen folder from db.sql.1 to db.sql.19
your database name replaces 'db'.
WARNING: If you modify backup settings (backups, compression...) previous " +"backups may remain in the backup folder. Go to the file manager to delete " +"them." + +#. Web Statistics +msgid "quota_sta2" +msgstr "Web Statistics" + +#. You cannot create more raw statistic set. +msgid "err_sta2_1" +msgstr "You cannot create more raw statistic set." + +#. There is currently no raw statistic set. +msgid "err_sta2_2" +msgstr "There is currently no raw statistic set." + +#. The requested raw statistic set has not been found. +msgid "err_sta2_3" +msgstr "The requested raw statistic set has not been found." + +#. File or folder name is incorrect +msgid "err_bro_1" +msgstr "File or folder name is incorrect" + +#. You cannot move or copy a file to the same folder +msgid "err_bro_2" +msgstr "You cannot move or copy a file to the same folder" + +#. If we manage your DNS
You can manage your mails elsewhere if you want +#. (MX field).
Write %s in this field if your mail +#. must be managed by %s
or put the IP address or name of the mail server +#. used to manage your mails.Warning : if you put nothing in this field, +#. your mails will be unavailable +msgid "help_dns_mx %s %s" +msgstr "" +"If we manage your DNS
You can manage your mails elsewhere if you want " +"(MX field).
Write %s in this field if your mail " +"must be managed by %s
or put the IP address or name of the mail server " +"used to manage your mails.Warning : if you put nothing in this field, " +"your mails will be unavailable" + +#. If we don't manage the DNS for this domain
do we manage your mails? +msgid "help_dns_mail" +msgstr "" +"If we don't manage the DNS for this domain
do we manage your mails?" + +#. If you want to delete the domain %s, click the button below.Warning : this +#. delete all the ftp, mails, mailing-lists ... associated with thisdomain and +#. all its subdomains! +msgid "help_domain_del %s" +msgstr "" +"If you want to delete the domain %s, click the button below.Warning : this " +"delete all the ftp, mails, mailing-lists ... associated with thisdomain and " +"all its subdomains!" + +#. You can create various databases
Click on 'SQL Admin' in the menu to +#. manage them
or use the table below to backup, retrieve or delete them: +msgid "help_sql_list_ok" +msgstr "" +"You can create various databases
Click on 'SQL Admin' in the menu to " +"manage them
or use the table below to backup, retrieve or delete them:" + +#. Your haven't created your main database yet, please enter a password to create it. +msgid "help_sql_list_no" +msgstr "" +"Your haven't created your main database yet, please enter a password to " +"create it." + +# $d,$m,$y,$h,$i,$hh,$am +# 1 2 3 4 5 6 7 +#. This is a date representation : parameters are the date as follow : +#. $d,$m,$y,$h,$i,$hh,$am +#. 1 2 3 4 5 6 7 +#. hh is the hour in 12 hours format, and am is 'am' or 'pm'. +#. eg: english : %3$d/%1$d/%2$d, at %6$d:%5$d %7$s +msgid "%3$d-%2$d-%1$d %4$d:%5$d" +msgstr "%2$d/%1$d/%3$d %6$d:%5$d %7$d" + +msgid "1 column, detailed" +msgstr "1 column, detailed" + +msgid "2 columns, short" +msgstr "2 columns, short" + +msgid "3 columns, short" +msgstr "3 columns, short" + +msgid "Go back to the file manager" +msgstr "Go back to the file manager" + +msgid "Edit the newly created file" +msgstr "Edit the newly created file" + +msgid "hlp_login" +msgstr "" + +msgid "err_admin_14" +msgstr "-- Program error -- The requested password policy does not exist!" + +msgid "err_admin_15" +msgstr "The password length is too short according to the password policy" + +msgid "err_admin_16" +msgstr "The password is too long according to the password policy" + +msgid "err_admin_17" +msgstr "" +"The password policy prevents you to use your login name inside your password" + +msgid "err_admin_18" +msgstr "Your password contains not enough different classes of character" + +msgid "err_hta_12" +msgstr "" +"Cannot write inside the requested folder. Please check your permissions." + +#, fuzzy +msgid "err_mail_16" +msgstr "ldap connexion impossible, please try again later." + +msgid "err_mysql_20" +msgstr "The password is mandatory" + +msgid "err_mysql_21" +msgstr "The username cannot be empty" + +msgid "err_bro_3" +msgstr "Cannot create the requested file. Please check permissions." + +# $d,$m,$y,$h,$i,$hh,$am +# 1 2 3 4 5 6 7 +msgid "%3$d-%2$d-%1$d" +msgstr "%2$d/%1$d/%3$d" + +msgid "AlternC's account password" +msgstr "AlternC's account password" + +msgid "POP/IMAP account passwords" +msgstr "POP/IMAP account passwords" + +msgid "Protected folders passwords" +msgstr "Protected folders passwords" + +#~ msgid "err_mem_13" +#~ msgstr "Your IP address is not allowed here." diff --git a/ssl/panel/locales/en_US/LC_MESSAGES/messages.po b/ssl/panel/locales/en_US/LC_MESSAGES/messages.po new file mode 100644 index 00000000..29020832 --- /dev/null +++ b/ssl/panel/locales/en_US/LC_MESSAGES/messages.po @@ -0,0 +1,4969 @@ +# English AlternC Translation +# Copyright (c) 2008 the AlternC Development Team +# +# $Id: admin.po,v 1.10 2004/11/01 15:55:44 anonymous Exp $ +msgid "" +msgstr "" +"Project-Id-Version: $Id: admin.po,v 1.10 2004/11/01 15:55:44 anonymous Exp " +"$\n" +"Report-Msgid-Bugs-To: i18n@alternc.org\n" +"POT-Creation-Date: 2013-10-18 15:42+0200\n" +"PO-Revision-Date: 2002-06-16 13:50CEST\n" +"Last-Translator: Benjamin Sonntag \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Emacs 21\n" + +#: ../../squirrelmail/alternc_changepass/change.php:39 +msgid "Can't connect to MySQL server on AlternC!" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:66 +msgid "Your new passwords are differents, pleasy try again." +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:72 +msgid "" +"Your account has not been found, please try again later or ask an " +"administrator." +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:75 +msgid "Your current password is incorrect, please try again." +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:88 +msgid "" +"Your password has been successfully changed. Don't forget to change it in " +"your mail software if you are using one (Outlook, Mozilla, Thunderbird, " +"Eudora ...)" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:111 +msgid "Changing your mail password" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:115 +msgid "Old Password:" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:120 +msgid "New Password:" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:124 +msgid "Verify New Password:" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:129 +msgid "Change my mail password" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/setup.php:21 +msgid "Change Password" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/setup.php:23 +msgid "Change the password of your email account." +msgstr "" + +#: ../admin/about.php:36 +msgid "About AlternC" +msgstr "" + +#: ../admin/about.php:37 +msgid "Hosting control panel" +msgstr "" + +#: ../admin/about.php:41 +msgid "" +"AlternC is an automatic hosting software suite. It features a PHP-based " +"administration interface and scripts that manage server configuration.
It manages, among others, email, Web, Web statistics, and mailing list " +"services. It is available in many languages. It is a free software " +"distributed under GPL license." +msgstr "" + +#: ../admin/about.php:47 +msgid "Official website: " +msgstr "" + +#: ../admin/about.php:48 +msgid "Developer website: " +msgstr "" + +#: ../admin/about.php:49 +msgid "Help: " +msgstr "" + +#: ../admin/about.php:57 +msgid "You are currently using AlternC " +msgstr "" + +#: ../admin/adm_add.php:36 ../admin/adm_db_servers.php:30 +#: ../admin/adm_deactivate.php:35 ../admin/adm_deactivate.php:52 +#: ../admin/adm_defquotas.php:35 ../admin/adm_dnsweberror.php:33 +#: ../admin/adm_doadd.php:26 ../admin/adm_dodefquotas.php:35 +#: ../admin/adm_dodel.php:33 ../admin/adm_dodel.php:52 +#: ../admin/adm_doedit.php:35 ../admin/adm_doedit.php:59 +#: ../admin/adm_domlock.php:33 ../admin/adm_doms.php:33 +#: ../admin/adm_doms_def_type.php:5 ../admin/adm_domstype.php:33 +#: ../admin/adm_domstypedoedit.php:4 ../admin/adm_domstypeedit.php:32 +#: ../admin/adm_domstyperegenerate.php:4 ../admin/adm_donosu.php:33 +#: ../admin/adm_dorenew.php:34 ../admin/adm_dorenew.php:45 +#: ../admin/adm_dosu.php:33 ../admin/adm_edit.php:36 ../admin/adm_edit.php:48 +#: ../admin/adm_email.php:30 ../admin/adm_list.php:32 ../admin/adm_list.php:58 +#: ../admin/adm_lockpanel.php:33 ../admin/adm_login.php:86 +#: ../admin/adm_login.php:93 ../admin/adm_mxaccount.php:33 +#: ../admin/adm_panel.php:33 ../admin/adm_passpolicy.php:30 +#: ../admin/adm_quotadoedit.php:33 ../admin/adm_quotaedit.php:34 +#: ../admin/adm_slavedns.php:33 ../admin/adm_tld.php:33 +#: ../admin/adm_tldadd.php:33 ../admin/adm_tlddoadd.php:33 +#: ../admin/adm_tlddoedit.php:39 ../admin/adm_tldedit.php:33 +#: ../admin/adm_update_domains.php:34 ../admin/adm_variables.php:33 +#: ../admin/dom_subdel.php:46 ../admin/dom_subdodel.php:47 +#: ../admin/dom_subdoedit.php:53 ../admin/dom_subedit.php:49 +#: ../admin/quotas_users.php:13 ../class/reset_stats_conf.php:6 +msgid "This page is restricted to authorized staff" +msgstr "" + +#: ../admin/adm_add.php:54 +msgid "New AlternC account" +msgstr "" + +#: ../admin/adm_add.php:64 ../admin/adm_edit.php:69 +#: ../admin/adm_quotaedit.php:68 ../admin/ftp_edit.php:71 +#: ../admin/ftp_list.php:72 ../admin/hta_adduser.php:54 +#: ../admin/hta_edit.php:61 ../admin/hta_edit.php:98 ../admin/index.php:89 +#: ../admin/piwik_userlist.php:79 ../admin/sql_users_add.php:59 +msgid "Username" +msgstr "" + +#: ../admin/adm_add.php:68 +msgid "Initial password" +msgstr "" + +#: ../admin/adm_add.php:72 ../admin/adm_edit.php:89 ../admin/ftp_edit.php:88 +#: ../admin/hta_adduser.php:62 ../admin/hta_edit.php:106 +#: ../admin/hta_edituser.php:63 ../admin/mail_edit.php:97 +#: ../admin/sql_users_add.php:67 ../admin/sql_users_password.php:63 +msgid "Confirm password" +msgstr "" + +#: ../admin/adm_add.php:76 +msgid "Can he change its password" +msgstr "" + +#: ../admin/adm_add.php:78 ../admin/adm_domstype.php:82 +#: ../admin/adm_domstype.php:83 ../admin/adm_domstype.php:84 +#: ../admin/adm_domstype.php:85 ../admin/adm_domstype.php:86 +#: ../admin/adm_edit.php:78 ../admin/adm_edit.php:95 +#: ../admin/adm_passpolicy.php:113 ../admin/adm_passpolicy.php:157 +#: ../admin/dom_edit.php:231 ../admin/dom_edit.php:254 +#: ../admin/dom_subdel.php:71 ../admin/mail_edit.php:90 +#: ../admin/mail_list.php:164 ../admin/sql_bck.php:94 ../class/m_bro.php:70 +msgid "No" +msgstr "" + +#: ../admin/adm_add.php:79 ../admin/adm_domstype.php:82 +#: ../admin/adm_domstype.php:83 ../admin/adm_domstype.php:84 +#: ../admin/adm_domstype.php:85 ../admin/adm_domstype.php:86 +#: ../admin/adm_edit.php:79 ../admin/adm_edit.php:96 +#: ../admin/adm_passpolicy.php:114 ../admin/adm_passpolicy.php:157 +#: ../admin/dom_edit.php:230 ../admin/dom_edit.php:253 +#: ../admin/dom_subdel.php:70 ../admin/mail_edit.php:91 +#: ../admin/mail_list.php:209 ../admin/mail_list.php:220 +#: ../admin/mail_list.php:231 ../admin/mail_list.php:249 +#: ../admin/mail_list.php:260 ../admin/mail_list.php:271 +#: ../admin/mail_list.php:282 ../admin/sql_bck.php:95 ../class/m_bro.php:70 +msgid "Yes" +msgstr "" + +#: ../admin/adm_add.php:83 ../admin/adm_edit.php:100 +msgid "Notes" +msgstr "" + +#: ../admin/adm_add.php:87 ../admin/adm_edit.php:104 +msgid "First Name" +msgstr "" + +#: ../admin/adm_add.php:87 ../admin/adm_edit.php:104 +msgid "Surname" +msgstr "" + +#: ../admin/adm_add.php:91 ../admin/adm_edit.php:108 +msgid "Email address" +msgstr "" + +#: ../admin/adm_add.php:95 ../admin/adm_dodefquotas.php:48 +#: ../admin/adm_dodefquotas.php:50 ../admin/adm_dodefquotas.php:57 +#: ../admin/adm_dodefquotas.php:59 ../admin/adm_edit.php:112 +msgid "Account type" +msgstr "" + +#: ../admin/adm_add.php:105 +msgid "Wich database server for this user ?" +msgstr "" + +#: ../admin/adm_add.php:107 +msgid "Warning: you can't change it after the creation of the user." +msgstr "" + +#: ../admin/adm_add.php:124 +#, php-format +msgid "Install the domain" +msgstr "" + +#: ../admin/adm_add.php:140 +msgid "Create this AlternC account" +msgstr "" + +#: ../admin/adm_add.php:141 ../admin/adm_deactivate.php:75 +#: ../admin/adm_domstypeedit.php:134 ../admin/adm_edit.php:124 +#: ../admin/adm_quotaedit.php:88 ../admin/adm_tldadd.php:71 +#: ../admin/adm_tldedit.php:70 ../admin/bro_pref.php:150 +#: ../admin/browseforfolder.php:146 ../admin/browseforfolder2.php:142 +#: ../admin/ftp_del.php:83 ../admin/ftp_edit.php:98 +#: ../admin/hta_adduser.php:68 ../admin/hta_dodeluser.php:65 +#: ../admin/hta_edit.php:113 ../admin/mail_edit.php:116 +#: ../admin/mail_manage_catchall.php:122 ../admin/piwik_site_dodel.php:71 +#: ../admin/piwik_user_dodel.php:69 ../admin/sql_bck.php:108 +#: ../admin/sql_users_add.php:73 ../admin/sql_users_password.php:69 +#: ../admin/sql_users_rights.php:104 +msgid "Cancel" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:31 ../admin/ip_main.php:50 +#: ../class/m_authip.php:40 +msgid "Access security" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:39 +msgid "" +"The IP and subnet you have here are allowed for ALL users and ALL usages" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:39 +msgid "Warning" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:44 +msgid "Add an IP" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:44 ../admin/ip_main.php:174 +msgid "Add my current IP" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:47 ../admin/ip_main.php:177 +msgid "Cancel edit" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:50 +msgid "" +"Enter here the IP address you want.
IPv4, IPv6 and subnet allowed" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:54 +msgid "Add a comment" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:57 ../admin/adm_doms_def_type.php:88 +#: ../admin/bro_editor.php:89 ../admin/ftp_edit.php:97 +#: ../admin/ip_main.php:135 ../admin/ip_main.php:186 +#: ../admin/mail_manage_catchall.php:121 +msgid "Save" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:64 +msgid "IP" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:64 +msgid "Informations" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:64 ../admin/adm_doms_def_type.php:48 +#: ../admin/dom_edit.php:130 ../admin/ip_main.php:146 +msgid "Type" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:82 ../admin/adm_domstype.php:74 +#: ../admin/adm_list.php:200 ../admin/adm_list.php:222 +#: ../admin/adm_list.php:251 ../admin/adm_passpolicy.php:151 +#: ../admin/adm_tld.php:80 ../admin/dom_edit.php:140 ../admin/ftp_list.php:78 +#: ../admin/ip_main.php:164 ../admin/mail_list.php:150 +msgid "Edit" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:83 ../admin/adm_doms_def_type.php:60 +#: ../admin/adm_mxaccount.php:83 ../admin/adm_slavedns.php:101 +#: ../admin/adm_slavedns.php:145 ../admin/bro_main.php:285 +#: ../admin/cron.php:54 ../admin/dom_edit.php:123 ../admin/dom_edit.php:146 +#: ../admin/ftp_del.php:82 ../admin/hta_dodeluser.php:64 +#: ../admin/ip_main.php:79 ../admin/ip_main.php:165 +#: ../admin/piwik_site_dodel.php:70 ../admin/piwik_sitelist.php:128 +#: ../admin/piwik_user_dodel.php:68 ../admin/piwik_userlist.php:87 +msgid "Delete" +msgstr "" + +#: ../admin/adm_db_servers.php:35 +msgid "List of the databases servers" +msgstr "" + +#: ../admin/adm_db_servers.php:42 +msgid "Here the list of the available databases servers." +msgstr "" + +#: ../admin/adm_db_servers.php:49 +msgid "ID" +msgstr "" + +#: ../admin/adm_db_servers.php:50 ../admin/adm_domstype.php:58 +#: ../admin/adm_domstypeedit.php:74 ../admin/ip_main.php:146 +#: ../admin/ip_main.php:181 ../admin/logs_list.php:53 +msgid "Name" +msgstr "" + +#: ../admin/adm_db_servers.php:51 ../admin/vm.php:77 +msgid "Hostname" +msgstr "" + +#: ../admin/adm_db_servers.php:52 ../admin/adm_mxaccount.php:78 +#: ../admin/adm_mxaccount.php:95 ../admin/adm_slavedns.php:140 +#: ../admin/adm_slavedns.php:158 ../admin/sql_getparam.php:70 +msgid "Login" +msgstr "" + +#: ../admin/adm_db_servers.php:53 +msgid "Client" +msgstr "" + +#: ../admin/adm_db_servers.php:54 +msgid "Users" +msgstr "" + +#: ../admin/adm_db_servers.php:71 +msgid "To add a database server, do an INSERT into the db_servers table" +msgstr "" + +#: ../admin/adm_db_servers.php:74 +msgid "" +"To update the list of the server on the PhpMyAdmin login page, launch " +"alternc.install" +msgstr "" + +#: ../admin/adm_deactivate.php:46 ../class/m_admin.php:208 +#: ../class/m_admin.php:234 ../class/m_admin.php:680 ../class/m_admin.php:704 +#: ../class/m_admin.php:728 ../class/m_admin.php:772 ../class/m_admin.php:797 +#: ../class/m_admin.php:821 ../class/m_admin.php:894 ../class/m_admin.php:916 +msgid "Account not found" +msgstr "" + +#: ../admin/adm_deactivate.php:58 +msgid "User does not exist" +msgstr "" + +#: ../admin/adm_deactivate.php:63 ../admin/adm_deactivate.php:74 +msgid "Confirm" +msgstr "" + +#: ../admin/adm_deactivate.php:67 +msgid "WARNING: experimental feature, use at your own risk" +msgstr "" + +#: ../admin/adm_deactivate.php:68 +msgid "" +"The following domains will be deactivated and redirected to the URL entered " +"in the following box. A backup of the domain configuration will be displayed " +"as a serie of SQL request that you can run to restore the current " +"configuration if you want. Click confirm if you are sure you want to " +"deactivate all this user's domains." +msgstr "" + +#: ../admin/adm_deactivate.php:73 +msgid "Redirection URL:" +msgstr "" + +#: ../admin/adm_deactivate.php:78 +msgid "Domains of user: " +msgstr "" + +#: ../admin/adm_deactivate.php:81 +msgid "Missing redirect url." +msgstr "" + +#: ../admin/adm_deactivate.php:99 +#, php-format +msgid "-- Redirecting all domains and subdomains of the user %s to %s\n" +msgstr "" + +#: ../admin/adm_defquotas.php:46 ../admin/adm_panel.php:54 +msgid "Change the default quotas" +msgstr "" + +#: ../admin/adm_defquotas.php:52 +msgid "User's quotas synchronised" +msgstr "" + +#: ../admin/adm_defquotas.php:65 +msgid "Add account type" +msgstr "" + +#: ../admin/adm_defquotas.php:83 +msgid "Delete account type" +msgstr "" + +#: ../admin/adm_defquotas.php:88 +msgid "" +"Here is the list of the quotas on the server for the new accounts. If you " +"want to change them, enter new values" +msgstr "" + +#: ../admin/adm_defquotas.php:90 +msgid "Synchronise user's quota (only to upper value)" +msgstr "" + +#: ../admin/adm_defquotas.php:102 +msgid "Accounts of type" +msgstr "" + +#: ../admin/adm_defquotas.php:104 +msgid "Default Value" +msgstr "" + +#: ../admin/adm_defquotas.php:104 ../admin/adm_list.php:159 +#: ../admin/adm_list.php:203 ../admin/adm_list.php:223 +#: ../admin/adm_list.php:253 +msgid "Quotas" +msgstr "" + +#: ../admin/adm_defquotas.php:124 +msgid "Edit the default quotas" +msgstr "" + +#: ../admin/adm_dnsweberror.php:40 +msgid "Domains and Websites having errors" +msgstr "" + +#: ../admin/adm_dnsweberror.php:50 +msgid "List of the websites having errors in the domain database." +msgstr "" + +#: ../admin/adm_dnsweberror.php:53 ../admin/adm_dnsweberror.php:83 +msgid "Uid" +msgstr "" + +#: ../admin/adm_dnsweberror.php:54 ../admin/adm_dnsweberror.php:84 +#: ../admin/adm_list.php:155 ../admin/adm_list.php:233 +#: ../admin/adm_list.php:234 ../admin/adm_list.php:235 +#: ../admin/quotas_users.php:169 +msgid "Account" +msgstr "" + +#: ../admin/adm_dnsweberror.php:55 ../admin/adm_dnsweberror.php:85 +#: ../admin/dom_add.php:57 ../class/m_dom.php:1757 +msgid "Domain name" +msgstr "" + +#: ../admin/adm_dnsweberror.php:56 +msgid "FQDN" +msgstr "" + +#: ../admin/adm_dnsweberror.php:57 ../admin/adm_variables.php:57 +msgid "Value" +msgstr "" + +#: ../admin/adm_dnsweberror.php:58 ../admin/adm_domstype.php:59 +#: ../admin/adm_domstypeedit.php:78 +msgid "Description" +msgstr "" + +#: ../admin/adm_dnsweberror.php:59 +msgid "Web Result field" +msgstr "" + +#: ../admin/adm_dnsweberror.php:80 +msgid "List of the domain names having errors in the domain database." +msgstr "" + +#: ../admin/adm_dnsweberror.php:86 +msgid "DNS Result field" +msgstr "" + +#: ../admin/adm_doadd.php:53 ../admin/adm_doedit.php:64 +#: ../admin/ftp_doedit.php:44 ../admin/hta_doadduser.php:41 +#: ../admin/hta_doedituser.php:42 ../admin/mail_doedit.php:57 +msgid "Passwords do not match" +msgstr "" + +#: ../admin/adm_doadd.php:65 +msgid "The new member has been successfully created" +msgstr "" + +#: ../admin/adm_dodefquotas.php:48 +msgid "added" +msgstr "" + +#: ../admin/adm_dodefquotas.php:50 +msgid "could not be added" +msgstr "" + +#: ../admin/adm_dodefquotas.php:57 +msgid "deleted" +msgstr "" + +#: ../admin/adm_dodefquotas.php:59 +msgid "could not be deleted" +msgstr "" + +#: ../admin/adm_dodefquotas.php:66 +#, php-format +msgid "Deleting quota %s" +msgstr "" + +#: ../admin/adm_dodefquotas.php:72 +msgid "WARNING: Confirm the deletion of the quota" +msgstr "" + +#: ../admin/adm_dodefquotas.php:75 +msgid "Yes, delete this default quota" +msgstr "" + +#: ../admin/adm_dodefquotas.php:76 +msgid "No, don't delete this default quota" +msgstr "" + +#: ../admin/adm_dodefquotas.php:94 +msgid "Default quotas successfully changed" +msgstr "" + +#: ../admin/adm_dodefquotas.php:96 +msgid "Default quotas could not be set." +msgstr "" + +#: ../admin/adm_dodel.php:56 +#, php-format +msgid "Member '%s' does not exist" +msgstr "" + +#: ../admin/adm_dodel.php:58 +#, php-format +msgid "Member %s successfully deleted" +msgstr "" + +#: ../admin/adm_dodel.php:65 +msgid "Please check the accounts you want to delete" +msgstr "" + +#: ../admin/adm_dodel.php:73 +#, php-format +msgid "Deleting users" +msgstr "" + +#: ../admin/adm_dodel.php:77 +msgid "WARNING : Confirm the deletion of the users" +msgstr "" + +#: ../admin/adm_dodel.php:87 +msgid "Yes, delete those accounts" +msgstr "" + +#: ../admin/adm_dodel.php:88 +msgid "No, don't delete those accounts" +msgstr "" + +#: ../admin/adm_doedit.php:77 +msgid "The member has been successfully edited" +msgstr "" + +#: ../admin/adm_doms.php:40 ../admin/adm_panel.php:53 +msgid "Manage installed domains" +msgstr "" + +#: ../admin/adm_doms.php:59 +msgid "" +"Here is the list of the domains installed on this server. You can remove a " +"domain if it does not exist or does not point to our server anymore. You can " +"also set the 'Lock' flag on a domain so that the user will not be able to " +"change any DNS parameter or delete this domain from his account." +msgstr "" + +#: ../admin/adm_doms.php:62 +msgid "" +"The domain OK column are green when the domain exists in the worldwide " +"registry and has a proper NS,MX and IP depending on its configuration. It is " +"red if we have serious doubts about its NS, MX or IP configuration. Contact " +"the user of this domain or a system administrator." +msgstr "" + +#: ../admin/adm_doms.php:65 +msgid "If you want to force the check of NS, MX, IP on domains, click the link" +msgstr "" + +#: ../admin/adm_doms.php:65 +msgid "Show domain list with refreshed checked NS, MX, IP information" +msgstr "" + +#: ../admin/adm_doms.php:69 ../admin/adm_mxaccount.php:78 +#: ../admin/adm_slavedns.php:95 ../admin/adm_slavedns.php:140 +msgid "Action" +msgstr "" + +#: ../admin/adm_doms.php:69 ../admin/adm_doms.php:85 ../admin/adm_list.php:196 +#: ../admin/adm_list.php:221 ../admin/adm_list.php:250 +msgid "Connect as" +msgstr "" + +#: ../admin/adm_doms.php:69 +msgid "Creator" +msgstr "" + +#: ../admin/adm_doms.php:69 +msgid "Domain" +msgstr "" + +#: ../admin/adm_doms.php:69 +msgid "OK?" +msgstr "" + +#: ../admin/adm_doms.php:69 ../admin/dom_edit.php:130 +msgid "Status" +msgstr "" + +#: ../admin/adm_doms.php:76 +msgid "Locked Domain" +msgstr "" + +#: ../admin/adm_doms.php:79 +msgid "Lock" +msgstr "" + +#: ../admin/adm_doms.php:79 +msgid "Unlock" +msgstr "" + +#: ../admin/adm_doms_def_type.php:12 ../admin/adm_panel.php:66 +msgid "Manage defaults domains type" +msgstr "" + +#: ../admin/adm_doms_def_type.php:14 ../admin/adm_domstype.php:42 +msgid "" +"If you don't know what this page is about, don't touch anything, and read " +"AlternC documentation about domain types" +msgstr "" + +#: ../admin/adm_doms_def_type.php:15 +msgid "" +"The Type column contains a type of available VirtualHost config on The " +"server." +msgstr "" + +#: ../admin/adm_doms_def_type.php:16 +msgid "" +"The Setting column contains the variables to be expanded in the defaults " +"configuration. Available values are: " +msgstr "" + +#: ../admin/adm_doms_def_type.php:18 +#, php-format +msgid "%%DOMAIN%% : the Domain name" +msgstr "" + +#: ../admin/adm_doms_def_type.php:19 +#, php-format +msgid "%%TARGETDOM%%: The destination domain" +msgstr "" + +#: ../admin/adm_doms_def_type.php:20 +#, php-format +msgid "%%SUB%% : The subdomain name" +msgstr "" + +#: ../admin/adm_doms_def_type.php:21 +#, php-format +msgid "%%DOMAINDIR%%: the domain directory on the file system" +msgstr "" + +#: ../admin/adm_doms_def_type.php:38 +msgid "There was an error during the record." +msgstr "" + +#: ../admin/adm_doms_def_type.php:40 ../admin/cron.php:14 +msgid "Save done." +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +msgid "Activation" +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +msgid "Concerned" +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +msgid "Sub" +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +msgid "settings" +msgstr "" + +#: ../admin/adm_domstype.php:40 ../admin/adm_panel.php:67 +msgid "Manage domains type" +msgstr "" + +#: ../admin/adm_domstype.php:52 +msgid "Here is the list of domain types." +msgstr "" + +#: ../admin/adm_domstype.php:54 +msgid "Create a domain type" +msgstr "" + +#: ../admin/adm_domstype.php:60 +msgid "Target" +msgstr "" + +#: ../admin/adm_domstype.php:61 ../admin/adm_domstypeedit.php:92 +msgid "Entry" +msgstr "" + +#: ../admin/adm_domstype.php:62 +msgid "Compatible with" +msgstr "" + +#: ../admin/adm_domstype.php:62 ../admin/adm_domstypeedit.php:96 +msgid "Enter comma-separated name of other types" +msgstr "" + +#: ../admin/adm_domstype.php:63 +msgid "Enabled?" +msgstr "" + +#: ../admin/adm_domstype.php:64 +msgid "Only DNS?" +msgstr "" + +#: ../admin/adm_domstype.php:65 +msgid "Need to be DNS?" +msgstr "" + +#: ../admin/adm_domstype.php:66 +msgid "Advanced?" +msgstr "" + +#: ../admin/adm_domstype.php:67 ../admin/adm_domstypeedit.php:123 +msgid "Create tmp directory ?" +msgstr "" + +#: ../admin/adm_domstype.php:68 +msgid "create www directory ?" +msgstr "" + +#: ../admin/adm_domstype.php:75 +msgid "Regenerate" +msgstr "" + +#: ../admin/adm_domstypeedit.php:60 +msgid "Edit a domain type" +msgstr "" + +#: ../admin/adm_domstypeedit.php:82 +msgid "Target type" +msgstr "" + +#: ../admin/adm_domstypeedit.php:96 +msgid "Compatibility" +msgstr "" + +#: ../admin/adm_domstypeedit.php:100 ../admin/dom_edit.php:170 +#: ../admin/ftp_list.php:72 ../admin/ftp_list.php:82 +#: ../admin/mail_list.php:125 ../admin/mail_list.php:152 +msgid "Enabled" +msgstr "" + +#: ../admin/adm_domstypeedit.php:110 +msgid "Do only a DNS entry" +msgstr "" + +#: ../admin/adm_domstypeedit.php:114 +msgid "Domain must have our DNS" +msgstr "" + +#: ../admin/adm_domstypeedit.php:118 +msgid "Is it an advanced option?" +msgstr "" + +#: ../admin/adm_domstypeedit.php:128 +msgid "Create target directory ?" +msgstr "" + +#: ../admin/adm_domstypeedit.php:133 +msgid "Change this domain type" +msgstr "" + +#: ../admin/adm_donosu.php:45 +msgid "This account is now a normal account" +msgstr "" + +#: ../admin/adm_dorenew.php:53 +msgid "The member has been successfully renewed" +msgstr "" + +#: ../admin/adm_dosu.php:45 +msgid "This account is now an administrator account" +msgstr "" + +#: ../admin/adm_edit.php:57 +msgid "Member Edition" +msgstr "" + +#: ../admin/adm_edit.php:73 +msgid "Account Enabled?" +msgstr "" + +#: ../admin/adm_edit.php:76 +msgid "You cannot disable your own account." +msgstr "" + +#: ../admin/adm_edit.php:85 ../admin/adm_mxaccount.php:78 +#: ../admin/adm_mxaccount.php:95 ../admin/adm_slavedns.php:140 +#: ../admin/adm_slavedns.php:158 ../admin/cron.php:39 ../admin/ftp_edit.php:84 +#: ../admin/ftp_edit.php:92 ../admin/hta_adduser.php:58 +#: ../admin/hta_edit.php:102 ../admin/index.php:90 ../admin/mem_param.php:58 +#: ../admin/sql_getparam.php:74 ../admin/sql_users_add.php:63 +#: ../admin/sql_users_list.php:48 ../admin/sql_users_password.php:59 +msgid "Password" +msgstr "" + +#: ../admin/adm_edit.php:93 +msgid "Password change allowed?" +msgstr "" + +#: ../admin/adm_edit.php:116 +msgid "Reset quotas to default?" +msgstr "" + +#: ../admin/adm_edit.php:119 +msgid "Period" +msgstr "" + +#: ../admin/adm_edit.php:123 +msgid "Edit this account" +msgstr "" + +#: ../admin/adm_edit.php:137 +msgid "Renew for" +msgstr "" + +#: ../admin/adm_edit.php:138 +msgid "period(s)" +msgstr "" + +#: ../admin/adm_edit.php:141 +msgid "Renew" +msgstr "" + +#: ../admin/adm_edit.php:153 +msgid "This account is a super-admin account" +msgstr "" + +#: ../admin/adm_edit.php:157 +msgid "" +"There is only one administrator account, you cannot turn this account back " +"to normal" +msgstr "" + +#: ../admin/adm_edit.php:160 +msgid "Turn this account back to normal" +msgstr "" + +#: ../admin/adm_edit.php:163 +msgid "Make this account a super admin one" +msgstr "" + +#: ../admin/adm_edit.php:170 +#, php-format +msgid "Account created by %s" +msgstr "" + +#: ../admin/adm_email.php:43 ../admin/adm_panel.php:56 +msgid "Send an email to all members" +msgstr "" + +#: ../admin/adm_email.php:48 +msgid "The email was successfully sent" +msgstr "" + +#: ../admin/adm_email.php:50 +msgid "There was an error" +msgstr "" + +#: ../admin/adm_email.php:63 +msgid "From" +msgstr "" + +#: ../admin/adm_email.php:67 +msgid "Subject" +msgstr "" + +#: ../admin/adm_email.php:71 ../admin/mem_param.php:59 +msgid "Mail" +msgstr "" + +#: ../admin/adm_email.php:75 +msgid "Send" +msgstr "" + +#: ../admin/adm_list.php:70 +msgid "AlternC account list" +msgstr "" + +#: ../admin/adm_list.php:77 +msgid "Minimal view" +msgstr "" + +#: ../admin/adm_list.php:81 +msgid "Complete view" +msgstr "" + +#: ../admin/adm_list.php:87 +msgid "Filters" +msgstr "" + +#: ../admin/adm_list.php:90 +msgid "Search for a Login" +msgstr "" + +#: ../admin/adm_list.php:91 +msgid "Search for a Domain" +msgstr "" + +#: ../admin/adm_list.php:92 ../admin/piwik_sitelist.php:170 +msgid "submit" +msgstr "" + +#: ../admin/adm_list.php:100 +msgid "List all AlternC accounts" +msgstr "" + +#: ../admin/adm_list.php:110 +msgid "Or only the accounts of:" +msgstr "" + +#: ../admin/adm_list.php:115 +msgid "List only my accounts" +msgstr "" + +#: ../admin/adm_list.php:129 +#, php-format +msgid "%s accounts" +msgstr "" + +#: ../admin/adm_list.php:129 +msgid "Here is the list of hosted AlternC accounts" +msgstr "" + +#: ../admin/adm_list.php:132 +msgid "Create a new AlternC account" +msgstr "" + +#: ../admin/adm_list.php:136 +msgid "No account defined for now" +msgstr "" + +#: ../admin/adm_list.php:149 ../admin/adm_list.php:227 +#: ../admin/adm_list.php:264 ../admin/ftp_list.php:101 +msgid "Delete checked accounts" +msgstr "" + +#: ../admin/adm_list.php:156 +msgid "Manager" +msgstr "" + +#: ../admin/adm_list.php:157 +msgid "Created by" +msgstr "" + +#: ../admin/adm_list.php:158 +msgid "Created on" +msgstr "" + +#: ../admin/adm_list.php:160 +msgid "Last login" +msgstr "" + +#: ../admin/adm_list.php:161 +msgid "Last ip" +msgstr "" + +#: ../admin/adm_list.php:162 +msgid "Fails" +msgstr "" + +#: ../admin/adm_list.php:163 ../admin/main.php:87 +msgid "Expiry" +msgstr "" + +#: ../admin/adm_list.php:181 +msgid "Send an email" +msgstr "" + +#: ../admin/adm_list.php:183 ../admin/mail_list.php:167 +#, php-format +msgid "%3$d-%2$d-%1$d" +msgstr "" + +#: ../admin/adm_list.php:192 +msgid "DB:" +msgstr "" + +#: ../admin/adm_list.php:207 ../admin/dom_edit.php:171 +msgid "Disable" +msgstr "" + +#: ../admin/adm_list.php:221 ../admin/adm_list.php:250 +msgid "C" +msgstr "" + +#: ../admin/adm_list.php:222 ../admin/adm_list.php:251 +msgid "E" +msgstr "" + +#: ../admin/adm_list.php:223 ../admin/adm_list.php:253 +msgid "Q" +msgstr "" + +#: ../admin/adm_list.php:255 +msgid "himself" +msgstr "" + +#: ../admin/adm_list.php:257 +#, php-format +msgid "Creator: %s" +msgstr "" + +#: ../admin/adm_login.php:49 ../admin/adm_login.php:56 +msgid "Your authentication information are incorrect" +msgstr "" + +#: ../admin/adm_login.php:62 +msgid "Your IP is incorrect." +msgstr "" + +#: ../admin/adm_login.php:118 +msgid "Member login" +msgstr "" + +#: ../admin/adm_mxaccount.php:47 ../admin/adm_slavedns.php:51 +msgid "The requested account has been deleted. It is now denied." +msgstr "" + +#: ../admin/adm_mxaccount.php:53 ../admin/adm_slavedns.php:57 +msgid "The requested account address has been created. It is now allowed." +msgstr "" + +#: ../admin/adm_mxaccount.php:60 ../admin/adm_panel.php:64 +msgid "Manage allowed accounts for secondary mx" +msgstr "" + +#: ../admin/adm_mxaccount.php:74 +msgid "" +"Here is the list of the allowed accounts for secondary mx management. You " +"can configure the alternc-secondarymx package on your secondary mx server " +"and give him the login/pass that will grant him access to your server's mx-" +"hosted domain list. " +msgstr "" + +#: ../admin/adm_mxaccount.php:92 +msgid "" +"If you want to allow a new server to access your mx-hosted domain list, give " +"him an account." +msgstr "" + +#: ../admin/adm_mxaccount.php:101 ../admin/adm_slavedns.php:163 +msgid "Add this account to the allowed list" +msgstr "" + +#: ../admin/adm_panel.php:40 ../class/m_admin.php:98 +msgid "Admin Control Panel" +msgstr "" + +#: ../admin/adm_panel.php:51 ../admin/adm_tld.php:56 +#: ../admin/adm_tldadd.php:46 ../admin/adm_tldedit.php:52 +msgid "Manage allowed domains (TLD)" +msgstr "" + +#: ../admin/adm_panel.php:52 +msgid "Password Policies" +msgstr "" + +#: ../admin/adm_panel.php:55 +msgid "Manage IP whitelist" +msgstr "" + +#: ../admin/adm_panel.php:60 +msgid "Advanced features" +msgstr "" + +#: ../admin/adm_panel.php:63 +msgid "Manage slave DNS" +msgstr "" + +#: ../admin/adm_panel.php:65 ../admin/adm_variables.php:47 +msgid "Configure AlternC variables" +msgstr "" + +#: ../admin/adm_panel.php:68 +msgid "DNS and website having errors" +msgstr "" + +#: ../admin/adm_panel.php:69 +msgid "Manage databases servers" +msgstr "" + +#: ../admin/adm_panel.php:70 +msgid "Account creation statistics" +msgstr "" + +#: ../admin/adm_panel.php:95 +msgid "Click here to unlock the panel and allow user to login." +msgstr "" + +#: ../admin/adm_panel.php:97 +msgid "Are you sure you want to kick everyone?" +msgstr "" + +#: ../admin/adm_panel.php:97 +msgid "Click here to lock the panel and force logout of all the user." +msgstr "" + +#: ../admin/adm_passpolicy.php:49 +msgid "Manage Password Policy" +msgstr "" + +#: ../admin/adm_passpolicy.php:63 ../admin/adm_passpolicy.php:78 +msgid "Policy not found" +msgstr "" + +#: ../admin/adm_passpolicy.php:67 +msgid "Policy changed" +msgstr "" + +#: ../admin/adm_passpolicy.php:71 +msgid "Cannot edit the policy, an error occurred" +msgstr "" + +#: ../admin/adm_passpolicy.php:82 +msgid "Please choose which policy you want to apply to this password kind:" +msgstr "" + +#: ../admin/adm_passpolicy.php:90 +msgid "Minimum Password Size:" +msgstr "" + +#: ../admin/adm_passpolicy.php:97 +msgid "Maximum Password Size:" +msgstr "" + +#: ../admin/adm_passpolicy.php:104 +msgid "In how many classes of characters must be the password (at least):" +msgstr "" + +#: ../admin/adm_passpolicy.php:111 +msgid "Do we allow the password to be like the login?" +msgstr "" + +#: ../admin/adm_passpolicy.php:117 +msgid "Apply this password policy" +msgstr "" + +#: ../admin/adm_passpolicy.php:118 +msgid "Cancel and go back to the policy list" +msgstr "" + +#: ../admin/adm_passpolicy.php:121 +msgid "" +"The classes of characters are :
1. Low-case letters (a-z)
2. " +"Upper-case letters (A-Z)
3. Figures (0-9)
4. Ascii symbols (!\"#$" +"%&'()*+,-./:;<=>?@[\\]^_`)
5. Non-Ascii symbols (accents...)" +msgstr "" + +#: ../admin/adm_passpolicy.php:134 +msgid "" +"Here is the list of the password policies for each place a password may be " +"needed in AlternC's services. For each of those password kind, you can " +"choose which policy will be applied to passwords. A policy is a minimum and " +"maximum password size, and how many classes of characters must appear in the " +"password. You can also forbid (or not) to use the login or part of it as a " +"password." +msgstr "" + +#: ../admin/adm_passpolicy.php:138 +msgid "Password Kind" +msgstr "" + +#: ../admin/adm_passpolicy.php:138 +msgid "Password Policy" +msgstr "" + +#: ../admin/adm_passpolicy.php:140 +msgid "Min Size" +msgstr "" + +#: ../admin/adm_passpolicy.php:141 +msgid "Max Size" +msgstr "" + +#: ../admin/adm_passpolicy.php:142 +msgid "Complexity" +msgstr "" + +#: ../admin/adm_passpolicy.php:143 +msgid "Allow Password=Login?" +msgstr "" + +#: ../admin/adm_quotadoedit.php:52 +msgid "The quotas has been successfully edited" +msgstr "" + +#: ../admin/adm_quotaedit.php:55 +msgid "Editing the quotas of a member" +msgstr "" + +#: ../admin/adm_quotaedit.php:69 ../admin/quota_show.php:46 +msgid "Quota" +msgstr "" + +#: ../admin/adm_quotaedit.php:69 ../admin/quota_show.php:46 +#: ../admin/quotas_oneuser.php:87 ../admin/quotas_users.php:154 +#: ../admin/quotas_users.php:178 +msgid "Total" +msgstr "" + +#: ../admin/adm_quotaedit.php:69 ../admin/quota_show.php:46 +msgid "Used" +msgstr "" + +#: ../admin/adm_quotaedit.php:87 +msgid "Edit the quotas" +msgstr "" + +#: ../admin/adm_slavedns.php:65 +msgid "" +"The requested ip address has been deleted. It will be denied in one hour." +msgstr "" + +#: ../admin/adm_slavedns.php:71 +msgid "" +"The requested ip address has been added to the list. It will be allowed in " +"one hour." +msgstr "" + +#: ../admin/adm_slavedns.php:83 +msgid "Manage allowed ip for slave zone transfers" +msgstr "" + +#: ../admin/adm_slavedns.php:91 +msgid "" +"Here is the list of the allowed ip or ip class for slave dns zone transfer " +"requests (AXFR). You must add the ip address of all the slave DNS you have " +"so that those slaves will be allowed to transfer the zone files. There is " +"also some defaults ip from DNS checks made by some third-party technical " +"offices such as afnic (for .fr domains)" +msgstr "" + +#: ../admin/adm_slavedns.php:95 ../admin/adm_slavedns.php:114 +msgid "IP Address" +msgstr "" + +#: ../admin/adm_slavedns.php:110 +msgid "" +"If you want to allow an ip address or class to connect to your dns server, " +"enter it here. Choose 32 as a prefix for single ip address." +msgstr "" + +#: ../admin/adm_slavedns.php:114 +msgid "Prefix" +msgstr "" + +#: ../admin/adm_slavedns.php:120 +msgid "Add this ip to the slave list" +msgstr "" + +#: ../admin/adm_slavedns.php:129 +msgid "Manage allowed accounts for slave zone transfers" +msgstr "" + +#: ../admin/adm_slavedns.php:137 +msgid "" +"Here is the list of the allowed accounts for slave dns synchronization. You " +"can configure the alternc-slavedns package on your slave server and give him " +"the login/pass that will grant him access to your server's domain list. " +msgstr "" + +#: ../admin/adm_slavedns.php:154 +msgid "" +"If you want to allow a new server to access your domain list, give him an " +"account." +msgstr "" + +#: ../admin/adm_slavedns.php:194 +msgid "Need open DNS Slave servers?" +msgstr "" + +#: ../admin/adm_slavedns.php:196 +msgid "We offer free of charge DNS servers for alternc users." +msgstr "" + +#: ../admin/adm_slavedns.php:197 +msgid "How does it work?" +msgstr "" + +#: ../admin/adm_slavedns.php:199 +#, php-format +msgid "" +"Give access to the alternc.net servers. Follow the " +"instructions on this page. They will help " +"you to configure this page and configure your alternc.net account." +msgstr "" + +#: ../admin/adm_slavedns.php:200 +#, php-format +msgid "" +"Subscribe to alternc.net. Go to the alternc.net site to " +"use the DNS servers provided for free by the AlternC association and enter " +"the required informations for each server you want to connect to the service." +msgstr "" + +#: ../admin/adm_slavedns.php:203 +msgid "" +"The alternc.net servers will take care of transfering and distributing to " +"the world your domains zones." +msgstr "" + +#: ../admin/adm_tld.php:47 +msgid "Some TLD cannot be deleted..." +msgstr "" + +#: ../admin/adm_tld.php:50 +msgid "The requested TLD has been deleted" +msgstr "" + +#: ../admin/adm_tld.php:68 +msgid "" +"Here is the list of the TLD allowed on this server. Each TLD can be allowed " +"or denied after some checks (whois, ns, domain exists...)" +msgstr "" + +#: ../admin/adm_tld.php:70 ../admin/adm_tld.php:91 ../admin/adm_tldadd.php:56 +#: ../admin/adm_tldadd.php:70 +msgid "Add a new TLD" +msgstr "" + +#: ../admin/adm_tld.php:73 ../admin/adm_tldadd.php:66 +#: ../admin/adm_tldedit.php:65 +msgid "Allowed Mode" +msgstr "" + +#: ../admin/adm_tld.php:73 ../admin/adm_tldadd.php:65 +#: ../admin/adm_tldedit.php:64 +msgid "TLD" +msgstr "" + +#: ../admin/adm_tld.php:87 +msgid "Delete the checked TLD" +msgstr "" + +#: ../admin/adm_tldadd.php:58 +msgid "" +"Enter the new TLD (without the first dot) and choose what check should be " +"done." +msgstr "" + +#: ../admin/adm_tldadd.php:59 +msgid "" +"Warning : only some final tld are known in the whois function of AlternC, " +"please check m_dom.php accordingly." +msgstr "" + +#: ../admin/adm_tlddoadd.php:49 +msgid "The TLD has been successfully added" +msgstr "" + +#: ../admin/adm_tlddoedit.php:48 +msgid "The TLD has been successfully edited" +msgstr "" + +#: ../admin/adm_tldedit.php:60 +msgid "Edit a TLD" +msgstr "" + +#: ../admin/adm_tldedit.php:69 +msgid "Edit this TLD" +msgstr "" + +#: ../admin/adm_update_domains.php:40 +msgid "Missing INOTIFY_UPDATE_DOMAIN var in /etc/alternc/local.sh . Fix it!" +msgstr "" + +#: ../admin/adm_variables.php:52 +msgid "Here are the internal AlternC variables that are currently being used." +msgstr "" + +#: ../admin/adm_variables.php:57 +msgid "Comment" +msgstr "" + +#: ../admin/adm_variables.php:57 +msgid "Names" +msgstr "" + +#: ../admin/adm_variables.php:69 +msgid "Save variables" +msgstr "" + +#: ../admin/bro_editor.php:54 ../admin/bro_editor.php:63 +#: ../admin/bro_main.php:355 ../admin/bro_main.php:395 +#, php-format +msgid "%3$d-%2$d-%1$d %4$d:%5$d" +msgstr "" + +#: ../admin/bro_editor.php:54 ../admin/bro_editor.php:63 +#, php-format +msgid "Your file %s has been saved" +msgstr "" + +#: ../admin/bro_editor.php:74 +msgid "File editing" +msgstr "" + +#: ../admin/bro_editor.php:80 +msgid "This file is empty" +msgstr "" + +#: ../admin/bro_editor.php:90 +msgid "Save & Quit" +msgstr "" + +#: ../admin/bro_editor.php:91 +msgid "Quit" +msgstr "" + +#: ../admin/bro_main.php:91 +#, php-format +msgid "Deleting files and/or directories" +msgstr "" + +#: ../admin/bro_main.php:96 +msgid "WARNING: Confirm the deletion of this files" +msgstr "" + +#: ../admin/bro_main.php:105 +msgid "Yes, delete those files/folders" +msgstr "" + +#: ../admin/bro_main.php:106 +msgid "No, don't delete those files/folders" +msgstr "" + +#: ../admin/bro_main.php:144 +msgid "extracting..." +msgstr "" + +#: ../admin/bro_main.php:148 +msgid "failed" +msgstr "" + +#: ../admin/bro_main.php:151 +msgid "done" +msgstr "" + +#: ../admin/bro_main.php:156 ../class/m_bro.php:76 +msgid "File browser" +msgstr "" + +#: ../admin/bro_main.php:163 +msgid "Path" +msgstr "" + +#: ../admin/bro_main.php:185 +msgid "Send one file:" +msgstr "" + +#: ../admin/bro_main.php:189 +msgid "Send this file" +msgstr "" + +#: ../admin/bro_main.php:190 +#, php-format +msgid "Warning: max size: %s" +msgstr "" + +#: ../admin/bro_main.php:197 +msgid "New file or folder:" +msgstr "" + +#: ../admin/bro_main.php:202 ../admin/piwik_sitelist.php:86 +#: ../admin/piwik_userlist.php:44 ../admin/piwik_userlist.php:56 +msgid "Create" +msgstr "" + +#: ../admin/bro_main.php:204 ../admin/bro_main.php:244 +msgid "File" +msgstr "" + +#: ../admin/bro_main.php:205 ../admin/bro_main.php:397 +#: ../admin/ftp_edit.php:75 ../admin/ftp_list.php:72 ../admin/hta_add.php:55 +#: ../admin/hta_adduser.php:50 ../admin/hta_edit.php:94 +#: ../admin/hta_edituser.php:51 ../admin/hta_list.php:68 +msgid "Folder" +msgstr "" + +#: ../admin/bro_main.php:222 ../admin/bro_main.php:228 +#: ../admin/bro_main.php:286 +msgid "Rename" +msgstr "" + +#: ../admin/bro_main.php:238 ../admin/bro_main.php:244 +#: ../admin/bro_main.php:287 +msgid "Permissions" +msgstr "" + +#: ../admin/bro_main.php:258 +msgid "write" +msgstr "" + +#: ../admin/bro_main.php:266 +msgid "Change permissions" +msgstr "" + +#: ../admin/bro_main.php:289 +msgid "Copy" +msgstr "" + +#: ../admin/bro_main.php:290 +msgid "Move" +msgstr "" + +#: ../admin/bro_main.php:291 +msgid "To" +msgstr "" + +#: ../admin/bro_main.php:302 +msgid "Please select a destination folder" +msgstr "" + +#: ../admin/bro_main.php:328 +msgid "Filename" +msgstr "" + +#: ../admin/bro_main.php:329 ../admin/logs_list.php:53 +#: ../admin/sql_list.php:54 +msgid "Size" +msgstr "" + +#: ../admin/bro_main.php:330 +msgid "Last modification" +msgstr "" + +#: ../admin/bro_main.php:332 +msgid "File Type" +msgstr "" + +#: ../admin/bro_main.php:361 ../admin/bro_main.php:542 +#: ../admin/dom_edit.php:121 +msgid "View" +msgstr "" + +#: ../admin/bro_main.php:368 +msgid "Extract" +msgstr "" + +#: ../admin/bro_main.php:374 ../admin/bro_main.php:376 +msgid "Restore SQL" +msgstr "" + +#: ../admin/bro_main.php:376 +msgid "In which database to you want to restore this dump?" +msgstr "" + +#: ../admin/bro_main.php:381 +msgid "Restore it" +msgstr "" + +#: ../admin/bro_main.php:422 ../admin/bro_main.php:450 +#: ../admin/bro_main.php:485 ../admin/bro_main.php:513 +msgid "V" +msgstr "" + +#: ../admin/bro_main.php:568 +msgid "No files in this folder" +msgstr "" + +#: ../admin/bro_main.php:578 +msgid "(slow)" +msgstr "" + +#: ../admin/bro_main.php:578 +msgid "Show size of directories" +msgstr "" + +#: ../admin/bro_main.php:582 +msgid "Edit this folder's protection" +msgstr "" + +#: ../admin/bro_main.php:585 ../admin/hta_add.php:62 +msgid "Protect this folder" +msgstr "" + +#: ../admin/bro_main.php:587 +msgid "with a login and a password" +msgstr "" + +#: ../admin/bro_main.php:590 +msgid "Download this folder" +msgstr "" + +#: ../admin/bro_main.php:592 +#, php-format +msgid "as a %s file" +msgstr "" + +#: ../admin/bro_main.php:599 +msgid "Edit the ftp account" +msgstr "" + +#: ../admin/bro_main.php:600 +msgid "that exists in this folder" +msgstr "" + +#: ../admin/bro_main.php:606 +msgid "Create an ftp account in this folder" +msgstr "" + +#: ../admin/bro_main.php:615 +msgid "Configure the file editor" +msgstr "" + +#: ../admin/bro_pref.php:49 +msgid "Your preferences have been updated." +msgstr "" + +#: ../admin/bro_pref.php:59 +msgid "File browser preferences" +msgstr "" + +#: ../admin/bro_pref.php:66 +msgid "Horizontal window size" +msgstr "" + +#: ../admin/bro_pref.php:74 +msgid "Vertical window size" +msgstr "" + +#: ../admin/bro_pref.php:82 +msgid "File editor font name" +msgstr "" + +#: ../admin/bro_pref.php:90 +msgid "File editor font size" +msgstr "" + +#: ../admin/bro_pref.php:98 +msgid "File list view" +msgstr "" + +#: ../admin/bro_pref.php:106 +msgid "Downloading file format" +msgstr "" + +#: ../admin/bro_pref.php:114 +msgid "What to do after creating a file" +msgstr "" + +#: ../admin/bro_pref.php:122 +msgid "Show icons?" +msgstr "" + +#: ../admin/bro_pref.php:130 +msgid "Show file types?" +msgstr "" + +#: ../admin/bro_pref.php:138 +msgid "Remember last visited directory?" +msgstr "" + +#: ../admin/bro_pref.php:149 +msgid "Change my settings" +msgstr "" + +#: ../admin/browseforfolder.php:125 ../admin/browseforfolder2.php:120 +msgid "Searching for a folder" +msgstr "" + +#: ../admin/browseforfolder.php:131 ../admin/browseforfolder2.php:126 +msgid "Error, cannot find this folder" +msgstr "" + +#: ../admin/browseforfolder.php:133 ../admin/browseforfolder2.php:128 +msgid "Back to the root folder" +msgstr "" + +#: ../admin/browseforfolder.php:145 ../admin/browseforfolder2.php:141 +msgid "Select" +msgstr "" + +#: ../admin/cron.php:21 ../class/m_cron.php:72 ../class/m_cron.php:181 +msgid "Scheduled tasks" +msgstr "" + +#: ../admin/cron.php:36 +msgid "URL" +msgstr "" + +#: ../admin/cron.php:37 +msgid "Schedule" +msgstr "" + +#: ../admin/cron.php:38 ../admin/hta_edituser.php:55 +#: ../admin/sql_users_list.php:48 +msgid "User" +msgstr "" + +#: ../admin/cron.php:40 +msgid "Email report" +msgstr "" + +#: ../admin/cron.php:57 +msgid "Called URL" +msgstr "" + +#: ../admin/cron.php:60 +msgid "Period:" +msgstr "" + +#: ../admin/cron.php:72 +msgid "Next execution: " +msgstr "" + +#: ../admin/cron.php:75 +msgid "HTTP user (optional)" +msgstr "" + +#: ../admin/cron.php:76 +msgid "HTTP password (optional)" +msgstr "" + +#: ../admin/cron.php:77 +msgid "Mail address (optional)" +msgstr "" + +#: ../admin/cron.php:81 +msgid "Apply the modifications" +msgstr "" + +#: ../admin/dom_add.php:45 +msgid "Domain hosting" +msgstr "" + +#: ../admin/dom_add.php:49 +msgid "Contact your administrator for more information." +msgstr "" + +#: ../admin/dom_add.php:49 +msgid "You cannot add any new domain, your quota is over." +msgstr "" + +#: ../admin/dom_add.php:57 +msgid "Advanced import" +msgstr "" + +#: ../admin/dom_add.php:60 +msgid "host my dns here" +msgstr "" + +#: ../admin/dom_add.php:68 +msgid "" +"Do you want to point this domain to another domain already installed in your " +"account?" +msgstr "" + +#: ../admin/dom_add.php:71 +msgid "No: This domain will have its own folder." +msgstr "" + +#: ../admin/dom_add.php:73 +msgid "Yes, redirect this new domain to this one:" +msgstr "" + +#: ../admin/dom_add.php:74 +msgid "-- Choose a domain --" +msgstr "" + +#: ../admin/dom_add.php:87 +msgid "Add this domain" +msgstr "" + +#: ../admin/dom_add.php:91 +msgid "" +"If you don't want to host in our server the DNS of your domain, don't check " +"the box 'host my dns here'. If you don't know what it mean, leave it checked." +msgstr "" + +#: ../admin/dom_add.php:96 ../admin/dom_doadd.php:60 +msgid "Whois result on the domain" +msgstr "" + +#: ../admin/dom_dnsdump.php:9 +msgid "Error: no domain" +msgstr "" + +#: ../admin/dom_doadd.php:52 ../class/m_dom.php:104 +msgid "Add a domain" +msgstr "" + +#: ../admin/dom_doadd.php:54 +#, php-format +msgid "Your new domain %s has been successfully installed" +msgstr "" + +#: ../admin/dom_doadd.php:55 ../admin/dom_dodel.php:56 +#: ../admin/dom_dodel.php:86 ../admin/dom_editdns.php:62 +#: ../admin/dom_import.php:87 ../admin/dom_subdodel.php:79 +#: ../admin/hta_doedituser.php:62 +msgid "Click here to continue" +msgstr "" + +#: ../admin/dom_dodel.php:54 +msgid "Deletion have been successfully cancelled" +msgstr "" + +#: ../admin/dom_dodel.php:64 ../admin/dom_dodel.php:67 +#, php-format +msgid "Confirm the deletion of domain %s" +msgstr "" + +#: ../admin/dom_dodel.php:67 ../admin/sql_del.php:75 +#: ../admin/sql_users_del.php:61 +msgid "WARNING" +msgstr "" + +#: ../admin/dom_dodel.php:69 +msgid "This will delete the related sub-domains too." +msgstr "" + +#: ../admin/dom_dodel.php:74 +msgid "Yes, delete this domain name" +msgstr "" + +#: ../admin/dom_dodel.php:75 +msgid "No, don't delete this domain name" +msgstr "" + +#: ../admin/dom_dodel.php:81 +#, php-format +msgid "Domain %s deleted" +msgstr "" + +#: ../admin/dom_dodel.php:85 +#, php-format +msgid "The domain %s has been successfully deleted." +msgstr "" + +#: ../admin/dom_edit.inc.php:40 +msgid "Edit a subdomain:" +msgstr "" + +#: ../admin/dom_edit.inc.php:42 +msgid "Create a subdomain:" +msgstr "" + +#: ../admin/dom_edit.inc.php:63 +msgid "Show advanced options" +msgstr "" + +#: ../admin/dom_edit.inc.php:64 +msgid "Hide advanced options" +msgstr "" + +#: ../admin/dom_edit.inc.php:88 +msgid "(enter an URL here)" +msgstr "" + +#: ../admin/dom_edit.inc.php:92 +msgid "(enter an IPv4 address, for example 192.168.1.2)" +msgstr "" + +#: ../admin/dom_edit.inc.php:96 +msgid "(enter an IPv6 address, for example 2001:0910::0)" +msgstr "" + +#: ../admin/dom_edit.inc.php:100 +msgid "(enter a TXT content for this domain)" +msgstr "" + +#: ../admin/dom_edit.inc.php:104 +msgid "(enter a domain name or subdomain)" +msgstr "" + +#: ../admin/dom_edit.inc.php:114 +msgid "Edit this subdomain" +msgstr "" + +#: ../admin/dom_edit.inc.php:116 +msgid "Add this subdomain" +msgstr "" + +#: ../admin/dom_edit.inc.php:135 +msgid "Missing value for this sub-domain" +msgstr "" + +#: ../admin/dom_edit.inc.php:141 +msgid "Please select a type for this sub-domain" +msgstr "" + +#: ../admin/dom_edit.php:80 +msgid "" +"Are you sure you want to do this? This will DELETE ALL the mailboxes, " +"messages and aliases on this domain ?" +msgstr "" + +#: ../admin/dom_edit.php:91 +#, php-format +msgid "Manage %s" +msgstr "" + +#: ../admin/dom_edit.php:96 +msgid "This domain have some DNS change pending. Please wait." +msgstr "" + +#: ../admin/dom_edit.php:99 +#, php-format +msgid "You requested deletion of domain %s." +msgstr "" + +#: ../admin/dom_edit.php:117 +msgid "Edit subdomains" +msgstr "" + +#: ../admin/dom_edit.php:118 +msgid "Add subdomains" +msgstr "" + +#: ../admin/dom_edit.php:119 ../class/m_mem.php:63 +msgid "Settings" +msgstr "" + +#: ../admin/dom_edit.php:128 +#, php-format +msgid "Editing subdomains of %s" +msgstr "" + +#: ../admin/dom_edit.php:130 +msgid "Subdomain" +msgstr "" + +#: ../admin/dom_edit.php:153 +msgid "ERROR, please check your server setup" +msgstr "" + +#: ../admin/dom_edit.php:160 ../admin/ftp_list.php:94 +msgid "Directory not found" +msgstr "" + +#: ../admin/dom_edit.php:174 +msgid "Activation pending" +msgstr "" + +#: ../admin/dom_edit.php:177 ../admin/ftp_list.php:84 +#: ../admin/mail_list.php:144 ../admin/mail_list.php:154 +msgid "Disabled" +msgstr "" + +#: ../admin/dom_edit.php:178 +msgid "Enable" +msgstr "" + +#: ../admin/dom_edit.php:181 +msgid "Desactivation pending" +msgstr "" + +#: ../admin/dom_edit.php:189 +msgid "Update pending" +msgstr "" + +#: ../admin/dom_edit.php:192 +msgid "Deletion pending" +msgstr "" + +#: ../admin/dom_edit.php:206 +#, php-format +msgid "Add a subdomains to %s" +msgstr "" + +#: ../admin/dom_edit.php:223 +msgid "DNS & Email parameters" +msgstr "" + +#: ../admin/dom_edit.php:228 +msgid "Manage the DNS on the server ?" +msgstr "" + +#: ../admin/dom_edit.php:239 +msgid "Define TTL for the zone records" +msgstr "" + +#: ../admin/dom_edit.php:241 +msgid "" +"Warning: a low TTL can be problematic. It is recommended not to use a lower " +"TTL than 3600 seconds." +msgstr "" + +#: ../admin/dom_edit.php:241 +msgid "seconds" +msgstr "" + +#: ../admin/dom_edit.php:250 +msgid "Manage the Emails Addresses of this domain on the server?" +msgstr "" + +#: ../admin/dom_edit.php:258 +msgid "" +"Warning: If you set this to 'no', all your email accounts and aliases on " +"this domain will be immediately deleted." +msgstr "" + +#: ../admin/dom_edit.php:259 +msgid "Submit the changes" +msgstr "" + +#: ../admin/dom_edit.php:267 +msgid "" +"Here is the actual DNS zone running on the AlternC server. If you just made " +"some changes, you have to wait for it." +msgstr "" + +#: ../admin/dom_edit.php:271 +msgid "Click here to view the dump" +msgstr "" + +#: ../admin/dom_edit.php:279 +msgid "Domain removal" +msgstr "" + +#: ../admin/dom_edit.php:280 +#, php-format +msgid "" +"If you want to destroy the domain %s, click on the button below. Warning: " +"this also deletes all FTP accounts, email, mailing lists associated with the " +"domain and subdomains." +msgstr "" + +#: ../admin/dom_edit.php:283 +#, php-format +msgid "Delete %s from this server" +msgstr "" + +#: ../admin/dom_editdns.php:52 +#, php-format +msgid "Editing domain %s" +msgstr "" + +#: ../admin/dom_editdns.php:57 +#, php-format +msgid "The domain %s has been changed." +msgstr "" + +#: ../admin/dom_editdns.php:60 ../admin/dom_subdodel.php:75 +msgid "The modifications will take effect at %time. Server time is %now." +msgstr "" + +#: ../admin/dom_import.php:43 +msgid "Import a DNS zone" +msgstr "" + +#: ../admin/dom_import.php:55 +msgid "The domain field seems to be empty" +msgstr "" + +#: ../admin/dom_import.php:57 +msgid "" +"Here is my proposition. Modify your zone until my proposition seems good to " +"you" +msgstr "" + +#: ../admin/dom_import.php:59 +#, php-format +msgid "Working on %s" +msgstr "" + +#: ../admin/dom_import.php:61 +msgid "Generated entry" +msgstr "" + +#: ../admin/dom_import.php:61 +msgid "Result" +msgstr "" + +#: ../admin/dom_import.php:61 +msgid "Zone" +msgstr "" + +#: ../admin/dom_import.php:74 +msgid "ERROR" +msgstr "" + +#: ../admin/dom_import.php:74 ../admin/mem_cm.php:56 +msgid "OK" +msgstr "" + +#: ../admin/dom_import.php:96 +msgid "Enter the domain name you want to import" +msgstr "" + +#: ../admin/dom_import.php:104 +msgid "Do you want to detect the redirection?" +msgstr "" + +#: ../admin/dom_import.php:115 +msgid "Paste your existing DNS zone here." +msgstr "" + +#: ../admin/dom_import.php:117 +msgid "If you don't know what it is, don't submit this form." +msgstr "" + +#: ../admin/dom_import.php:122 +msgid "Do you want to import the zone as it?" +msgstr "" + +#: ../admin/dom_import.php:126 +msgid "Submit" +msgstr "" + +#: ../admin/dom_subdel.php:51 +#, php-format +msgid "Deleting subdomain %s" +msgstr "" + +#: ../admin/dom_subdel.php:67 +msgid "WARNING : Confirm the deletion of the subdomain" +msgstr "" + +#: ../admin/dom_subdodel.php:64 +#, php-format +msgid "Deleting the subdomain %s:" +msgstr "" + +#: ../admin/dom_subdoedit.php:72 ../admin/dom_substatus.php:29 +msgid "The modifications will take effect at %time. Server time is %now." +msgstr "" + +#: ../admin/dom_subedit.php:56 +msgid "Editing subdomain" +msgstr "" + +#: ../admin/ftp_del.php:60 +#, php-format +msgid "The ftp account %s has been successfully deleted" +msgstr "" + +#: ../admin/ftp_del.php:68 +msgid "Confirm the FTP accounts deletion" +msgstr "" + +#: ../admin/ftp_del.php:71 +msgid "Do you really want to delete those accounts?" +msgstr "" + +#: ../admin/ftp_doedit.php:46 ../admin/ftp_edit.php:44 +#: ../admin/ftp_edit.php:51 +msgid "Create a FTP account" +msgstr "" + +#: ../admin/ftp_doedit.php:52 +msgid "Error: neither a creation nor an edition" +msgstr "" + +#: ../admin/ftp_doedit.php:72 +msgid "The ftp account has been successfully saved" +msgstr "" + +#: ../admin/ftp_edit.php:43 +msgid "Neither a creation nor a edition" +msgstr "" + +#: ../admin/ftp_edit.php:53 +msgid "Editing a FTP account" +msgstr "" + +#: ../admin/ftp_edit.php:79 +msgid "" +"This is the root folder for this FTP user. i.e. this FTP user can access to " +"this forlder and all its sub-folders." +msgstr "" + +#: ../admin/ftp_edit.php:93 +msgid "Click here if you want to edit password" +msgstr "" + +#: ../admin/ftp_edit.php:114 +msgid "Password do not match" +msgstr "" + +#: ../admin/ftp_edit.php:120 ../class/m_admin.php:1279 ../class/m_hta.php:235 +msgid "Please enter a password" +msgstr "" + +#: ../admin/ftp_list.php:45 ../class/m_ftp.php:76 +msgid "FTP accounts list" +msgstr "" + +#: ../admin/ftp_list.php:57 ../class/m_ftp.php:67 +msgid "Create a new ftp account" +msgstr "" + +#: ../admin/ftp_list.php:80 +msgid "Are you sure you want to change his status?" +msgstr "" + +#: ../admin/ftp_list.php:107 +msgid "FTP configuration information" +msgstr "" + +#: ../admin/ftp_list.php:109 +msgid "" +"Here are some configuration information you will need to configure your FTP " +"application." +msgstr "" + +#: ../admin/ftp_list.php:112 +msgid "Server:" +msgstr "" + +#: ../admin/ftp_list.php:113 +msgid "FTP mode for data transfer:" +msgstr "" + +#: ../admin/ftp_list.php:113 +msgid "passive" +msgstr "" + +#: ../admin/ftp_list.php:114 +msgid "User/password:" +msgstr "" + +#: ../admin/ftp_list.php:114 +msgid "" +"the one you specified when you created the account. You can edit them in the " +"panel." +msgstr "" + +#: ../admin/head.php:32 +msgid "AlternC Control Panel" +msgstr "" + +#: ../admin/head.php:59 +msgid "" +"Administrator session. you may return to your " +"account or cancel this feature." +msgstr "" + +#: ../admin/head.php:60 +msgid "You can also apply changes." +msgstr "" + +#: ../admin/head.php:65 +msgid "Panel is locked! No one can login!" +msgstr "" + +#: ../admin/hta_add.php:39 ../admin/hta_list.php:49 ../admin/hta_list.php:87 +msgid "Protect a folder" +msgstr "" + +#: ../admin/hta_add.php:43 +msgid "" +"Enter the name of the folder you want to protect. It must already exists." +msgstr "" + +#: ../admin/hta_adduser.php:40 +#, php-format +msgid "Adding a username in %s" +msgstr "" + +#: ../admin/hta_adduser.php:67 ../admin/hta_edit.php:112 +msgid "Add this user" +msgstr "" + +#: ../admin/hta_del.php:42 +#, php-format +msgid "The protected folder %s has been successfully unprotected" +msgstr "" + +#: ../admin/hta_dodeluser.php:49 +msgid "Authorized user deletion confirm" +msgstr "" + +#: ../admin/hta_dodeluser.php:52 +msgid "Do you really want to delete those users ?" +msgstr "" + +#: ../admin/hta_doedituser.php:52 +#, php-format +msgid "Change the user %s in the protected folder %s" +msgstr "" + +#: ../admin/hta_doedituser.php:60 +#, php-format +msgid "The password of the user %s has been successfully changed" +msgstr "" + +#: ../admin/hta_edit.php:39 +msgid "No folder selected!" +msgstr "" + +#: ../admin/hta_edit.php:48 +#, php-format +msgid "List of authorized user in folder %s" +msgstr "" + +#: ../admin/hta_edit.php:53 +#, php-format +msgid "No authorized user in %s" +msgstr "" + +#: ../admin/hta_edit.php:68 ../admin/sql_users_password.php:38 +msgid "Change this user's password" +msgstr "" + +#: ../admin/hta_edit.php:78 ../admin/sql_users_list.php:70 +msgid "Delete the checked users" +msgstr "" + +#: ../admin/hta_edit.php:83 +msgid "Show this folder's content in the File Browser" +msgstr "" + +#: ../admin/hta_edit.php:89 +msgid "Adding an authorized user" +msgstr "" + +#: ../admin/hta_edituser.php:40 +#, php-format +msgid "Editing user %s in the protected folder %s" +msgstr "" + +#: ../admin/hta_edituser.php:59 ../admin/mem_param.php:83 +#: ../admin/mem_param.php:84 +msgid "New password" +msgstr "" + +#: ../admin/hta_edituser.php:68 +msgid "Change the password" +msgstr "" + +#: ../admin/hta_list.php:40 +msgid "Protected folders list" +msgstr "" + +#: ../admin/hta_list.php:60 +msgid "" +"You can set passwords to protect some of your folders.
This will create ." +"htaccess and .htpasswd files that restrict access to these directory and to " +"any sub-elements." +msgstr "" + +#: ../admin/hta_list.php:77 +msgid "Edit login and passwords" +msgstr "" + +#: ../admin/hta_list.php:86 +msgid "Unprotect the checked folders" +msgstr "" + +#: ../admin/index.php:67 +msgid "Web Hosting Control Panel" +msgstr "" + +#: ../admin/index.php:83 +msgid "" +"To connect to the hosting control panel, enter your AlternC's login and " +"password in the following form and click 'Enter'" +msgstr "" + +#: ../admin/index.php:84 +msgid "You are attemping to connect without IP restriction." +msgstr "" + +#: ../admin/index.php:88 +msgid "AlternC access" +msgstr "" + +#: ../admin/index.php:91 +msgid "Enter" +msgstr "" + +#: ../admin/index.php:111 +msgid "" +"To read your mail in a browser, click here to go to your server's Webmail" +msgstr "" + +#: ../admin/index.php:123 +msgid "You must accept the session cookie to log-in" +msgstr "" + +#: ../admin/index.php:152 +msgid "Need a login and a password" +msgstr "" + +#: ../admin/ip_main.php:58 +msgid "" +"Here you can add rules to restrict access to AlternC's services, filtered by " +"IP. First, add trusted IPs in the 'Known IP and networks' list. Then, add " +"rules to grant access on services to the chosen IPs from this list." +msgstr "" + +#: ../admin/ip_main.php:60 +msgid "Enabled rules" +msgstr "" + +#: ../admin/ip_main.php:64 +msgid "Authorised IP address or network" +msgstr "" + +#: ../admin/ip_main.php:65 ../admin/ip_main.php:95 +msgid "Access type" +msgstr "" + +#: ../admin/ip_main.php:76 +msgid "for" +msgstr "" + +#: ../admin/ip_main.php:86 +msgid "Add a new rule" +msgstr "" + +#: ../admin/ip_main.php:89 +msgid "" +"You need to have some 'Known IP and networks' defined below to define a new " +"rule." +msgstr "" + +#: ../admin/ip_main.php:119 +msgid "Authorized IP address or network" +msgstr "" + +#: ../admin/ip_main.php:144 +msgid "Known IP and networks" +msgstr "" + +#: ../admin/ip_main.php:146 +msgid "IP or network" +msgstr "" + +#: ../admin/ip_main.php:172 +msgid "Add an IP or a networks" +msgstr "" + +#: ../admin/ip_main.php:181 +msgid "IP or network. IPv4, IPv6 and subnet allowed" +msgstr "" + +#: ../admin/ip_main.php:214 +msgid "Please select an access type" +msgstr "" + +#: ../admin/logs_list.php:35 +msgid "Logs Listing" +msgstr "" + +#: ../admin/logs_list.php:43 +msgid "You have no web logs to list at the moment." +msgstr "" + +#: ../admin/logs_list.php:49 +msgid "" +"Here are web logs of your account.
You can download them to do specific " +"extract and statistics." +msgstr "" + +#: ../admin/logs_list.php:53 +msgid "Creation Date" +msgstr "" + +#: ../admin/logs_list.php:53 +msgid "Download link" +msgstr "" + +#: ../admin/logs_list.php:65 +msgid "Download" +msgstr "" + +#: ../admin/mail_del.php:54 +msgid "Deleting mail accounts" +msgstr "" + +#: ../admin/mail_del.php:57 +msgid "Please confirm the deletion of the following mail accounts:" +msgstr "" + +#: ../admin/mail_del.php:74 +msgid "Confirm the deletion" +msgstr "" + +#: ../admin/mail_del.php:74 +msgid "Don't delete anything and go back to the email list" +msgstr "" + +#: ../admin/mail_del.php:78 +msgid "" +"Warning: Deleting an email address will destroy all the messages it " +"contains! You will NOT be able to get it back!" +msgstr "" + +#: ../admin/mail_doedit.php:120 +msgid "Your email has been edited successfully" +msgstr "" + +#: ../admin/mail_edit.php:53 +#, php-format +msgid "Editing the email %s" +msgstr "" + +#: ../admin/mail_edit.php:67 +msgid "Is this email enabled?" +msgstr "" + +#: ../admin/mail_edit.php:69 +msgid "" +"You can enable or disable this email anytime. This will bounce any mail " +"received on this address, but will not delete the stored email, or the " +"redirections or password." +msgstr "" + +#: ../admin/mail_edit.php:73 +msgid "No (email disabled)" +msgstr "" + +#: ../admin/mail_edit.php:74 +msgid "Yes (email enabled)" +msgstr "" + +#: ../admin/mail_edit.php:78 +msgid "Is it a POP/IMAP account?" +msgstr "" + +#: ../admin/mail_edit.php:79 +msgid "" +"POP/IMAP accounts are receiving emails in the server. To read those emails, " +"you can use a Webmail, or a mail client such as Thunderbird. If you don't " +"use POP/IMAP, you can configure your email to be a redirection to other " +"existing emails. The maximum size is in megabytes, use 0 to make it infinite." +msgstr "" + +#: ../admin/mail_edit.php:82 +#, php-format +msgid "This mailbox is currently using %1$s / %2$s" +msgstr "" + +#: ../admin/mail_edit.php:85 +msgid "" +"This mailbox is pending deletion. You can recover its mails by setting it to " +"'Yes' NOW!" +msgstr "" + +#: ../admin/mail_edit.php:95 +msgid "Click here to edit the existing password" +msgstr "" + +#: ../admin/mail_edit.php:96 +msgid "Enter a POP/IMAP password" +msgstr "" + +#: ../admin/mail_edit.php:98 ../class/m_quota.php:537 +msgid "MB" +msgstr "" + +#: ../admin/mail_edit.php:98 +msgid "Maximum allowed size of this Mailbox" +msgstr "" + +#: ../admin/mail_edit.php:103 +msgid "" +"WARNING: turning POP/IMAP off will DELETE the stored messages in this email " +"address." +msgstr "" + +#: ../admin/mail_edit.php:105 +msgid "Is it a redirection to other email addresses?" +msgstr "" + +#: ../admin/mail_edit.php:107 +msgid "" +"If you want to send emails received on this address to other addresses, even " +"outside this server, enter those recipients here." +msgstr "" + +#: ../admin/mail_edit.php:107 +msgid "one recipient per line" +msgstr "" + +#: ../admin/mail_edit.php:115 +msgid "Change this email address" +msgstr "" + +#: ../admin/mail_list.php:72 +msgid "Create a new mail account" +msgstr "" + +#: ../admin/mail_list.php:76 +msgid "Can't have empty mail." +msgstr "" + +#: ../admin/mail_list.php:76 +msgid "Create this email address" +msgstr "" + +#: ../admin/mail_list.php:78 +msgid "Manage Catch-all for this domain" +msgstr "" + +#: ../admin/mail_list.php:92 +#, php-format +msgid "Email addresses of the domain %s" +msgstr "" + +#: ../admin/mail_list.php:96 +msgid "No mails for this domain." +msgstr "" + +#: ../admin/mail_list.php:106 +msgid "Search" +msgstr "" + +#: ../admin/mail_list.php:111 +msgid "Show system emails" +msgstr "" + +#: ../admin/mail_list.php:118 +msgid "Items per page:" +msgstr "" + +#: ../admin/mail_list.php:125 +msgid "Address" +msgstr "" + +#: ../admin/mail_list.php:125 +msgid "Last login time" +msgstr "" + +#: ../admin/mail_list.php:125 +msgid "Other recipients" +msgstr "" + +#: ../admin/mail_list.php:125 +msgid "Pop/Imap" +msgstr "" + +#: ../admin/mail_list.php:136 +msgid "Deleting..." +msgstr "" + +#: ../admin/mail_list.php:141 +msgid "" +"This email will be deleted soon. You may still be able to undelete it by " +"clicking here" +msgstr "" + +#: ../admin/mail_list.php:141 +msgid "Undelete" +msgstr "" + +#: ../admin/mail_list.php:167 ../admin/main.php:34 +msgid "Never" +msgstr "" + +#: ../admin/mail_list.php:178 +msgid "Delete the checked email addresses" +msgstr "" + +#: ../admin/mail_list.php:186 +msgid "Mails configuration information" +msgstr "" + +#: ../admin/mail_list.php:188 +msgid "" +"Here are some configuration information you will need to configure your mail " +"application." +msgstr "" + +#: ../admin/mail_list.php:195 +msgid "Outgoing mail (SMTP)" +msgstr "" + +#: ../admin/mail_list.php:196 +msgid "Incoming mail" +msgstr "" + +#: ../admin/mail_list.php:201 ../admin/mail_list.php:242 +msgid "Which protocol shall you use?" +msgstr "" + +#: ../admin/mail_list.php:203 +msgid "Submission" +msgstr "" + +#: ../admin/mail_list.php:206 ../admin/mail_list.php:217 +#: ../admin/mail_list.php:228 ../admin/mail_list.php:247 +#: ../admin/mail_list.php:258 ../admin/mail_list.php:269 +#: ../admin/mail_list.php:280 +msgid "Server name: " +msgstr "" + +#: ../admin/mail_list.php:207 ../admin/mail_list.php:218 +#: ../admin/mail_list.php:229 +msgid "" +"The mail address you want to access (example : myuser@example.tld)" +msgstr "" + +#: ../admin/mail_list.php:207 ../admin/mail_list.php:218 +#: ../admin/mail_list.php:229 +msgid "Username: " +msgstr "" + +#: ../admin/mail_list.php:208 ../admin/mail_list.php:219 +#: ../admin/mail_list.php:230 ../admin/mail_list.php:248 +#: ../admin/mail_list.php:259 ../admin/mail_list.php:270 +#: ../admin/mail_list.php:281 +msgid "Port: " +msgstr "" + +#: ../admin/mail_list.php:209 ../admin/mail_list.php:220 +#: ../admin/mail_list.php:231 ../admin/mail_list.php:249 +#: ../admin/mail_list.php:260 ../admin/mail_list.php:271 +#: ../admin/mail_list.php:282 +msgid "Authentication: " +msgstr "" + +#: ../admin/mail_list.php:210 ../admin/mail_list.php:221 +#: ../admin/mail_list.php:232 ../admin/mail_list.php:250 +#: ../admin/mail_list.php:261 ../admin/mail_list.php:272 +#: ../admin/mail_list.php:283 +msgid "Authentication method: " +msgstr "" + +#: ../admin/mail_list.php:210 ../admin/mail_list.php:250 +#: ../admin/mail_list.php:261 ../admin/mail_list.php:272 +#: ../admin/mail_list.php:283 +msgid "Normal password" +msgstr "" + +#: ../admin/mail_list.php:211 ../admin/mail_list.php:222 +#: ../admin/mail_list.php:233 ../admin/mail_list.php:251 +#: ../admin/mail_list.php:262 ../admin/mail_list.php:273 +#: ../admin/mail_list.php:284 +msgid "Connection security:" +msgstr "" + +#: ../admin/mail_list.php:214 +msgid "SMTP" +msgstr "" + +#: ../admin/mail_list.php:221 ../admin/mail_list.php:232 +msgid "Normal Password" +msgstr "" + +#: ../admin/mail_list.php:225 +msgid "SMTPS" +msgstr "" + +#: ../admin/mail_list.php:244 +msgid "IMAP" +msgstr "" + +#: ../admin/mail_list.php:255 +msgid "IMAPS" +msgstr "" + +#: ../admin/mail_list.php:266 +msgid "POP3" +msgstr "" + +#: ../admin/mail_list.php:277 +msgid "POP3S" +msgstr "" + +#: ../admin/mail_manage_catchall.php:38 +msgid "Problem with the domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:47 +msgid "Catchall successfully deleted" +msgstr "" + +#: ../admin/mail_manage_catchall.php:50 ../admin/mail_manage_catchall.php:53 +msgid "Catchall successfully updated" +msgstr "" + +#: ../admin/mail_manage_catchall.php:56 +msgid "Unknown target type" +msgstr "" + +#: ../admin/mail_manage_catchall.php:63 +#, php-format +msgid "Manage catch-all configuration of %s" +msgstr "" + +#: ../admin/mail_manage_catchall.php:72 +msgid "" +"You can choose what to do with emails sent to unexisting address of this " +"domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:80 +msgid "No catch-all" +msgstr "" + +#: ../admin/mail_manage_catchall.php:84 +msgid "No catch-all for this domain." +msgstr "" + +#: ../admin/mail_manage_catchall.php:88 +msgid "Redirect to same address on a different domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:92 +#, php-format +msgid "" +"Mails sent to john.doe@%s will be redirect to john.doe@anotherdomain.tld" +msgstr "" + +#: ../admin/mail_manage_catchall.php:95 +msgid "Enter the 'target' domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:96 +msgid "example.tld" +msgstr "" + +#: ../admin/mail_manage_catchall.php:98 +msgid "Or choose one of your own" +msgstr "" + +#: ../admin/mail_manage_catchall.php:106 +msgid "Redirect to a specific email" +msgstr "" + +#: ../admin/mail_manage_catchall.php:110 +#, php-format +msgid "" +"Mails sent to an unexisting email on '@%s' will be redirect to user@example." +"tld." +msgstr "" + +#: ../admin/mail_manage_catchall.php:113 +msgid "john.doe@example.tld" +msgstr "" + +#: ../admin/mailautoconfig_outlook.php:16 +msgid "Missing POST of the mail address" +msgstr "" + +#: ../admin/mailautoconfig_thunderbird.php:9 +msgid "Error: Missing GET of emailaddress" +msgstr "" + +#: ../admin/mailautoconfig_thunderbird.php:12 +msgid "Error: Empty $emailDomain" +msgstr "" + +#: ../admin/main.php:31 +msgid "Last Login: " +msgstr "" + +#: ../admin/main.php:36 +#, php-format +msgid "the %3$d-%2$d-%1$d at %4$d:%5$02d" +msgstr "" + +#: ../admin/main.php:37 +#, php-format +msgid "from: %1$s " +msgstr "" + +#: ../admin/main.php:42 +#, php-format +msgid "%1$d login failed since last login" +msgstr "" + +#: ../admin/main.php:85 +msgid "Expired or about to expire accounts" +msgstr "" + +#: ../admin/main.php:87 +msgid "Last name, surname" +msgstr "" + +#: ../admin/main.php:87 +msgid "uid" +msgstr "" + +#: ../admin/main.php:103 +msgid "" +"You are using the AlternC Panel. You can contact the AlternC community for " +"information or feedback by joining the mailing-list" +msgstr "" + +#: ../admin/mem_admin.php:40 +msgid "Your administrator preferences has been successfully changed." +msgstr "" + +#: ../admin/mem_admin.php:46 ../admin/mem_param.php:116 +msgid "Admin preferences" +msgstr "" + +#: ../admin/mem_chgmail.php:44 ../admin/mem_cm.php:42 ../admin/mem_cm.php:53 +#: ../admin/mem_cm2.php:47 ../admin/mem_param.php:92 +msgid "Change the email of the account" +msgstr "" + +#: ../admin/mem_chgmail.php:51 +#, php-format +msgid "help_mem_chgmail %s" +msgstr "" + +#: ../admin/mem_cm.php:54 +msgid "" +"Enter the key you got when you requested the mailbox change, then click the " +"OK button." +msgstr "" + +#: ../admin/mem_cm.php:55 +msgid "Key" +msgstr "" + +#: ../admin/mem_cm2.php:55 +msgid "The mailbox has been successfully changed." +msgstr "" + +#: ../admin/mem_logout.php:41 ../admin/mem_logout.php:49 +msgid "Disconnected" +msgstr "" + +#: ../admin/mem_logout.php:51 +msgid "You have been logged out of your administration desktop." +msgstr "" + +#: ../admin/mem_logout.php:52 +msgid "Click here to log in" +msgstr "" + +#: ../admin/mem_param.php:43 +msgid "Your help setting has been updated." +msgstr "" + +#: ../admin/mem_param.php:47 +msgid "Settings of your account" +msgstr "" + +#: ../admin/mem_param.php:60 ../class/m_mem.php:579 +msgid "Help" +msgstr "" + +#: ../admin/mem_param.php:63 +msgid "Administrator" +msgstr "" + +#: ../admin/mem_param.php:69 ../admin/mem_passwd.php:50 +#: ../admin/sql_users_list.php:59 +msgid "Password change" +msgstr "" + +#: ../admin/mem_param.php:73 +msgid "You cannot change your password" +msgstr "" + +#: ../admin/mem_param.php:78 +msgid "help_chg_passwd" +msgstr "" + +#: ../admin/mem_param.php:82 +msgid "Old password" +msgstr "" + +#: ../admin/mem_param.php:85 +msgid "Change my password" +msgstr "" + +#: ../admin/mem_param.php:95 +msgid "help_chg_mail" +msgstr "" + +#: ../admin/mem_param.php:96 +msgid "Current mailbox" +msgstr "" + +#: ../admin/mem_param.php:97 +msgid "New mailbox" +msgstr "" + +#: ../admin/mem_param.php:98 +msgid "Change my email address" +msgstr "" + +#: ../admin/mem_param.php:103 +msgid "Online help settings" +msgstr "" + +#: ../admin/mem_param.php:106 +msgid "help_help_settings" +msgstr "" + +#: ../admin/mem_param.php:107 +msgid "Do you want to see the help texts and links on each page?" +msgstr "" + +#: ../admin/mem_param.php:108 +msgid "Change these settings" +msgstr "" + +#: ../admin/mem_param.php:119 +msgid "Members list view" +msgstr "" + +#: ../admin/mem_param.php:120 +msgid "Large view" +msgstr "" + +#: ../admin/mem_param.php:121 +msgid "Short view" +msgstr "" + +#: ../admin/mem_param.php:123 +msgid "Change my admin preferences" +msgstr "" + +#: ../admin/mem_passwd.php:44 +msgid "Your password has been successfully changed." +msgstr "" + +#: ../admin/menu.php:37 +#, php-format +msgid "Welcome %s" +msgstr "" + +#: ../admin/menu.php:105 +msgid "About" +msgstr "" + +#: ../admin/nowebmail.php:28 +msgid "" +"There is currently no webmail configured. If you need one, contact your " +"server administrator" +msgstr "" + +#: ../admin/piwik_addaccount.php:34 +msgid "You cannot add any new Piwik account, your quota is over." +msgstr "" + +#: ../admin/piwik_addaccount.php:44 +msgid "Error : missing arguments." +msgstr "" + +#: ../admin/piwik_addaccount.php:50 +#, php-format +msgid "Creation of Piwik account \"%s\"" +msgstr "" + +#: ../admin/piwik_addaccount.php:67 +msgid "Successfully added piwik user" +msgstr "" + +#: ../admin/piwik_addsites.php:44 +msgid "Error while adding website.
" +msgstr "" + +#: ../admin/piwik_addsites.php:46 +msgid "Website added Successfully" +msgstr "" + +#: ../admin/piwik_site_dodel.php:39 +msgid "Missing site parameters" +msgstr "" + +#: ../admin/piwik_site_dodel.php:50 +msgid "Site successfully deleted" +msgstr "" + +#: ../admin/piwik_site_dodel.php:61 +msgid "Piwik site deletion confirm" +msgstr "" + +#: ../admin/piwik_site_dodel.php:64 +msgid "Do you really want to delete this Piwik website ?" +msgstr "" + +#: ../admin/piwik_sitelist.php:48 +msgid "You don't own this piwik site!" +msgstr "" + +#: ../admin/piwik_sitelist.php:56 +msgid "You dont own user" +msgstr "" + +#: ../admin/piwik_sitelist.php:83 ../admin/piwik_userlist.php:53 +msgid "Add a new website" +msgstr "" + +#: ../admin/piwik_sitelist.php:85 ../admin/piwik_userlist.php:55 +msgid "URL of the website" +msgstr "" + +#: ../admin/piwik_sitelist.php:106 +msgid "Existing Piwik monitored websites" +msgstr "" + +#: ../admin/piwik_sitelist.php:114 +msgid "No existing Piwik websites" +msgstr "" + +#: ../admin/piwik_sitelist.php:120 +msgid "Site name" +msgstr "" + +#: ../admin/piwik_sitelist.php:120 +msgid "Site url" +msgstr "" + +#: ../admin/piwik_sitelist.php:147 +msgid "Credentials management" +msgstr "" + +#: ../admin/piwik_user_dodel.php:39 +msgid "Missing login parameters" +msgstr "" + +#: ../admin/piwik_user_dodel.php:59 +msgid "Piwik accounts deletion confirm" +msgstr "" + +#: ../admin/piwik_user_dodel.php:62 +#, php-format +msgid "Do you really want to delete the Piwik account %s ?" +msgstr "" + +#: ../admin/piwik_useradmin.php:42 +msgid "No piwik user specified" +msgstr "" + +#: ../admin/piwik_useradmin.php:52 +msgid "You don't own this piwik website" +msgstr "" + +#: ../admin/piwik_useradmin.php:60 +msgid "You don't own this piwik user" +msgstr "" + +#: ../admin/piwik_useradmin.php:71 +msgid "success" +msgstr "" + +#: ../admin/piwik_useradmin.php:75 +msgid "This right does not exist" +msgstr "" + +#: ../admin/piwik_useradmin.php:105 +msgid "Rights for user" +msgstr "" + +#: ../admin/piwik_useradmin.php:128 +msgid "Add rights to user" +msgstr "" + +#: ../admin/piwik_useradmin.php:139 +msgid "admin" +msgstr "" + +#: ../admin/piwik_useradmin.php:139 +msgid "noacces" +msgstr "" + +#: ../admin/piwik_useradmin.php:139 +msgid "view" +msgstr "" + +#: ../admin/piwik_userlist.php:41 +msgid "Create a new piwik account" +msgstr "" + +#: ../admin/piwik_userlist.php:66 +msgid "Existing Piwik accounts" +msgstr "" + +#: ../admin/piwik_userlist.php:74 +msgid "No existing Piwik users" +msgstr "" + +#: ../admin/piwik_userlist.php:79 ../admin/piwik_userlist.php:89 +msgid "Connect" +msgstr "" + +#: ../admin/quota_show.php:34 +msgid "Account's quotas" +msgstr "" + +#: ../admin/quota_show.php:40 +msgid "No quotas for this account, or quotas currently unavailable!" +msgstr "" + +#: ../admin/quotas_oneuser.php:14 +#, php-format +msgid "%s account" +msgstr "" + +#: ../admin/quotas_oneuser.php:25 ../class/m_quota.php:60 +msgid "quota_web" +msgstr "" + +#: ../admin/quotas_oneuser.php:36 ../admin/quotas_users.php:132 +#: ../class/m_dom.php:93 +msgid "Domains" +msgstr "" + +#: ../admin/quotas_oneuser.php:37 +msgid "Emails" +msgstr "" + +#: ../admin/quotas_oneuser.php:38 ../admin/quotas_oneuser.php:121 +#: ../admin/quotas_oneuser.php:167 ../admin/quotas_users.php:128 +#: ../admin/quotas_users.php:169 +msgid "Space" +msgstr "" + +#: ../admin/quotas_oneuser.php:112 +msgid "Databases:" +msgstr "" + +#: ../admin/quotas_oneuser.php:120 ../admin/quotas_users.php:177 +msgid "DB" +msgstr "" + +#: ../admin/quotas_oneuser.php:158 +msgid "Mailman lists:" +msgstr "" + +#: ../admin/quotas_oneuser.php:166 ../admin/quotas_users.php:173 +#: ../admin/quotas_users.php:176 +msgid "Lists" +msgstr "" + +#: ../admin/quotas_users.php:20 +msgid "Quotas status" +msgstr "" + +#: ../admin/quotas_users.php:29 +msgid "" +"This page shows the space and service count of your AlternC server and each " +"AlternC accounts." +msgstr "" + +#: ../admin/quotas_users.php:30 +#, php-format +msgid "Administration -> Manage the Alternc accounts" +msgstr "" + +#: ../admin/quotas_users.php:30 +#, php-format +msgid "If you want to manage them, go to" +msgstr "" + +#: ../admin/quotas_users.php:33 +#, php-format +msgid "% of the total." +msgstr "" + +#: ../admin/quotas_users.php:33 +msgid "MB." +msgstr "" + +#: ../admin/quotas_users.php:33 +#, php-format +msgid "Sizes are shown as %s" +msgstr "" + +#: ../admin/quotas_users.php:36 +msgid "Global" +msgstr "" + +#: ../admin/quotas_users.php:36 +msgid "Server-side view:" +msgstr "" + +#: ../admin/quotas_users.php:37 +msgid "Detailed view:" +msgstr "" + +#: ../admin/quotas_users.php:38 +msgid "In MB" +msgstr "" + +#: ../admin/quotas_users.php:39 +msgid "Percentage" +msgstr "" + +#: ../admin/quotas_users.php:40 +msgid "Graphical" +msgstr "" + +#: ../admin/quotas_users.php:43 +msgid "Show the domain names" +msgstr "" + +#: ../admin/quotas_users.php:45 +msgid "Hide the domain names" +msgstr "" + +#: ../admin/quotas_users.php:48 +msgid "All accounts" +msgstr "" + +#: ../admin/quotas_users.php:128 ../admin/quotas_users.php:169 +msgid "Count" +msgstr "" + +#: ../admin/quotas_users.php:137 ../class/m_mail.php:177 +msgid "Email addresses" +msgstr "" + +#: ../admin/quotas_users.php:143 +msgid "Mailman lists" +msgstr "" + +#: ../admin/quotas_users.php:149 ../admin/sql_del.php:72 +#: ../admin/sql_dorestore.php:40 ../admin/sql_getparam.php:44 +#: ../admin/sql_list.php:37 ../admin/sql_restore.php:44 +#: ../class/m_mysql.php:990 +msgid "MySQL Databases" +msgstr "" + +#: ../admin/quotas_users.php:171 +msgid "Dom" +msgstr "" + +#: ../admin/quotas_users.php:172 ../admin/quotas_users.php:175 +msgid "Mails" +msgstr "" + +#: ../admin/quotas_users.php:174 +msgid "Web" +msgstr "" + +#: ../admin/sql_bck.php:34 +msgid "MySQL Databases - Configure backups" +msgstr "" + +#: ../admin/sql_bck.php:40 ../admin/sql_dobck.php:34 +msgid "" +"You aren't allowed to access this page. Contact your administrator if you " +"want to." +msgstr "" + +#: ../admin/sql_bck.php:65 +#, php-format +msgid "Manage the SQL backup for database %s" +msgstr "" + +#: ../admin/sql_bck.php:70 +msgid "Do MySQL backup?" +msgstr "" + +#: ../admin/sql_bck.php:73 +msgid "No backup" +msgstr "" + +#: ../admin/sql_bck.php:74 +msgid "Weekly backup" +msgstr "" + +#: ../admin/sql_bck.php:75 +msgid "Daily backup" +msgstr "" + +#: ../admin/sql_bck.php:79 +msgid "How many backups should be kept?" +msgstr "" + +#: ../admin/sql_bck.php:91 +msgid "Compress the backups? (gzip)" +msgstr "" + +#: ../admin/sql_bck.php:100 +msgid "In which folder do you want to store the backups?" +msgstr "" + +#: ../admin/sql_bck.php:107 +msgid "Change the MySQL backup parameters" +msgstr "" + +#: ../admin/sql_bck.php:116 ../admin/sql_dorestore.php:50 +#: ../admin/sql_restore.php:53 +msgid "You currently have no database defined" +msgstr "" + +#: ../admin/sql_del.php:51 +#, php-format +msgid "The database %s has been successfully deleted" +msgstr "" + +#: ../admin/sql_del.php:66 +msgid "Please check which databases you want to delete" +msgstr "" + +#: ../admin/sql_del.php:75 +msgid "Confirm the deletion of the following SQL databases" +msgstr "" + +#: ../admin/sql_del.php:76 +msgid "This will delete all the tables currently in those db." +msgstr "" + +#: ../admin/sql_del.php:90 +msgid "No, don't delete the database" +msgstr "" + +#: ../admin/sql_del.php:90 +msgid "Yes, delete the database" +msgstr "" + +#: ../admin/sql_doadd.php:37 +msgid "Can't create a database: your quota is over" +msgstr "" + +#: ../admin/sql_dobck.php:56 +msgid "Your backup parameters has been successfully changed." +msgstr "" + +#: ../admin/sql_dorestore.php:56 +msgid "Restore a SQL backup" +msgstr "" + +#: ../admin/sql_dorestore.php:63 +msgid "" +"Your database has been restored, check out the previous text for error " +"messages." +msgstr "" + +#: ../admin/sql_getparam.php:53 +msgid "Your current connection settings are" +msgstr "" + +#: ../admin/sql_getparam.php:59 +msgid "Mysql Server" +msgstr "" + +#: ../admin/sql_getparam.php:63 ../admin/sql_list.php:54 +msgid "Database" +msgstr "" + +#: ../admin/sql_getparam.php:79 +msgid "Web interface PhpMyAdmin" +msgstr "" + +#: ../admin/sql_getparam.php:91 +msgid "" +"You changed the MySQL User base configuration. Please refer to your " +"configuration" +msgstr "" + +#: ../admin/sql_getparam.php:94 +msgid "Back to the MySQL database list" +msgstr "" + +#: ../admin/sql_list.php:45 +msgid "You have no sql user at the moment." +msgstr "" + +#: ../admin/sql_list.php:54 ../admin/sql_list.php:65 +msgid "Backup" +msgstr "" + +#: ../admin/sql_list.php:54 ../admin/sql_list.php:67 +msgid "Restore" +msgstr "" + +#: ../admin/sql_list.php:54 ../admin/sql_list.php:68 +msgid "Show Settings" +msgstr "" + +#: ../admin/sql_list.php:77 +msgid "Delete the checked databases" +msgstr "" + +#: ../admin/sql_list.php:90 +msgid "Create a new MySQL database" +msgstr "" + +#: ../admin/sql_list.php:96 +msgid "MySQL Database" +msgstr "" + +#: ../admin/sql_list.php:103 +msgid "Can't have empty MySQL suffix" +msgstr "" + +#: ../admin/sql_list.php:103 +msgid "Create this new MySQL database." +msgstr "" + +#: ../admin/sql_pma_sso.php:46 +msgid "SQL Admin" +msgstr "" + +#: ../admin/sql_restore.php:58 +#, php-format +msgid "Restore a MySQL backup for database %s" +msgstr "" + +#: ../admin/sql_restore.php:61 +msgid "" +"Warning: Write the complete path and the filename.
For example if your " +"backups are in the directory /Backups,
write /Backups/file.sql.gz " +"(where file.sql.gz is the filename)." +msgstr "" + +#: ../admin/sql_restore.php:66 +msgid "" +"Please enter the path and the filename containing SQL data to be restored." +msgstr "" + +#: ../admin/sql_restore.php:67 +msgid "Restore my database" +msgstr "" + +#: ../admin/sql_restore.php:67 +msgid "Tip: you can restore a file directly in the File Browser" +msgstr "" + +#: ../admin/sql_restore.php:72 +msgid "Please the complete path of the filename" +msgstr "" + +#: ../admin/sql_restore.php:81 +msgid "Note: If the filename ends with .gz, it will be uncompressed before." +msgstr "" + +#: ../admin/sql_users_add.php:41 ../admin/sql_users_list.php:79 +msgid "Create a new MySQL user" +msgstr "" + +#: ../admin/sql_users_add.php:72 +msgid "Create this new MySQL user" +msgstr "" + +#: ../admin/sql_users_del.php:47 +#, php-format +msgid "The user %s has been successfully deleted" +msgstr "" + +#: ../admin/sql_users_del.php:58 +msgid "MySQL users" +msgstr "" + +#: ../admin/sql_users_del.php:61 +msgid "Confirm the deletion of the following MySQL users" +msgstr "" + +#: ../admin/sql_users_del.php:76 +msgid "No, don't delete the MySQL user" +msgstr "" + +#: ../admin/sql_users_del.php:76 +msgid "Yes, delete the MySQL user" +msgstr "" + +#: ../admin/sql_users_dorights.php:54 +msgid "The rights has been successfully applied to the user" +msgstr "" + +#: ../admin/sql_users_list.php:37 ../class/m_mysql.php:124 +msgid "MySQL Users" +msgstr "" + +#: ../admin/sql_users_list.php:48 +msgid "Rights" +msgstr "" + +#: ../admin/sql_users_list.php:58 +msgid "Manage the rights" +msgstr "" + +#: ../admin/sql_users_password.php:68 +msgid "Change user password" +msgstr "" + +#: ../admin/sql_users_rights.php:38 +#, php-format +msgid "MySQL Rights for %s" +msgstr "" + +#: ../admin/sql_users_rights.php:89 +msgid "Reverse selection" +msgstr "" + +#: ../admin/sql_users_rights.php:103 +msgid "Apply" +msgstr "" + +#: ../admin/stats_members.php:32 +msgid "" +"Image_Graph not installed. use 'aptitude install php-pear' then 'pear " +"install --alldeps Image_Graph-devel' to see the graph." +msgstr "" + +#: ../admin/stats_members.php:41 +msgid "Account creation per month" +msgstr "" + +#: ../admin/stats_members.php:54 +msgid "before the month" +msgstr "" + +#: ../admin/stats_members.php:56 +msgid "during the month" +msgstr "" + +#: ../admin/vm.php:52 ../class/m_lxc.php:60 +msgid "Console access" +msgstr "" + +#: ../admin/vm.php:69 +msgid "You can start a virtual machine." +msgstr "" + +#: ../admin/vm.php:72 +msgid "Click here to start a virtual machine." +msgstr "" + +#: ../admin/vm.php:78 +msgid "Start time" +msgstr "" + +#: ../admin/vm.php:79 +msgid "SSH Fingerprint" +msgstr "" + +#: ../admin/vm.php:80 +msgid "Useful command" +msgstr "" + +#: ../admin/vm.php:86 +msgid "You can stop your virtual machine." +msgstr "" + +#: ../admin/vm.php:89 +msgid "Click here to stop your running virtual machine." +msgstr "" + +#: ../admin/vm.php:99 +msgid "Tips" +msgstr "" + +#: ../admin/vm.php:104 +msgid "Available softwares" +msgstr "" + +#: ../admin/vm.php:105 +msgid "Remotely start/stop a VM" +msgstr "" + +#: ../admin/vm.php:110 +msgid "" +"You can script the launch the console access in command line by using this " +"url:" +msgstr "" + +#: ../admin/vm.php:112 +msgid "You can halt the vm by using:" +msgstr "" + +#: ../admin/vm.php:114 +msgid "" +"And you can see existing vm information (if the vm is running) by using:" +msgstr "" + +#: ../admin/vm.php:116 +msgid "" +"Warning: if you do not use HTTPS, your password will be transfered without " +"any protection" +msgstr "" + +#: ../admin/vm.php:120 +msgid "To access a remote console with SSH, you can use Putty." +msgstr "" + +#: ../admin/vm.php:122 +msgid "To transfer files, you can use Filezilla in SFTP mode." +msgstr "" + +#: ../class/functions.php:281 +msgid "Bytes" +msgstr "" + +#: ../class/functions.php:283 +msgid "Byte" +msgstr "" + +#: ../class/functions.php:288 +msgid "Kb" +msgstr "" + +#: ../class/functions.php:292 +msgid "Mb" +msgstr "" + +#: ../class/functions.php:296 +msgid "Gb" +msgstr "" + +#: ../class/functions.php:298 +msgid "Tb" +msgstr "" + +#: ../class/functions.php:389 +msgid "year" +msgstr "" + +#: ../class/functions.php:389 +msgid "years" +msgstr "" + +#: ../class/functions.php:391 +msgid "month" +msgstr "" + +#: ../class/functions.php:391 +msgid "months" +msgstr "" + +#: ../class/functions.php:414 +msgid "Not managed" +msgstr "" + +#: ../class/functions.php:541 ../class/functions.php:543 +msgid "Previous Page" +msgstr "" + +#: ../class/functions.php:597 ../class/functions.php:599 +msgid "Next Page" +msgstr "" + +#: ../class/functions.php:621 +msgid "Clic here to generate a password" +msgstr "" + +#: ../class/functions.php:656 ../class/functions.php:657 +msgid "Choose a folder..." +msgstr "" + +#: ../class/m_action.php:156 +msgid "Error setting actions" +msgstr "" + +#: ../class/m_action.php:168 +msgid "Error selecting old actions" +msgstr "" + +#: ../class/m_action.php:181 +msgid "Error purging old actions" +msgstr "" + +#: ../class/m_admin.php:60 +msgid "This TLD is forbidden" +msgstr "" + +#: ../class/m_admin.php:61 +msgid "primary DNS is checked in WHOIS db" +msgstr "" + +#: ../class/m_admin.php:62 +msgid "primary & secondary DNS are checked in WHOIS db" +msgstr "" + +#: ../class/m_admin.php:63 +msgid "Domain must exist, but don't do any DNS check" +msgstr "" + +#: ../class/m_admin.php:64 +msgid "Domain can be installed, no check at all" +msgstr "" + +#: ../class/m_admin.php:65 +msgid "Domain can be installed, force NO DNS hosting" +msgstr "" + +#: ../class/m_admin.php:75 +msgid "Administration" +msgstr "" + +#: ../class/m_admin.php:83 +msgid "Manage AlternC accounts" +msgstr "" + +#: ../class/m_admin.php:88 +msgid "User Quotas" +msgstr "" + +#: ../class/m_admin.php:104 ../class/m_mysql.php:130 +msgid "PhpMyAdmin" +msgstr "" + +#: ../class/m_admin.php:111 +msgid "Switch debug Off" +msgstr "" + +#: ../class/m_admin.php:111 +msgid "Switch debug On" +msgstr "" + +#: ../class/m_admin.php:118 +msgid "Applying..." +msgstr "" + +#: ../class/m_admin.php:119 +msgid "Domain changes are already applying" +msgstr "" + +#: ../class/m_admin.php:125 +msgid "Apply changes" +msgstr "" + +#: ../class/m_admin.php:128 +msgid "" +"Server configuration changes are applied every 5 minutes. Do you want to do " +"it right now?" +msgstr "" + +#: ../class/m_admin.php:174 ../class/m_admin.php:224 ../class/m_admin.php:288 +#: ../class/m_admin.php:364 ../class/m_admin.php:405 ../class/m_admin.php:436 +#: ../class/m_admin.php:491 ../class/m_admin.php:657 ../class/m_admin.php:696 +#: ../class/m_admin.php:720 ../class/m_admin.php:746 +msgid "-- Only administrators can access this page! --" +msgstr "" + +#: ../class/m_admin.php:322 +msgid "" +"Invalid pattern type provided. Are you even performing a legitimate action?" +msgstr "" + +#: ../class/m_admin.php:372 +msgid "Subject, message and sender are mandatory" +msgstr "" + +#: ../class/m_admin.php:377 +msgid "Sender is syntaxically incorrect" +msgstr "" + +#: ../class/m_admin.php:448 +msgid "-- Only administrators can do that! --" +msgstr "" + +#: ../class/m_admin.php:454 +msgid "You don't seem to be allowed to delegate this domain" +msgstr "" + +#: ../class/m_admin.php:495 +msgid "Missing db_server field" +msgstr "" + +#: ../class/m_admin.php:499 ../class/m_admin.php:504 +msgid "All fields are mandatory" +msgstr "" + +#: ../class/m_admin.php:508 +msgid "Please enter a valid email address" +msgstr "" + +#: ../class/m_admin.php:514 +msgid "Login can only contains characters a-z and 0-9" +msgstr "" + +#: ../class/m_admin.php:521 +msgid "The login is too long (14 chars max)" +msgstr "" + +#: ../class/m_admin.php:526 +msgid "Login can only contains characters a-z, 0-9 and -" +msgstr "" + +#: ../class/m_admin.php:572 +msgid "This login already exists" +msgstr "" + +#: ../class/m_admin.php:589 +#, php-format +msgid "query failed: %s " +msgstr "" + +#: ../class/m_admin.php:616 +#, php-format +msgid "New account %s from %s on %s" +msgstr "" + +#: ../class/m_admin.php:621 +#, php-format +msgid "Cannot send email to %s" +msgstr "" + +#: ../class/m_admin.php:625 +#, php-format +msgid "Query failed: %s" +msgstr "" + +#: ../class/m_admin.php:898 +msgid "This account is ALREADY an administrator account" +msgstr "" + +#: ../class/m_admin.php:920 +msgid "This account is NOT an administrator account!" +msgstr "" + +#: ../class/m_admin.php:1061 +#, php-format +msgid "Domain '%s' not found." +msgstr "" + +#: ../class/m_admin.php:1080 ../class/m_admin.php:1112 +#: ../class/m_admin.php:1162 +msgid "This TLD does not exist" +msgstr "" + +#: ../class/m_admin.php:1133 +msgid "The TLD name is mandatory" +msgstr "" + +#: ../class/m_admin.php:1140 +msgid "This TLD already exist" +msgstr "" + +#: ../class/m_admin.php:1275 +msgid "Please enter a login" +msgstr "" + +#: ../class/m_admin.php:1285 +msgid "-- Program error -- The requested password policy does not exist!" +msgstr "" + +#: ../class/m_admin.php:1293 +msgid "The password length is too short according to the password policy" +msgstr "" + +#: ../class/m_admin.php:1298 +msgid "The password is too long according to the password policy" +msgstr "" + +#: ../class/m_admin.php:1308 +msgid "" +"The password policy prevents you to use your login name inside your password" +msgstr "" + +#: ../class/m_admin.php:1332 +msgid "" +"Your password contains not enough different classes of character, between " +"low-case, up-case, figures and special characters." +msgstr "" + +#: ../class/m_authip.php:338 +msgid "Object not available" +msgstr "" + +#: ../class/m_authip.php:347 +#, php-format +msgid "Can't identified class for the protocole %s" +msgstr "" + +#: ../class/m_bro.php:68 +msgid "1 column, detailed" +msgstr "" + +#: ../class/m_bro.php:68 +msgid "2 columns, short" +msgstr "" + +#: ../class/m_bro.php:68 +msgid "3 columns, short" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "tar.Z (Unix)" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "tar.bz2 (Linux)" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "tgz (Linux)" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "zip (Windows/Dos)" +msgstr "" + +#: ../class/m_bro.php:71 +msgid "Edit the newly created file" +msgstr "" + +#: ../class/m_bro.php:71 +msgid "Go back to the file manager" +msgstr "" + +#: ../class/m_bro.php:186 +msgid "This directory do not exist" +msgstr "" + +#: ../class/m_bro.php:365 ../class/m_bro.php:1040 +msgid "Cannot create the requested directory. Please check the permissions" +msgstr "" + +#: ../class/m_bro.php:371 ../class/m_bro.php:388 ../class/m_bro.php:413 +#: ../class/m_bro.php:437 ../class/m_bro.php:469 ../class/m_bro.php:479 +#: ../class/m_bro.php:509 ../class/m_bro.php:546 ../class/m_bro.php:587 +#: ../class/m_bro.php:625 ../class/m_bro.php:630 ../class/m_bro.php:721 +#: ../class/m_bro.php:868 ../class/m_bro.php:900 +msgid "File or folder name is incorrect" +msgstr "" + +#: ../class/m_bro.php:393 ../class/m_bro.php:558 +msgid "Cannot create the requested file. Please check the permissions" +msgstr "" + +#: ../class/m_bro.php:483 ../class/m_bro.php:634 +msgid "You cannot move or copy a file to the same folder" +msgstr "" + +#: ../class/m_bro.php:610 +#, php-format +msgid "" +"I cannot find a way to extract the file %s, it is an unsupported compressed " +"format" +msgstr "" + +#: ../class/m_bro.php:717 +msgid "Cannot read the requested file. Please check the permissions" +msgstr "" + +#: ../class/m_bro.php:792 +msgid "File not in authorized directory" +msgstr "" + +#: ../class/m_bro.php:895 +msgid "Cannot edit the requested file. Please check the permissions" +msgstr "" + +#: ../class/m_cron.php:40 +msgid "Daily" +msgstr "" + +#: ../class/m_cron.php:41 +msgid "Hour" +msgstr "" + +#: ../class/m_cron.php:42 +msgid "Half Hour" +msgstr "" + +#: ../class/m_cron.php:125 +msgid "URL not valid" +msgstr "" + +#: ../class/m_cron.php:133 +msgid "Email address is not valid" +msgstr "" + +#: ../class/m_cron.php:142 +msgid "You quota of cron entries is over. You cannot create more cron entries" +msgstr "" + +#: ../class/m_cron.php:151 +msgid "Identity problem" +msgstr "" + +#: ../class/m_dom.php:178 +msgid "Err: failed to prepare the zone" +msgstr "" + +#: ../class/m_dom.php:200 +msgid "Missing domain name" +msgstr "" + +#: ../class/m_dom.php:495 +msgid "The name MUST contain only letter and digits" +msgstr "" + +#: ../class/m_dom.php:515 ../class/m_dom.php:1291 +msgid "" +"The parameters for this subdomain and domain type are invalid. Please check " +"for subdomain entries incompatibility" +msgstr "" + +#: ../class/m_dom.php:629 ../class/m_dom.php:1054 ../class/m_dom.php:1119 +#: ../class/m_dom.php:1262 ../class/m_dom.php:1351 ../class/m_dom.php:1395 +#: ../class/m_dom.php:1710 +msgid "--- Program error --- No lock on the domains!" +msgstr "" + +#: ../class/m_dom.php:636 ../class/m_dom.php:1059 ../class/m_dom.php:1286 +#: ../class/m_dom.php:1420 +msgid "The domain name is syntaxically incorrect" +msgstr "" + +#: ../class/m_dom.php:642 ../class/m_dom.php:683 ../class/m_dom.php:1498 +msgid "" +"The requested domain is forbidden in this server, please contact the " +"administrator" +msgstr "" + +#: ../class/m_dom.php:646 +msgid "This domain is the server's domain! You cannot host it on your account!" +msgstr "" + +#: ../class/m_dom.php:651 ../class/m_dom.php:656 +msgid "The domain already exist" +msgstr "" + +#: ../class/m_dom.php:663 ../class/m_dom.php:1402 +msgid "" +"The last member of the domain name is incorrect or cannot be hosted in that " +"server" +msgstr "" + +#: ../class/m_dom.php:667 ../class/m_dom.php:671 +msgid "The domain cannot be found in the whois database" +msgstr "" + +#: ../class/m_dom.php:690 +msgid "Your domain quota is over, you cannot create more domain names" +msgstr "" + +#: ../class/m_dom.php:697 +msgid "An unexpected error occured when creating the domain" +msgstr "" + +#: ../class/m_dom.php:706 ../class/m_dom.php:1065 +#, php-format +msgid "Domain '%s' not found" +msgstr "" + +#: ../class/m_dom.php:820 +msgid "Could not delete default type" +msgstr "" + +#: ../class/m_dom.php:972 +msgid "The Whois database is unavailable, please try again later" +msgstr "" + +#: ../class/m_dom.php:979 ../class/m_dom.php:1406 +msgid "The domain cannot be found in the Whois database" +msgstr "" + +#: ../class/m_dom.php:1124 ../class/m_dom.php:1355 +msgid "The sub-domain does not exist" +msgstr "" + +#: ../class/m_dom.php:1155 +msgid "invalid url" +msgstr "" + +#: ../class/m_dom.php:1165 +msgid "The folder you entered is incorrect or does not exist" +msgstr "" + +#: ../class/m_dom.php:1174 ../class/m_dom.php:1182 +msgid "The ip address is invalid" +msgstr "" + +#: ../class/m_dom.php:1190 +msgid "The name you entered is incorrect" +msgstr "" + +#: ../class/m_dom.php:1198 +msgid "The TXT value you entered is incorrect" +msgstr "" + +#: ../class/m_dom.php:1203 +msgid "Invalid domain type selected, please check" +msgstr "" + +#: ../class/m_dom.php:1274 +msgid "" +"There is some forbidden characters in the sub domain (only A-Z 0-9 and - are " +"allowed)" +msgstr "" + +#: ../class/m_dom.php:1313 ../class/m_dom.php:1324 +msgid "Cannot write to the destination folder" +msgstr "" + +#: ../class/m_dom.php:1410 +msgid "" +"The DNS of this domain do not match the server's DNS. Please change your " +"domain's DNS before you install it again" +msgstr "" + +#: ../class/m_dom.php:1425 +#, php-format +msgid "The domain name %s does not exist" +msgstr "" + +#: ../class/m_dom.php:1431 +msgid "No change has been requested..." +msgstr "" + +#: ../class/m_dom.php:1439 ../class/m_dom.php:1444 +msgid "" +"There is no MX record pointing to this server, and you are asking us to host " +"the mail here. Make sure to update your MX entries or no mail will be " +"received" +msgstr "" + +#: ../class/m_dom.php:1491 ../class/m_dom.php:1515 +msgid "The IP address you entered is incorrect" +msgstr "" + +#: ../class/m_dom.php:1588 ../class/m_dom.php:1594 ../class/m_dom.php:1612 +#: ../class/m_dom.php:1618 +msgid "This domain is not installed in your account" +msgstr "" + +#: ../class/m_dom.php:1660 +msgid "The specified slave account already exists" +msgstr "" + +#: ../class/m_dom.php:1691 +msgid "--- Program error --- Lock already obtained!" +msgstr "" + +#: ../class/m_dom.php:1831 +msgid "Locally hosted" +msgstr "" + +#: ../class/m_dom.php:1832 +msgid "URL redirection" +msgstr "" + +#: ../class/m_dom.php:1833 +msgid "IPv4 redirect" +msgstr "" + +#: ../class/m_dom.php:1834 +msgid "Webmail access" +msgstr "" + +#: ../class/m_dom.php:1835 +msgid "Squirrelmail Webmail access" +msgstr "" + +#: ../class/m_dom.php:1836 +msgid "Roundcube Webmail access" +msgstr "" + +#: ../class/m_dom.php:1837 +msgid "IPv6 redirect" +msgstr "" + +#: ../class/m_dom.php:1838 +msgid "CNAME DNS entry" +msgstr "" + +#: ../class/m_dom.php:1839 +msgid "TXT DNS entry" +msgstr "" + +#: ../class/m_dom.php:1840 +msgid "MX DNS entry" +msgstr "" + +#: ../class/m_dom.php:1841 +msgid "secondary MX DNS entry" +msgstr "" + +#: ../class/m_dom.php:1842 +msgid "Default mail server" +msgstr "" + +#: ../class/m_dom.php:1843 +msgid "Default backup mail server" +msgstr "" + +#: ../class/m_dom.php:1844 +msgid "AlternC panel access" +msgstr "" + +#: ../class/m_err.php:66 ../class/m_err.php:98 +msgid "err_" +msgstr "" + +#: ../class/m_ftp.php:56 ../class/m_ftp.php:447 +msgid "FTP accounts" +msgstr "" + +#: ../class/m_ftp.php:105 +msgid "This account do not exist or is not of this account" +msgstr "" + +#: ../class/m_ftp.php:117 +msgid "Error during update" +msgstr "" + +#: ../class/m_ftp.php:151 +msgid "No FTP account found" +msgstr "" + +#: ../class/m_ftp.php:187 ../class/m_ftp.php:262 ../class/m_ftp.php:322 +msgid "This FTP account does not exist" +msgstr "" + +#: ../class/m_ftp.php:217 +#, php-format +msgid "FTP login is incorrect: too many '%s'" +msgstr "" + +#: ../class/m_ftp.php:224 +msgid "FTP login is incorrect" +msgstr "" + +#: ../class/m_ftp.php:271 ../class/m_ftp.php:351 +msgid "The chosen prefix is not allowed" +msgstr "" + +#: ../class/m_ftp.php:282 ../class/m_ftp.php:360 +msgid "This FTP account already exists" +msgstr "" + +#: ../class/m_ftp.php:290 ../class/m_ftp.php:372 +msgid "The directory cannot be created" +msgstr "" + +#: ../class/m_ftp.php:347 +msgid "Password can't be empty" +msgstr "" + +#: ../class/m_ftp.php:388 +msgid "Your FTP account quota is over. You cannot create more ftp accounts" +msgstr "" + +#: ../class/m_hta.php:60 +msgid "Protected folders" +msgstr "" + +#: ../class/m_hta.php:81 ../class/m_hta.php:291 ../class/m_hta.php:332 +#, php-format +msgid "The folder '%s' does not exist" +msgstr "" + +#: ../class/m_hta.php:89 ../class/m_hta.php:94 ../class/m_hta.php:104 +#: ../class/m_hta.php:253 ../class/m_hta.php:298 ../class/m_hta.php:347 +msgid "File already exist" +msgstr "" + +#: ../class/m_hta.php:98 +msgid "Restricted area" +msgstr "" + +#: ../class/m_hta.php:126 +msgid "No protected folder" +msgstr "" + +#: ../class/m_hta.php:208 +#, php-format +msgid "I cannot delete the file '%s/.htaccess'" +msgstr "" + +#: ../class/m_hta.php:212 +#, php-format +msgid "I cannot delete the file '%s/.htpasswd'" +msgstr "" + +#: ../class/m_hta.php:231 +msgid "Please enter a user" +msgstr "" + +#: ../class/m_hta.php:261 +#, php-format +msgid "The user '%s' already exist for this folder" +msgstr "" + +#: ../class/m_hta.php:273 +msgid "Please enter a valid username" +msgstr "" + +#: ../class/m_hta.php:402 +msgid "An incompatible .htaccess file exists in this folder" +msgstr "" + +#: ../class/m_log.php:60 +msgid "Logs" +msgstr "" + +#: ../class/m_lxc.php:133 +msgid "VM already started" +msgstr "" + +#: ../class/m_mail.php:95 +msgid "Email Addresses" +msgstr "" + +#: ../class/m_mail.php:158 ../class/m_mail.php:243 ../class/m_mail.php:328 +#: ../class/m_mail.php:455 ../class/m_mail.php:509 +msgid "The email you entered is syntaxically incorrect" +msgstr "" + +#: ../class/m_mail.php:191 +msgid "Email account password" +msgstr "" + +#: ../class/m_mail.php:281 +msgid "No email found for this query" +msgstr "" + +#: ../class/m_mail.php:340 +msgid "You cannot create email addresses: your quota is over" +msgstr "" + +#: ../class/m_mail.php:346 +msgid "This email address already exists" +msgstr "" + +#: ../class/m_mail.php:352 +msgid "An unexpected error occured when creating the email" +msgstr "" + +#: ../class/m_mail.php:406 +msgid "This email is not yours, you can't change anything on it" +msgstr "" + +#: ../class/m_mail.php:469 ../class/m_mail.php:875 +#, php-format +msgid "The email %s does not exist, it can't be deleted" +msgstr "" + +#: ../class/m_mail.php:473 +#, php-format +msgid "The email %s is already marked for deletion, it can't be deleted" +msgstr "" + +#: ../class/m_mail.php:482 +#, php-format +msgid "The email %s has been marked for deletion" +msgstr "" + +#: ../class/m_mail.php:488 +#, php-format +msgid "The email %s has been successfully deleted" +msgstr "" + +#: ../class/m_mail.php:520 +#, php-format +msgid "The email %s does not exist, it can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:524 +#, php-format +msgid "The email %s is special, it can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:528 +#, php-format +msgid "" +"Sorry, deletion of email %s is already in progress, or not marked for " +"deletion, it can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:537 +#, php-format +msgid "The email %s has been undeleted" +msgstr "" + +#: ../class/m_mail.php:540 +#, php-format +msgid "-- Program Error -- The email %s can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:621 +msgid "" +"There is forbidden characters in your email address. You can't make it a POP/" +"IMAP account, you can only use it as redirection to other emails" +msgstr "" + +#: ../class/m_mail.php:641 +msgid "" +"You set a quota smaller than the current mailbox size. Since it's not " +"allowed, we set the quota to the current mailbox size" +msgstr "" + +#: ../class/m_mail.php:826 +msgid "The slave MX account was not found" +msgstr "" + +#: ../class/m_mem.php:95 ../class/m_mem.php:101 ../class/m_mem.php:168 +#: ../class/m_mem.php:299 +msgid "User or password incorrect" +msgstr "" + +#: ../class/m_mem.php:105 ../class/m_mem.php:483 +msgid "This account is locked, contact the administrator" +msgstr "" + +#: ../class/m_mem.php:112 ../class/m_mem.php:271 +msgid "" +"This website is currently under maintenance, login is currently disabled." +msgstr "" + +#: ../class/m_mem.php:127 +msgid "Your IP isn't allowed to connect" +msgstr "" + +#: ../class/m_mem.php:243 +msgid "Missing password" +msgstr "" + +#: ../class/m_mem.php:252 +msgid "Identity lost or unknown, please login" +msgstr "" + +#: ../class/m_mem.php:258 ../class/m_mem.php:347 +msgid "Session unknown, contact the administrator" +msgstr "" + +#: ../class/m_mem.php:264 ../class/m_mem.php:352 +msgid "IP address incorrect, please contact the administrator" +msgstr "" + +#: ../class/m_mem.php:341 +msgid "Cookie incorrect, please accept the session cookie" +msgstr "" + +#: ../class/m_mem.php:388 +msgid "You are not allowed to change your password." +msgstr "" + +#: ../class/m_mem.php:392 +msgid "The old password is incorrect" +msgstr "" + +#: ../class/m_mem.php:396 ../class/m_mem.php:445 +msgid "The new passwords are differents, please retry" +msgstr "" + +#: ../class/m_mem.php:420 +msgid "You must be a system administrator to do this." +msgstr "" + +#: ../class/m_mem.php:440 +msgid "This account is locked, contact the administrator." +msgstr "" + +#: ../class/m_mem.php:448 +#, php-format +msgid "" +"Hello,\n" +"\n" +"You requested the modification of your password for your\n" +"account %s on %s\n" +"Here are your username and password to access the panel :\n" +"\n" +"--------------------------------------\n" +"\n" +"Username : %s\n" +"Password : %s\n" +"\n" +"--------------------------------------\n" +"\n" +"Note : if you didn't requested that modification, it means that\n" +"someone did it instead of you. You can choose to ignore this message.\n" +"If it happens again, please contact your server's Administrator. \n" +"\n" +"Cordially.\n" +msgstr "" + +#: ../class/m_mem.php:493 +#, php-format +msgid "" +"Hello,\n" +"\n" +"Someone (maybe you) requested an email's address modification of the " +"account\n" +"%s on %s\n" +"To confirm your request, go to this url :\n" +"\n" +"%s\n" +"\n" +"(Warning : if this address is displayed on 2 lines, don't forgot to\n" +"take it on one line).\n" +"The panel will ask you the key given when the email address\n" +"modification was requested.\n" +"\n" +"If you didn't asked for this modification, it means that someone\n" +"did it instead of you. You can choose to ignore this message. If it happens\n" +"again, please contact your server's administrator.\n" +"\n" +"Cordially.\n" +msgstr "" + +#: ../class/m_mem.php:534 +msgid "The information you entered is incorrect." +msgstr "" + +#: ../class/m_menu.php:113 +msgid "Home / Information" +msgstr "" + +#: ../class/m_menu.php:120 +msgid "Logout" +msgstr "" + +#: ../class/m_menu.php:127 +msgid "Online help" +msgstr "" + +#: ../class/m_menu.php:135 +msgid "Languages" +msgstr "" + +#: ../class/m_mysql.php:49 +msgid "" +"There are no databases in db_servers for this user. Please contact your " +"administrator." +msgstr "" + +#: ../class/m_mysql.php:110 +msgid "MySQL" +msgstr "" + +#: ../class/m_mysql.php:119 +msgid "Databases" +msgstr "" + +#: ../class/m_mysql.php:178 +msgid "Cannot connect to PhpMyAdmin" +msgstr "" + +#: ../class/m_mysql.php:219 ../class/m_mysql.php:385 +#, php-format +msgid "Database %s not found" +msgstr "" + +#: ../class/m_mysql.php:246 +msgid "Your databases quota is over. You cannot create more databases" +msgstr "" + +#: ../class/m_mysql.php:257 +msgid "Database can't have empty suffix" +msgstr "" + +#: ../class/m_mysql.php:262 ../class/m_mysql.php:380 ../class/m_mysql.php:462 +msgid "Database name can contain only letters and numbers" +msgstr "" + +#: ../class/m_mysql.php:268 +msgid "Database name cannot exceed 64 characters" +msgstr "" + +#: ../class/m_mysql.php:273 +#, php-format +msgid "Database %s already exists" +msgstr "" + +#: ../class/m_mysql.php:291 +msgid "" +"There is a problem with the special PhpMyAdmin user. Contact the " +"administrator" +msgstr "" + +#: ../class/m_mysql.php:310 +msgid "An error occured. The database could not be created" +msgstr "" + +#: ../class/m_mysql.php:328 +msgid "The database was not found. I can't delete it" +msgstr "" + +#: ../class/m_mysql.php:367 +msgid "User aren't allowed to configure their backups" +msgstr "" + +#: ../class/m_mysql.php:398 +msgid "You have to choose how many backups you want to keep" +msgstr "" + +#: ../class/m_mysql.php:402 +msgid "Directory does not exist" +msgstr "" + +#: ../class/m_mysql.php:420 ../class/m_mysql.php:465 +msgid "Database not found" +msgstr "" + +#: ../class/m_mysql.php:427 ../class/m_mysql.php:711 +msgid "The password is mandatory" +msgstr "" + +#: ../class/m_mysql.php:432 +msgid "MySQL password cannot exceed 16 characters" +msgstr "" + +#: ../class/m_mysql.php:472 +msgid "Databases rights are not correct" +msgstr "" + +#: ../class/m_mysql.php:477 +msgid "The username can contain only letters and numbers." +msgstr "" + +#: ../class/m_mysql.php:483 +msgid "Database user not found" +msgstr "" + +#: ../class/m_mysql.php:495 +msgid "Could not grant rights" +msgstr "" + +#: ../class/m_mysql.php:513 +msgid "No file specified" +msgstr "" + +#: ../class/m_mysql.php:520 ../class/m_mysql.php:524 +msgid "File not found" +msgstr "" + +#: ../class/m_mysql.php:707 +msgid "The username is mandatory" +msgstr "" + +#: ../class/m_mysql.php:715 ../class/m_mysql.php:792 +msgid "The username can contain only letters and numbers" +msgstr "" + +#: ../class/m_mysql.php:722 +msgid "MySQL username cannot exceed 16 characters" +msgstr "" + +#: ../class/m_mysql.php:727 +msgid "The database user already exists" +msgstr "" + +#: ../class/m_mysql.php:731 ../class/m_mysql.php:765 +msgid "The passwords do not match" +msgstr "" + +#: ../class/m_mysql.php:802 +msgid "The username was not found" +msgstr "" + +#: ../class/m_mysql.php:831 +msgid "This user does not exist in the MySQL/User database" +msgstr "" + +#: ../class/m_mysql.php:1105 +msgid "The directory could not be created" +msgstr "" + +#: ../class/m_piwik.php:40 +msgid "Piwik statistics" +msgstr "" + +#: ../class/m_piwik.php:45 +msgid "Piwik Users" +msgstr "" + +#: ../class/m_piwik.php:46 +msgid "Piwik Sites" +msgstr "" + +#: ../class/m_piwik.php:81 +msgid "Statistics through Piwik accounts" +msgstr "" + +#: ../class/m_piwik.php:193 ../class/m_piwik.php:316 +msgid "You are not allowed to delete the statistics of this website" +msgstr "" + +#: ../class/m_piwik.php:366 +msgid "Unable to reach the API" +msgstr "" + +#: ../class/m_piwik.php:372 +msgid "Error while decoding response from the API" +msgstr "" + +#: ../class/m_piwik.php:378 +msgid "Other format than JSON is not implemented yet" +msgstr "" + +#: ../class/m_quota.php:65 +msgid "Show my quotas" +msgstr "" + +#: ../class/m_quota.php:78 +#, php-format +msgid "%s%% of %s" +msgstr "" + +#: ../class/m_quota.php:78 ../class/m_quota.php:105 ../class/m_quota.php:196 +msgid "quota_" +msgstr "" + +#: ../class/m_quota.php:236 +msgid "Error writing the quota entry!" +msgstr "" + +#: ../class/m_quota.php:537 +msgid "B" +msgstr "" + +#: ../class/m_quota.php:537 +msgid "GB" +msgstr "" + +#: ../class/m_quota.php:537 +msgid "KB" +msgstr "" + +#: ../class/mime.php:135 +msgid "CSS Stylesheet" +msgstr "" + +#: ../class/mime.php:136 +msgid "Comma Separated Values data" +msgstr "" + +#: ../class/mime.php:137 +msgid "DIA Diagram" +msgstr "" + +#: ../class/mime.php:138 +msgid "Word Document" +msgstr "" + +#: ../class/mime.php:139 +msgid "Word Document Template" +msgstr "" + +#: ../class/mime.php:140 +msgid "Encapsulated Postscript" +msgstr "" + +#: ../class/mime.php:141 +msgid "GIF Image" +msgstr "" + +#: ../class/mime.php:142 +msgid "Macintosh Executable" +msgstr "" + +#: ../class/mime.php:143 ../class/mime.php:144 +msgid "HTML Document" +msgstr "" + +#: ../class/mime.php:145 ../class/mime.php:146 +msgid "JPEG Image" +msgstr "" + +#: ../class/mime.php:147 +msgid "Music Playlist" +msgstr "" + +#: ../class/mime.php:148 +msgid "MP3 Music File" +msgstr "" + +#: ../class/mime.php:149 +msgid "Ogg Music File" +msgstr "" + +#: ../class/mime.php:150 +msgid "Acrobat PDF" +msgstr "" + +#: ../class/mime.php:151 +msgid "PHP Source" +msgstr "" + +#: ../class/mime.php:152 +msgid "PNG Image" +msgstr "" + +#: ../class/mime.php:153 ../class/mime.php:154 +msgid "Powerpoint Slideshow" +msgstr "" + +#: ../class/mime.php:155 +msgid "Postscript Document" +msgstr "" + +#: ../class/mime.php:156 +msgid "Photoshop Image" +msgstr "" + +#: ../class/mime.php:157 +msgid "Rar Compressed Files" +msgstr "" + +#: ../class/mime.php:158 +msgid "Rich Text Document" +msgstr "" + +#: ../class/mime.php:159 +msgid "OpenOffice Spreadsheet" +msgstr "" + +#: ../class/mime.php:160 +msgid "OpenOffice Drawing" +msgstr "" + +#: ../class/mime.php:161 +msgid "OpenOffice Presentation" +msgstr "" + +#: ../class/mime.php:162 +msgid "OpenOffice Writer" +msgstr "" + +#: ../class/mime.php:163 ../class/mime.php:164 +msgid "TIFF Image" +msgstr "" + +#: ../class/mime.php:165 +msgid "Text Document" +msgstr "" + +#: ../class/mime.php:166 ../class/mime.php:167 +msgid "Virtual Card" +msgstr "" + +#: ../class/mime.php:168 +msgid "Gimp Image" +msgstr "" + +#: ../class/mime.php:169 +msgid "Excel Spreadsheet" +msgstr "" + +#: ../class/mime.php:170 +msgid "Zip Compressed Files" +msgstr "" + +#: ../class/mime.php:171 +msgid "Flash Animation" +msgstr "" + +#: ../class/mime.php:172 ../class/mime.php:173 ../class/mime.php:174 +msgid "Real Media File" +msgstr "" diff --git a/ssl/panel/locales/es_ES/LC_MESSAGES/alternc.mo b/ssl/panel/locales/es_ES/LC_MESSAGES/alternc.mo new file mode 100644 index 0000000000000000000000000000000000000000..dc06b5e5c652a19cfcfe2e71e413d09eb3c2c29f GIT binary patch literal 32813 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 Xl?wXi@^brREqzMGjHl8$82bMM%%BE| literal 0 HcmV?d00001 diff --git a/ssl/panel/locales/es_ES/LC_MESSAGES/manual.po b/ssl/panel/locales/es_ES/LC_MESSAGES/manual.po new file mode 100644 index 00000000..50d8917f --- /dev/null +++ b/ssl/panel/locales/es_ES/LC_MESSAGES/manual.po @@ -0,0 +1,839 @@ +# translation of manual.po to Spanish +# Spanish AlternC Translation +# Copyright (c) 2002 the AlternC Development Team +# +# +# Bruno Marmier , 2003. +# Daniel Viñar Ulriksen , 2008. +#. Template for AlternC Translation +#. Copyright (c) 2002 the AlternC Development Team +#. +#. $Id: admin.po,v 1.4 2006/02/09 20:12:23 benjamin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: manual\n" +"Report-Msgid-Bugs-To: i18n@alternc.org\n" +"POT-Creation-Date: 2004-05-24 19:34+0200\n" +"PO-Revision-Date: 2008-02-17 00:27-0400\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: es\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" + +# m_membre +#. -- Only administrators can access this page !! -- +msgid "err_admin_1" +msgstr "-- ¡¡Sólo los administradores tienen acceso a estas páginas!! --" + +#. Account not found +msgid "err_admin_2" +msgstr "No se encuentra el miembro" + +#. This login already exists +msgid "err_admin_3" +msgstr "¡Este login ya existe!" + +#. -- I cannot create this account -- +msgid "err_admin_4" +msgstr "--Imposible crear la cuenta--" + +#. Please enter a valid email address +msgid "err_admin_5" +msgstr "Por favor, entre un email válido." + +#. All fields are mandatory +msgid "err_admin_6" +msgstr "Los campos login, contraseña y correo son obligatorios." + +#. You can ask for your password only once a day ! +msgid "err_admin_7" +msgstr "¡Solo puedes pedir tu contraseña una vez por día!" + +#. This account is ALREADY an administrator account +msgid "err_admin_8" +msgstr "¡El usuario seleccionado YA es administrador!" + +#. This account is NOT an administrator account ! +msgid "err_admin_9" +msgstr "¡El usuario seleccionado NO es administrador!" + +# m_membre +#. Login can only contains characters a-z, 0-9 and - +msgid "err_admin_10" +msgstr "Los únicos caracteres autorizados son a-z 0-9 y -." + +# m_membre +#. This TLD does not exist +msgid "err_admin_11" +msgstr "Este TLD no existe" + +#. This TLD already exists +msgid "err_admin_12" +msgstr "Este TLD ya existe." + +# m_membre +#. The login is too long (16 chars max) +msgid "err_admin_13" +msgstr "El login es demasiado largo (16 caracteres máximo)" + +#. Domain names +msgid "quota_dom" +msgstr "Nombres de dominio" + +#. Domain '%s' not found. +msgid "err_dom_1" +msgstr "El dominio '%s' no existe." + +#. The domaine '%s' does not belong to you. +msgid "err_dom_2" +msgstr "El dominio '%s' no te pertenece." + +#. --- Programm error --- No lock on the domains ! +msgid "err_dom_3" +msgstr "--- Error de programación --- ¡Ningún Lock en los dominios!" + +#. The domain name is too long. +msgid "err_dom_4" +msgstr "El nombre de dominio es demasiado largo." + +#. One of the domain name member is too long. +msgid "err_dom_5" +msgstr "Uno de los componentes del nombre de dominio es demasiado largo." + +#. There is some forbidden characters in the domain name (only A-Z 0-9 and - are allowed). +msgid "err_dom_6" +msgstr "" +"Hay caracteres prohibidos en el nombre de dominio (sólo A-Z 0-9 y - son " +"autorizados)." + +#. The last member of the domain name is incorrect or cannot be hosted in that server. +msgid "err_dom_7" +msgstr "" +"El último componente (TLD) del dominio es incorrecto o no se puede hospedar " +"en este servidor." + +#. The domain already exists. +msgid "err_dom_8" +msgstr "El dominio ya existe." + +#. The domain has been deleted less than 5 minutes ago, please try again later. +msgid "err_dom_9" +msgstr "El dominio fue borrado hace menos de 5 minutos, intenta más tarde." + +#. Your domain quota is over, you cannot create more domain names. +msgid "err_dom_10" +msgstr "Alcanzaste el limite de tu cuota de dominios, no se pueden crear más." + +#. The Whois database is unavailable, please try again later. +msgid "err_dom_11" +msgstr "¡Conexión a la base Whois imposible!" + +#. The domain cannot be found in the whois database. +msgid "err_dom_12" +msgstr "No se encuentra el dominio en la base Whois" + +#. The domain has been changed less than 5 minutes ago. Please try again in a few minutes. +msgid "err_dom_13" +msgstr "El dominio fue modificado hace menos de 5 minutos, intenta más tarde." + +#. The sub-domain does not exist. +msgid "err_dom_14" +msgstr "El subdominio no existe." + +#. No change has been requested... +msgid "err_dom_15" +msgstr "No se pidió ninguna modificación..." + +#. The sub-domain already exists. +msgid "err_dom_16" +msgstr "El subdominio ya existe." + +#. --- Programm error --- Lock already obtained ! +msgid "err_dom_17" +msgstr "--- Error de programación --- ¡Lock sobre los dominios ya obtenidos!" + +#. This domain is the server's domain !!! You cannot host it on your account ! +msgid "err_dom_18" +msgstr "¡¡Este dominio es el del servidor!! No puedes instalarlo en tu cuenta." + +#. The IP address you entered is incorrect. +msgid "err_dom_19" +msgstr "La dirección IP ingresada es incorrecta." + +#. The URL you entered is incorrect. +msgid "err_dom_20" +msgstr "La URL es incorrecta. " + +#. The folder you entered is incorrect or does not exist. +msgid "err_dom_21" +msgstr "La carpeta especificada es incorrecta o no existe." + +#. The requested domain is forbidden in this server, please contact the administrator +msgid "err_dom_22" +msgstr "" +"El dominio solicitado está prohibido en este servidor, contacta al " +"administrador." + +#. The DNS of this domain do not match the server's DNS. Please change your +#. domain's DNS (and eventually wait 1 day) before you install it again. +msgid "err_dom_23" +msgstr "" +"Los DNS de este dominio no coinciden con los de este servidor. Tienes que " +"modificar los DNS del dominio (y esperar, a veces 24 horas) antes de poder " +"instalarlo." + +#. There is some forbidden characters in the sub domain (only A-Z 0-9 and - are allowed). +msgid "err_dom_24" +msgstr "" +"Hay caracteres prohibidos en el sub-dominio (sólo A-Z a-z 0-9 y - están " +"autorizados)." + +#. There is no MX record pointing to this server, and you are asking us to host the Mail here +msgid "err_dom_25" +msgstr "El dominio '%s' no te pertenece." + +#. - Entrez le nom du domaine que vous souhaitez héberger. Le nom de domaine +#. doit être complet, mais sans le www.
IMPORTANT : Si vous voulez +#. un hébergement réel de domaine, il faut que les DNS de votre domaine +#. pointent vers nos serveurs DNS. Contacter votre hébergeur pour plus +#. d'information.
Exemples : globenet.org / demo.com / test.eu.org etc. +#.
Plus d'info sur la gestion des domaines dans l'aide en ligne +#. HELPID_200
+msgid "hlp_add_domain" +msgstr "" +"- Entra el nombre de dominio que quieres hospedar. Debe estar completo pero " +"sin el www.
IMPORTANTE: Si quieres un hospedaje efectivo del " +"dominio, es necesario que los DNS de tu dominio apunten a los servidores DNS " +"de este hospedaje. Contacta a tu hospedaje para mayor información.
" +"Ejemplos: globenet.org / demo.com / test.eu.org etc.
Más información " +"acerca de la gestión de dominios en la ayuda en línea HELPID_200
" + +#. Cliquez sur le lien ci-dessus. Vous pourrez ensuite accéder aux paremètres +#. du domaine dans le menu à gauche.2 liens vont apparaitre :
- un +#. premier pour modifier les paramètres d'hébergement du domaine (sous- +#. domaines, redirections, hébergement mails ...)
- un second pour gérer +#. les comptes emails du domaine (si vous souhaitez créer des boites aux +#. lettres).
Plus d'info sur la gestion des domaines dans l'aide en ligne +#. HELPID_200
+msgid "hlp_add_domain_2" +msgstr "" +"Presiona sobre el enlace aquí abajo. Podrás entonces acceder a los " +"parámetros del dominio en el menú de la izquierda. Aparecerán dos enlaces: " +"
- uno para modificar los paráetros de hospedaje del dominio (sub-" +"dominios, redirecciones, hospedaje de correo, ...)
- otro para manejar " +"los buzones email del dominio (si deseas crear estos buzones).
Más " +"información acerca del manejo de dominios en la ayuda en línea " +"HELPID_200
" + +#. Le domaine a été effacé, mais les fichiers de votre site n'ont pas été +#. détruits.
Si vous souhaitez détruire les fichiers du site web, utilisez +#. le Gestionnaire de Fichier
Plus d'info sur la gestion des domaines dans +#. l'aide en ligne HELPID_200
+msgid "hlp_del_domain" +msgstr "" +"El dominio fue borrado, pero los archivos de tu sitio no fueron destruídos. " +"
Si quieres destruir los archivos del sitio (fuente de las pa?inas web) " +"Utiliza el manejador de archivos.
Más información sobre el manejo de " +"dominios en la ayuda en línea HELPID_200
" + +#. Cette zone vous permet de modifier les paramètres de votre domaine, ainsi +#. que des sous-domaines installés
Vous pouvez créer un nouveau sous- +#. domaine et choisir, soit de le rediriger vers votre espace disque, vers une +#. autre adresse Internet, ou vers une adresse IP (utilisateurs avancés)
+#. Plus d'info sur la gestion des domaines dans l'aide en ligne HELPID_200
+msgid "hlp_edit_domain" +msgstr "" +"Esta zona permite modificar los parámetros de tu dominio y los sub-dominios " +"instalados. .
Puedes crear un nuevo sub-dominio y elegir, ya sea que " +"responda con archivos de tu espacio de disco en este servidor, ya sea " +"redirigirlo hacia otra dirección internet o una dirección IP, ya sea hacia " +"la interfaz de webmail en este servidor. Esta última opción permitirá a los " +"usuarios de buzones email que puedas crear consultar su correo electrónico " +"por una iterfaz web.
Más información sobre el manejo de dominios en la " +"ayuda en línea HELPID_200
" + +#. FTP Accounts +msgid "quota_ftp" +msgstr "Cuentas FTP" + +#. No ftp account found +msgid "err_ftp_1" +msgstr "No se encontró ninguna cuenta FTP" + +#. This ftp account does not exist +msgid "err_ftp_2" +msgstr "Esta cuenta FTP no existe" + +#. The chosen prefix is not allowed +msgid "err_ftp_3" +msgstr "El prefijo escogido no está autorizado" + +#. This ftp account already exists +msgid "err_ftp_4" +msgstr "¡Esta cuenta FTP ya existe!" + +#. Your ftp account quota is over. You cannot create more ftp accounts. +msgid "err_ftp_5" +msgstr "" +"Alcanzaste el limite de tu cuota de cuentas FTP, no se pueden crear más." + +#. The directory cannot be created. +msgid "err_ftp_6" +msgstr "Imposible crear la carpeta." + +#. Voici la liste des comptes ftp ayant accès à votre compte. Cliquez sur +#. 'Modifier' pour changer le nom d'utilisateur, le mot de passe, ou le dossier +#. racine.
Pour supprimer un compte, cochez la case correspondante et +#. cliquez sur le bouton 'Supprimer les comptes cochés'
Pour pouvoir +#. accéder à vos fichiers avec un logiciel de ftp, vous devez créer au moins un +#. compte. Chaque compte est associé à un dossier, et n'aura donc accès qu'aux +#. fichiers situés dans ce dossier ou en dessous.
Plus d'info sur le FTP +#. dans l'aide en ligne HELPID_100
+msgid "hlp_ftp_list" +msgstr "" +"He aquí la lista de cuentas FTP que tienen acceso a tu cuenta. Presiona en " +"'Modificar' para cambiar el nombre de usuario, la contraseña, o la carpeta " +"raíz.
Para suprimir una cuenta, selecciona la casilla correspondiente " +"y presiona el botón 'Suprimir las cuentas marcadas'
Para acceder a tus " +"archivos con una cuenta FTP, debes crear al menos una cuenta. Cada cuenta " +"está asociada a una carpeta, y por ende sólo tendrá acceso a los archivos " +"situados en ésta y en sub-carpetas.
Más información sobre el FTP en la " +"ayuda en línea HELPID_100
" + +#. Vous n'avez actuellement aucun Compte FTP de disponible. Cliquez sur +#. 'Création d'un compte ftp' pour en créer un.
Pour pouvoir accéder à vos +#. fichiers avec un logiciel de ftp, vous devez créer au moins un compte. +#. Chaque compte est associé à un dossier, et n'aura donc accès qu'aux fichiers +#. situés dans ce dossier ou en dessous.
Plus d'info sur le FTP dans +#. l'aide en ligne HELPID_100
+msgid "hlp_ftp_list_no" +msgstr "" +"Actualmente no tienes ninguna cuenta FTP disponible. Si quieres una, " +"presiona en 'Crear una nueva cuenta FTP'.
Para acceder a tus archivos " +"con un software cliente FTP, tendrás que crear al menos una cuenta. Cada " +"cuenta está asociada a una carpeta, y por ende sólo tendrá acceso a los " +"archivos situados en ésta y en sub-carpetas.
Más información sobre el " +"FTP en la ayuda en línea HELPID_100
" + +#. Pour ajouter un compte ftp, vous devez choisir un Nom d'utilisateur, un mot +#. de passe, et un répertoire racine
Le nom d'utilisateur commence +#. toujours par votre nom de login ou le nom d'un de vos domaines.
Le +#. répertoire racine, s'il n'existe pas, sera créé automatiquement.
Note : +#. Le compte que vous créez ainsi aura accès en lecture et en écriture aux +#. fichiers situés dans le répertoire et tous ses sous-répertoires.
Plus +#. d'info sur le FTP dans l'aide en ligne HELPID_100
+msgid "hlp_ftp_add" +msgstr "" +"Para agregar una cuenta FTP. tines que elegir un login de conexión, una " +"contraseña y una carpeta raíz. .
El login de conexión empieza siempre " +"por tu nombre de usuario o por uno de tus dominios.
La carpeta raíz, " +"si no existe, será creada automáticamente.
Nota: La cuenta que creas " +"así tendrá acceso en lectura y en escritura a los archivos situados en la " +"carpeta raíz asociada y en sus sub-carpetas.
Plus d'info sur le FTP " +"dans l'aide en ligne HELPID_100
" + +#. An incompatible .htaccess file exists in this folder. +msgid "err_hta_1" +msgstr "Un archivo .htaccess incompatible se encuentra en la carpeta. " + +#. .htaccess parsed and syntaxically correct, a .htpassword file has been created. +msgid "err_hta_2" +msgstr ".htaccess reconocido y sintaxis correcta, un .htpasswd fue creado." + +#. .htaccess parsed and syntaxically correct, a .htpasswd already exist. +msgid "err_hta_3" +msgstr ".htaccess reconocido y sintaxis correcta, .htpasswd ya existe" + +#. No protected folder +msgid "err_hta_4" +msgstr "No hay ninguna carpeta protegida" + +#. I cannot delete the file '%s'/.htaccess +msgid "err_hta_5" +msgstr "Imposible suprimir el archivo '%s'/.htaccess" + +#. I cannot delete the file '%s'/.htpasswd +msgid "err_hta_6" +msgstr "Imposible suprimir el archivo '%s'/.htpasswd" + +#. The file .htaccess does not exist +msgid "err_hta_7" +msgstr "El archivo .htaccess no existe" + +#. The folder '%s' does not exist +msgid "err_hta_8" +msgstr "La carpeta '%s' no existe" + +#. The file '%s' is not correct +msgid "err_hta_9" +msgstr "El archivo '%s' no es válido" + +#. The user '%s' already exist for this folder +msgid "err_hta_10" +msgstr "El usuario '%s' ya está existe para esta carpeta" + +#. Please enter a valid username +msgid "err_hta_11" +msgstr "Por favor entra un nombre de usuario válido" + +#. Email Accounts +msgid "quota_mail" +msgstr "Buzones de correos" + +#. DB connection impossible, please try again later. +msgid "err_mail_1" +msgstr "Conexión LDAP imposible. Intenta más tarde." + +#. No email on domain '%s' +msgid "err_mail_2" +msgstr "Ningún buzón de correo en el dominio '%s'." + +#. The email '%s' does not exist +msgid "err_mail_3" +msgstr "El buzón '%s' no existe." + +#. Please check 'pop account' and choose a password pop, or enter some +#. redirections, or both +msgid "err_mail_4" +msgstr "" +"Por favor, marca 'cuenta POP' e ingresa una contraseña POP o entra " +"direcciones dónde redirigir los mensajes o ambas cosas." + +#. -- Server error --- Parameter is incorrect (%s) +msgid "err_mail_5" +msgstr "-- Error Servidor--- Parámetro incorrecto (%s)" + +#. The domain '%s' does not exist. +msgid "err_mail_6" +msgstr "El dominio '%s' no existe." + +#. The email '%s' already exists. +msgid "err_mail_7" +msgstr "El buzón '%s' ya existe." + +#. Your mail account quota is over. You cannot create more email accounts. +msgid "err_mail_8" +msgstr "" +"Alcanzaste el limite de tu cuota de buzones de correo, no se pueden crear " +"más." + +#. The domain '%s' does not exist. +msgid "err_mail_9" +msgstr "El dominio '%s' ya existe." + +#. -- Programm error -- Mail quota does not exist +msgid "err_mail_10" +msgstr "-- Error de programación -- la cuota Mail no existe." + +#. Please enter an Email address +msgid "err_mail_11" +msgstr "Ingresa una dirección de correo" + +#. Please enter a pop password +msgid "err_mail_12" +msgstr "Ingresa una contraseña pop" + +#. Please enter a valid email +msgid "err_mail_13" +msgstr "Ingresa una dirección de correo válida." + +#. One or more email redirection are invalid +msgid "err_mail_14" +msgstr "Una o más direcciones de correos para la redirección no son válidas." + +#. This mail is not a pop account. It's impossible to change the password ! +msgid "err_mail_15" +msgstr "" +"Esta cuenta no es una cuenta POP. ¡Es imposible cambiarle la contraseña!" + +#. OK +msgid "err_err_0" +msgstr "OK" + +#. The error message does not exist (%s) +msgid "err_err_1" +msgstr "El mensaje de error no existe (%s)" + +#. This is a date representation : parameters are the date as follow : +#. $d,$m,$y,$h,$i,$hh,$am +#. 1 2 3 4 5 6 7 +#. hh is the hour in 12 hours format, and am is 'am' or 'pm'. +#. eg: english : %3$d/%1$d/%2$d, at %6$d:%5$d %7$s +msgid "the %3$d-%2$d-%1$d at %4$d:%5$d" +msgstr "el %1$d/%2$d/%3$d, a las %4$dh%5$d" + +#. User or password incorrect +msgid "err_mem_1" +msgstr "Usuario o contraseña incorrecta." + +#. This account is locked, contact the administrator +msgid "err_mem_2" +msgstr "Cuenta bloqueada, contacta al administrador." + +#. Cookie incorrect, please accept the session cookie +msgid "err_mem_3" +msgstr "Cookie incorrecto, tu navegador tiene que aceptar los cookies." + +#. Session unknown, contact the administrator +msgid "err_mem_4" +msgstr "Sesión inexistente, contacta al administrador." + +#. IP address incorrect, please contact the administrator +msgid "err_mem_5" +msgstr "IP incorrecta, contacta al administrador." + +#. The old password is incorrect +#. PROBLEME : il y avait 2 fois le 5, les autres messages doivent surement etre décalés (TODO) +msgid "err_mem_6" +msgstr "La antigua contraseña es incorrecta." + +#. The new passwords are differents, please retry +msgid "err_mem_7" +msgstr "Las dos versiones de la nueva contraseña son distintas." + +#. A password must be at least 3 characters long. +msgid "err_mem_8" +msgstr "Una contraseña debe estar compuesta por lo menos de 3 caracteres." + +#. The information you entered is incorrect +msgid "err_mem_9" +msgstr "Los datos proporcionados son incorrectos." + +#. You are not allowed to change your password. +msgid "err_mem_11" +msgstr "No estás autorizado a cambiar tu contraseña." + +#. You must be a system administrator to do this +msgid "err_mem_12" +msgstr "" +"Debes ser administrador para cambiar las preferencias de Administrador." + +# Please do NOT translate those strings to each language. Use the original language instead +#. Français (France) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "fr_FR" +msgstr "Français (France)" + +#. Français (Canada) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "fr_CA" +msgstr "Français (Canada)" + +#. English (United States) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "en_US" +msgstr "English (United States)" + +#. English (United Kingdom) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "en_UK" +msgstr "English (United Kingdom)" + +#. Deutsch (Germany) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "de_DE" +msgstr "Deutsch (Germany)" + +#. Español (Spania) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "es_ES" +msgstr "Español (España)" + +#. Español (Venezuela) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "es_VE" +msgstr "Español (Venezuela)" + +#. OK +msgid "err_quota_0" +msgstr "OK" + +#. Error writing the quota entry ! +msgid "err_quota_1" +msgstr "Les cuotas de disco no están activadas en este servidor." + +#. MySQL Databases +msgid "quota_mysql" +msgstr "Bases de datos MySQL" + +#. MySQL Users +#, fuzzy +msgid "quota_mysql_users" +msgstr "Usarios MySQL" + +#. Disk space +msgid "quota_web" +msgstr "Espacio disco (Ko)" + +#. Data base name can contain only digits or lowercase alphabetic characters +msgid "err_mysql_2" +msgstr "" +"El nombre de la base de datos sólo puede contener cifras y letras minúsculas." + +#. The database does not exist, you'll get an access by creating it. +msgid "err_mysql_3" +msgstr "Esta base de datos ya existe, utiliza otro nombre." + +#. This database already exists! +msgid "err_mysql_4" +msgstr "¡Esta base de datos no existe!" + +#. Your backup number is incorrect. +msgid "err_mysql_5" +msgstr "¡El número de copias de respaldo es incorrecto!" + +#. The folder is incorrect! +msgid "err_mysql_6" +msgstr "¡La carpeta es incorrecta!" + +#. The file name you chose does not exist or is incorrect. +msgid "err_mysql_7" +msgstr "No tienes ninguna base de datos, no puedes cambiar la contraseña." + +#. The password is too long (16 chars max) +msgid "err_mysql_8" +msgstr "La contraseña es demasiado larga (16 caracteres máximo)." + +#. The file is incorrect or does not exist. +msgid "err_mysql_9" +msgstr "El archivo especificado no existe o es incorrecto." + +# ################################################################# +# m_webaccess +#. Your cannot create your main database : you still have other dbs ! +msgid "err_mysql_10" +msgstr "Error: no puedes crear tu base principal. ¡Te quedan otras bases!" + +# ################################################################# +# m_webaccess +#. You have no database, click on 'Databases' to create the first one +msgid "err_mysql_11" +msgstr "" +"No tienes ninguna base de datos disponible. Presiona en «Bases de datos» " +"para crear una." + +# ################################################################# +# m_webaccess +#. The data base name is too long (64 chars max) +msgid "err_mysql_12" +msgstr "No tienes ninguna base de datos disponible." + +# ################################################################# +# m_webaccess +#. You cannot create more MySQL users +msgid "err_mysql_13" +msgstr "No tienes ninguna base de datos disponible." + +# ################################################################# +# m_webaccess +#. MySQL users can only have a-z and 0-9 characters. +msgid "err_mysql_14" +msgstr "El nombre de usuario sólo puede contener cifras y/o letras minúsculas." + +# ################################################################# +# m_webaccess +#. MySQL users must be less than 16 characters long. +msgid "err_mysql_15" +msgstr "Nombre de usuario demasiado largo (16 caracteres máximo)" + +# ################################################################# +# m_webaccess +#. This MySQL user already exists. +msgid "err_mysql_16" +msgstr "Ya existe un usuario con el mismo nombre" + +# ################################################################# +# m_webaccess +#. Passwords do not match. +msgid "err_mysql_17" +msgstr "Las contraseñas no corresponden." + +# ################################################################# +# m_webaccess +#. The requested MySQL user does not exist. +msgid "err_mysql_18" +msgstr "El usuario no existe." + +# ################################################################# +# m_webaccess +#. You have no MySQL users at the moment. +msgid "err_mysql_19" +msgstr "Ningún usuario está definido en MySQL." + +#. Your MySQL backups are stored in the chosen folder from db.sql.1 to db.sql.19
your database name replaces 'db'.
WARNING: If you modify backup settings (backups, compression...) previous +#. backups may remain in the backup folder. Go to the file manager to delete +#. them. +msgid "hlp_sql_bck" +msgstr "" +"Los respaldos de tu base de datos MySQL se almacenan en la carpeta elegida " +"con los nombres db.sql.1 a db.sql.19
donde " +"'db' se remplaza por el nombre de la base de datos.
CUIDADO: si " +"modificas los parámetros de respaldo (número de respaldos, compresiones...) " +"viejos respaldos pueden quedar en la carpta correspondiente. Los puedes " +"borrar a través del manejador de archivos." + +#. Web Statistics +msgid "quota_sta2" +msgstr "Estadísticas Web en bruto" + +# ################################################################# +# m_webaccess +#. You cannot create more raw statistic set. +msgid "err_sta2_1" +msgstr "" +"Alcanzaste tu cuota de juegos de estadísticas, ya no puedes crear más. " + +#. There is currently no raw statistic set. +msgid "err_sta2_2" +msgstr "Ningún juego de estadísticas en bruto." + +#. The requested raw statistic set has not been found. +msgid "err_sta2_3" +msgstr "No se encuentra este juego de estadísticas en bruto." + +#. File or folder name is incorrect +msgid "err_bro_1" +msgstr "¡Carpeta o archivo incorrecto!" + +#. You cannot move or copy a file to the same folder +msgid "err_bro_2" +msgstr "¡No se puede desplazar un archivo hacia la misma carpeta!" + +#. If we manage your DNS
You can manage your mails elsewhere if you want +#. (MX field).
Write %s in this field if your mail +#. must be managed by %s
or put the IP address or name of the mail server +#. used to manage your mails.Warning : if you put nothing in this field, +#. your mails will be unavailable +msgid "help_dns_mx %s %s" +msgstr "" +"Si este servidor maneja tu DNS:
Si quieres, puedes manejar tus buzones " +"de correo en otro lado (campo MX).
Ingresa %s en " +"este campo si tus buzones deben ser manejados por %s
o ingresa la " +"dirección IP o el nombre del servidor de mail utilizado para tus buzones " +"Cuidado: si no pones nada en este campo, tus direcciones de correo " +"estarán indisponibles." + +#. If we don't manage the DNS for this domain
do we manage your mails? +msgid "help_dns_mail" +msgstr "" +"Si este servidor no maneja el DNS de este dominio
¿maneja sus buzones " +"de correo?" + +#. If you want to delete the domain %s, click the button below.Warning : this +#. delete all the ftp, mails, mailing-lists ... associated with thisdomain and +#. all its subdomains! +msgid "help_domain_del %s" +msgstr "" +"Si quieres borrar el dominio %s, presiona el botón aquí abajo. ¡Cuidado: " +"esto borrará todas las cuentas FTP, los buzones, las listas de correo, ... " +"asociadas con el dominio y todos sus subdominios!" + +#. You can create various databases
Click on 'SQL Admin' in the menu to +#. manage them
or use the table below to backup, retrieve or delete them: +msgid "help_sql_list_ok" +msgstr "" +"Puedes crear varias bases de datos
Presiona en 'Admin SQL' en el menu " +"para manejarlas
o utiliza el menú a continuación para respaldarlas, " +"restaurarlas o borrarlas:" + +#. Your haven't created your main database yet, please enter a password to create it. +msgid "help_sql_list_no" +msgstr "" +"Aún no has creado tu base de datos principal, por favor entra una contraseña " +"para crearla." + +#. This is a date representation : parameters are the date as follow : +#. $d,$m,$y,$h,$i,$hh,$am +#. 1 2 3 4 5 6 7 +#. hh is the hour in 12 hours format, and am is 'am' or 'pm'. +#. eg: english : %3$d/%1$d/%2$d, at %6$d:%5$d %7$s +msgid "%3$d-%2$d-%1$d %4$d:%5$d" +msgstr "%1$d/%2$d/%3$d %6$d:%5$d %7$d" + +msgid "1 column, detailed" +msgstr "" + +msgid "2 columns, short" +msgstr "" + +msgid "3 columns, short" +msgstr "" + +msgid "Go back to the file manager" +msgstr "" + +msgid "Edit the newly created file" +msgstr "" + +#, fuzzy +msgid "hlp_login" +msgstr "" +"El dominio fue borrado, pero los archivos de tu sitio no fueron destruídos. " +"
Si quieres destruir los archivos del sitio (fuente de las pa?inas web) " +"Utiliza el manejador de archivos.
Más información sobre el manejo de " +"dominios en la ayuda en línea HELPID_200
" + +# m_membre +#, fuzzy +msgid "err_admin_14" +msgstr "-- ¡¡Sólo los administradores tienen acceso a estas páginas!! --" + +# m_membre +#, fuzzy +msgid "err_admin_15" +msgstr "-- ¡¡Sólo los administradores tienen acceso a estas páginas!! --" + +# m_membre +#, fuzzy +msgid "err_admin_16" +msgstr "-- ¡¡Sólo los administradores tienen acceso a estas páginas!! --" + +# m_membre +#, fuzzy +msgid "err_admin_17" +msgstr "-- ¡¡Sólo los administradores tienen acceso a estas páginas!! --" + +# m_membre +#, fuzzy +msgid "err_admin_18" +msgstr "-- ¡¡Sólo los administradores tienen acceso a estas páginas!! --" + +#, fuzzy +msgid "err_hta_12" +msgstr "Un archivo .htaccess incompatible se encuentra en la carpeta. " + +#, fuzzy +msgid "err_mail_16" +msgstr "Conexión LDAP imposible. Intenta más tarde." + +#, fuzzy +msgid "err_mysql_20" +msgstr "" +"El nombre de la base de datos sólo puede contener cifras y letras minúsculas." + +#, fuzzy +msgid "err_mysql_21" +msgstr "" +"El nombre de la base de datos sólo puede contener cifras y letras minúsculas." + +#, fuzzy +msgid "err_bro_3" +msgstr "¡Carpeta o archivo incorrecto!" + +#, fuzzy +msgid "%3$d-%2$d-%1$d" +msgstr "%1$d/%2$d/%3$d %6$d:%5$d %7$d" + +msgid "AlternC's account password" +msgstr "Mots de passe des comptes AlternC" + +msgid "POP/IMAP account passwords" +msgstr "Mots de passe des comptes POP/IMAP" + +msgid "Protected folders passwords" +msgstr "Mots de passe des dossiers protégés" diff --git a/ssl/panel/locales/es_ES/LC_MESSAGES/messages.po b/ssl/panel/locales/es_ES/LC_MESSAGES/messages.po new file mode 100644 index 00000000..b2d617f6 --- /dev/null +++ b/ssl/panel/locales/es_ES/LC_MESSAGES/messages.po @@ -0,0 +1,5986 @@ +# translation of messages.po to +# translation of admin2.po to +# Spanish AlternC Translation +# Copyright (c) 2002 the AlternC Development Team +# +# +# Bruno Marmier , 2003, 2004. +# Daniel Viñar Ulriksen , 2008. +msgid "" +msgstr "" +"Project-Id-Version: messages\n" +"Report-Msgid-Bugs-To: i18n@alternc.org\n" +"POT-Creation-Date: 2013-10-18 15:42+0200\n" +"PO-Revision-Date: 2008-09-05 16:50+0200\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: es\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" + +#: ../../squirrelmail/alternc_changepass/change.php:39 +msgid "Can't connect to MySQL server on AlternC!" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:66 +msgid "Your new passwords are differents, pleasy try again." +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:72 +msgid "" +"Your account has not been found, please try again later or ask an " +"administrator." +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:75 +msgid "Your current password is incorrect, please try again." +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:88 +msgid "" +"Your password has been successfully changed. Don't forget to change it in " +"your mail software if you are using one (Outlook, Mozilla, Thunderbird, " +"Eudora ...)" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:111 +#, fuzzy +msgid "Changing your mail password" +msgstr "Modificar contraseña" + +#: ../../squirrelmail/alternc_changepass/change.php:115 +#, fuzzy +msgid "Old Password:" +msgstr "Antigua contraseña" + +#: ../../squirrelmail/alternc_changepass/change.php:120 +#, fuzzy +msgid "New Password:" +msgstr "Nueva contraseña" + +#: ../../squirrelmail/alternc_changepass/change.php:124 +#, fuzzy +msgid "Verify New Password:" +msgstr "Nueva contraseña" + +# msgid "New password" +# msgstr "Nueva contraseña" +#: ../../squirrelmail/alternc_changepass/change.php:129 +#, fuzzy +msgid "Change my mail password" +msgstr "Cambiar mi contraseña" + +# msgid "New password" +# msgstr "Nueva contraseña" +#: ../../squirrelmail/alternc_changepass/setup.php:21 +#, fuzzy +msgid "Change Password" +msgstr "Cambiar mi contraseña" + +#: ../../squirrelmail/alternc_changepass/setup.php:23 +#, fuzzy +msgid "Change the password of your email account." +msgstr "Cambiar la dirección de correo de la cuenta" + +#: ../admin/about.php:36 +msgid "About AlternC" +msgstr "" + +#: ../admin/about.php:37 +#, fuzzy +msgid "Hosting control panel" +msgstr "Panel Administrador" + +#: ../admin/about.php:41 +msgid "" +"AlternC is an automatic hosting software suite. It features a PHP-based " +"administration interface and scripts that manage server configuration.
It manages, among others, email, Web, Web statistics, and mailing list " +"services. It is available in many languages. It is a free software " +"distributed under GPL license." +msgstr "" + +#: ../admin/about.php:47 +msgid "Official website: " +msgstr "" + +#: ../admin/about.php:48 +msgid "Developer website: " +msgstr "" + +#: ../admin/about.php:49 +#, fuzzy +msgid "Help: " +msgstr "Ayuda" + +#: ../admin/about.php:57 +#, fuzzy +msgid "You are currently using AlternC " +msgstr "Los parámetros actuales son" + +#: ../admin/adm_add.php:36 ../admin/adm_db_servers.php:30 +#: ../admin/adm_deactivate.php:35 ../admin/adm_deactivate.php:52 +#: ../admin/adm_defquotas.php:35 ../admin/adm_dnsweberror.php:33 +#: ../admin/adm_doadd.php:26 ../admin/adm_dodefquotas.php:35 +#: ../admin/adm_dodel.php:33 ../admin/adm_dodel.php:52 +#: ../admin/adm_doedit.php:35 ../admin/adm_doedit.php:59 +#: ../admin/adm_domlock.php:33 ../admin/adm_doms.php:33 +#: ../admin/adm_doms_def_type.php:5 ../admin/adm_domstype.php:33 +#: ../admin/adm_domstypedoedit.php:4 ../admin/adm_domstypeedit.php:32 +#: ../admin/adm_domstyperegenerate.php:4 ../admin/adm_donosu.php:33 +#: ../admin/adm_dorenew.php:34 ../admin/adm_dorenew.php:45 +#: ../admin/adm_dosu.php:33 ../admin/adm_edit.php:36 ../admin/adm_edit.php:48 +#: ../admin/adm_email.php:30 ../admin/adm_list.php:32 ../admin/adm_list.php:58 +#: ../admin/adm_lockpanel.php:33 ../admin/adm_login.php:86 +#: ../admin/adm_login.php:93 ../admin/adm_mxaccount.php:33 +#: ../admin/adm_panel.php:33 ../admin/adm_passpolicy.php:30 +#: ../admin/adm_quotadoedit.php:33 ../admin/adm_quotaedit.php:34 +#: ../admin/adm_slavedns.php:33 ../admin/adm_tld.php:33 +#: ../admin/adm_tldadd.php:33 ../admin/adm_tlddoadd.php:33 +#: ../admin/adm_tlddoedit.php:39 ../admin/adm_tldedit.php:33 +#: ../admin/adm_update_domains.php:34 ../admin/adm_variables.php:33 +#: ../admin/dom_subdel.php:46 ../admin/dom_subdodel.php:47 +#: ../admin/dom_subdoedit.php:53 ../admin/dom_subedit.php:49 +#: ../admin/quotas_users.php:13 ../class/reset_stats_conf.php:6 +msgid "This page is restricted to authorized staff" +msgstr "Esta página está reservada a los administradores" + +#: ../admin/adm_add.php:54 +#, fuzzy +msgid "New AlternC account" +msgstr "Suprimir este tipo de cuenta" + +#: ../admin/adm_add.php:64 ../admin/adm_edit.php:69 +#: ../admin/adm_quotaedit.php:68 ../admin/ftp_edit.php:71 +#: ../admin/ftp_list.php:72 ../admin/hta_adduser.php:54 +#: ../admin/hta_edit.php:61 ../admin/hta_edit.php:98 ../admin/index.php:89 +#: ../admin/piwik_userlist.php:79 ../admin/sql_users_add.php:59 +msgid "Username" +msgstr "Nombre de usuario" + +#: ../admin/adm_add.php:68 +msgid "Initial password" +msgstr "Contraseña inicial" + +# msgid "New password" +# msgstr "Nueva contraseña" +#: ../admin/adm_add.php:72 ../admin/adm_edit.php:89 ../admin/ftp_edit.php:88 +#: ../admin/hta_adduser.php:62 ../admin/hta_edit.php:106 +#: ../admin/hta_edituser.php:63 ../admin/mail_edit.php:97 +#: ../admin/sql_users_add.php:67 ../admin/sql_users_password.php:63 +msgid "Confirm password" +msgstr "Confirmar contraseña" + +#: ../admin/adm_add.php:76 +msgid "Can he change its password" +msgstr "¿Puede cambiar su contraseña?" + +#: ../admin/adm_add.php:78 ../admin/adm_domstype.php:82 +#: ../admin/adm_domstype.php:83 ../admin/adm_domstype.php:84 +#: ../admin/adm_domstype.php:85 ../admin/adm_domstype.php:86 +#: ../admin/adm_edit.php:78 ../admin/adm_edit.php:95 +#: ../admin/adm_passpolicy.php:113 ../admin/adm_passpolicy.php:157 +#: ../admin/dom_edit.php:231 ../admin/dom_edit.php:254 +#: ../admin/dom_subdel.php:71 ../admin/mail_edit.php:90 +#: ../admin/mail_list.php:164 ../admin/sql_bck.php:94 ../class/m_bro.php:70 +msgid "No" +msgstr "No" + +#: ../admin/adm_add.php:79 ../admin/adm_domstype.php:82 +#: ../admin/adm_domstype.php:83 ../admin/adm_domstype.php:84 +#: ../admin/adm_domstype.php:85 ../admin/adm_domstype.php:86 +#: ../admin/adm_edit.php:79 ../admin/adm_edit.php:96 +#: ../admin/adm_passpolicy.php:114 ../admin/adm_passpolicy.php:157 +#: ../admin/dom_edit.php:230 ../admin/dom_edit.php:253 +#: ../admin/dom_subdel.php:70 ../admin/mail_edit.php:91 +#: ../admin/mail_list.php:209 ../admin/mail_list.php:220 +#: ../admin/mail_list.php:231 ../admin/mail_list.php:249 +#: ../admin/mail_list.php:260 ../admin/mail_list.php:271 +#: ../admin/mail_list.php:282 ../admin/sql_bck.php:95 ../class/m_bro.php:70 +msgid "Yes" +msgstr "Sí" + +#: ../admin/adm_add.php:83 ../admin/adm_edit.php:100 +#, fuzzy +msgid "Notes" +msgstr "Nombres" + +#: ../admin/adm_add.php:87 ../admin/adm_edit.php:104 +msgid "First Name" +msgstr "Nombre" + +#: ../admin/adm_add.php:87 ../admin/adm_edit.php:104 +msgid "Surname" +msgstr "Apellido" + +#: ../admin/adm_add.php:91 ../admin/adm_edit.php:108 +msgid "Email address" +msgstr "Dirección de correo" + +#: ../admin/adm_add.php:95 ../admin/adm_dodefquotas.php:48 +#: ../admin/adm_dodefquotas.php:50 ../admin/adm_dodefquotas.php:57 +#: ../admin/adm_dodefquotas.php:59 ../admin/adm_edit.php:112 +msgid "Account type" +msgstr "Tipo de cuenta" + +#: ../admin/adm_add.php:105 +msgid "Wich database server for this user ?" +msgstr "" + +#: ../admin/adm_add.php:107 +msgid "Warning: you can't change it after the creation of the user." +msgstr "" + +#: ../admin/adm_add.php:124 +#, fuzzy, php-format +msgid "Install the domain" +msgstr "Administración de los dominios instalados" + +#: ../admin/adm_add.php:140 +#, fuzzy +msgid "Create this AlternC account" +msgstr "Crear la cuenta FTP." + +#: ../admin/adm_add.php:141 ../admin/adm_deactivate.php:75 +#: ../admin/adm_domstypeedit.php:134 ../admin/adm_edit.php:124 +#: ../admin/adm_quotaedit.php:88 ../admin/adm_tldadd.php:71 +#: ../admin/adm_tldedit.php:70 ../admin/bro_pref.php:150 +#: ../admin/browseforfolder.php:146 ../admin/browseforfolder2.php:142 +#: ../admin/ftp_del.php:83 ../admin/ftp_edit.php:98 +#: ../admin/hta_adduser.php:68 ../admin/hta_dodeluser.php:65 +#: ../admin/hta_edit.php:113 ../admin/mail_edit.php:116 +#: ../admin/mail_manage_catchall.php:122 ../admin/piwik_site_dodel.php:71 +#: ../admin/piwik_user_dodel.php:69 ../admin/sql_bck.php:108 +#: ../admin/sql_users_add.php:73 ../admin/sql_users_password.php:69 +#: ../admin/sql_users_rights.php:104 +msgid "Cancel" +msgstr "Cancelar" + +#: ../admin/adm_authip_whitelist.php:31 ../admin/ip_main.php:50 +#: ../class/m_authip.php:40 +msgid "Access security" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:39 +msgid "" +"The IP and subnet you have here are allowed for ALL users and ALL usages" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:39 +msgid "Warning" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:44 +#, fuzzy +msgid "Add an IP" +msgstr "Añadir un nuevo TLD" + +#: ../admin/adm_authip_whitelist.php:44 ../admin/ip_main.php:174 +msgid "Add my current IP" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:47 ../admin/ip_main.php:177 +#, fuzzy +msgid "Cancel edit" +msgstr "Cancelar" + +#: ../admin/adm_authip_whitelist.php:50 +msgid "" +"Enter here the IP address you want.
IPv4, IPv6 and subnet allowed" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:54 +#, fuzzy +msgid "Add a comment" +msgstr "Hospedar un dominio" + +#: ../admin/adm_authip_whitelist.php:57 ../admin/adm_doms_def_type.php:88 +#: ../admin/bro_editor.php:89 ../admin/ftp_edit.php:97 +#: ../admin/ip_main.php:135 ../admin/ip_main.php:186 +#: ../admin/mail_manage_catchall.php:121 +msgid "Save" +msgstr "Guardar" + +#: ../admin/adm_authip_whitelist.php:64 +msgid "IP" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:64 +msgid "Informations" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:64 ../admin/adm_doms_def_type.php:48 +#: ../admin/dom_edit.php:130 ../admin/ip_main.php:146 +msgid "Type" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:82 ../admin/adm_domstype.php:74 +#: ../admin/adm_list.php:200 ../admin/adm_list.php:222 +#: ../admin/adm_list.php:251 ../admin/adm_passpolicy.php:151 +#: ../admin/adm_tld.php:80 ../admin/dom_edit.php:140 ../admin/ftp_list.php:78 +#: ../admin/ip_main.php:164 ../admin/mail_list.php:150 +msgid "Edit" +msgstr "Modificar" + +#: ../admin/adm_authip_whitelist.php:83 ../admin/adm_doms_def_type.php:60 +#: ../admin/adm_mxaccount.php:83 ../admin/adm_slavedns.php:101 +#: ../admin/adm_slavedns.php:145 ../admin/bro_main.php:285 +#: ../admin/cron.php:54 ../admin/dom_edit.php:123 ../admin/dom_edit.php:146 +#: ../admin/ftp_del.php:82 ../admin/hta_dodeluser.php:64 +#: ../admin/ip_main.php:79 ../admin/ip_main.php:165 +#: ../admin/piwik_site_dodel.php:70 ../admin/piwik_sitelist.php:128 +#: ../admin/piwik_user_dodel.php:68 ../admin/piwik_userlist.php:87 +msgid "Delete" +msgstr "Borrar" + +#: ../admin/adm_db_servers.php:35 +msgid "List of the databases servers" +msgstr "" + +#: ../admin/adm_db_servers.php:42 +#, fuzzy +msgid "Here the list of the available databases servers." +msgstr "He aquí la lista de miembros hospedados" + +#: ../admin/adm_db_servers.php:49 +msgid "ID" +msgstr "" + +#: ../admin/adm_db_servers.php:50 ../admin/adm_domstype.php:58 +#: ../admin/adm_domstypeedit.php:74 ../admin/ip_main.php:146 +#: ../admin/ip_main.php:181 ../admin/logs_list.php:53 +#, fuzzy +msgid "Name" +msgstr "Nombres" + +#: ../admin/adm_db_servers.php:51 ../admin/vm.php:77 +#, fuzzy +msgid "Hostname" +msgstr "Nombre de usuario" + +#: ../admin/adm_db_servers.php:52 ../admin/adm_mxaccount.php:78 +#: ../admin/adm_mxaccount.php:95 ../admin/adm_slavedns.php:140 +#: ../admin/adm_slavedns.php:158 ../admin/sql_getparam.php:70 +msgid "Login" +msgstr "Nombre de usuario" + +#: ../admin/adm_db_servers.php:53 +msgid "Client" +msgstr "" + +#: ../admin/adm_db_servers.php:54 +#, fuzzy +msgid "Users" +msgstr "Usuario" + +#: ../admin/adm_db_servers.php:71 +msgid "To add a database server, do an INSERT into the db_servers table" +msgstr "" + +#: ../admin/adm_db_servers.php:74 +msgid "" +"To update the list of the server on the PhpMyAdmin login page, launch " +"alternc.install" +msgstr "" + +#: ../admin/adm_deactivate.php:46 ../class/m_admin.php:208 +#: ../class/m_admin.php:234 ../class/m_admin.php:680 ../class/m_admin.php:704 +#: ../class/m_admin.php:728 ../class/m_admin.php:772 ../class/m_admin.php:797 +#: ../class/m_admin.php:821 ../class/m_admin.php:894 ../class/m_admin.php:916 +#, fuzzy +msgid "Account not found" +msgstr "Tipo de cuenta" + +#: ../admin/adm_deactivate.php:58 +msgid "User does not exist" +msgstr "El usuario no existe" + +# msgid "New password" +# msgstr "Nueva contraseña" +#: ../admin/adm_deactivate.php:63 ../admin/adm_deactivate.php:74 +msgid "Confirm" +msgstr "Confirmar" + +#: ../admin/adm_deactivate.php:67 +msgid "WARNING: experimental feature, use at your own risk" +msgstr "CUIDADO: funcionalidad experimental, úsala a tus propios riesgos" + +#: ../admin/adm_deactivate.php:68 +msgid "" +"The following domains will be deactivated and redirected to the URL entered " +"in the following box. A backup of the domain configuration will be displayed " +"as a serie of SQL request that you can run to restore the current " +"configuration if you want. Click confirm if you are sure you want to " +"deactivate all this user's domains." +msgstr "" +"Los dominios siguientes serán desactivados y redirigidos hacia la URL " +"ingresada en el cuadro a continuación. Se mostrará un respaldo de tu " +"configuración como una serie de solicitudes SQL que podrás volver a cargar " +"para recuperar tu configuración actual. Confirma si estás seguro de " +"desactivar todos los dominios de este usuario. " + +#: ../admin/adm_deactivate.php:73 +msgid "Redirection URL:" +msgstr "Redirección hacía la URL:" + +#: ../admin/adm_deactivate.php:78 +msgid "Domains of user: " +msgstr "Dominio del usuario:" + +#: ../admin/adm_deactivate.php:81 +msgid "Missing redirect url." +msgstr "Falta la URL de redirección" + +#: ../admin/adm_deactivate.php:99 +#, php-format +msgid "-- Redirecting all domains and subdomains of the user %s to %s\n" +msgstr "" +"-- Redirigir todos los dominios y subdominios del usuario %s hacia %s\n" + +#: ../admin/adm_defquotas.php:46 ../admin/adm_panel.php:54 +msgid "Change the default quotas" +msgstr "Modificar las cuotas por omisión" + +#: ../admin/adm_defquotas.php:52 +msgid "User's quotas synchronised" +msgstr "" + +#: ../admin/adm_defquotas.php:65 +msgid "Add account type" +msgstr "Agregar este tipo de cuenta" + +#: ../admin/adm_defquotas.php:83 +msgid "Delete account type" +msgstr "Suprimir este tipo de cuenta" + +#: ../admin/adm_defquotas.php:88 +msgid "" +"Here is the list of the quotas on the server for the new accounts. If you " +"want to change them, enter new values" +msgstr "" +"He aquí la lista de cuotas por omisión en este servidor para las nuevas " +"cuentas." + +#: ../admin/adm_defquotas.php:90 +msgid "Synchronise user's quota (only to upper value)" +msgstr "" + +#: ../admin/adm_defquotas.php:102 +msgid "Accounts of type" +msgstr "Tipo de cuentas" + +#: ../admin/adm_defquotas.php:104 +msgid "Default Value" +msgstr "Valores por omisión" + +#: ../admin/adm_defquotas.php:104 ../admin/adm_list.php:159 +#: ../admin/adm_list.php:203 ../admin/adm_list.php:223 +#: ../admin/adm_list.php:253 +msgid "Quotas" +msgstr "Cuotas" + +#: ../admin/adm_defquotas.php:124 +msgid "Edit the default quotas" +msgstr "Modificar las cuotas por omisión" + +#: ../admin/adm_dnsweberror.php:40 +msgid "Domains and Websites having errors" +msgstr "" + +#: ../admin/adm_dnsweberror.php:50 +msgid "List of the websites having errors in the domain database." +msgstr "" + +#: ../admin/adm_dnsweberror.php:53 ../admin/adm_dnsweberror.php:83 +#, fuzzy +msgid "Uid" +msgstr "uid" + +#: ../admin/adm_dnsweberror.php:54 ../admin/adm_dnsweberror.php:84 +#: ../admin/adm_list.php:155 ../admin/adm_list.php:233 +#: ../admin/adm_list.php:234 ../admin/adm_list.php:235 +#: ../admin/quotas_users.php:169 +#, fuzzy +msgid "Account" +msgstr "Tipo de cuenta" + +#: ../admin/adm_dnsweberror.php:55 ../admin/adm_dnsweberror.php:85 +#: ../admin/dom_add.php:57 ../class/m_dom.php:1757 +msgid "Domain name" +msgstr "Nombre de dominio" + +#: ../admin/adm_dnsweberror.php:56 +msgid "FQDN" +msgstr "" + +#: ../admin/adm_dnsweberror.php:57 ../admin/adm_variables.php:57 +msgid "Value" +msgstr "Valor" + +#: ../admin/adm_dnsweberror.php:58 ../admin/adm_domstype.php:59 +#: ../admin/adm_domstypeedit.php:78 +msgid "Description" +msgstr "" + +#: ../admin/adm_dnsweberror.php:59 +msgid "Web Result field" +msgstr "" + +#: ../admin/adm_dnsweberror.php:80 +msgid "List of the domain names having errors in the domain database." +msgstr "" + +#: ../admin/adm_dnsweberror.php:86 +msgid "DNS Result field" +msgstr "" + +#: ../admin/adm_doadd.php:53 ../admin/adm_doedit.php:64 +#: ../admin/ftp_doedit.php:44 ../admin/hta_doadduser.php:41 +#: ../admin/hta_doedituser.php:42 ../admin/mail_doedit.php:57 +msgid "Passwords do not match" +msgstr "Las contraseñas no corresponden" + +#: ../admin/adm_doadd.php:65 +msgid "The new member has been successfully created" +msgstr "El nuevo miembro fue creado con éxito" + +#: ../admin/adm_dodefquotas.php:48 +msgid "added" +msgstr "añadido" + +#: ../admin/adm_dodefquotas.php:50 +msgid "could not be added" +msgstr "no pudo ser añadido" + +#: ../admin/adm_dodefquotas.php:57 +msgid "deleted" +msgstr "borrado" + +#: ../admin/adm_dodefquotas.php:59 +msgid "could not be deleted" +msgstr "no pudo ser borrado" + +#: ../admin/adm_dodefquotas.php:66 +#, php-format +msgid "Deleting quota %s" +msgstr "Supresión de la cuota %s" + +#: ../admin/adm_dodefquotas.php:72 +#, fuzzy +msgid "WARNING: Confirm the deletion of the quota" +msgstr "ADVERTENCIA : Confirma la supresión de la cuota" + +#: ../admin/adm_dodefquotas.php:75 +#, fuzzy +msgid "Yes, delete this default quota" +msgstr "Modificar las cuotas por omisión" + +#: ../admin/adm_dodefquotas.php:76 +#, fuzzy +msgid "No, don't delete this default quota" +msgstr "no pudo ser borrado" + +#: ../admin/adm_dodefquotas.php:94 +msgid "Default quotas successfully changed" +msgstr "Cuotas por omisión modificadas con éxito" + +#: ../admin/adm_dodefquotas.php:96 +msgid "Default quotas could not be set." +msgstr "No se pudieron modificar las cuotas por omisión" + +#: ../admin/adm_dodel.php:56 +#, php-format +msgid "Member '%s' does not exist" +msgstr "El miembro '%s' no existe" + +#: ../admin/adm_dodel.php:58 +#, php-format +msgid "Member %s successfully deleted" +msgstr "El miembro %s fue borrado con éxito" + +#: ../admin/adm_dodel.php:65 +#, fuzzy +msgid "Please check the accounts you want to delete" +msgstr "Elige el archivo que contiene los datos SQL por restaurar en la base." + +#: ../admin/adm_dodel.php:73 +#, php-format +msgid "Deleting users" +msgstr "Suprimir un usuario" + +#: ../admin/adm_dodel.php:77 +msgid "WARNING : Confirm the deletion of the users" +msgstr "ADVERTENCIA : Confirma la supresión de este usuario" + +#: ../admin/adm_dodel.php:87 +#, fuzzy +msgid "Yes, delete those accounts" +msgstr "Suprimir las cuentas marcadas" + +#: ../admin/adm_dodel.php:88 +#, fuzzy +msgid "No, don't delete those accounts" +msgstr "Suprimir las cuentas marcadas" + +#: ../admin/adm_doedit.php:77 +msgid "The member has been successfully edited" +msgstr "La cuenta fue modificada con éxito" + +#: ../admin/adm_doms.php:40 ../admin/adm_panel.php:53 +msgid "Manage installed domains" +msgstr "Administración de los dominios instalados" + +#: ../admin/adm_doms.php:59 +msgid "" +"Here is the list of the domains installed on this server. You can remove a " +"domain if it does not exist or does not point to our server anymore. You can " +"also set the 'Lock' flag on a domain so that the user will not be able to " +"change any DNS parameter or delete this domain from his account." +msgstr "" +"He aquí la lista de dominios instalados en este servidor. Puedes suprimir un " +"dominio si ya no existe o si ya no apunta a este servidor. También puedes " +"bloquear un dominio para que el usuario ya no pueda modificar sus parámetros " +"DNS o borrarlo." + +#: ../admin/adm_doms.php:62 +msgid "" +"The domain OK column are green when the domain exists in the worldwide " +"registry and has a proper NS,MX and IP depending on its configuration. It is " +"red if we have serious doubts about its NS, MX or IP configuration. Contact " +"the user of this domain or a system administrator." +msgstr "" + +#: ../admin/adm_doms.php:65 +msgid "If you want to force the check of NS, MX, IP on domains, click the link" +msgstr "" + +#: ../admin/adm_doms.php:65 +msgid "Show domain list with refreshed checked NS, MX, IP information" +msgstr "" + +#: ../admin/adm_doms.php:69 ../admin/adm_mxaccount.php:78 +#: ../admin/adm_slavedns.php:95 ../admin/adm_slavedns.php:140 +msgid "Action" +msgstr "Acción" + +#: ../admin/adm_doms.php:69 ../admin/adm_doms.php:85 ../admin/adm_list.php:196 +#: ../admin/adm_list.php:221 ../admin/adm_list.php:250 +msgid "Connect as" +msgstr "Conectarse como" + +#: ../admin/adm_doms.php:69 +#, fuzzy +msgid "Creator" +msgstr "Crear" + +#: ../admin/adm_doms.php:69 +msgid "Domain" +msgstr "Dominio" + +#: ../admin/adm_doms.php:69 +#, fuzzy +msgid "OK?" +msgstr "OK" + +#: ../admin/adm_doms.php:69 ../admin/dom_edit.php:130 +msgid "Status" +msgstr "" + +#: ../admin/adm_doms.php:76 +msgid "Locked Domain" +msgstr "Dominio bloqueado" + +#: ../admin/adm_doms.php:79 +msgid "Lock" +msgstr "Bloquear" + +#: ../admin/adm_doms.php:79 +msgid "Unlock" +msgstr "Desbloquear" + +#: ../admin/adm_doms_def_type.php:12 ../admin/adm_panel.php:66 +#, fuzzy +msgid "Manage defaults domains type" +msgstr "Administración de los dominios instalados" + +#: ../admin/adm_doms_def_type.php:14 ../admin/adm_domstype.php:42 +msgid "" +"If you don't know what this page is about, don't touch anything, and read " +"AlternC documentation about domain types" +msgstr "" + +#: ../admin/adm_doms_def_type.php:15 +msgid "" +"The Type column contains a type of available VirtualHost config on The " +"server." +msgstr "" + +#: ../admin/adm_doms_def_type.php:16 +msgid "" +"The Setting column contains the variables to be expanded in the defaults " +"configuration. Available values are: " +msgstr "" + +#: ../admin/adm_doms_def_type.php:18 +#, fuzzy, php-format +msgid "%%DOMAIN%% : the Domain name" +msgstr "Nombre de dominio" + +#: ../admin/adm_doms_def_type.php:19 +#, php-format +msgid "%%TARGETDOM%%: The destination domain" +msgstr "" + +#: ../admin/adm_doms_def_type.php:20 +#, fuzzy, php-format +msgid "%%SUB%% : The subdomain name" +msgstr "Nombre de dominio" + +#: ../admin/adm_doms_def_type.php:21 +#, php-format +msgid "%%DOMAINDIR%%: the domain directory on the file system" +msgstr "" + +#: ../admin/adm_doms_def_type.php:38 +msgid "There was an error during the record." +msgstr "" + +#: ../admin/adm_doms_def_type.php:40 ../admin/cron.php:14 +msgid "Save done." +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +#, fuzzy +msgid "Activation" +msgstr "Acción" + +#: ../admin/adm_doms_def_type.php:48 +msgid "Concerned" +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +msgid "Sub" +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +#, fuzzy +msgid "settings" +msgstr "Configuración" + +#: ../admin/adm_domstype.php:40 ../admin/adm_panel.php:67 +#, fuzzy +msgid "Manage domains type" +msgstr "Administración de los dominios instalados" + +#: ../admin/adm_domstype.php:52 +#, fuzzy +msgid "Here is the list of domain types." +msgstr "He aquí la lista de miembros hospedados" + +#: ../admin/adm_domstype.php:54 +#, fuzzy +msgid "Create a domain type" +msgstr "Creación de un subdominio:" + +#: ../admin/adm_domstype.php:60 +msgid "Target" +msgstr "" + +#: ../admin/adm_domstype.php:61 ../admin/adm_domstypeedit.php:92 +msgid "Entry" +msgstr "" + +#: ../admin/adm_domstype.php:62 +msgid "Compatible with" +msgstr "" + +#: ../admin/adm_domstype.php:62 ../admin/adm_domstypeedit.php:96 +msgid "Enter comma-separated name of other types" +msgstr "" + +#: ../admin/adm_domstype.php:63 +#, fuzzy +msgid "Enabled?" +msgstr "¿Cuenta activa?" + +#: ../admin/adm_domstype.php:64 +msgid "Only DNS?" +msgstr "" + +#: ../admin/adm_domstype.php:65 +msgid "Need to be DNS?" +msgstr "" + +#: ../admin/adm_domstype.php:66 +msgid "Advanced?" +msgstr "" + +#: ../admin/adm_domstype.php:67 ../admin/adm_domstypeedit.php:123 +msgid "Create tmp directory ?" +msgstr "" + +#: ../admin/adm_domstype.php:68 +msgid "create www directory ?" +msgstr "" + +#: ../admin/adm_domstype.php:75 +msgid "Regenerate" +msgstr "" + +#: ../admin/adm_domstypeedit.php:60 +#, fuzzy +msgid "Edit a domain type" +msgstr "Modificar dominio %s" + +#: ../admin/adm_domstypeedit.php:82 +msgid "Target type" +msgstr "" + +#: ../admin/adm_domstypeedit.php:96 +msgid "Compatibility" +msgstr "" + +#: ../admin/adm_domstypeedit.php:100 ../admin/dom_edit.php:170 +#: ../admin/ftp_list.php:72 ../admin/ftp_list.php:82 +#: ../admin/mail_list.php:125 ../admin/mail_list.php:152 +msgid "Enabled" +msgstr "" + +#: ../admin/adm_domstypeedit.php:110 +msgid "Do only a DNS entry" +msgstr "" + +#: ../admin/adm_domstypeedit.php:114 +msgid "Domain must have our DNS" +msgstr "" + +#: ../admin/adm_domstypeedit.php:118 +msgid "Is it an advanced option?" +msgstr "" + +#: ../admin/adm_domstypeedit.php:128 +msgid "Create target directory ?" +msgstr "" + +#: ../admin/adm_domstypeedit.php:133 +#, fuzzy +msgid "Change this domain type" +msgstr "Modificar este buzón" + +#: ../admin/adm_donosu.php:45 +#, fuzzy +msgid "This account is now a normal account" +msgstr "Esta cuenta es un cuenta de administrador" + +#: ../admin/adm_dorenew.php:53 +msgid "The member has been successfully renewed" +msgstr "La cuenta fue renovada con éxito" + +#: ../admin/adm_dosu.php:45 +#, fuzzy +msgid "This account is now an administrator account" +msgstr "Esta cuenta es un cuenta de administrador" + +#: ../admin/adm_edit.php:57 +msgid "Member Edition" +msgstr "Modificar miembro" + +#: ../admin/adm_edit.php:73 +#, fuzzy +msgid "Account Enabled?" +msgstr "¿Cuenta activa?" + +#: ../admin/adm_edit.php:76 +#, fuzzy +msgid "You cannot disable your own account." +msgstr "No estás autorizado a cambiar tu contraseña" + +#: ../admin/adm_edit.php:85 ../admin/adm_mxaccount.php:78 +#: ../admin/adm_mxaccount.php:95 ../admin/adm_slavedns.php:140 +#: ../admin/adm_slavedns.php:158 ../admin/cron.php:39 ../admin/ftp_edit.php:84 +#: ../admin/ftp_edit.php:92 ../admin/hta_adduser.php:58 +#: ../admin/hta_edit.php:102 ../admin/index.php:90 ../admin/mem_param.php:58 +#: ../admin/sql_getparam.php:74 ../admin/sql_users_add.php:63 +#: ../admin/sql_users_list.php:48 ../admin/sql_users_password.php:59 +msgid "Password" +msgstr "Contraseña" + +#: ../admin/adm_edit.php:93 +#, fuzzy +msgid "Password change allowed?" +msgstr "Cambio de contraseña" + +#: ../admin/adm_edit.php:116 +#, fuzzy +msgid "Reset quotas to default?" +msgstr "¿Reincializar las cuotas al valor por omisión?" + +#: ../admin/adm_edit.php:119 +msgid "Period" +msgstr "Periodicidad de facturación" + +#: ../admin/adm_edit.php:123 +msgid "Edit this account" +msgstr "Modificar cuenta" + +#: ../admin/adm_edit.php:137 +msgid "Renew for" +msgstr "Renovar por" + +#: ../admin/adm_edit.php:138 +msgid "period(s)" +msgstr "período(s)" + +#: ../admin/adm_edit.php:141 +msgid "Renew" +msgstr "Renovar" + +#: ../admin/adm_edit.php:153 +msgid "This account is a super-admin account" +msgstr "Esta cuenta es un cuenta de administrador" + +#: ../admin/adm_edit.php:157 +msgid "" +"There is only one administrator account, you cannot turn this account back " +"to normal" +msgstr "" +"Sólo queda una cuenta de administrador, no se puede transformar esta cuenta " +"de administrador en cuenta corriente." + +#: ../admin/adm_edit.php:160 +msgid "Turn this account back to normal" +msgstr "Transformar esta cuenta de Administrador en cuenta corriente" + +#: ../admin/adm_edit.php:163 +msgid "Make this account a super admin one" +msgstr "Transformar esta cuenta en cuenta de administrador" + +#: ../admin/adm_edit.php:170 +#, php-format +msgid "Account created by %s" +msgstr "Cuenta creada por %s" + +#: ../admin/adm_email.php:43 ../admin/adm_panel.php:56 +msgid "Send an email to all members" +msgstr "" + +#: ../admin/adm_email.php:48 +#, fuzzy +msgid "The email was successfully sent" +msgstr "La cuenta fue modificada con éxito" + +#: ../admin/adm_email.php:50 +msgid "There was an error" +msgstr "" + +#: ../admin/adm_email.php:63 +msgid "From" +msgstr "" + +#: ../admin/adm_email.php:67 +msgid "Subject" +msgstr "" + +#: ../admin/adm_email.php:71 ../admin/mem_param.php:59 +#, fuzzy +msgid "Mail" +msgstr "Buzones de correo" + +#: ../admin/adm_email.php:75 +msgid "Send" +msgstr "Mandar" + +#: ../admin/adm_list.php:70 +#, fuzzy +msgid "AlternC account list" +msgstr "Lista de cuentas FTP" + +#: ../admin/adm_list.php:77 +msgid "Minimal view" +msgstr "" + +#: ../admin/adm_list.php:81 +#, fuzzy +msgid "Complete view" +msgstr "Vista reducida" + +#: ../admin/adm_list.php:87 +msgid "Filters" +msgstr "" + +#: ../admin/adm_list.php:90 +#, fuzzy +msgid "Search for a Login" +msgstr "Búsqueda de una carpeta" + +#: ../admin/adm_list.php:91 +#, fuzzy +msgid "Search for a Domain" +msgstr "Búsqueda de una carpeta" + +#: ../admin/adm_list.php:92 ../admin/piwik_sitelist.php:170 +msgid "submit" +msgstr "" + +#: ../admin/adm_list.php:100 +#, fuzzy +msgid "List all AlternC accounts" +msgstr "Listar todas las cuentas" + +#: ../admin/adm_list.php:110 +#, fuzzy +msgid "Or only the accounts of:" +msgstr "Listar todas las cuentas" + +#: ../admin/adm_list.php:115 +msgid "List only my accounts" +msgstr "Listar sólo mis cuentas" + +#: ../admin/adm_list.php:129 +#, php-format +msgid "%s accounts" +msgstr "%s cuentas" + +#: ../admin/adm_list.php:129 +#, fuzzy +msgid "Here is the list of hosted AlternC accounts" +msgstr "He aquí la lista de miembros hospedados" + +#: ../admin/adm_list.php:132 +#, fuzzy +msgid "Create a new AlternC account" +msgstr "Crear una nueva cuenta FTP" + +#: ../admin/adm_list.php:136 +msgid "No account defined for now" +msgstr "No existe ninguna cuenta por el momento" + +#: ../admin/adm_list.php:149 ../admin/adm_list.php:227 +#: ../admin/adm_list.php:264 ../admin/ftp_list.php:101 +msgid "Delete checked accounts" +msgstr "Suprimir las cuentas marcadas" + +#: ../admin/adm_list.php:156 +msgid "Manager" +msgstr "" + +#: ../admin/adm_list.php:157 +#, fuzzy +msgid "Created by" +msgstr "Crear" + +#: ../admin/adm_list.php:158 +#, fuzzy +msgid "Created on" +msgstr "Crear" + +#: ../admin/adm_list.php:160 +msgid "Last login" +msgstr "Última conexión" + +#: ../admin/adm_list.php:161 +msgid "Last ip" +msgstr "Última IP" + +#: ../admin/adm_list.php:162 +msgid "Fails" +msgstr "" + +#: ../admin/adm_list.php:163 ../admin/main.php:87 +msgid "Expiry" +msgstr "Expiración" + +#: ../admin/adm_list.php:181 +msgid "Send an email" +msgstr "" + +#: ../admin/adm_list.php:183 ../admin/mail_list.php:167 +#, php-format +msgid "%3$d-%2$d-%1$d" +msgstr "" + +#: ../admin/adm_list.php:192 +msgid "DB:" +msgstr "" + +#: ../admin/adm_list.php:207 ../admin/dom_edit.php:171 +msgid "Disable" +msgstr "" + +#: ../admin/adm_list.php:221 ../admin/adm_list.php:250 +msgid "C" +msgstr "C" + +#: ../admin/adm_list.php:222 ../admin/adm_list.php:251 +msgid "E" +msgstr "M" + +#: ../admin/adm_list.php:223 ../admin/adm_list.php:253 +msgid "Q" +msgstr "Q" + +#: ../admin/adm_list.php:255 +msgid "himself" +msgstr "" + +#: ../admin/adm_list.php:257 +#, fuzzy, php-format +msgid "Creator: %s" +msgstr "Crear" + +#: ../admin/adm_login.php:49 ../admin/adm_login.php:56 +msgid "Your authentication information are incorrect" +msgstr "" + +#: ../admin/adm_login.php:62 +msgid "Your IP is incorrect." +msgstr "" + +#: ../admin/adm_login.php:118 +msgid "Member login" +msgstr "Nombre de usuario del miembro" + +#: ../admin/adm_mxaccount.php:47 ../admin/adm_slavedns.php:51 +msgid "The requested account has been deleted. It is now denied." +msgstr "La cuenta esclava fue borrada. Ahora se la rechaza." + +#: ../admin/adm_mxaccount.php:53 ../admin/adm_slavedns.php:57 +msgid "The requested account address has been created. It is now allowed." +msgstr "La cuenta esclava fue creada. Ahora está autorizada." + +#: ../admin/adm_mxaccount.php:60 ../admin/adm_panel.php:64 +msgid "Manage allowed accounts for secondary mx" +msgstr "Manejar las cuentas autorizadas para los MX secundarios" + +#: ../admin/adm_mxaccount.php:74 +msgid "" +"Here is the list of the allowed accounts for secondary mx management. You " +"can configure the alternc-secondarymx package on your secondary mx server " +"and give him the login/pass that will grant him access to your server's mx-" +"hosted domain list. " +msgstr "" +"He aquí la lista de cuentas que pueden sincronizar la lista de dominios " +"cuyos mails se hospedan aquí. Puedes utilizar el paquete alternc-secondarymx " +"en tu servidor de mx secundario dándole un login/password con acceso a este " +"servidor." + +#: ../admin/adm_mxaccount.php:92 +msgid "" +"If you want to allow a new server to access your mx-hosted domain list, give " +"him an account." +msgstr "" +"Si quieres autorizar un nuevo servidor a sincronizar la lista de dominios " +"cuyo mail se hospeda aquí, créale una cuenta." + +#: ../admin/adm_mxaccount.php:101 ../admin/adm_slavedns.php:163 +msgid "Add this account to the allowed list" +msgstr "Añadir esta cuenta a la lista de aquellas autorizadas." + +#: ../admin/adm_panel.php:40 ../class/m_admin.php:98 +msgid "Admin Control Panel" +msgstr "Panel Administrador" + +#: ../admin/adm_panel.php:51 ../admin/adm_tld.php:56 +#: ../admin/adm_tldadd.php:46 ../admin/adm_tldedit.php:52 +msgid "Manage allowed domains (TLD)" +msgstr "Administración de los dominios autorizados (TLD)" + +#: ../admin/adm_panel.php:52 +#, fuzzy +msgid "Password Policies" +msgstr "Cambio de contraseña" + +#: ../admin/adm_panel.php:55 +#, fuzzy +msgid "Manage IP whitelist" +msgstr "Administrar miembros" + +#: ../admin/adm_panel.php:60 +msgid "Advanced features" +msgstr "" + +#: ../admin/adm_panel.php:63 +msgid "Manage slave DNS" +msgstr "" + +#: ../admin/adm_panel.php:65 ../admin/adm_variables.php:47 +msgid "Configure AlternC variables" +msgstr "Configurar las variables de AlternC" + +#: ../admin/adm_panel.php:68 +msgid "DNS and website having errors" +msgstr "" + +#: ../admin/adm_panel.php:69 +#, fuzzy +msgid "Manage databases servers" +msgstr "Crear mi base de datos principal" + +#: ../admin/adm_panel.php:70 +msgid "Account creation statistics" +msgstr "Estadísticas de creación de cuentas" + +#: ../admin/adm_panel.php:95 +msgid "Click here to unlock the panel and allow user to login." +msgstr "" + +#: ../admin/adm_panel.php:97 +msgid "Are you sure you want to kick everyone?" +msgstr "" + +#: ../admin/adm_panel.php:97 +#, fuzzy +msgid "Click here to lock the panel and force logout of all the user." +msgstr "Presiona aquí para crear una cuenta FTP en esta carpeta." + +# msgid "New password" +# msgstr "Nueva contraseña" +#: ../admin/adm_passpolicy.php:49 +#, fuzzy +msgid "Manage Password Policy" +msgstr "Cambiar mi contraseña" + +#: ../admin/adm_passpolicy.php:63 ../admin/adm_passpolicy.php:78 +msgid "Policy not found" +msgstr "" + +#: ../admin/adm_passpolicy.php:67 +#, fuzzy +msgid "Policy changed" +msgstr "Cambio de contraseña" + +#: ../admin/adm_passpolicy.php:71 +msgid "Cannot edit the policy, an error occurred" +msgstr "" + +#: ../admin/adm_passpolicy.php:82 +msgid "Please choose which policy you want to apply to this password kind:" +msgstr "" + +#: ../admin/adm_passpolicy.php:90 +msgid "Minimum Password Size:" +msgstr "" + +#: ../admin/adm_passpolicy.php:97 +msgid "Maximum Password Size:" +msgstr "" + +#: ../admin/adm_passpolicy.php:104 +msgid "In how many classes of characters must be the password (at least):" +msgstr "" + +#: ../admin/adm_passpolicy.php:111 +msgid "Do we allow the password to be like the login?" +msgstr "" + +#: ../admin/adm_passpolicy.php:117 +msgid "Apply this password policy" +msgstr "" + +#: ../admin/adm_passpolicy.php:118 +#, fuzzy +msgid "Cancel and go back to the policy list" +msgstr "No borrar nada, volver a la lista de buzones de correo" + +#: ../admin/adm_passpolicy.php:121 +msgid "" +"The classes of characters are :
1. Low-case letters (a-z)
2. " +"Upper-case letters (A-Z)
3. Figures (0-9)
4. Ascii symbols (!\"#$" +"%&'()*+,-./:;<=>?@[\\]^_`)
5. Non-Ascii symbols (accents...)" +msgstr "" + +#: ../admin/adm_passpolicy.php:134 +msgid "" +"Here is the list of the password policies for each place a password may be " +"needed in AlternC's services. For each of those password kind, you can " +"choose which policy will be applied to passwords. A policy is a minimum and " +"maximum password size, and how many classes of characters must appear in the " +"password. You can also forbid (or not) to use the login or part of it as a " +"password." +msgstr "" + +#: ../admin/adm_passpolicy.php:138 +#, fuzzy +msgid "Password Kind" +msgstr "Contraseña" + +#: ../admin/adm_passpolicy.php:138 +#, fuzzy +msgid "Password Policy" +msgstr "Contraseña" + +#: ../admin/adm_passpolicy.php:140 +#, fuzzy +msgid "Min Size" +msgstr "Tamaño" + +#: ../admin/adm_passpolicy.php:141 +#, fuzzy +msgid "Max Size" +msgstr "Tamaño" + +#: ../admin/adm_passpolicy.php:142 +msgid "Complexity" +msgstr "" + +#: ../admin/adm_passpolicy.php:143 +msgid "Allow Password=Login?" +msgstr "" + +#: ../admin/adm_quotadoedit.php:52 +msgid "The quotas has been successfully edited" +msgstr "Cuotas modificadas con éxito" + +#: ../admin/adm_quotaedit.php:55 +msgid "Editing the quotas of a member" +msgstr "Modificar cuotas del miembro" + +#: ../admin/adm_quotaedit.php:69 ../admin/quota_show.php:46 +msgid "Quota" +msgstr "Cuota" + +#: ../admin/adm_quotaedit.php:69 ../admin/quota_show.php:46 +#: ../admin/quotas_oneuser.php:87 ../admin/quotas_users.php:154 +#: ../admin/quotas_users.php:178 +msgid "Total" +msgstr "Total" + +#: ../admin/adm_quotaedit.php:69 ../admin/quota_show.php:46 +msgid "Used" +msgstr "Usado" + +#: ../admin/adm_quotaedit.php:87 +msgid "Edit the quotas" +msgstr "Modificar cuotas" + +#: ../admin/adm_slavedns.php:65 +msgid "" +"The requested ip address has been deleted. It will be denied in one hour." +msgstr "" +"La dirección IP seleccionada fue borrada. El acceso será denegado en una " +"hora, a más tardar." + +#: ../admin/adm_slavedns.php:71 +msgid "" +"The requested ip address has been added to the list. It will be allowed in " +"one hour." +msgstr "" +"La dirección IP fue añadida. El acceso le será permitido en una hora a más " +"tardar." + +#: ../admin/adm_slavedns.php:83 +msgid "Manage allowed ip for slave zone transfers" +msgstr "Manejar las IP autorizadas a hacer transferencias de zona DNS esclava" + +#: ../admin/adm_slavedns.php:91 +msgid "" +"Here is the list of the allowed ip or ip class for slave dns zone transfer " +"requests (AXFR). You must add the ip address of all the slave DNS you have " +"so that those slaves will be allowed to transfer the zone files. There is " +"also some defaults ip from DNS checks made by some third-party technical " +"offices such as afnic (for .fr domains)" +msgstr "" +"He aquí la lista de IPs o clases de IPs autorizadas a efectuar " +"transferencias de zonas (AXFR). Tienes que agregar aquí las direcciones IP " +"de los DNS esclavos de manera a que puedan sincronizar sus zonas. También " +"hay algunas IPs por omisión que corresponden a organismos técnicos oficiales " +"(como las del afnic para los dominios .fr)" + +#: ../admin/adm_slavedns.php:95 ../admin/adm_slavedns.php:114 +msgid "IP Address" +msgstr "Dirección IP" + +#: ../admin/adm_slavedns.php:110 +msgid "" +"If you want to allow an ip address or class to connect to your dns server, " +"enter it here. Choose 32 as a prefix for single ip address." +msgstr "" +"Si quieres autorizar una dirección IP o una clase de direcciones IP a " +"conectarse a tu servidor DNS, ingrésala aquí. Elige un prefijo de 32 si se " +"trata de una sola dirección IP." + +#: ../admin/adm_slavedns.php:114 +msgid "Prefix" +msgstr "Prefijo" + +#: ../admin/adm_slavedns.php:120 +msgid "Add this ip to the slave list" +msgstr "Agregar esta IP o clase a la lista de los DNS esclavos" + +#: ../admin/adm_slavedns.php:129 +msgid "Manage allowed accounts for slave zone transfers" +msgstr "" +"Manejar las cuentas autorizadas para las transferencias de zonas DNS esclavos" + +#: ../admin/adm_slavedns.php:137 +msgid "" +"Here is the list of the allowed accounts for slave dns synchronization. You " +"can configure the alternc-slavedns package on your slave server and give him " +"the login/pass that will grant him access to your server's domain list. " +msgstr "" +"He aquí la lista de cuentas autorizadas a sincronizar la lista de dominios " +"hspedados. Puedes utilizar el paquete alternc-slavedns en tu servidor " +"esclavo, dándole un login/contraseña con acceso a este servidor." + +#: ../admin/adm_slavedns.php:154 +msgid "" +"If you want to allow a new server to access your domain list, give him an " +"account." +msgstr "" +"Si quieres autorizar un nuevo servidor a acceder la lista de tus dominios, " +"créale una cuenta." + +#: ../admin/adm_slavedns.php:194 +msgid "Need open DNS Slave servers?" +msgstr "" + +#: ../admin/adm_slavedns.php:196 +msgid "We offer free of charge DNS servers for alternc users." +msgstr "" + +#: ../admin/adm_slavedns.php:197 +msgid "How does it work?" +msgstr "" + +#: ../admin/adm_slavedns.php:199 +#, php-format +msgid "" +"Give access to the alternc.net servers. Follow the " +"instructions on this page. They will help " +"you to configure this page and configure your alternc.net account." +msgstr "" + +#: ../admin/adm_slavedns.php:200 +#, php-format +msgid "" +"Subscribe to alternc.net. Go to the alternc.net site to " +"use the DNS servers provided for free by the AlternC association and enter " +"the required informations for each server you want to connect to the service." +msgstr "" + +#: ../admin/adm_slavedns.php:203 +msgid "" +"The alternc.net servers will take care of transfering and distributing to " +"the world your domains zones." +msgstr "" + +#: ../admin/adm_tld.php:47 +msgid "Some TLD cannot be deleted..." +msgstr "Algunos TLD no pueden ser borrados..." + +#: ../admin/adm_tld.php:50 +msgid "The requested TLD has been deleted" +msgstr "El TLD fue borrado" + +#: ../admin/adm_tld.php:68 +msgid "" +"Here is the list of the TLD allowed on this server. Each TLD can be allowed " +"or denied after some checks (whois, ns, domain exists...)" +msgstr "" +"Aquí esta la lista de los TLD autorizados en este servidor. Cada TLD puede " +"ser autorizado o prohibido según ciertos criterios (whois, ns, dominio " +"existe...)" + +#: ../admin/adm_tld.php:70 ../admin/adm_tld.php:91 ../admin/adm_tldadd.php:56 +#: ../admin/adm_tldadd.php:70 +msgid "Add a new TLD" +msgstr "Añadir un nuevo TLD" + +#: ../admin/adm_tld.php:73 ../admin/adm_tldadd.php:66 +#: ../admin/adm_tldedit.php:65 +msgid "Allowed Mode" +msgstr "Control efectuado" + +#: ../admin/adm_tld.php:73 ../admin/adm_tldadd.php:65 +#: ../admin/adm_tldedit.php:64 +msgid "TLD" +msgstr "TLD" + +#: ../admin/adm_tld.php:87 +msgid "Delete the checked TLD" +msgstr "Suprimir los TLD marcados" + +#: ../admin/adm_tldadd.php:58 +msgid "" +"Enter the new TLD (without the first dot) and choose what check should be " +"done." +msgstr "" +"Ingresa el nuevo TLD (sin el punto inicial) y escoge que control se " +"debeefectuar." + +#: ../admin/adm_tldadd.php:59 +msgid "" +"Warning : only some final tld are known in the whois function of AlternC, " +"please check m_dom.php accordingly." +msgstr "" +"ADVERTENCIA: sólo algunos TLD son conocidos en la función whois de AlternC, " +"por favor, verifica el archivo m_dom.php." + +#: ../admin/adm_tlddoadd.php:49 +msgid "The TLD has been successfully added" +msgstr "El nuevo TLD fue añadido" + +#: ../admin/adm_tlddoedit.php:48 +msgid "The TLD has been successfully edited" +msgstr "El TLD fue modificado con éxito" + +#: ../admin/adm_tldedit.php:60 +msgid "Edit a TLD" +msgstr "Modificar un TLD" + +#: ../admin/adm_tldedit.php:69 +msgid "Edit this TLD" +msgstr "Modificar este TLD" + +#: ../admin/adm_update_domains.php:40 +msgid "Missing INOTIFY_UPDATE_DOMAIN var in /etc/alternc/local.sh . Fix it!" +msgstr "" + +#: ../admin/adm_variables.php:52 +msgid "Here are the internal AlternC variables that are currently being used." +msgstr "He aquí las variables internas confirgurables de AlternC." + +#: ../admin/adm_variables.php:57 +msgid "Comment" +msgstr "Comentario" + +#: ../admin/adm_variables.php:57 +msgid "Names" +msgstr "Nombres" + +#: ../admin/adm_variables.php:69 +msgid "Save variables" +msgstr "Guardar la configuración" + +#: ../admin/bro_editor.php:54 ../admin/bro_editor.php:63 +#: ../admin/bro_main.php:355 ../admin/bro_main.php:395 +#, php-format +msgid "%3$d-%2$d-%1$d %4$d:%5$d" +msgstr "" + +#: ../admin/bro_editor.php:54 ../admin/bro_editor.php:63 +#, php-format +msgid "Your file %s has been saved" +msgstr "Tu archivo %s fue guardado" + +#: ../admin/bro_editor.php:74 +msgid "File editing" +msgstr "Editar archivo" + +#: ../admin/bro_editor.php:80 +msgid "This file is empty" +msgstr "" + +#: ../admin/bro_editor.php:90 +msgid "Save & Quit" +msgstr "Guardar y Salir" + +#: ../admin/bro_editor.php:91 +msgid "Quit" +msgstr "Salir" + +#: ../admin/bro_main.php:91 +#, php-format +msgid "Deleting files and/or directories" +msgstr "Borrar archivos y/o carpetas" + +#: ../admin/bro_main.php:96 +msgid "WARNING: Confirm the deletion of this files" +msgstr "ADVERTENCIA : Confirma la supresión de estos archivos" + +#: ../admin/bro_main.php:105 +#, fuzzy +msgid "Yes, delete those files/folders" +msgstr "Suprimir las cuentas marcadas" + +#: ../admin/bro_main.php:106 +msgid "No, don't delete those files/folders" +msgstr "" + +#: ../admin/bro_main.php:144 +msgid "extracting..." +msgstr "extrayendo..." + +#: ../admin/bro_main.php:148 +msgid "failed" +msgstr "fallado" + +#: ../admin/bro_main.php:151 +msgid "done" +msgstr "hecho" + +#: ../admin/bro_main.php:156 ../class/m_bro.php:76 +msgid "File browser" +msgstr "Manejador de archivos" + +#: ../admin/bro_main.php:163 +msgid "Path" +msgstr "" + +#: ../admin/bro_main.php:185 +msgid "Send one file:" +msgstr "" + +#: ../admin/bro_main.php:189 +#, fuzzy +msgid "Send this file" +msgstr "Importar este archivo" + +#: ../admin/bro_main.php:190 +#, php-format +msgid "Warning: max size: %s" +msgstr "" + +#: ../admin/bro_main.php:197 +#, fuzzy +msgid "New file or folder:" +msgstr "No hay ningún archivo en esta carpeta" + +#: ../admin/bro_main.php:202 ../admin/piwik_sitelist.php:86 +#: ../admin/piwik_userlist.php:44 ../admin/piwik_userlist.php:56 +msgid "Create" +msgstr "Crear" + +#: ../admin/bro_main.php:204 ../admin/bro_main.php:244 +msgid "File" +msgstr "Archivo" + +#: ../admin/bro_main.php:205 ../admin/bro_main.php:397 +#: ../admin/ftp_edit.php:75 ../admin/ftp_list.php:72 ../admin/hta_add.php:55 +#: ../admin/hta_adduser.php:50 ../admin/hta_edit.php:94 +#: ../admin/hta_edituser.php:51 ../admin/hta_list.php:68 +msgid "Folder" +msgstr "Carpeta" + +#: ../admin/bro_main.php:222 ../admin/bro_main.php:228 +#: ../admin/bro_main.php:286 +msgid "Rename" +msgstr "Cambiar nombre" + +#: ../admin/bro_main.php:238 ../admin/bro_main.php:244 +#: ../admin/bro_main.php:287 +msgid "Permissions" +msgstr "Permisos" + +#: ../admin/bro_main.php:258 +msgid "write" +msgstr "" + +#: ../admin/bro_main.php:266 +msgid "Change permissions" +msgstr "Modificar preferencias" + +#: ../admin/bro_main.php:289 +#, fuzzy +msgid "Copy" +msgstr "Copiar a" + +#: ../admin/bro_main.php:290 +msgid "Move" +msgstr "Mover" + +#: ../admin/bro_main.php:291 +msgid "To" +msgstr "" + +#: ../admin/bro_main.php:302 +msgid "Please select a destination folder" +msgstr "" + +#: ../admin/bro_main.php:328 +#, fuzzy +msgid "Filename" +msgstr "Cambiar nombre" + +#: ../admin/bro_main.php:329 ../admin/logs_list.php:53 +#: ../admin/sql_list.php:54 +msgid "Size" +msgstr "Tamaño" + +#: ../admin/bro_main.php:330 +#, fuzzy +msgid "Last modification" +msgstr "Último fracaso de conexión" + +#: ../admin/bro_main.php:332 +#, fuzzy +msgid "File Type" +msgstr "Archivo" + +#: ../admin/bro_main.php:361 ../admin/bro_main.php:542 +#: ../admin/dom_edit.php:121 +msgid "View" +msgstr "Ver" + +#: ../admin/bro_main.php:368 +msgid "Extract" +msgstr "Extraer" + +#: ../admin/bro_main.php:374 ../admin/bro_main.php:376 +#, fuzzy +msgid "Restore SQL" +msgstr "Restauración" + +#: ../admin/bro_main.php:376 +#, fuzzy +msgid "In which database to you want to restore this dump?" +msgstr "¿Dónde se almacenan las copias de respaldo?" + +#: ../admin/bro_main.php:381 +#, fuzzy +msgid "Restore it" +msgstr "Restauración" + +#: ../admin/bro_main.php:422 ../admin/bro_main.php:450 +#: ../admin/bro_main.php:485 ../admin/bro_main.php:513 +msgid "V" +msgstr "V" + +#: ../admin/bro_main.php:568 +msgid "No files in this folder" +msgstr "No hay ningún archivo en esta carpeta" + +#: ../admin/bro_main.php:578 +msgid "(slow)" +msgstr "" + +#: ../admin/bro_main.php:578 +#, fuzzy +msgid "Show size of directories" +msgstr "Archivos y carpetas" + +#: ../admin/bro_main.php:582 +msgid "Edit this folder's protection" +msgstr "" + +#: ../admin/bro_main.php:585 ../admin/hta_add.php:62 +msgid "Protect this folder" +msgstr "Proteger esta carpeta" + +#: ../admin/bro_main.php:587 +#, fuzzy +msgid "with a login and a password" +msgstr "Contraseña inicial" + +#: ../admin/bro_main.php:590 +#, fuzzy +msgid "Download this folder" +msgstr "Proteger esta carpeta" + +#: ../admin/bro_main.php:592 +#, php-format +msgid "as a %s file" +msgstr "" + +#: ../admin/bro_main.php:599 +#, fuzzy +msgid "Edit the ftp account" +msgstr "Modificar cuenta" + +#: ../admin/bro_main.php:600 +#, fuzzy +msgid "that exists in this folder" +msgstr "No hay ningún archivo en esta carpeta" + +#: ../admin/bro_main.php:606 +#, fuzzy +msgid "Create an ftp account in this folder" +msgstr "Existe una cuenta FTP en esta carpeta" + +#: ../admin/bro_main.php:615 +#, fuzzy +msgid "Configure the file editor" +msgstr "Configurar el manejador de archivos" + +#: ../admin/bro_pref.php:49 +msgid "Your preferences have been updated." +msgstr "Tus preferencias fueron actualizadas" + +#: ../admin/bro_pref.php:59 +msgid "File browser preferences" +msgstr "Preferencias del manejador de archivos" + +#: ../admin/bro_pref.php:66 +msgid "Horizontal window size" +msgstr "Tamaño horizontal de la ventana" + +#: ../admin/bro_pref.php:74 +msgid "Vertical window size" +msgstr "Tamaño vertical de la ventana" + +#: ../admin/bro_pref.php:82 +msgid "File editor font name" +msgstr "Fuente de caracteres del editor de archivos" + +#: ../admin/bro_pref.php:90 +msgid "File editor font size" +msgstr "Tamaño de los caracteres del editor de archivos" + +#: ../admin/bro_pref.php:98 +msgid "File list view" +msgstr "Modo de visualización de los archivos" + +#: ../admin/bro_pref.php:106 +msgid "Downloading file format" +msgstr "¿Formato de descarga de archivo?" + +#: ../admin/bro_pref.php:114 +msgid "What to do after creating a file" +msgstr "Que hacer después de la creación de un archivo" + +#: ../admin/bro_pref.php:122 +msgid "Show icons?" +msgstr "¿Mostrar iconos?" + +#: ../admin/bro_pref.php:130 +msgid "Show file types?" +msgstr "¿Mostrar tipos de archivos?" + +#: ../admin/bro_pref.php:138 +msgid "Remember last visited directory?" +msgstr "¿Regresar a la última carpeta visitada?" + +#: ../admin/bro_pref.php:149 +msgid "Change my settings" +msgstr "Modificar mis preferencias" + +#: ../admin/browseforfolder.php:125 ../admin/browseforfolder2.php:120 +msgid "Searching for a folder" +msgstr "Búsqueda de una carpeta" + +#: ../admin/browseforfolder.php:131 ../admin/browseforfolder2.php:126 +msgid "Error, cannot find this folder" +msgstr "Error, no se puede conseguir esta carpeta" + +#: ../admin/browseforfolder.php:133 ../admin/browseforfolder2.php:128 +msgid "Back to the root folder" +msgstr "Regresar al directorio raíz" + +#: ../admin/browseforfolder.php:145 ../admin/browseforfolder2.php:141 +msgid "Select" +msgstr "Seleccionar" + +#: ../admin/cron.php:21 ../class/m_cron.php:72 ../class/m_cron.php:181 +msgid "Scheduled tasks" +msgstr "" + +#: ../admin/cron.php:36 +msgid "URL" +msgstr "" + +#: ../admin/cron.php:37 +msgid "Schedule" +msgstr "" + +#: ../admin/cron.php:38 ../admin/hta_edituser.php:55 +#: ../admin/sql_users_list.php:48 +msgid "User" +msgstr "Usuario" + +#: ../admin/cron.php:40 +#, fuzzy +msgid "Email report" +msgstr "Dirección de correo" + +#: ../admin/cron.php:57 +msgid "Called URL" +msgstr "" + +#: ../admin/cron.php:60 +#, fuzzy +msgid "Period:" +msgstr "Periodicidad de facturación" + +#: ../admin/cron.php:72 +msgid "Next execution: " +msgstr "" + +#: ../admin/cron.php:75 +msgid "HTTP user (optional)" +msgstr "" + +#: ../admin/cron.php:76 +#, fuzzy +msgid "HTTP password (optional)" +msgstr "Dirección de correo" + +#: ../admin/cron.php:77 +#, fuzzy +msgid "Mail address (optional)" +msgstr "Dirección de correo" + +#: ../admin/cron.php:81 +#, fuzzy +msgid "Apply the modifications" +msgstr "Último fracaso de conexión" + +#: ../admin/dom_add.php:45 +msgid "Domain hosting" +msgstr "Hospedaje de dominio" + +#: ../admin/dom_add.php:49 +msgid "Contact your administrator for more information." +msgstr "Contacta el administrador para obtener más información." + +#: ../admin/dom_add.php:49 +msgid "You cannot add any new domain, your quota is over." +msgstr "No puedes hospedar más dominio, tu cuota alcanzó su limite." + +#: ../admin/dom_add.php:57 +msgid "Advanced import" +msgstr "" + +#: ../admin/dom_add.php:60 +msgid "host my dns here" +msgstr "Hospedar el DNS en el servidor" + +#: ../admin/dom_add.php:68 +msgid "" +"Do you want to point this domain to another domain already installed in your " +"account?" +msgstr "" + +#: ../admin/dom_add.php:71 +msgid "No: This domain will have its own folder." +msgstr "" + +#: ../admin/dom_add.php:73 +msgid "Yes, redirect this new domain to this one:" +msgstr "" + +#: ../admin/dom_add.php:74 +msgid "-- Choose a domain --" +msgstr "" + +#: ../admin/dom_add.php:87 +msgid "Add this domain" +msgstr "Añadir este dominio" + +#: ../admin/dom_add.php:91 +msgid "" +"If you don't want to host in our server the DNS of your domain, don't check " +"the box 'host my dns here'. If you don't know what it mean, leave it checked." +msgstr "" +"Si no deseas que el DNS del dominio esté hospedado aquí, quita la selección " +"'Hospedar el DNS en el servidor'. Si no entiendes, deja la selección tal " +"cual." + +#: ../admin/dom_add.php:96 ../admin/dom_doadd.php:60 +msgid "Whois result on the domain" +msgstr "Resultado de la búsqueda Whois sobre el dominio" + +#: ../admin/dom_dnsdump.php:9 +msgid "Error: no domain" +msgstr "" + +#: ../admin/dom_doadd.php:52 ../class/m_dom.php:104 +msgid "Add a domain" +msgstr "Hospedar un dominio" + +#: ../admin/dom_doadd.php:54 +#, php-format +msgid "Your new domain %s has been successfully installed" +msgstr "Tu nuevo dominio %s fue instalado con éxito" + +#: ../admin/dom_doadd.php:55 ../admin/dom_dodel.php:56 +#: ../admin/dom_dodel.php:86 ../admin/dom_editdns.php:62 +#: ../admin/dom_import.php:87 ../admin/dom_subdodel.php:79 +#: ../admin/hta_doedituser.php:62 +msgid "Click here to continue" +msgstr "Presiona aquí para seguir" + +#: ../admin/dom_dodel.php:54 +#, fuzzy +msgid "Deletion have been successfully cancelled" +msgstr "Se cambió con éxito la dirección de correo." + +#: ../admin/dom_dodel.php:64 ../admin/dom_dodel.php:67 +#, php-format +msgid "Confirm the deletion of domain %s" +msgstr "Confirmar la supresión del dominio %s" + +#: ../admin/dom_dodel.php:67 ../admin/sql_del.php:75 +#: ../admin/sql_users_del.php:61 +msgid "WARNING" +msgstr "ADVERTENCIA" + +#: ../admin/dom_dodel.php:69 +msgid "This will delete the related sub-domains too." +msgstr "" +"Esto va a suprimir todos los emails y los subdominios correspondientes.." + +#: ../admin/dom_dodel.php:74 +#, fuzzy +msgid "Yes, delete this domain name" +msgstr "Instalar el dominio login.%s" + +#: ../admin/dom_dodel.php:75 +#, fuzzy +msgid "No, don't delete this domain name" +msgstr "Instalar el dominio login.%s" + +#: ../admin/dom_dodel.php:81 +#, php-format +msgid "Domain %s deleted" +msgstr "Dominio %s borrado" + +#: ../admin/dom_dodel.php:85 +#, php-format +msgid "The domain %s has been successfully deleted." +msgstr "El dominio %s fue borrado." + +#: ../admin/dom_edit.inc.php:40 +#, fuzzy +msgid "Edit a subdomain:" +msgstr "Modificar dominio %s" + +#: ../admin/dom_edit.inc.php:42 +msgid "Create a subdomain:" +msgstr "Creación de un subdominio:" + +#: ../admin/dom_edit.inc.php:63 +msgid "Show advanced options" +msgstr "" + +#: ../admin/dom_edit.inc.php:64 +msgid "Hide advanced options" +msgstr "" + +#: ../admin/dom_edit.inc.php:88 +msgid "(enter an URL here)" +msgstr "" + +#: ../admin/dom_edit.inc.php:92 +msgid "(enter an IPv4 address, for example 192.168.1.2)" +msgstr "" + +#: ../admin/dom_edit.inc.php:96 +msgid "(enter an IPv6 address, for example 2001:0910::0)" +msgstr "" + +#: ../admin/dom_edit.inc.php:100 +#, fuzzy +msgid "(enter a TXT content for this domain)" +msgstr "Añadir una cuenta de correo para el dominio %s" + +#: ../admin/dom_edit.inc.php:104 +msgid "(enter a domain name or subdomain)" +msgstr "" + +#: ../admin/dom_edit.inc.php:114 +#, fuzzy +msgid "Edit this subdomain" +msgstr "Añadir este dominio" + +#: ../admin/dom_edit.inc.php:116 +#, fuzzy +msgid "Add this subdomain" +msgstr "Añadir este dominio" + +#: ../admin/dom_edit.inc.php:135 +#, fuzzy +msgid "Missing value for this sub-domain" +msgstr "Añadir una cuenta de correo para el dominio %s" + +#: ../admin/dom_edit.inc.php:141 +msgid "Please select a type for this sub-domain" +msgstr "" + +#: ../admin/dom_edit.php:80 +msgid "" +"Are you sure you want to do this? This will DELETE ALL the mailboxes, " +"messages and aliases on this domain ?" +msgstr "" + +#: ../admin/dom_edit.php:91 +#, fuzzy, php-format +msgid "Manage %s" +msgstr "Administrar miembros" + +#: ../admin/dom_edit.php:96 +msgid "This domain have some DNS change pending. Please wait." +msgstr "" + +#: ../admin/dom_edit.php:99 +#, fuzzy, php-format +msgid "You requested deletion of domain %s." +msgstr "Confirmar la supresión del dominio %s" + +#: ../admin/dom_edit.php:117 +#, fuzzy +msgid "Edit subdomains" +msgstr "Modificar dominio %s" + +#: ../admin/dom_edit.php:118 +#, fuzzy +msgid "Add subdomains" +msgstr "Añadir un subdominio" + +#: ../admin/dom_edit.php:119 ../class/m_mem.php:63 +msgid "Settings" +msgstr "Configuración" + +#: ../admin/dom_edit.php:128 +#, fuzzy, php-format +msgid "Editing subdomains of %s" +msgstr "Modificar dominio %s" + +#: ../admin/dom_edit.php:130 +#, fuzzy +msgid "Subdomain" +msgstr "Subdominios" + +#: ../admin/dom_edit.php:153 +msgid "ERROR, please check your server setup" +msgstr "" + +#: ../admin/dom_edit.php:160 ../admin/ftp_list.php:94 +#, fuzzy +msgid "Directory not found" +msgstr "Dominio %s borrado" + +#: ../admin/dom_edit.php:174 +msgid "Activation pending" +msgstr "" + +#: ../admin/dom_edit.php:177 ../admin/ftp_list.php:84 +#: ../admin/mail_list.php:144 ../admin/mail_list.php:154 +msgid "Disabled" +msgstr "" + +#: ../admin/dom_edit.php:178 +msgid "Enable" +msgstr "" + +#: ../admin/dom_edit.php:181 +#, fuzzy +msgid "Desactivation pending" +msgstr "Desactivar" + +#: ../admin/dom_edit.php:189 +#, fuzzy +msgid "Update pending" +msgstr "Volver a cargar esta página" + +#: ../admin/dom_edit.php:192 +#, fuzzy +msgid "Deletion pending" +msgstr "Suprimir un usuario" + +#: ../admin/dom_edit.php:206 +#, fuzzy, php-format +msgid "Add a subdomains to %s" +msgstr "Añadir un subdominio" + +#: ../admin/dom_edit.php:223 +#, fuzzy +msgid "DNS & Email parameters" +msgstr "Parámetros DNS" + +#: ../admin/dom_edit.php:228 +msgid "Manage the DNS on the server ?" +msgstr "¿Administrar el DNS de este dominio?" + +#: ../admin/dom_edit.php:239 +msgid "Define TTL for the zone records" +msgstr "" + +#: ../admin/dom_edit.php:241 +msgid "" +"Warning: a low TTL can be problematic. It is recommended not to use a lower " +"TTL than 3600 seconds." +msgstr "" + +#: ../admin/dom_edit.php:241 +msgid "seconds" +msgstr "" + +#: ../admin/dom_edit.php:250 +#, fuzzy +msgid "Manage the Emails Addresses of this domain on the server?" +msgstr "¿Administrar el DNS de este dominio?" + +#: ../admin/dom_edit.php:258 +msgid "" +"Warning: If you set this to 'no', all your email accounts and aliases on " +"this domain will be immediately deleted." +msgstr "" + +#: ../admin/dom_edit.php:259 +msgid "Submit the changes" +msgstr "Validar cambios" + +#: ../admin/dom_edit.php:267 +msgid "" +"Here is the actual DNS zone running on the AlternC server. If you just made " +"some changes, you have to wait for it." +msgstr "" + +#: ../admin/dom_edit.php:271 +#, fuzzy +msgid "Click here to view the dump" +msgstr "Presiona aquí para seguir" + +#: ../admin/dom_edit.php:279 +#, fuzzy +msgid "Domain removal" +msgstr "Nombre de dominio" + +#: ../admin/dom_edit.php:280 +#, php-format +msgid "" +"If you want to destroy the domain %s, click on the button below. Warning: " +"this also deletes all FTP accounts, email, mailing lists associated with the " +"domain and subdomains." +msgstr "" + +#: ../admin/dom_edit.php:283 +#, php-format +msgid "Delete %s from this server" +msgstr "" + +#: ../admin/dom_editdns.php:52 +#, php-format +msgid "Editing domain %s" +msgstr "Modificar dominio %s" + +#: ../admin/dom_editdns.php:57 +#, php-format +msgid "The domain %s has been changed." +msgstr "El dominio %s fue modificado." + +#: ../admin/dom_editdns.php:60 ../admin/dom_subdodel.php:75 +msgid "The modifications will take effect at %time. Server time is %now." +msgstr "" +"Las modificaciones serán efectivas a las %time. La hora del servidor es " +"acutalmente %now." + +#: ../admin/dom_import.php:43 +msgid "Import a DNS zone" +msgstr "" + +#: ../admin/dom_import.php:55 +#, fuzzy +msgid "The domain field seems to be empty" +msgstr "¡El buzón %s no existe!" + +#: ../admin/dom_import.php:57 +msgid "" +"Here is my proposition. Modify your zone until my proposition seems good to " +"you" +msgstr "" + +#: ../admin/dom_import.php:59 +#, fuzzy, php-format +msgid "Working on %s" +msgstr "Modificar dominio %s" + +#: ../admin/dom_import.php:61 +msgid "Generated entry" +msgstr "" + +#: ../admin/dom_import.php:61 +msgid "Result" +msgstr "" + +#: ../admin/dom_import.php:61 +msgid "Zone" +msgstr "" + +#: ../admin/dom_import.php:74 +msgid "ERROR" +msgstr "" + +#: ../admin/dom_import.php:74 ../admin/mem_cm.php:56 +msgid "OK" +msgstr "OK" + +#: ../admin/dom_import.php:96 +#, fuzzy +msgid "Enter the domain name you want to import" +msgstr "¡El buzón %s no existe!" + +#: ../admin/dom_import.php:104 +#, fuzzy +msgid "Do you want to detect the redirection?" +msgstr "¿Quieres ver los textos de ayuda y los enlaces en cada página?" + +#: ../admin/dom_import.php:115 +msgid "Paste your existing DNS zone here." +msgstr "" + +#: ../admin/dom_import.php:117 +msgid "If you don't know what it is, don't submit this form." +msgstr "" + +#: ../admin/dom_import.php:122 +msgid "Do you want to import the zone as it?" +msgstr "" + +#: ../admin/dom_import.php:126 +#, fuzzy +msgid "Submit" +msgstr "Permisos" + +#: ../admin/dom_subdel.php:51 +#, php-format +msgid "Deleting subdomain %s" +msgstr "Suprimir subdominio %s" + +#: ../admin/dom_subdel.php:67 +msgid "WARNING : Confirm the deletion of the subdomain" +msgstr "ADVERTENCIA : Confirma la supresión del subdominio siguiente" + +#: ../admin/dom_subdodel.php:64 +#, php-format +msgid "Deleting the subdomain %s:" +msgstr "Suprimesión del subdominio %s:" + +#: ../admin/dom_subdoedit.php:72 ../admin/dom_substatus.php:29 +msgid "The modifications will take effect at %time. Server time is %now." +msgstr "" +"Las modificaciones serán efectivas a las %time. La hora del servidor es " +"acutalmente %now." + +#: ../admin/dom_subedit.php:56 +#, fuzzy +msgid "Editing subdomain" +msgstr "Modificar dominio %s" + +#: ../admin/ftp_del.php:60 +#, php-format +msgid "The ftp account %s has been successfully deleted" +msgstr "La cuenta FTP %s fue borrada" + +#: ../admin/ftp_del.php:68 +#, fuzzy +msgid "Confirm the FTP accounts deletion" +msgstr "Confirmar la supresión del dominio %s" + +#: ../admin/ftp_del.php:71 +msgid "Do you really want to delete those accounts?" +msgstr "" + +#: ../admin/ftp_doedit.php:46 ../admin/ftp_edit.php:44 +#: ../admin/ftp_edit.php:51 +#, fuzzy +msgid "Create a FTP account" +msgstr "Crear la cuenta FTP." + +#: ../admin/ftp_doedit.php:52 +msgid "Error: neither a creation nor an edition" +msgstr "" + +#: ../admin/ftp_doedit.php:72 +#, fuzzy +msgid "The ftp account has been successfully saved" +msgstr "La cuenta FTP fue modificada" + +#: ../admin/ftp_edit.php:43 +msgid "Neither a creation nor a edition" +msgstr "" + +#: ../admin/ftp_edit.php:53 +#, fuzzy +msgid "Editing a FTP account" +msgstr "Modificación de una cuenta FTP" + +#: ../admin/ftp_edit.php:79 +msgid "" +"This is the root folder for this FTP user. i.e. this FTP user can access to " +"this forlder and all its sub-folders." +msgstr "" + +#: ../admin/ftp_edit.php:93 +#, fuzzy +msgid "Click here if you want to edit password" +msgstr "Por favor, entra una contraseña" + +#: ../admin/ftp_edit.php:114 +#, fuzzy +msgid "Password do not match" +msgstr "Las contraseñas no corresponden" + +#: ../admin/ftp_edit.php:120 ../class/m_admin.php:1279 ../class/m_hta.php:235 +msgid "Please enter a password" +msgstr "Por favor, entra una contraseña" + +#: ../admin/ftp_list.php:45 ../class/m_ftp.php:76 +msgid "FTP accounts list" +msgstr "Lista de cuentas FTP" + +#: ../admin/ftp_list.php:57 ../class/m_ftp.php:67 +msgid "Create a new ftp account" +msgstr "Crear una nueva cuenta FTP" + +#: ../admin/ftp_list.php:80 +msgid "Are you sure you want to change his status?" +msgstr "" + +#: ../admin/ftp_list.php:107 +msgid "FTP configuration information" +msgstr "" + +#: ../admin/ftp_list.php:109 +msgid "" +"Here are some configuration information you will need to configure your FTP " +"application." +msgstr "" + +#: ../admin/ftp_list.php:112 +#, fuzzy +msgid "Server:" +msgstr "Servidor SQL" + +#: ../admin/ftp_list.php:113 +msgid "FTP mode for data transfer:" +msgstr "" + +#: ../admin/ftp_list.php:113 +msgid "passive" +msgstr "" + +#: ../admin/ftp_list.php:114 +#, fuzzy +msgid "User/password:" +msgstr "Nueva contraseña" + +#: ../admin/ftp_list.php:114 +msgid "" +"the one you specified when you created the account. You can edit them in the " +"panel." +msgstr "" + +#: ../admin/head.php:32 +#, fuzzy +msgid "AlternC Control Panel" +msgstr "Panel Administrador" + +#: ../admin/head.php:59 +msgid "" +"Administrator session. you may return to your " +"account or cancel this feature." +msgstr "" + +#: ../admin/head.php:60 +msgid "You can also apply changes." +msgstr "" + +#: ../admin/head.php:65 +msgid "Panel is locked! No one can login!" +msgstr "" + +#: ../admin/hta_add.php:39 ../admin/hta_list.php:49 ../admin/hta_list.php:87 +msgid "Protect a folder" +msgstr "Proteger una carpeta" + +#: ../admin/hta_add.php:43 +msgid "" +"Enter the name of the folder you want to protect. It must already exists." +msgstr "" + +#: ../admin/hta_adduser.php:40 +#, php-format +msgid "Adding a username in %s" +msgstr "Añadir un usuario autorizado en %s" + +#: ../admin/hta_adduser.php:67 ../admin/hta_edit.php:112 +msgid "Add this user" +msgstr "Añadir el usuario" + +#: ../admin/hta_del.php:42 +#, php-format +msgid "The protected folder %s has been successfully unprotected" +msgstr "La carpeta protegida %s fue desprotegida" + +#: ../admin/hta_dodeluser.php:49 +#, fuzzy +msgid "Authorized user deletion confirm" +msgstr "Ningún usuario autorizado en %s" + +#: ../admin/hta_dodeluser.php:52 +msgid "Do you really want to delete those users ?" +msgstr "" + +#: ../admin/hta_doedituser.php:52 +#, php-format +msgid "Change the user %s in the protected folder %s" +msgstr "Modificar usuario %s en la carpeta protegida %s" + +#: ../admin/hta_doedituser.php:60 +#, php-format +msgid "The password of the user %s has been successfully changed" +msgstr "La contraseña del usuario %s fue modificada con éxito" + +#: ../admin/hta_edit.php:39 +msgid "No folder selected!" +msgstr "¡Ninguna carpeta seleccionada!" + +#: ../admin/hta_edit.php:48 +#, php-format +msgid "List of authorized user in folder %s" +msgstr "Lista de los usuarios autorizados en la carpeta %s" + +#: ../admin/hta_edit.php:53 +#, php-format +msgid "No authorized user in %s" +msgstr "Ningún usuario autorizado en %s" + +#: ../admin/hta_edit.php:68 ../admin/sql_users_password.php:38 +#, fuzzy +msgid "Change this user's password" +msgstr "Modificar contraseña" + +#: ../admin/hta_edit.php:78 ../admin/sql_users_list.php:70 +msgid "Delete the checked users" +msgstr "Suprimir los usuarios marcados" + +#: ../admin/hta_edit.php:83 +msgid "Show this folder's content in the File Browser" +msgstr "" + +#: ../admin/hta_edit.php:89 +#, fuzzy +msgid "Adding an authorized user" +msgstr "Ningún usuario autorizado en %s" + +#: ../admin/hta_edituser.php:40 +#, php-format +msgid "Editing user %s in the protected folder %s" +msgstr "Modificar usuario %s en la carpeta protegida %s" + +#: ../admin/hta_edituser.php:59 ../admin/mem_param.php:83 +#: ../admin/mem_param.php:84 +msgid "New password" +msgstr "Nueva contraseña" + +#: ../admin/hta_edituser.php:68 +msgid "Change the password" +msgstr "Modificar contraseña" + +#: ../admin/hta_list.php:40 +msgid "Protected folders list" +msgstr "Lista de carpetas protegidas" + +#: ../admin/hta_list.php:60 +msgid "" +"You can set passwords to protect some of your folders.
This will create ." +"htaccess and .htpasswd files that restrict access to these directory and to " +"any sub-elements." +msgstr "" + +#: ../admin/hta_list.php:77 +#, fuzzy +msgid "Edit login and passwords" +msgstr "Contraseña inicial" + +#: ../admin/hta_list.php:86 +msgid "Unprotect the checked folders" +msgstr "Quitar protección a las carpetas marcadas" + +#: ../admin/index.php:67 +#, fuzzy +msgid "Web Hosting Control Panel" +msgstr "Panel Administrador" + +#: ../admin/index.php:83 +msgid "" +"To connect to the hosting control panel, enter your AlternC's login and " +"password in the following form and click 'Enter'" +msgstr "" + +#: ../admin/index.php:84 +msgid "You are attemping to connect without IP restriction." +msgstr "" + +#: ../admin/index.php:88 +#, fuzzy +msgid "AlternC access" +msgstr "Lista de cuentas FTP" + +#: ../admin/index.php:91 +msgid "Enter" +msgstr "Entrar" + +#: ../admin/index.php:111 +msgid "" +"To read your mail in a browser, click here to go to your server's Webmail" +msgstr "" + +#: ../admin/index.php:123 +msgid "You must accept the session cookie to log-in" +msgstr "Debe aceptar el cookie de sesión para poder conectarte" + +#: ../admin/index.php:152 +#, fuzzy +msgid "Need a login and a password" +msgstr "Contraseña inicial" + +#: ../admin/ip_main.php:58 +msgid "" +"Here you can add rules to restrict access to AlternC's services, filtered by " +"IP. First, add trusted IPs in the 'Known IP and networks' list. Then, add " +"rules to grant access on services to the chosen IPs from this list." +msgstr "" + +#: ../admin/ip_main.php:60 +#, fuzzy +msgid "Enabled rules" +msgstr "¿Cuenta activa?" + +#: ../admin/ip_main.php:64 +msgid "Authorised IP address or network" +msgstr "" + +#: ../admin/ip_main.php:65 ../admin/ip_main.php:95 +#, fuzzy +msgid "Access type" +msgstr "Tipo de cuenta" + +#: ../admin/ip_main.php:76 +msgid "for" +msgstr "" + +#: ../admin/ip_main.php:86 +#, fuzzy +msgid "Add a new rule" +msgstr "Añadir un nuevo TLD" + +#: ../admin/ip_main.php:89 +msgid "" +"You need to have some 'Known IP and networks' defined below to define a new " +"rule." +msgstr "" + +#: ../admin/ip_main.php:119 +msgid "Authorized IP address or network" +msgstr "" + +#: ../admin/ip_main.php:144 +msgid "Known IP and networks" +msgstr "" + +#: ../admin/ip_main.php:146 +msgid "IP or network" +msgstr "" + +#: ../admin/ip_main.php:172 +msgid "Add an IP or a networks" +msgstr "" + +#: ../admin/ip_main.php:181 +msgid "IP or network. IPv4, IPv6 and subnet allowed" +msgstr "" + +#: ../admin/ip_main.php:214 +msgid "Please select an access type" +msgstr "" + +#: ../admin/logs_list.php:35 +msgid "Logs Listing" +msgstr "" + +#: ../admin/logs_list.php:43 +msgid "You have no web logs to list at the moment." +msgstr "" + +#: ../admin/logs_list.php:49 +msgid "" +"Here are web logs of your account.
You can download them to do specific " +"extract and statistics." +msgstr "" + +#: ../admin/logs_list.php:53 +#, fuzzy +msgid "Creation Date" +msgstr "Crear" + +#: ../admin/logs_list.php:53 +#, fuzzy +msgid "Download link" +msgstr "Bajar" + +#: ../admin/logs_list.php:65 +msgid "Download" +msgstr "Bajar" + +#: ../admin/mail_del.php:54 +msgid "Deleting mail accounts" +msgstr "Supresión de buzones de correo" + +#: ../admin/mail_del.php:57 +msgid "Please confirm the deletion of the following mail accounts:" +msgstr "Confirmar la supresión de los buzones de correo siguientes:" + +#: ../admin/mail_del.php:74 +#, fuzzy +msgid "Confirm the deletion" +msgstr "Confirmar la supresión del dominio %s" + +#: ../admin/mail_del.php:74 +#, fuzzy +msgid "Don't delete anything and go back to the email list" +msgstr "No borrar nada, volver a la lista de buzones de correo" + +#: ../admin/mail_del.php:78 +msgid "" +"Warning: Deleting an email address will destroy all the messages it " +"contains! You will NOT be able to get it back!" +msgstr "" + +#: ../admin/mail_doedit.php:120 +#, fuzzy +msgid "Your email has been edited successfully" +msgstr "Tu nuevo dominio %s fue instalado con éxito" + +#: ../admin/mail_edit.php:53 +#, fuzzy, php-format +msgid "Editing the email %s" +msgstr "Modificar el buzón %s" + +#: ../admin/mail_edit.php:67 +msgid "Is this email enabled?" +msgstr "" + +#: ../admin/mail_edit.php:69 +msgid "" +"You can enable or disable this email anytime. This will bounce any mail " +"received on this address, but will not delete the stored email, or the " +"redirections or password." +msgstr "" + +#: ../admin/mail_edit.php:73 +msgid "No (email disabled)" +msgstr "" + +#: ../admin/mail_edit.php:74 +msgid "Yes (email enabled)" +msgstr "" + +#: ../admin/mail_edit.php:78 +#, fuzzy +msgid "Is it a POP/IMAP account?" +msgstr "¿Cuenta POP?" + +#: ../admin/mail_edit.php:79 +msgid "" +"POP/IMAP accounts are receiving emails in the server. To read those emails, " +"you can use a Webmail, or a mail client such as Thunderbird. If you don't " +"use POP/IMAP, you can configure your email to be a redirection to other " +"existing emails. The maximum size is in megabytes, use 0 to make it infinite." +msgstr "" + +#: ../admin/mail_edit.php:82 +#, php-format +msgid "This mailbox is currently using %1$s / %2$s" +msgstr "" + +#: ../admin/mail_edit.php:85 +msgid "" +"This mailbox is pending deletion. You can recover its mails by setting it to " +"'Yes' NOW!" +msgstr "" + +#: ../admin/mail_edit.php:95 +#, fuzzy +msgid "Click here to edit the existing password" +msgstr "Por favor, entra una contraseña" + +#: ../admin/mail_edit.php:96 +#, fuzzy +msgid "Enter a POP/IMAP password" +msgstr "Contraseña POP" + +#: ../admin/mail_edit.php:98 ../class/m_quota.php:537 +msgid "MB" +msgstr "" + +#: ../admin/mail_edit.php:98 +msgid "Maximum allowed size of this Mailbox" +msgstr "" + +#: ../admin/mail_edit.php:103 +#, fuzzy +msgid "" +"WARNING: turning POP/IMAP off will DELETE the stored messages in this email " +"address." +msgstr "CUIDADO: desactivar el POP BORRARÁ la casilla de correo y su contenido" + +#: ../admin/mail_edit.php:105 +#, fuzzy +msgid "Is it a redirection to other email addresses?" +msgstr "Borrar las bases de datos seleccionadas" + +#: ../admin/mail_edit.php:107 +msgid "" +"If you want to send emails received on this address to other addresses, even " +"outside this server, enter those recipients here." +msgstr "" + +#: ../admin/mail_edit.php:107 +#, fuzzy +msgid "one recipient per line" +msgstr "una cuenta de correo por línea" + +#: ../admin/mail_edit.php:115 +#, fuzzy +msgid "Change this email address" +msgstr "Modificar este buzón" + +#: ../admin/mail_list.php:72 +#, fuzzy +msgid "Create a new mail account" +msgstr "Crear una nueva cuenta FTP" + +#: ../admin/mail_list.php:76 +#, fuzzy +msgid "Can't have empty mail." +msgstr "Cambiar mi dirección email" + +#: ../admin/mail_list.php:76 +#, fuzzy +msgid "Create this email address" +msgstr "Añadir este buzón" + +#: ../admin/mail_list.php:78 +#, fuzzy +msgid "Manage Catch-all for this domain" +msgstr "Añadir una cuenta de correo para el dominio %s" + +#: ../admin/mail_list.php:92 +#, fuzzy, php-format +msgid "Email addresses of the domain %s" +msgstr "Lista de las buzones de correo del dominio %s" + +#: ../admin/mail_list.php:96 +#, fuzzy +msgid "No mails for this domain." +msgstr "Añadir una cuenta de correo para el dominio %s" + +#: ../admin/mail_list.php:106 +msgid "Search" +msgstr "" + +#: ../admin/mail_list.php:111 +#, fuzzy +msgid "Show system emails" +msgstr "Nombre de dominio" + +#: ../admin/mail_list.php:118 +msgid "Items per page:" +msgstr "" + +#: ../admin/mail_list.php:125 +#, fuzzy +msgid "Address" +msgstr "Dirección IP" + +#: ../admin/mail_list.php:125 +#, fuzzy +msgid "Last login time" +msgstr "Última conexión" + +#: ../admin/mail_list.php:125 +msgid "Other recipients" +msgstr "Otros destinatarios" + +#: ../admin/mail_list.php:125 +msgid "Pop/Imap" +msgstr "" + +#: ../admin/mail_list.php:136 +#, fuzzy +msgid "Deleting..." +msgstr "extrayendo..." + +#: ../admin/mail_list.php:141 +msgid "" +"This email will be deleted soon. You may still be able to undelete it by " +"clicking here" +msgstr "" + +#: ../admin/mail_list.php:141 +#, fuzzy +msgid "Undelete" +msgstr "borrado" + +#: ../admin/mail_list.php:167 ../admin/main.php:34 +msgid "Never" +msgstr "" + +#: ../admin/mail_list.php:178 +#, fuzzy +msgid "Delete the checked email addresses" +msgstr "Borrar las bases de datos seleccionadas" + +#: ../admin/mail_list.php:186 +msgid "Mails configuration information" +msgstr "" + +#: ../admin/mail_list.php:188 +msgid "" +"Here are some configuration information you will need to configure your mail " +"application." +msgstr "" + +#: ../admin/mail_list.php:195 +msgid "Outgoing mail (SMTP)" +msgstr "" + +#: ../admin/mail_list.php:196 +msgid "Incoming mail" +msgstr "" + +#: ../admin/mail_list.php:201 ../admin/mail_list.php:242 +msgid "Which protocol shall you use?" +msgstr "" + +#: ../admin/mail_list.php:203 +#, fuzzy +msgid "Submission" +msgstr "Permisos" + +#: ../admin/mail_list.php:206 ../admin/mail_list.php:217 +#: ../admin/mail_list.php:228 ../admin/mail_list.php:247 +#: ../admin/mail_list.php:258 ../admin/mail_list.php:269 +#: ../admin/mail_list.php:280 +#, fuzzy +msgid "Server name: " +msgstr "Cambiar nombre" + +#: ../admin/mail_list.php:207 ../admin/mail_list.php:218 +#: ../admin/mail_list.php:229 +msgid "" +"The mail address you want to access (example : myuser@example.tld)" +msgstr "" + +#: ../admin/mail_list.php:207 ../admin/mail_list.php:218 +#: ../admin/mail_list.php:229 +#, fuzzy +msgid "Username: " +msgstr "Nombre de usuario" + +#: ../admin/mail_list.php:208 ../admin/mail_list.php:219 +#: ../admin/mail_list.php:230 ../admin/mail_list.php:248 +#: ../admin/mail_list.php:259 ../admin/mail_list.php:270 +#: ../admin/mail_list.php:281 +msgid "Port: " +msgstr "" + +#: ../admin/mail_list.php:209 ../admin/mail_list.php:220 +#: ../admin/mail_list.php:231 ../admin/mail_list.php:249 +#: ../admin/mail_list.php:260 ../admin/mail_list.php:271 +#: ../admin/mail_list.php:282 +msgid "Authentication: " +msgstr "" + +#: ../admin/mail_list.php:210 ../admin/mail_list.php:221 +#: ../admin/mail_list.php:232 ../admin/mail_list.php:250 +#: ../admin/mail_list.php:261 ../admin/mail_list.php:272 +#: ../admin/mail_list.php:283 +msgid "Authentication method: " +msgstr "" + +# msgid "New password" +# msgstr "Nueva contraseña" +#: ../admin/mail_list.php:210 ../admin/mail_list.php:250 +#: ../admin/mail_list.php:261 ../admin/mail_list.php:272 +#: ../admin/mail_list.php:283 +#, fuzzy +msgid "Normal password" +msgstr "Confirmar contraseña" + +#: ../admin/mail_list.php:211 ../admin/mail_list.php:222 +#: ../admin/mail_list.php:233 ../admin/mail_list.php:251 +#: ../admin/mail_list.php:262 ../admin/mail_list.php:273 +#: ../admin/mail_list.php:284 +#, fuzzy +msgid "Connection security:" +msgstr "Conectarse como" + +#: ../admin/mail_list.php:214 +msgid "SMTP" +msgstr "" + +# msgid "New password" +# msgstr "Nueva contraseña" +#: ../admin/mail_list.php:221 ../admin/mail_list.php:232 +#, fuzzy +msgid "Normal Password" +msgstr "Confirmar contraseña" + +#: ../admin/mail_list.php:225 +msgid "SMTPS" +msgstr "" + +#: ../admin/mail_list.php:244 +msgid "IMAP" +msgstr "" + +#: ../admin/mail_list.php:255 +msgid "IMAPS" +msgstr "" + +#: ../admin/mail_list.php:266 +msgid "POP3" +msgstr "" + +#: ../admin/mail_list.php:277 +msgid "POP3S" +msgstr "" + +#: ../admin/mail_manage_catchall.php:38 +msgid "Problem with the domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:47 +#, fuzzy +msgid "Catchall successfully deleted" +msgstr "El miembro %s fue borrado con éxito" + +#: ../admin/mail_manage_catchall.php:50 ../admin/mail_manage_catchall.php:53 +#, fuzzy +msgid "Catchall successfully updated" +msgstr "El juego de estadísticas fue creado" + +#: ../admin/mail_manage_catchall.php:56 +msgid "Unknown target type" +msgstr "" + +#: ../admin/mail_manage_catchall.php:63 +#, php-format +msgid "Manage catch-all configuration of %s" +msgstr "" + +#: ../admin/mail_manage_catchall.php:72 +msgid "" +"You can choose what to do with emails sent to unexisting address of this " +"domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:80 +msgid "No catch-all" +msgstr "" + +#: ../admin/mail_manage_catchall.php:84 +#, fuzzy +msgid "No catch-all for this domain." +msgstr "Añadir una cuenta de correo para el dominio %s" + +#: ../admin/mail_manage_catchall.php:88 +msgid "Redirect to same address on a different domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:92 +#, php-format +msgid "" +"Mails sent to john.doe@%s will be redirect to john.doe@anotherdomain.tld" +msgstr "" + +#: ../admin/mail_manage_catchall.php:95 +#, fuzzy +msgid "Enter the 'target' domain" +msgstr "Administración de los dominios instalados" + +#: ../admin/mail_manage_catchall.php:96 +msgid "example.tld" +msgstr "" + +#: ../admin/mail_manage_catchall.php:98 +msgid "Or choose one of your own" +msgstr "" + +#: ../admin/mail_manage_catchall.php:106 +msgid "Redirect to a specific email" +msgstr "" + +#: ../admin/mail_manage_catchall.php:110 +#, php-format +msgid "" +"Mails sent to an unexisting email on '@%s' will be redirect to user@example." +"tld." +msgstr "" + +#: ../admin/mail_manage_catchall.php:113 +msgid "john.doe@example.tld" +msgstr "" + +#: ../admin/mailautoconfig_outlook.php:16 +#, fuzzy +msgid "Missing POST of the mail address" +msgstr "Modificar este buzón" + +#: ../admin/mailautoconfig_thunderbird.php:9 +msgid "Error: Missing GET of emailaddress" +msgstr "" + +#: ../admin/mailautoconfig_thunderbird.php:12 +msgid "Error: Empty $emailDomain" +msgstr "" + +#: ../admin/main.php:31 +msgid "Last Login: " +msgstr "Última conexión: " + +#: ../admin/main.php:36 +#, php-format +msgid "the %3$d-%2$d-%1$d at %4$d:%5$02d" +msgstr "" + +#: ../admin/main.php:37 +#, php-format +msgid "from: %1$s " +msgstr "desde %1$s " + +#: ../admin/main.php:42 +#, php-format +msgid "%1$d login failed since last login" +msgstr "%1$d intentos fallidos desde la última conexión" + +#: ../admin/main.php:85 +msgid "Expired or about to expire accounts" +msgstr "Cuentas que expiraron o que expiran pronto" + +#: ../admin/main.php:87 +msgid "Last name, surname" +msgstr "Nombre, Apellido" + +#: ../admin/main.php:87 +msgid "uid" +msgstr "uid" + +#: ../admin/main.php:103 +msgid "" +"You are using the AlternC Panel. You can contact the AlternC community for " +"information or feedback by joining the mailing-list" +msgstr "" + +#: ../admin/mem_admin.php:40 +msgid "Your administrator preferences has been successfully changed." +msgstr "Tus preferencias de administrador fueron modificadas." + +#: ../admin/mem_admin.php:46 ../admin/mem_param.php:116 +msgid "Admin preferences" +msgstr "Preferencias de administrador" + +#: ../admin/mem_chgmail.php:44 ../admin/mem_cm.php:42 ../admin/mem_cm.php:53 +#: ../admin/mem_cm2.php:47 ../admin/mem_param.php:92 +msgid "Change the email of the account" +msgstr "Cambiar la dirección de correo de la cuenta" + +#: ../admin/mem_chgmail.php:51 +#, php-format +msgid "help_mem_chgmail %s" +msgstr "" +"Se mandó un mensaje a la dirección email %s para " +"confirmación.
Este mensaje contiene un enlace que podrás visitar para " +"validar la modificación.
Ahí se te pedirá la siguiente clave:
" + +#: ../admin/mem_cm.php:54 +msgid "" +"Enter the key you got when you requested the mailbox change, then click the " +"OK button." +msgstr "" +"Entra la clave que te fue enviada para confirmar el cambio de dirección de " +"correo y presiona en OK." + +#: ../admin/mem_cm.php:55 +msgid "Key" +msgstr "Clave" + +#: ../admin/mem_cm2.php:55 +msgid "The mailbox has been successfully changed." +msgstr "Se cambió con éxito la dirección de correo." + +#: ../admin/mem_logout.php:41 ../admin/mem_logout.php:49 +msgid "Disconnected" +msgstr "Desconectado" + +#: ../admin/mem_logout.php:51 +msgid "You have been logged out of your administration desktop." +msgstr "Fuiste desconectado de la interfaz de administración." + +#: ../admin/mem_logout.php:52 +msgid "Click here to log in" +msgstr "Presiona aquí para volver a conectarte" + +#: ../admin/mem_param.php:43 +msgid "Your help setting has been updated." +msgstr "Los parámetros de ayuda han sido modificados." + +#: ../admin/mem_param.php:47 +msgid "Settings of your account" +msgstr "Parámetros de tu cuenta" + +#: ../admin/mem_param.php:60 ../class/m_mem.php:579 +msgid "Help" +msgstr "Ayuda" + +#: ../admin/mem_param.php:63 +#, fuzzy +msgid "Administrator" +msgstr "Administración" + +#: ../admin/mem_param.php:69 ../admin/mem_passwd.php:50 +#: ../admin/sql_users_list.php:59 +msgid "Password change" +msgstr "Cambio de contraseña" + +#: ../admin/mem_param.php:73 +msgid "You cannot change your password" +msgstr "No estás autorizado a cambiar tu contraseña" + +#: ../admin/mem_param.php:78 +msgid "help_chg_passwd" +msgstr "" +"Aquí puedes modificar la contraseña que te permite acceder a la interfaz. " +"¡No la pierdas!
Entra aquí la contraseña actual, y luego la nueva " +"contraseña (dos veces, por seguridad), y presiona en 'Cambiar la contraseña''" + +#: ../admin/mem_param.php:82 +msgid "Old password" +msgstr "Antigua contraseña" + +# msgid "New password" +# msgstr "Nueva contraseña" +#: ../admin/mem_param.php:85 +msgid "Change my password" +msgstr "Cambiar mi contraseña" + +#: ../admin/mem_param.php:95 +msgid "help_chg_mail" +msgstr "" +"Aquí puedes modificar la dirección de correo relacionada con tu cuenta.
" +"Ingresa a continuación la nueva dirección. Un mensaje será enviado a esta " +"dirección para confirmación." + +#: ../admin/mem_param.php:96 +msgid "Current mailbox" +msgstr "Dirección actual" + +#: ../admin/mem_param.php:97 +msgid "New mailbox" +msgstr "Nueva dirección" + +#: ../admin/mem_param.php:98 +#, fuzzy +msgid "Change my email address" +msgstr "Cambiar mi dirección email" + +#: ../admin/mem_param.php:103 +msgid "Online help settings" +msgstr "Parámetros de la ayuda en línea" + +#: ../admin/mem_param.php:106 +msgid "help_help_settings" +msgstr "" +"Cada página de la interfaz presenta información de ayuda resumida, " +"acompañada por un enlace hacia la ayuda en línea
Para ver esta ayuda de " +"manera automática, márcalo aquí." + +#: ../admin/mem_param.php:107 +msgid "Do you want to see the help texts and links on each page?" +msgstr "¿Quieres ver los textos de ayuda y los enlaces en cada página?" + +#: ../admin/mem_param.php:108 +msgid "Change these settings" +msgstr "Modificar estos parámetros" + +#: ../admin/mem_param.php:119 +msgid "Members list view" +msgstr "Vista de la lista de miembros" + +#: ../admin/mem_param.php:120 +msgid "Large view" +msgstr "Vista amplia" + +#: ../admin/mem_param.php:121 +msgid "Short view" +msgstr "Vista reducida" + +#: ../admin/mem_param.php:123 +msgid "Change my admin preferences" +msgstr "Modificar mis preferencias de administrador" + +#: ../admin/mem_passwd.php:44 +msgid "Your password has been successfully changed." +msgstr "La contraseña fue cambiada." + +#: ../admin/menu.php:37 +#, fuzzy, php-format +msgid "Welcome %s" +msgstr "Borrar %s" + +#: ../admin/menu.php:105 +msgid "About" +msgstr "" + +#: ../admin/nowebmail.php:28 +msgid "" +"There is currently no webmail configured. If you need one, contact your " +"server administrator" +msgstr "" + +#: ../admin/piwik_addaccount.php:34 +#, fuzzy +msgid "You cannot add any new Piwik account, your quota is over." +msgstr "Tu cuota de cuentas FTP alcanzó su limite, no se pueden crear más." + +#: ../admin/piwik_addaccount.php:44 +msgid "Error : missing arguments." +msgstr "" + +#: ../admin/piwik_addaccount.php:50 +#, fuzzy, php-format +msgid "Creation of Piwik account \"%s\"" +msgstr "Crear una nueva cuenta FTP" + +#: ../admin/piwik_addaccount.php:67 +msgid "Successfully added piwik user" +msgstr "" + +#: ../admin/piwik_addsites.php:44 +msgid "Error while adding website.
" +msgstr "" + +#: ../admin/piwik_addsites.php:46 +msgid "Website added Successfully" +msgstr "" + +#: ../admin/piwik_site_dodel.php:39 +msgid "Missing site parameters" +msgstr "" + +#: ../admin/piwik_site_dodel.php:50 +#, fuzzy +msgid "Site successfully deleted" +msgstr "El miembro %s fue borrado con éxito" + +#: ../admin/piwik_site_dodel.php:61 +#, fuzzy +msgid "Piwik site deletion confirm" +msgstr "Lista de cuentas FTP" + +#: ../admin/piwik_site_dodel.php:64 +msgid "Do you really want to delete this Piwik website ?" +msgstr "" + +#: ../admin/piwik_sitelist.php:48 +msgid "You don't own this piwik site!" +msgstr "" + +#: ../admin/piwik_sitelist.php:56 +msgid "You dont own user" +msgstr "" + +#: ../admin/piwik_sitelist.php:83 ../admin/piwik_userlist.php:53 +#, fuzzy +msgid "Add a new website" +msgstr "Añadir un nuevo TLD" + +#: ../admin/piwik_sitelist.php:85 ../admin/piwik_userlist.php:55 +msgid "URL of the website" +msgstr "" + +#: ../admin/piwik_sitelist.php:106 +msgid "Existing Piwik monitored websites" +msgstr "" + +#: ../admin/piwik_sitelist.php:114 +#, fuzzy +msgid "No existing Piwik websites" +msgstr "Modificación de una cuenta FTP" + +#: ../admin/piwik_sitelist.php:120 +#, fuzzy +msgid "Site name" +msgstr "Cambiar nombre" + +#: ../admin/piwik_sitelist.php:120 +msgid "Site url" +msgstr "" + +#: ../admin/piwik_sitelist.php:147 +msgid "Credentials management" +msgstr "" + +#: ../admin/piwik_user_dodel.php:39 +msgid "Missing login parameters" +msgstr "" + +#: ../admin/piwik_user_dodel.php:59 +msgid "Piwik accounts deletion confirm" +msgstr "" + +#: ../admin/piwik_user_dodel.php:62 +#, php-format +msgid "Do you really want to delete the Piwik account %s ?" +msgstr "" + +#: ../admin/piwik_useradmin.php:42 +#, fuzzy +msgid "No piwik user specified" +msgstr "¡Ninguna carpeta seleccionada!" + +#: ../admin/piwik_useradmin.php:52 +msgid "You don't own this piwik website" +msgstr "" + +#: ../admin/piwik_useradmin.php:60 +msgid "You don't own this piwik user" +msgstr "" + +#: ../admin/piwik_useradmin.php:71 +msgid "success" +msgstr "" + +#: ../admin/piwik_useradmin.php:75 +#, fuzzy +msgid "This right does not exist" +msgstr "El usuario no existe" + +#: ../admin/piwik_useradmin.php:105 +#, fuzzy +msgid "Rights for user" +msgstr "Derechos MySQL para %s" + +#: ../admin/piwik_useradmin.php:128 +#, fuzzy +msgid "Add rights to user" +msgstr "Añadir el usuario" + +#: ../admin/piwik_useradmin.php:139 +msgid "admin" +msgstr "" + +#: ../admin/piwik_useradmin.php:139 +#, fuzzy +msgid "noacces" +msgstr "Lista de cuentas FTP" + +#: ../admin/piwik_useradmin.php:139 +msgid "view" +msgstr "" + +#: ../admin/piwik_userlist.php:41 +#, fuzzy +msgid "Create a new piwik account" +msgstr "Crear una nueva cuenta FTP" + +#: ../admin/piwik_userlist.php:66 +#, fuzzy +msgid "Existing Piwik accounts" +msgstr "Modificación de una cuenta FTP" + +#: ../admin/piwik_userlist.php:74 +msgid "No existing Piwik users" +msgstr "" + +#: ../admin/piwik_userlist.php:79 ../admin/piwik_userlist.php:89 +#, fuzzy +msgid "Connect" +msgstr "Conectarse como" + +#: ../admin/quota_show.php:34 +msgid "Account's quotas" +msgstr "Cuotas de la cuenta" + +#: ../admin/quota_show.php:40 +msgid "No quotas for this account, or quotas currently unavailable!" +msgstr "¡No hay cuota para esta cuenta, o imposible obtener cuota!" + +#: ../admin/quotas_oneuser.php:14 +#, fuzzy, php-format +msgid "%s account" +msgstr "%s cuentas" + +#: ../admin/quotas_oneuser.php:25 ../class/m_quota.php:60 +#, fuzzy +msgid "quota_web" +msgstr "quota_" + +#: ../admin/quotas_oneuser.php:36 ../admin/quotas_users.php:132 +#: ../class/m_dom.php:93 +msgid "Domains" +msgstr "Dominios" + +#: ../admin/quotas_oneuser.php:37 +#, fuzzy +msgid "Emails" +msgstr "Dirección de correo" + +#: ../admin/quotas_oneuser.php:38 ../admin/quotas_oneuser.php:121 +#: ../admin/quotas_oneuser.php:167 ../admin/quotas_users.php:128 +#: ../admin/quotas_users.php:169 +msgid "Space" +msgstr "" + +#: ../admin/quotas_oneuser.php:112 +#, fuzzy +msgid "Databases:" +msgstr "Bases de datos" + +#: ../admin/quotas_oneuser.php:120 ../admin/quotas_users.php:177 +msgid "DB" +msgstr "" + +#: ../admin/quotas_oneuser.php:158 +msgid "Mailman lists:" +msgstr "" + +#: ../admin/quotas_oneuser.php:166 ../admin/quotas_users.php:173 +#: ../admin/quotas_users.php:176 +msgid "Lists" +msgstr "" + +#: ../admin/quotas_users.php:20 +#, fuzzy +msgid "Quotas status" +msgstr "Cuotas" + +#: ../admin/quotas_users.php:29 +msgid "" +"This page shows the space and service count of your AlternC server and each " +"AlternC accounts." +msgstr "" + +#: ../admin/quotas_users.php:30 +#, fuzzy, php-format +msgid "Administration -> Manage the Alternc accounts" +msgstr "Cambiar la dirección de correo de la cuenta" + +#: ../admin/quotas_users.php:30 +#, php-format +msgid "If you want to manage them, go to" +msgstr "" + +#: ../admin/quotas_users.php:33 +#, php-format +msgid "% of the total." +msgstr "" + +#: ../admin/quotas_users.php:33 +msgid "MB." +msgstr "" + +#: ../admin/quotas_users.php:33 +#, php-format +msgid "Sizes are shown as %s" +msgstr "" + +#: ../admin/quotas_users.php:36 +msgid "Global" +msgstr "" + +#: ../admin/quotas_users.php:36 +msgid "Server-side view:" +msgstr "" + +#: ../admin/quotas_users.php:37 +msgid "Detailed view:" +msgstr "" + +#: ../admin/quotas_users.php:38 +msgid "In MB" +msgstr "" + +#: ../admin/quotas_users.php:39 +msgid "Percentage" +msgstr "" + +#: ../admin/quotas_users.php:40 +msgid "Graphical" +msgstr "" + +#: ../admin/quotas_users.php:43 +#, fuzzy +msgid "Show the domain names" +msgstr "Nombre de dominio" + +#: ../admin/quotas_users.php:45 +#, fuzzy +msgid "Hide the domain names" +msgstr "Instalar el dominio login.%s" + +#: ../admin/quotas_users.php:48 +#, fuzzy +msgid "All accounts" +msgstr "%s cuentas" + +#: ../admin/quotas_users.php:128 ../admin/quotas_users.php:169 +msgid "Count" +msgstr "" + +#: ../admin/quotas_users.php:137 ../class/m_mail.php:177 +#, fuzzy +msgid "Email addresses" +msgstr "Dirección de correo" + +#: ../admin/quotas_users.php:143 +msgid "Mailman lists" +msgstr "" + +# msgid "General SQL Admin" +# msgstr "Admin general SQL " +#: ../admin/quotas_users.php:149 ../admin/sql_del.php:72 +#: ../admin/sql_dorestore.php:40 ../admin/sql_getparam.php:44 +#: ../admin/sql_list.php:37 ../admin/sql_restore.php:44 +#: ../class/m_mysql.php:990 +msgid "MySQL Databases" +msgstr "Base de datos MySQL" + +#: ../admin/quotas_users.php:171 +#, fuzzy +msgid "Dom" +msgstr "Dominio" + +#: ../admin/quotas_users.php:172 ../admin/quotas_users.php:175 +#, fuzzy +msgid "Mails" +msgstr "Buzones de correo" + +#: ../admin/quotas_users.php:174 +msgid "Web" +msgstr "" + +# msgid "General SQL Admin" +# msgstr "Admin general SQL " +#: ../admin/sql_bck.php:34 +#, fuzzy +msgid "MySQL Databases - Configure backups" +msgstr "Base de datos MySQL" + +#: ../admin/sql_bck.php:40 ../admin/sql_dobck.php:34 +msgid "" +"You aren't allowed to access this page. Contact your administrator if you " +"want to." +msgstr "" + +#: ../admin/sql_bck.php:65 +#, php-format +msgid "Manage the SQL backup for database %s" +msgstr "Manejar el respaldo de la base %s" + +#: ../admin/sql_bck.php:70 +#, fuzzy +msgid "Do MySQL backup?" +msgstr "¿Respaldar la base SQL?" + +#: ../admin/sql_bck.php:73 +msgid "No backup" +msgstr "Sin respaldo" + +#: ../admin/sql_bck.php:74 +msgid "Weekly backup" +msgstr "Copia de respaldo semanal" + +#: ../admin/sql_bck.php:75 +msgid "Daily backup" +msgstr "Copia de respaldo diaria" + +#: ../admin/sql_bck.php:79 +#, fuzzy +msgid "How many backups should be kept?" +msgstr "¿Cuantas copias de respaldo hay que conservar?" + +#: ../admin/sql_bck.php:91 +msgid "Compress the backups? (gzip)" +msgstr "¿Comprimir las copias de respaldo? (gzip)" + +#: ../admin/sql_bck.php:100 +msgid "In which folder do you want to store the backups?" +msgstr "¿Dónde se almacenan las copias de respaldo?" + +#: ../admin/sql_bck.php:107 +#, fuzzy +msgid "Change the MySQL backup parameters" +msgstr "Cambiar los parámetros de resplados SQL" + +#: ../admin/sql_bck.php:116 ../admin/sql_dorestore.php:50 +#: ../admin/sql_restore.php:53 +msgid "You currently have no database defined" +msgstr "No tienes ninguna base de datos definida" + +#: ../admin/sql_del.php:51 +#, php-format +msgid "The database %s has been successfully deleted" +msgstr "Tu base de datos %s fue borrada" + +#: ../admin/sql_del.php:66 +msgid "Please check which databases you want to delete" +msgstr "" + +#: ../admin/sql_del.php:75 +msgid "Confirm the deletion of the following SQL databases" +msgstr "Confirmar la supresión de las bases de datos SQL siguientes" + +#: ../admin/sql_del.php:76 +msgid "This will delete all the tables currently in those db." +msgstr "Esto borrará todas las tablas contenidas dentro de estas bases." + +#: ../admin/sql_del.php:90 +#, fuzzy +msgid "No, don't delete the database" +msgstr "Borrar las bases de datos seleccionadas" + +#: ../admin/sql_del.php:90 +#, fuzzy +msgid "Yes, delete the database" +msgstr "Borrar las bases de datos seleccionadas" + +#: ../admin/sql_doadd.php:37 +#, fuzzy +msgid "Can't create a database: your quota is over" +msgstr "No puedes crear más estadísticas, alcanzaste el limite de tu cuota." + +#: ../admin/sql_dobck.php:56 +msgid "Your backup parameters has been successfully changed." +msgstr "Tus parámetros de respaldos fueron cambiados." + +#: ../admin/sql_dorestore.php:56 +msgid "Restore a SQL backup" +msgstr "Restaurar una copia de resplado SQL" + +#: ../admin/sql_dorestore.php:63 +msgid "" +"Your database has been restored, check out the previous text for error " +"messages." +msgstr "Tu base fue restaurada, verifica los posibles errores en el texto." + +#: ../admin/sql_getparam.php:53 +#, fuzzy +msgid "Your current connection settings are" +msgstr "Los parámetros actuales son" + +#: ../admin/sql_getparam.php:59 +#, fuzzy +msgid "Mysql Server" +msgstr "Servidor SQL" + +#: ../admin/sql_getparam.php:63 ../admin/sql_list.php:54 +msgid "Database" +msgstr "Base de datos" + +#: ../admin/sql_getparam.php:79 +#, fuzzy +msgid "Web interface PhpMyAdmin" +msgstr "Admin SQL general" + +#: ../admin/sql_getparam.php:91 +msgid "" +"You changed the MySQL User base configuration. Please refer to your " +"configuration" +msgstr "" + +#: ../admin/sql_getparam.php:94 +#, fuzzy +msgid "Back to the MySQL database list" +msgstr "Regresar a la lista de cuentas" + +#: ../admin/sql_list.php:45 +msgid "You have no sql user at the moment." +msgstr "" + +#: ../admin/sql_list.php:54 ../admin/sql_list.php:65 +msgid "Backup" +msgstr "Respaldos" + +#: ../admin/sql_list.php:54 ../admin/sql_list.php:67 +msgid "Restore" +msgstr "Restauración" + +#: ../admin/sql_list.php:54 ../admin/sql_list.php:68 +#, fuzzy +msgid "Show Settings" +msgstr "Configuración" + +#: ../admin/sql_list.php:77 +msgid "Delete the checked databases" +msgstr "Borrar las bases de datos seleccionadas" + +# ################################################################# +#: ../admin/sql_list.php:90 +#, fuzzy +msgid "Create a new MySQL database" +msgstr "Crear una nueva base de datos" + +# msgid "General SQL Admin" +# msgstr "Admin general SQL " +#: ../admin/sql_list.php:96 +#, fuzzy +msgid "MySQL Database" +msgstr "Base de datos MySQL" + +#: ../admin/sql_list.php:103 +msgid "Can't have empty MySQL suffix" +msgstr "" + +#: ../admin/sql_list.php:103 +#, fuzzy +msgid "Create this new MySQL database." +msgstr "Crear esta nueva base de datos" + +#: ../admin/sql_pma_sso.php:46 +msgid "SQL Admin" +msgstr "Admin SQL" + +#: ../admin/sql_restore.php:58 +#, fuzzy, php-format +msgid "Restore a MySQL backup for database %s" +msgstr "Restaurar una copia de respaldo de la base de datos SQL %s" + +#: ../admin/sql_restore.php:61 +msgid "" +"Warning: Write the complete path and the filename.
For example if your " +"backups are in the directory /Backups,
write /Backups/file.sql.gz " +"(where file.sql.gz is the filename)." +msgstr "" + +#: ../admin/sql_restore.php:66 +#, fuzzy +msgid "" +"Please enter the path and the filename containing SQL data to be restored." +msgstr "" +"Entra el nombre del archivo que contiene los datos SQL por restaurar en la " +"base." + +#: ../admin/sql_restore.php:67 +msgid "Restore my database" +msgstr "Restaurar mi base de datos" + +#: ../admin/sql_restore.php:67 +msgid "Tip: you can restore a file directly in the File Browser" +msgstr "" + +#: ../admin/sql_restore.php:72 +msgid "Please the complete path of the filename" +msgstr "" + +#: ../admin/sql_restore.php:81 +msgid "Note: If the filename ends with .gz, it will be uncompressed before." +msgstr "" +"Nota: Si el nombre del archivo termina por .gz, primero será descomprimido." + +#: ../admin/sql_users_add.php:41 ../admin/sql_users_list.php:79 +msgid "Create a new MySQL user" +msgstr "Crear un nuevo usuario MySQL" + +#: ../admin/sql_users_add.php:72 +#, fuzzy +msgid "Create this new MySQL user" +msgstr "Crear un nuevo usuario MySQL" + +#: ../admin/sql_users_del.php:47 +#, php-format +msgid "The user %s has been successfully deleted" +msgstr "Tu usuario %s fue borrado" + +# msgid "General SQL Admin" +# msgstr "Admin general SQL " +#: ../admin/sql_users_del.php:58 +msgid "MySQL users" +msgstr "Usuarios MySQL" + +#: ../admin/sql_users_del.php:61 +msgid "Confirm the deletion of the following MySQL users" +msgstr "Confirmar la supresión de los usuarios MySQL siguientes" + +#: ../admin/sql_users_del.php:76 +#, fuzzy +msgid "No, don't delete the MySQL user" +msgstr "Crear un nuevo usuario MySQL" + +#: ../admin/sql_users_del.php:76 +#, fuzzy +msgid "Yes, delete the MySQL user" +msgstr "Crear un nuevo usuario MySQL" + +#: ../admin/sql_users_dorights.php:54 +msgid "The rights has been successfully applied to the user" +msgstr "Los derechos fueron correctamente aplicados al usuario" + +# msgid "General SQL Admin" +# msgstr "Admin general SQL " +#: ../admin/sql_users_list.php:37 ../class/m_mysql.php:124 +msgid "MySQL Users" +msgstr "Usuarios MySQL" + +#: ../admin/sql_users_list.php:48 +msgid "Rights" +msgstr "Derechos" + +#: ../admin/sql_users_list.php:58 +#, fuzzy +msgid "Manage the rights" +msgstr "Administrar miembros" + +#: ../admin/sql_users_password.php:68 +#, fuzzy +msgid "Change user password" +msgstr "Modificar contraseña" + +#: ../admin/sql_users_rights.php:38 +#, php-format +msgid "MySQL Rights for %s" +msgstr "Derechos MySQL para %s" + +#: ../admin/sql_users_rights.php:89 +msgid "Reverse selection" +msgstr "" + +#: ../admin/sql_users_rights.php:103 +msgid "Apply" +msgstr "Aplicar" + +#: ../admin/stats_members.php:32 +#, fuzzy +msgid "" +"Image_Graph not installed. use 'aptitude install php-pear' then 'pear " +"install --alldeps Image_Graph-devel' to see the graph." +msgstr "" +"Image_Graph no está instalado. Ejecuta 'aptitude install php-pear' en un " +"terminal del servidor, y luego 'pear --alldeps install Image_Graph-devel' " +"para poder ver el gráfico." + +#: ../admin/stats_members.php:41 +msgid "Account creation per month" +msgstr "Cuentas creadas por mes" + +#: ../admin/stats_members.php:54 +msgid "before the month" +msgstr "antes de el mes" + +#: ../admin/stats_members.php:56 +msgid "during the month" +msgstr "durante el mes" + +#: ../admin/vm.php:52 ../class/m_lxc.php:60 +#, fuzzy +msgid "Console access" +msgstr "Lista de cuentas FTP" + +#: ../admin/vm.php:69 +msgid "You can start a virtual machine." +msgstr "" + +#: ../admin/vm.php:72 +#, fuzzy +msgid "Click here to start a virtual machine." +msgstr "Presiona aquí para seguir" + +#: ../admin/vm.php:78 +msgid "Start time" +msgstr "" + +#: ../admin/vm.php:79 +msgid "SSH Fingerprint" +msgstr "" + +#: ../admin/vm.php:80 +msgid "Useful command" +msgstr "" + +#: ../admin/vm.php:86 +msgid "You can stop your virtual machine." +msgstr "" + +#: ../admin/vm.php:89 +#, fuzzy +msgid "Click here to stop your running virtual machine." +msgstr "Presiona aquí para seguir" + +#: ../admin/vm.php:99 +msgid "Tips" +msgstr "" + +#: ../admin/vm.php:104 +msgid "Available softwares" +msgstr "" + +#: ../admin/vm.php:105 +msgid "Remotely start/stop a VM" +msgstr "" + +#: ../admin/vm.php:110 +msgid "" +"You can script the launch the console access in command line by using this " +"url:" +msgstr "" + +#: ../admin/vm.php:112 +msgid "You can halt the vm by using:" +msgstr "" + +#: ../admin/vm.php:114 +msgid "" +"And you can see existing vm information (if the vm is running) by using:" +msgstr "" + +#: ../admin/vm.php:116 +msgid "" +"Warning: if you do not use HTTPS, your password will be transfered without " +"any protection" +msgstr "" + +#: ../admin/vm.php:120 +msgid "To access a remote console with SSH, you can use Putty." +msgstr "" + +#: ../admin/vm.php:122 +msgid "To transfer files, you can use Filezilla in SFTP mode." +msgstr "" + +# Variables used in functions.php3 +#: ../class/functions.php:281 +msgid "Bytes" +msgstr "Octetos" + +#: ../class/functions.php:283 +msgid "Byte" +msgstr "Octeto" + +#: ../class/functions.php:288 +msgid "Kb" +msgstr "Kb" + +#: ../class/functions.php:292 +msgid "Mb" +msgstr "Mb" + +#: ../class/functions.php:296 +msgid "Gb" +msgstr "Gb" + +#: ../class/functions.php:298 +msgid "Tb" +msgstr "Tb" + +#: ../class/functions.php:389 +msgid "year" +msgstr "año" + +# Variables used in functions.php3 +#: ../class/functions.php:389 +msgid "years" +msgstr "años" + +#: ../class/functions.php:391 +msgid "month" +msgstr "mes" + +#: ../class/functions.php:391 +msgid "months" +msgstr "meses" + +#: ../class/functions.php:414 +msgid "Not managed" +msgstr "No manejado" + +#: ../class/functions.php:541 ../class/functions.php:543 +msgid "Previous Page" +msgstr "" + +#: ../class/functions.php:597 ../class/functions.php:599 +msgid "Next Page" +msgstr "" + +#: ../class/functions.php:621 +#, fuzzy +msgid "Clic here to generate a password" +msgstr "Por favor, entra una contraseña" + +#: ../class/functions.php:656 ../class/functions.php:657 +#, fuzzy +msgid "Choose a folder..." +msgstr "Proteger una carpeta" + +#: ../class/m_action.php:156 +msgid "Error setting actions" +msgstr "" + +#: ../class/m_action.php:168 +#, fuzzy +msgid "Error selecting old actions" +msgstr "Parámetros de tu cuenta" + +#: ../class/m_action.php:181 +msgid "Error purging old actions" +msgstr "" + +#: ../class/m_admin.php:60 +msgid "This TLD is forbidden" +msgstr "Este TLD está prohibido" + +#: ../class/m_admin.php:61 +msgid "primary DNS is checked in WHOIS db" +msgstr "verificar el DNS primario en la base WHOIS" + +#: ../class/m_admin.php:62 +msgid "primary & secondary DNS are checked in WHOIS db" +msgstr "verificar los DNS primario y segundario en la base WHOIS" + +#: ../class/m_admin.php:63 +msgid "Domain must exist, but don't do any DNS check" +msgstr "El dominio debe existir, pero no hacer ninguna verificación de DNS" + +#: ../class/m_admin.php:64 +msgid "Domain can be installed, no check at all" +msgstr "Se puede instalar el dominio, ninguna verificación" + +#: ../class/m_admin.php:65 +#, fuzzy +msgid "Domain can be installed, force NO DNS hosting" +msgstr "El dominio puede ser instalado (pero no se maneja el DNS)" + +#: ../class/m_admin.php:75 +msgid "Administration" +msgstr "Administración" + +#: ../class/m_admin.php:83 +#, fuzzy +msgid "Manage AlternC accounts" +msgstr "Cambiar la dirección de correo de la cuenta" + +#: ../class/m_admin.php:88 +#, fuzzy +msgid "User Quotas" +msgstr "Cuotas" + +#: ../class/m_admin.php:104 ../class/m_mysql.php:130 +msgid "PhpMyAdmin" +msgstr "" + +#: ../class/m_admin.php:111 +msgid "Switch debug Off" +msgstr "" + +#: ../class/m_admin.php:111 +msgid "Switch debug On" +msgstr "" + +#: ../class/m_admin.php:118 +#, fuzzy +msgid "Applying..." +msgstr "extrayendo..." + +#: ../class/m_admin.php:119 +msgid "Domain changes are already applying" +msgstr "" + +#: ../class/m_admin.php:125 +#, fuzzy +msgid "Apply changes" +msgstr "Cambio de contraseña" + +#: ../class/m_admin.php:128 +msgid "" +"Server configuration changes are applied every 5 minutes. Do you want to do " +"it right now?" +msgstr "" + +#: ../class/m_admin.php:174 ../class/m_admin.php:224 ../class/m_admin.php:288 +#: ../class/m_admin.php:364 ../class/m_admin.php:405 ../class/m_admin.php:436 +#: ../class/m_admin.php:491 ../class/m_admin.php:657 ../class/m_admin.php:696 +#: ../class/m_admin.php:720 ../class/m_admin.php:746 +msgid "-- Only administrators can access this page! --" +msgstr "" + +#: ../class/m_admin.php:322 +msgid "" +"Invalid pattern type provided. Are you even performing a legitimate action?" +msgstr "" + +#: ../class/m_admin.php:372 +msgid "Subject, message and sender are mandatory" +msgstr "" + +#: ../class/m_admin.php:377 +msgid "Sender is syntaxically incorrect" +msgstr "" + +#: ../class/m_admin.php:448 +msgid "-- Only administrators can do that! --" +msgstr "" + +#: ../class/m_admin.php:454 +#, fuzzy +msgid "You don't seem to be allowed to delegate this domain" +msgstr "Confirmar la supresión del dominio %s" + +#: ../class/m_admin.php:495 +msgid "Missing db_server field" +msgstr "" + +#: ../class/m_admin.php:499 ../class/m_admin.php:504 +msgid "All fields are mandatory" +msgstr "" + +#: ../class/m_admin.php:508 +#, fuzzy +msgid "Please enter a valid email address" +msgstr "Añadir este buzón" + +#: ../class/m_admin.php:514 +msgid "Login can only contains characters a-z and 0-9" +msgstr "" + +#: ../class/m_admin.php:521 +msgid "The login is too long (14 chars max)" +msgstr "" + +#: ../class/m_admin.php:526 +msgid "Login can only contains characters a-z, 0-9 and -" +msgstr "" + +#: ../class/m_admin.php:572 +msgid "This login already exists" +msgstr "" + +#: ../class/m_admin.php:589 +#, php-format +msgid "query failed: %s " +msgstr "" + +#: ../class/m_admin.php:616 +#, php-format +msgid "New account %s from %s on %s" +msgstr "" + +#: ../class/m_admin.php:621 +#, php-format +msgid "Cannot send email to %s" +msgstr "" + +#: ../class/m_admin.php:625 +#, php-format +msgid "Query failed: %s" +msgstr "" + +#: ../class/m_admin.php:898 +#, fuzzy +msgid "This account is ALREADY an administrator account" +msgstr "Esta cuenta es un cuenta de administrador" + +#: ../class/m_admin.php:920 +#, fuzzy +msgid "This account is NOT an administrator account!" +msgstr "Esta cuenta es un cuenta de administrador" + +#: ../class/m_admin.php:1061 +#, fuzzy, php-format +msgid "Domain '%s' not found." +msgstr "Dominio %s borrado" + +#: ../class/m_admin.php:1080 ../class/m_admin.php:1112 +#: ../class/m_admin.php:1162 +#, fuzzy +msgid "This TLD does not exist" +msgstr "El usuario no existe" + +#: ../class/m_admin.php:1133 +msgid "The TLD name is mandatory" +msgstr "" + +#: ../class/m_admin.php:1140 +msgid "This TLD already exist" +msgstr "" + +#: ../class/m_admin.php:1275 +#, fuzzy +msgid "Please enter a login" +msgstr "Por favor, entra una contraseña" + +#: ../class/m_admin.php:1285 +msgid "-- Program error -- The requested password policy does not exist!" +msgstr "" + +#: ../class/m_admin.php:1293 +msgid "The password length is too short according to the password policy" +msgstr "" + +#: ../class/m_admin.php:1298 +msgid "The password is too long according to the password policy" +msgstr "" + +#: ../class/m_admin.php:1308 +msgid "" +"The password policy prevents you to use your login name inside your password" +msgstr "" + +#: ../class/m_admin.php:1332 +msgid "" +"Your password contains not enough different classes of character, between " +"low-case, up-case, figures and special characters." +msgstr "" + +#: ../class/m_authip.php:338 +msgid "Object not available" +msgstr "" + +#: ../class/m_authip.php:347 +#, php-format +msgid "Can't identified class for the protocole %s" +msgstr "" + +#: ../class/m_bro.php:68 +msgid "1 column, detailed" +msgstr "" + +#: ../class/m_bro.php:68 +msgid "2 columns, short" +msgstr "" + +#: ../class/m_bro.php:68 +msgid "3 columns, short" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "tar.Z (Unix)" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "tar.bz2 (Linux)" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "tgz (Linux)" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "zip (Windows/Dos)" +msgstr "" + +#: ../class/m_bro.php:71 +msgid "Edit the newly created file" +msgstr "" + +#: ../class/m_bro.php:71 +#, fuzzy +msgid "Go back to the file manager" +msgstr "Regresar al manejador de archivos" + +#: ../class/m_bro.php:186 +#, fuzzy +msgid "This directory do not exist" +msgstr "El usuario no existe" + +#: ../class/m_bro.php:365 ../class/m_bro.php:1040 +msgid "Cannot create the requested directory. Please check the permissions" +msgstr "" + +#: ../class/m_bro.php:371 ../class/m_bro.php:388 ../class/m_bro.php:413 +#: ../class/m_bro.php:437 ../class/m_bro.php:469 ../class/m_bro.php:479 +#: ../class/m_bro.php:509 ../class/m_bro.php:546 ../class/m_bro.php:587 +#: ../class/m_bro.php:625 ../class/m_bro.php:630 ../class/m_bro.php:721 +#: ../class/m_bro.php:868 ../class/m_bro.php:900 +msgid "File or folder name is incorrect" +msgstr "" + +#: ../class/m_bro.php:393 ../class/m_bro.php:558 +msgid "Cannot create the requested file. Please check the permissions" +msgstr "" + +#: ../class/m_bro.php:483 ../class/m_bro.php:634 +msgid "You cannot move or copy a file to the same folder" +msgstr "" + +#: ../class/m_bro.php:610 +#, php-format +msgid "" +"I cannot find a way to extract the file %s, it is an unsupported compressed " +"format" +msgstr "" + +#: ../class/m_bro.php:717 +msgid "Cannot read the requested file. Please check the permissions" +msgstr "" + +#: ../class/m_bro.php:792 +#, fuzzy +msgid "File not in authorized directory" +msgstr "Ningún usuario autorizado en %s" + +#: ../class/m_bro.php:895 +msgid "Cannot edit the requested file. Please check the permissions" +msgstr "" + +#: ../class/m_cron.php:40 +msgid "Daily" +msgstr "" + +#: ../class/m_cron.php:41 +msgid "Hour" +msgstr "" + +#: ../class/m_cron.php:42 +msgid "Half Hour" +msgstr "" + +#: ../class/m_cron.php:125 +msgid "URL not valid" +msgstr "" + +#: ../class/m_cron.php:133 +#, fuzzy +msgid "Email address is not valid" +msgstr "Lista de las buzones de correo del dominio %s" + +#: ../class/m_cron.php:142 +msgid "You quota of cron entries is over. You cannot create more cron entries" +msgstr "" + +#: ../class/m_cron.php:151 +msgid "Identity problem" +msgstr "" + +#: ../class/m_dom.php:178 +msgid "Err: failed to prepare the zone" +msgstr "" + +#: ../class/m_dom.php:200 +#, fuzzy +msgid "Missing domain name" +msgstr "Modificar dominio %s" + +#: ../class/m_dom.php:495 +msgid "The name MUST contain only letter and digits" +msgstr "" + +#: ../class/m_dom.php:515 ../class/m_dom.php:1291 +msgid "" +"The parameters for this subdomain and domain type are invalid. Please check " +"for subdomain entries incompatibility" +msgstr "" + +#: ../class/m_dom.php:629 ../class/m_dom.php:1054 ../class/m_dom.php:1119 +#: ../class/m_dom.php:1262 ../class/m_dom.php:1351 ../class/m_dom.php:1395 +#: ../class/m_dom.php:1710 +msgid "--- Program error --- No lock on the domains!" +msgstr "" + +#: ../class/m_dom.php:636 ../class/m_dom.php:1059 ../class/m_dom.php:1286 +#: ../class/m_dom.php:1420 +msgid "The domain name is syntaxically incorrect" +msgstr "" + +#: ../class/m_dom.php:642 ../class/m_dom.php:683 ../class/m_dom.php:1498 +msgid "" +"The requested domain is forbidden in this server, please contact the " +"administrator" +msgstr "" + +#: ../class/m_dom.php:646 +msgid "This domain is the server's domain! You cannot host it on your account!" +msgstr "" + +#: ../class/m_dom.php:651 ../class/m_dom.php:656 +#, fuzzy +msgid "The domain already exist" +msgstr "Editar archivo" + +#: ../class/m_dom.php:663 ../class/m_dom.php:1402 +msgid "" +"The last member of the domain name is incorrect or cannot be hosted in that " +"server" +msgstr "" + +#: ../class/m_dom.php:667 ../class/m_dom.php:671 +msgid "The domain cannot be found in the whois database" +msgstr "" + +#: ../class/m_dom.php:690 +msgid "Your domain quota is over, you cannot create more domain names" +msgstr "" + +#: ../class/m_dom.php:697 +msgid "An unexpected error occured when creating the domain" +msgstr "" + +#: ../class/m_dom.php:706 ../class/m_dom.php:1065 +#, fuzzy, php-format +msgid "Domain '%s' not found" +msgstr "Dominio %s borrado" + +#: ../class/m_dom.php:820 +#, fuzzy +msgid "Could not delete default type" +msgstr "no pudo ser borrado" + +#: ../class/m_dom.php:972 +msgid "The Whois database is unavailable, please try again later" +msgstr "" + +#: ../class/m_dom.php:979 ../class/m_dom.php:1406 +msgid "The domain cannot be found in the Whois database" +msgstr "" + +#: ../class/m_dom.php:1124 ../class/m_dom.php:1355 +#, fuzzy +msgid "The sub-domain does not exist" +msgstr "¡El buzón %s no existe!" + +#: ../class/m_dom.php:1155 +msgid "invalid url" +msgstr "" + +#: ../class/m_dom.php:1165 +#, fuzzy +msgid "The folder you entered is incorrect or does not exist" +msgstr "El miembro '%s' no existe" + +#: ../class/m_dom.php:1174 ../class/m_dom.php:1182 +#, fuzzy +msgid "The ip address is invalid" +msgstr "Lista de las buzones de correo del dominio %s" + +#: ../class/m_dom.php:1190 +#, fuzzy +msgid "The name you entered is incorrect" +msgstr "El miembro '%s' no existe" + +#: ../class/m_dom.php:1198 +#, fuzzy +msgid "The TXT value you entered is incorrect" +msgstr "El miembro '%s' no existe" + +#: ../class/m_dom.php:1203 +msgid "Invalid domain type selected, please check" +msgstr "" + +#: ../class/m_dom.php:1274 +msgid "" +"There is some forbidden characters in the sub domain (only A-Z 0-9 and - are " +"allowed)" +msgstr "" + +#: ../class/m_dom.php:1313 ../class/m_dom.php:1324 +msgid "Cannot write to the destination folder" +msgstr "" + +#: ../class/m_dom.php:1410 +msgid "" +"The DNS of this domain do not match the server's DNS. Please change your " +"domain's DNS before you install it again" +msgstr "" + +#: ../class/m_dom.php:1425 +#, fuzzy, php-format +msgid "The domain name %s does not exist" +msgstr "¡El buzón %s no existe!" + +#: ../class/m_dom.php:1431 +#, fuzzy +msgid "No change has been requested..." +msgstr "Los parámetros de ayuda han sido modificados." + +#: ../class/m_dom.php:1439 ../class/m_dom.php:1444 +msgid "" +"There is no MX record pointing to this server, and you are asking us to host " +"the mail here. Make sure to update your MX entries or no mail will be " +"received" +msgstr "" + +#: ../class/m_dom.php:1491 ../class/m_dom.php:1515 +msgid "The IP address you entered is incorrect" +msgstr "" + +#: ../class/m_dom.php:1588 ../class/m_dom.php:1594 ../class/m_dom.php:1612 +#: ../class/m_dom.php:1618 +#, fuzzy +msgid "This domain is not installed in your account" +msgstr "Esta cuenta es un cuenta de administrador" + +#: ../class/m_dom.php:1660 +msgid "The specified slave account already exists" +msgstr "" + +#: ../class/m_dom.php:1691 +msgid "--- Program error --- Lock already obtained!" +msgstr "" + +#: ../class/m_dom.php:1831 +#, fuzzy +msgid "Locally hosted" +msgstr "Administrar localmente" + +#: ../class/m_dom.php:1832 +#, fuzzy +msgid "URL redirection" +msgstr "Dirigir hacia una URL" + +#: ../class/m_dom.php:1833 +msgid "IPv4 redirect" +msgstr "" + +#: ../class/m_dom.php:1834 +msgid "Webmail access" +msgstr "Acceso Webmail" + +#: ../class/m_dom.php:1835 +#, fuzzy +msgid "Squirrelmail Webmail access" +msgstr "Acceso Webmail" + +#: ../class/m_dom.php:1836 +#, fuzzy +msgid "Roundcube Webmail access" +msgstr "Acceso Webmail" + +#: ../class/m_dom.php:1837 +msgid "IPv6 redirect" +msgstr "" + +#: ../class/m_dom.php:1838 +msgid "CNAME DNS entry" +msgstr "" + +#: ../class/m_dom.php:1839 +msgid "TXT DNS entry" +msgstr "" + +#: ../class/m_dom.php:1840 +msgid "MX DNS entry" +msgstr "" + +#: ../class/m_dom.php:1841 +msgid "secondary MX DNS entry" +msgstr "" + +#: ../class/m_dom.php:1842 +#, fuzzy +msgid "Default mail server" +msgstr "Valores por omisión" + +#: ../class/m_dom.php:1843 +msgid "Default backup mail server" +msgstr "" + +#: ../class/m_dom.php:1844 +#, fuzzy +msgid "AlternC panel access" +msgstr "Lista de cuentas FTP" + +#: ../class/m_err.php:66 ../class/m_err.php:98 +msgid "err_" +msgstr "err_" + +#: ../class/m_ftp.php:56 ../class/m_ftp.php:447 +msgid "FTP accounts" +msgstr "Cuentas FTP" + +#: ../class/m_ftp.php:105 +#, fuzzy +msgid "This account do not exist or is not of this account" +msgstr "Esta cuenta es un cuenta de administrador" + +#: ../class/m_ftp.php:117 +msgid "Error during update" +msgstr "" + +#: ../class/m_ftp.php:151 +#, fuzzy +msgid "No FTP account found" +msgstr "No existe ninguna cuenta por el momento" + +#: ../class/m_ftp.php:187 ../class/m_ftp.php:262 ../class/m_ftp.php:322 +#, fuzzy +msgid "This FTP account does not exist" +msgstr "El usuario no existe" + +#: ../class/m_ftp.php:217 +#, php-format +msgid "FTP login is incorrect: too many '%s'" +msgstr "" + +#: ../class/m_ftp.php:224 +#, fuzzy +msgid "FTP login is incorrect" +msgstr "El miembro '%s' no existe" + +#: ../class/m_ftp.php:271 ../class/m_ftp.php:351 +msgid "The chosen prefix is not allowed" +msgstr "" + +#: ../class/m_ftp.php:282 ../class/m_ftp.php:360 +#, fuzzy +msgid "This FTP account already exists" +msgstr "¡El buzón %s no existe!" + +#: ../class/m_ftp.php:290 ../class/m_ftp.php:372 +#, fuzzy +msgid "The directory cannot be created" +msgstr "no pudo ser borrado" + +#: ../class/m_ftp.php:347 +#, fuzzy +msgid "Password can't be empty" +msgstr "Cambio de contraseña" + +#: ../class/m_ftp.php:388 +msgid "Your FTP account quota is over. You cannot create more ftp accounts" +msgstr "" + +#: ../class/m_hta.php:60 +msgid "Protected folders" +msgstr "Carpetas protegidas" + +#: ../class/m_hta.php:81 ../class/m_hta.php:291 ../class/m_hta.php:332 +#, fuzzy, php-format +msgid "The folder '%s' does not exist" +msgstr "El miembro '%s' no existe" + +#: ../class/m_hta.php:89 ../class/m_hta.php:94 ../class/m_hta.php:104 +#: ../class/m_hta.php:253 ../class/m_hta.php:298 ../class/m_hta.php:347 +#, fuzzy +msgid "File already exist" +msgstr "Editar archivo" + +#: ../class/m_hta.php:98 +msgid "Restricted area" +msgstr "" + +#: ../class/m_hta.php:126 +#, fuzzy +msgid "No protected folder" +msgstr "Carpetas protegidas" + +#: ../class/m_hta.php:208 +#, php-format +msgid "I cannot delete the file '%s/.htaccess'" +msgstr "" + +#: ../class/m_hta.php:212 +#, php-format +msgid "I cannot delete the file '%s/.htpasswd'" +msgstr "" + +#: ../class/m_hta.php:231 +#, fuzzy +msgid "Please enter a user" +msgstr "Por favor, entra una contraseña" + +#: ../class/m_hta.php:261 +#, fuzzy, php-format +msgid "The user '%s' already exist for this folder" +msgstr "No hay ningún archivo en esta carpeta" + +#: ../class/m_hta.php:273 +#, fuzzy +msgid "Please enter a valid username" +msgstr "Por favor, entra una contraseña" + +#: ../class/m_hta.php:402 +#, fuzzy +msgid "An incompatible .htaccess file exists in this folder" +msgstr "No hay ningún archivo en esta carpeta" + +#: ../class/m_log.php:60 +msgid "Logs" +msgstr "" + +#: ../class/m_lxc.php:133 +#, fuzzy +msgid "VM already started" +msgstr "Desactivar" + +#: ../class/m_mail.php:95 +#, fuzzy +msgid "Email Addresses" +msgstr "Dirección de correo" + +#: ../class/m_mail.php:158 ../class/m_mail.php:243 ../class/m_mail.php:328 +#: ../class/m_mail.php:455 ../class/m_mail.php:509 +msgid "The email you entered is syntaxically incorrect" +msgstr "" + +#: ../class/m_mail.php:191 +#, fuzzy +msgid "Email account password" +msgstr "Contraseña inicial" + +#: ../class/m_mail.php:281 +#, fuzzy +msgid "No email found for this query" +msgstr "Añadir una cuenta de correo para el dominio %s" + +#: ../class/m_mail.php:340 +#, fuzzy +msgid "You cannot create email addresses: your quota is over" +msgstr "No puedes crear más estadísticas, alcanzaste el limite de tu cuota." + +#: ../class/m_mail.php:346 +#, fuzzy +msgid "This email address already exists" +msgstr "¡El buzón %s no existe!" + +#: ../class/m_mail.php:352 +msgid "An unexpected error occured when creating the email" +msgstr "" + +#: ../class/m_mail.php:406 +msgid "This email is not yours, you can't change anything on it" +msgstr "" + +#: ../class/m_mail.php:469 ../class/m_mail.php:875 +#, fuzzy, php-format +msgid "The email %s does not exist, it can't be deleted" +msgstr "¡El buzón %s no existe!" + +#: ../class/m_mail.php:473 +#, php-format +msgid "The email %s is already marked for deletion, it can't be deleted" +msgstr "" + +#: ../class/m_mail.php:482 +#, fuzzy, php-format +msgid "The email %s has been marked for deletion" +msgstr "El dominio %s fue borrado." + +#: ../class/m_mail.php:488 +#, fuzzy, php-format +msgid "The email %s has been successfully deleted" +msgstr "El dominio %s fue borrado." + +#: ../class/m_mail.php:520 +#, php-format +msgid "The email %s does not exist, it can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:524 +#, php-format +msgid "The email %s is special, it can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:528 +#, php-format +msgid "" +"Sorry, deletion of email %s is already in progress, or not marked for " +"deletion, it can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:537 +#, fuzzy, php-format +msgid "The email %s has been undeleted" +msgstr "¡El buzón %s fue borrado!" + +#: ../class/m_mail.php:540 +#, php-format +msgid "-- Program Error -- The email %s can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:621 +msgid "" +"There is forbidden characters in your email address. You can't make it a POP/" +"IMAP account, you can only use it as redirection to other emails" +msgstr "" + +#: ../class/m_mail.php:641 +msgid "" +"You set a quota smaller than the current mailbox size. Since it's not " +"allowed, we set the quota to the current mailbox size" +msgstr "" + +#: ../class/m_mail.php:826 +#, fuzzy +msgid "The slave MX account was not found" +msgstr "Tipo de cuenta" + +#: ../class/m_mem.php:95 ../class/m_mem.php:101 ../class/m_mem.php:168 +#: ../class/m_mem.php:299 +msgid "User or password incorrect" +msgstr "" + +#: ../class/m_mem.php:105 ../class/m_mem.php:483 +#, fuzzy +msgid "This account is locked, contact the administrator" +msgstr "Esta cuenta es un cuenta de administrador" + +#: ../class/m_mem.php:112 ../class/m_mem.php:271 +msgid "" +"This website is currently under maintenance, login is currently disabled." +msgstr "" + +#: ../class/m_mem.php:127 +msgid "Your IP isn't allowed to connect" +msgstr "" + +#: ../class/m_mem.php:243 +#, fuzzy +msgid "Missing password" +msgstr "Contraseña inicial" + +#: ../class/m_mem.php:252 +msgid "Identity lost or unknown, please login" +msgstr "" + +#: ../class/m_mem.php:258 ../class/m_mem.php:347 +msgid "Session unknown, contact the administrator" +msgstr "" + +#: ../class/m_mem.php:264 ../class/m_mem.php:352 +msgid "IP address incorrect, please contact the administrator" +msgstr "" + +#: ../class/m_mem.php:341 +#, fuzzy +msgid "Cookie incorrect, please accept the session cookie" +msgstr "Debe aceptar el cookie de sesión para poder conectarte" + +#: ../class/m_mem.php:388 +#, fuzzy +msgid "You are not allowed to change your password." +msgstr "No estás autorizado a cambiar tu contraseña" + +#: ../class/m_mem.php:392 +msgid "The old password is incorrect" +msgstr "" + +#: ../class/m_mem.php:396 ../class/m_mem.php:445 +msgid "The new passwords are differents, please retry" +msgstr "" + +#: ../class/m_mem.php:420 +msgid "You must be a system administrator to do this." +msgstr "" + +#: ../class/m_mem.php:440 +#, fuzzy +msgid "This account is locked, contact the administrator." +msgstr "Esta cuenta es un cuenta de administrador" + +#: ../class/m_mem.php:448 +#, php-format +msgid "" +"Hello,\n" +"\n" +"You requested the modification of your password for your\n" +"account %s on %s\n" +"Here are your username and password to access the panel :\n" +"\n" +"--------------------------------------\n" +"\n" +"Username : %s\n" +"Password : %s\n" +"\n" +"--------------------------------------\n" +"\n" +"Note : if you didn't requested that modification, it means that\n" +"someone did it instead of you. You can choose to ignore this message.\n" +"If it happens again, please contact your server's Administrator. \n" +"\n" +"Cordially.\n" +msgstr "" + +#: ../class/m_mem.php:493 +#, php-format +msgid "" +"Hello,\n" +"\n" +"Someone (maybe you) requested an email's address modification of the " +"account\n" +"%s on %s\n" +"To confirm your request, go to this url :\n" +"\n" +"%s\n" +"\n" +"(Warning : if this address is displayed on 2 lines, don't forgot to\n" +"take it on one line).\n" +"The panel will ask you the key given when the email address\n" +"modification was requested.\n" +"\n" +"If you didn't asked for this modification, it means that someone\n" +"did it instead of you. You can choose to ignore this message. If it happens\n" +"again, please contact your server's administrator.\n" +"\n" +"Cordially.\n" +msgstr "" + +#: ../class/m_mem.php:534 +msgid "The information you entered is incorrect." +msgstr "" + +#: ../class/m_menu.php:113 +msgid "Home / Information" +msgstr "" + +#: ../class/m_menu.php:120 +msgid "Logout" +msgstr "Salir" + +#: ../class/m_menu.php:127 +msgid "Online help" +msgstr "Ayuda en línea" + +#: ../class/m_menu.php:135 +msgid "Languages" +msgstr "Idiomas" + +#: ../class/m_mysql.php:49 +msgid "" +"There are no databases in db_servers for this user. Please contact your " +"administrator." +msgstr "" + +# msgid "General SQL Admin" +# msgstr "Admin general SQL " +#: ../class/m_mysql.php:110 +#, fuzzy +msgid "MySQL" +msgstr "Usuarios MySQL" + +#: ../class/m_mysql.php:119 +msgid "Databases" +msgstr "Bases de datos" + +#: ../class/m_mysql.php:178 +msgid "Cannot connect to PhpMyAdmin" +msgstr "" + +#: ../class/m_mysql.php:219 ../class/m_mysql.php:385 +#, fuzzy, php-format +msgid "Database %s not found" +msgstr "Dominio %s borrado" + +#: ../class/m_mysql.php:246 +msgid "Your databases quota is over. You cannot create more databases" +msgstr "" + +#: ../class/m_mysql.php:257 +msgid "Database can't have empty suffix" +msgstr "" + +#: ../class/m_mysql.php:262 ../class/m_mysql.php:380 ../class/m_mysql.php:462 +msgid "Database name can contain only letters and numbers" +msgstr "" + +#: ../class/m_mysql.php:268 +msgid "Database name cannot exceed 64 characters" +msgstr "" + +#: ../class/m_mysql.php:273 +#, fuzzy, php-format +msgid "Database %s already exists" +msgstr "Editar archivo" + +#: ../class/m_mysql.php:291 +msgid "" +"There is a problem with the special PhpMyAdmin user. Contact the " +"administrator" +msgstr "" + +#: ../class/m_mysql.php:310 +#, fuzzy +msgid "An error occured. The database could not be created" +msgstr "no pudo ser borrado" + +#: ../class/m_mysql.php:328 +#, fuzzy +msgid "The database was not found. I can't delete it" +msgstr "Tu base de datos %s fue borrada" + +#: ../class/m_mysql.php:367 +#, fuzzy +msgid "User aren't allowed to configure their backups" +msgstr "No estás autorizado a cambiar tu contraseña" + +#: ../class/m_mysql.php:398 +msgid "You have to choose how many backups you want to keep" +msgstr "" + +#: ../class/m_mysql.php:402 +#, fuzzy +msgid "Directory does not exist" +msgstr "El usuario no existe" + +#: ../class/m_mysql.php:420 ../class/m_mysql.php:465 +#, fuzzy +msgid "Database not found" +msgstr "Dominio %s borrado" + +#: ../class/m_mysql.php:427 ../class/m_mysql.php:711 +#, fuzzy +msgid "The password is mandatory" +msgstr "Las contraseñas no corresponden" + +#: ../class/m_mysql.php:432 +msgid "MySQL password cannot exceed 16 characters" +msgstr "" + +#: ../class/m_mysql.php:472 +msgid "Databases rights are not correct" +msgstr "" + +#: ../class/m_mysql.php:477 +msgid "The username can contain only letters and numbers." +msgstr "" + +#: ../class/m_mysql.php:483 +#, fuzzy +msgid "Database user not found" +msgstr "Dominio %s borrado" + +#: ../class/m_mysql.php:495 +msgid "Could not grant rights" +msgstr "" + +#: ../class/m_mysql.php:513 +#, fuzzy +msgid "No file specified" +msgstr "¡Ninguna carpeta seleccionada!" + +#: ../class/m_mysql.php:520 ../class/m_mysql.php:524 +#, fuzzy +msgid "File not found" +msgstr "Dominio %s borrado" + +#: ../class/m_mysql.php:707 +msgid "The username is mandatory" +msgstr "" + +#: ../class/m_mysql.php:715 ../class/m_mysql.php:792 +msgid "The username can contain only letters and numbers" +msgstr "" + +#: ../class/m_mysql.php:722 +msgid "MySQL username cannot exceed 16 characters" +msgstr "" + +#: ../class/m_mysql.php:727 +#, fuzzy +msgid "The database user already exists" +msgstr "Editar archivo" + +#: ../class/m_mysql.php:731 ../class/m_mysql.php:765 +#, fuzzy +msgid "The passwords do not match" +msgstr "Las contraseñas no corresponden" + +#: ../class/m_mysql.php:802 +#, fuzzy +msgid "The username was not found" +msgstr "Tipo de cuenta" + +#: ../class/m_mysql.php:831 +#, fuzzy +msgid "This user does not exist in the MySQL/User database" +msgstr "¡El buzón %s no existe!" + +#: ../class/m_mysql.php:1105 +#, fuzzy +msgid "The directory could not be created" +msgstr "no pudo ser borrado" + +#: ../class/m_piwik.php:40 +#, fuzzy +msgid "Piwik statistics" +msgstr "Estadísticas Web" + +#: ../class/m_piwik.php:45 +#, fuzzy +msgid "Piwik Users" +msgstr "Usuarios" + +#: ../class/m_piwik.php:46 +msgid "Piwik Sites" +msgstr "" + +#: ../class/m_piwik.php:81 +msgid "Statistics through Piwik accounts" +msgstr "" + +#: ../class/m_piwik.php:193 ../class/m_piwik.php:316 +msgid "You are not allowed to delete the statistics of this website" +msgstr "" + +#: ../class/m_piwik.php:366 +msgid "Unable to reach the API" +msgstr "" + +#: ../class/m_piwik.php:372 +msgid "Error while decoding response from the API" +msgstr "" + +#: ../class/m_piwik.php:378 +msgid "Other format than JSON is not implemented yet" +msgstr "" + +#: ../class/m_quota.php:65 +msgid "Show my quotas" +msgstr "Mostrar cuotas" + +#: ../class/m_quota.php:78 +#, php-format +msgid "%s%% of %s" +msgstr "" + +#: ../class/m_quota.php:78 ../class/m_quota.php:105 ../class/m_quota.php:196 +msgid "quota_" +msgstr "quota_" + +#: ../class/m_quota.php:236 +#, fuzzy +msgid "Error writing the quota entry!" +msgstr "Modificar cuotas del miembro" + +#: ../class/m_quota.php:537 +msgid "B" +msgstr "" + +#: ../class/m_quota.php:537 +msgid "GB" +msgstr "" + +#: ../class/m_quota.php:537 +msgid "KB" +msgstr "" + +#: ../class/mime.php:135 +msgid "CSS Stylesheet" +msgstr "Hoja de estilo CSS" + +#: ../class/mime.php:136 +msgid "Comma Separated Values data" +msgstr "Datos separados por una coma" + +#: ../class/mime.php:137 +msgid "DIA Diagram" +msgstr "Diagrama DIA" + +#: ../class/mime.php:138 +msgid "Word Document" +msgstr "Documento Word" + +#: ../class/mime.php:139 +msgid "Word Document Template" +msgstr "Modelo de documento Word" + +#: ../class/mime.php:140 +msgid "Encapsulated Postscript" +msgstr "Postscript encapsulado" + +#: ../class/mime.php:141 +msgid "GIF Image" +msgstr "Imagen GIF" + +#: ../class/mime.php:142 +msgid "Macintosh Executable" +msgstr "Ejecutable Macintosh" + +#: ../class/mime.php:143 ../class/mime.php:144 +msgid "HTML Document" +msgstr "Documento HTML" + +#: ../class/mime.php:145 ../class/mime.php:146 +msgid "JPEG Image" +msgstr "Imagen JPEG" + +#: ../class/mime.php:147 +msgid "Music Playlist" +msgstr "Lista de pistas musicales" + +#: ../class/mime.php:148 +msgid "MP3 Music File" +msgstr "Archivo de música MP3" + +#: ../class/mime.php:149 +msgid "Ogg Music File" +msgstr "Archivo de música Ogg" + +#: ../class/mime.php:150 +msgid "Acrobat PDF" +msgstr "Documento PDF" + +#: ../class/mime.php:151 +msgid "PHP Source" +msgstr "Fuente PHP" + +#: ../class/mime.php:152 +msgid "PNG Image" +msgstr "Imagen PNG" + +#: ../class/mime.php:153 ../class/mime.php:154 +msgid "Powerpoint Slideshow" +msgstr "Presentación Powerpoint" + +#: ../class/mime.php:155 +msgid "Postscript Document" +msgstr "Documento Postscript" + +#: ../class/mime.php:156 +msgid "Photoshop Image" +msgstr "Imagen Photoshop" + +#: ../class/mime.php:157 +msgid "Rar Compressed Files" +msgstr "Archivos comprimidos RAR" + +#: ../class/mime.php:158 +msgid "Rich Text Document" +msgstr "Documento enriquezido RTF" + +#: ../class/mime.php:159 +msgid "OpenOffice Spreadsheet" +msgstr "Hoja de cálculo OpenOffice" + +#: ../class/mime.php:160 +msgid "OpenOffice Drawing" +msgstr "Dibujo OpenOffice" + +#: ../class/mime.php:161 +msgid "OpenOffice Presentation" +msgstr "Presentación OpenOffice" + +#: ../class/mime.php:162 +msgid "OpenOffice Writer" +msgstr "Texto OpenOffice" + +#: ../class/mime.php:163 ../class/mime.php:164 +msgid "TIFF Image" +msgstr "Imagen TIFF" + +#: ../class/mime.php:165 +msgid "Text Document" +msgstr "Documento Texto" + +#: ../class/mime.php:166 ../class/mime.php:167 +msgid "Virtual Card" +msgstr "Tarjeta de visita" + +#: ../class/mime.php:168 +msgid "Gimp Image" +msgstr "Imagen GIMP" + +#: ../class/mime.php:169 +msgid "Excel Spreadsheet" +msgstr "Hoja de Cálculo Excel" + +#: ../class/mime.php:170 +msgid "Zip Compressed Files" +msgstr "Archivos comprimidos ZIP" + +#: ../class/mime.php:171 +msgid "Flash Animation" +msgstr "Animación Flash" + +#: ../class/mime.php:172 ../class/mime.php:173 ../class/mime.php:174 +msgid "Real Media File" +msgstr "Archivo Real Media" + +#, fuzzy +#~ msgid "Click here to do so." +#~ msgstr "Presiona aquí para volver a conectarte" + +#, fuzzy +#~ msgid "Web Statistics" +#~ msgstr "Estadísticas web en bruto" + +#, fuzzy +#~ msgid "Menu currently activated" +#~ msgstr "Desactivar" + +#, fuzzy +#~ msgid "Menu available but not activated" +#~ msgstr "Desactivar" + +#~ msgid "help_domain_del %s" +#~ msgstr "" +#~ "Si quieres suprimir el dominio %s, presiona en el botón de aquí arriba. " +#~ "¡Cuidado, esto suprimirá también todas las cuentas FTP, buzones correo, " +#~ "listas de correos, etc de este dominio, así como todos los subdominios " +#~ "relacionados!" + +#, fuzzy +#~ msgid "Add %s mail to the domain %s" +#~ msgstr "Añadir una cuenta de correo para el dominio %s" + +#, fuzzy +#~ msgid "AlternC" +#~ msgstr "Lista de cuentas FTP" + +#, fuzzy +#~ msgid "Mailboxes size:" +#~ msgstr "Buzones de correo" + +#, fuzzy +#~ msgid "You want it to be deleted in" +#~ msgstr "no pudo ser borrado" + +#~ msgid "Missing uid" +#~ msgstr "Usuario faltante" + +#, fuzzy +#~ msgid "General PhpMyAdmin" +#~ msgstr "Admin SQL general" + +#~ msgid "Editing an FTP account" +#~ msgstr "Modificación de una cuenta FTP" + +#~ msgid "help_hta_list" +#~ msgstr "He aquí está la lista de carpetas protegidas de tu cuenta" + +#, fuzzy +#~ msgid "IP address" +#~ msgstr "Dirección IP" + +#~ msgid "You cannot add any new ftp account, your quota is over." +#~ msgstr "Tu cuota de cuentas FTP alcanzó su limite, no se pueden crear más." + +#~ msgid "The FTP account has been successfully created" +#~ msgstr "Se creó correctamente la cuenta FTP" + +#~ msgid "No account selected!" +#~ msgstr "¡Ninguna cuenta seleccionada!" + +#~ msgid "Change this FTP account" +#~ msgstr "Modificar cuenta FTP." + +#, fuzzy +#~ msgid "The database user was not found" +#~ msgstr "Tu base de datos %s fue borrada" + +#, fuzzy +#~ msgid "Edition of %s" +#~ msgstr "Añadir un buzón en %s" + +#, fuzzy +#~ msgid "You have to set a new password." +#~ msgstr "No estás autorizado a cambiar tu contraseña" + +#, fuzzy +#~ msgid "You have to input a password." +#~ msgstr "No estás autorizado a cambiar tu contraseña" + +#, fuzzy +#~ msgid "Create this alias" +#~ msgstr "Crear" + +#, fuzzy +#~ msgid "Set a passowrd:" +#~ msgstr "Nueva contraseña" + +#, fuzzy +#~ msgid "Change your password:" +#~ msgstr "Modificar contraseña" + +#, fuzzy +#~ msgid "Password does not match" +#~ msgstr "Las contraseñas no corresponden" + +#, fuzzy +#~ msgid "Password match" +#~ msgstr "Las contraseñas no corresponden" + +#, fuzzy +#~ msgid "Already disactivated" +#~ msgstr "Desactivar" + +#, fuzzy +#~ msgid "Clear all redirections" +#~ msgstr "Dirigir hacia una dirección IP" + +#, fuzzy +#~ msgid "This allow you to change your mail password." +#~ msgstr "No estás autorizado a cambiar tu contraseña" + +#, fuzzy +#~ msgid "Menu actually activated" +#~ msgstr "Desactivar" + +#, fuzzy +#~ msgid "Webmail Access" +#~ msgstr "Acceso Webmail" + +#, fuzzy +#~ msgid "Email Address" +#~ msgstr "Dirección de correo" + +#, fuzzy +#~ msgid "Active" +#~ msgstr "Acción" + +#~ msgid "Latest news" +#~ msgstr "Últimas noticias" + +#, fuzzy +#~ msgid "Langues" +#~ msgstr "Idiomas" + +#~ msgid "Raw web statistics" +#~ msgstr "Estadísticas web en bruto" + +#~ msgid "err_mysql_1" +#~ msgstr "Alcanzaste tu cuota de bases MySQL, ya no puedes crear una más." + +#~ msgid "Your database has been successfully created" +#~ msgstr "Tu base de datos fue creada" + +#~ msgid "Your current settings are" +#~ msgstr "Los parámetros actuales son" + +#, fuzzy +#~ msgid "MySQL Server" +#~ msgstr "Servidor SQL" + +#, fuzzy +#~ msgid "" +#~ "Enter the new password of your MySQL database and click 'change the " +#~ "password' to change it" +#~ msgstr "" +#~ "Entra la nueva contraseña para la base de datos SQL y presiona en " +#~ "'Cambiar contraseña'" + +#, fuzzy +#~ msgid "err_mysql_13" +#~ msgstr "Alcanzaste tu cuota de bases MySQL, ya no puedes crear una más." + +#~ msgid "You cannot add any new statistics, your quota is over." +#~ msgstr "No puedes crear más estadísticas, alcanzaste el limite de tu cuota." + +#~ msgid "New Raw Statistics (apache)" +#~ msgstr "Nuevo juego de estadísticas en bruto (apache)" + +#, fuzzy +#~ msgid "Domain name:" +#~ msgstr "Nombre de dominio" + +#~ msgid "Create those raw statistics" +#~ msgstr "Crear estas estadísticas en bruto" + +#~ msgid "" +#~ "The statistics %s has been successfully deleted (the stats files must be " +#~ "manually deleted)" +#~ msgstr "" +#~ "El juego de estadísticas %s fue borrado (los archivos de estadísticas " +#~ "deben ser borrados a mano)" + +#~ msgid "No Statistics selected!" +#~ msgstr "¡Ningún juego seleccionado!" + +#~ msgid "The Statistics has been successfully changed" +#~ msgstr "El juego de estadísticas fue modificado" + +#~ msgid "Change the Raw Statistics" +#~ msgstr "Modificar estadísticas en bruto" + +#~ msgid "Change those Raw Statistics." +#~ msgstr "Modificar estas estadísticas en bruto." + +#, fuzzy +#~ msgid "Raw Statistics List" +#~ msgstr "Lista de juegos de estadísticas" + +#~ msgid "Create new Raw Statistics (apache)" +#~ msgstr "Crear un nuevo juego de estadísticas en bruto (apache)" + +#~ msgid "Delete the checked Raw Statistics (apache)" +#~ msgstr "Suprimir los juegos de estadísticas en bruto (apache) seleccionados" + +#, fuzzy +#~ msgid "The email %s is special, it can't be deleted" +#~ msgstr "¡El buzón %s fue borrado!" + +#, fuzzy +#~ msgid "Local mailbox" +#~ msgstr "Nueva dirección" + +#~ msgid "Add a mail to the domain %s" +#~ msgstr "Añadir una cuenta de correo para el dominio %s" + +#, fuzzy +#~ msgid "Redirections
Other recipients:" +#~ msgstr "Otros destinatarios" + +#, fuzzy +#~ msgid "Is it a temporary mail account?" +#~ msgstr "Modificar cuenta FTP." + +#~ msgid "help_mail_add" +#~ msgstr "" +#~ "- Para crear este buzón de correo
Si quieres almacenar los mensajes " +#~ "recibidos y acceder al buzón con un programa de corre o por webmail, " +#~ "marca 'Cuenta POP'. En este caso, tienes que ingresar una contraseña para " +#~ "la cuenta POP.
Si quieres redirigir esta dirección hacia otras, " +#~ "ingresa la lista de las direcciones correspondientes, una dirección por " +#~ "línea (con el @ en todo caso).
Nota: tienes que escoger una de las " +#~ "dos cosas, o ambas
Para acceder a la lectura del correo, se debe usar " +#~ "la dirección http://sudominio/webmail/ o un subdominio de tipo 'Acceso a " +#~ "Webmail'
El nombre de cada usuario es login_sudominio o " +#~ "su login@sudominio y sa contraseña es la que acabas de " +#~ "ingesar en este formulario." + +#, fuzzy +#~ msgid "The email address %s has been successfully created" +#~ msgstr "El buzón %s fue creado con éxito" + +#, fuzzy +#~ msgid "The email address %s has been successfully changed" +#~ msgstr "Se modificó correctamente el buzón %s" + +#, fuzzy +#~ msgid "Edit an email address of the domain %s" +#~ msgstr "Modificar un buzón del dominio %s" + +#, fuzzy +#~ msgid "Edit the email address %s" +#~ msgstr "Modificar el buzón %s" + +#~ msgid "help_mail_edit" +#~ msgstr "" +#~ "- Para modificar este buzón de correo
Si quieres almacenar los " +#~ "mensajes recibidos y acceder al buzón con un programa de corre o por " +#~ "webmail, marca 'Cuenta POP'. En este caso, tienes que ingresar una " +#~ "contraseña para la cuenta POP.
Si quieres redirigir esta dirección " +#~ "hacia otras, ingresa la lista de las direcciones correspondientes, una " +#~ "dirección por línea (con el @ en todo caso).
Nota: tienes que escoger " +#~ "una de las dos cosas, o ambas
Para acceder a la lectura del correo, " +#~ "se debe usar la dirección http://sudominio/webmail/ o un subdominio de " +#~ "tipo 'Acceso a Webmail'
El nombre de cada usuario es " +#~ "login_sudominio o su login@sudominio y sa " +#~ "contraseña es la que acabas de ingesar en este formulario." + +#~ msgid "Add a mailbox on %s" +#~ msgstr "Añadir un buzón en %s" + +#~ msgid "Add many mailboxes on %s" +#~ msgstr "Añadir varios buzones en %s" + +#~ msgid "All" +#~ msgstr "Todo" + +#, fuzzy +#~ msgid "This account will be deleted on" +#~ msgstr "no pudo ser borrado" + +#~ msgid "help_sql_list_ok" +#~ msgstr "" +#~ "Tienes una o más bases de datos.
Presiona en 'Admin SQL' en el menú " +#~ "para administrarlas
o utiliza el menú aquí abajo para administrar las " +#~ "copias de respaldo,
las restauraciones o para borrar las bases:" + +#, fuzzy +#~ msgid "Change the MySQL password" +#~ msgstr "Cambiar contraseña SQL" + +#, fuzzy +#~ msgid "Get the current MySQL parameters" +#~ msgstr "Mostrar los parámetros SQL actuales" + +#~ msgid "help_sql_list_no" +#~ msgstr "" +#~ "Tu base de datos principal no existe, ingresa aquí una contraseña para " +#~ "crearla" + +#~ msgid "Create my main database" +#~ msgstr "Crear mi base de datos principal" + +#~ msgid "help_sql_users_list_ok" +#~ msgstr "Utiliza el cuadro aquí abajo para manejar tus usuarios MySQL:" + +#~ msgid "help_sql_users_rights_ok" +#~ msgstr "" +#~ "Selecciona en cada base los derechos que quieres atribuirle al usuario:" + +#~ msgid "New member" +#~ msgstr "Añadir nuevo miembro" + +#~ msgid "Create the domain username.%s" +#~ msgstr "Instalar el dominio login.%s" + +#~ msgid "Create a new member" +#~ msgstr "Crear un nuevo miembro" + +#~ msgid "Member" +#~ msgstr "Miembro" + +#~ msgid "Account Enabled ?" +#~ msgstr "¿Cuenta activa?" + +#~ msgid "Reset quotas to default ?" +#~ msgstr "¿Reincializar las cuotas al valor por omisión?" + +#~ msgid "Back to the account list" +#~ msgstr "Regresar a la lista de cuentas" + +#~ msgid "Member list" +#~ msgstr "Lista de miembros" + +#~ msgid "List all the accounts" +#~ msgstr "Listar todas las cuentas" + +#~ msgid "Last fail" +#~ msgstr "Último fracaso de conexión" + +#~ msgid "Locked Account" +#~ msgstr "Cuenta bloqueada" + +#~ msgid "AlternC Desktop" +#~ msgstr "Escritorio AlternC" + +#~ msgid "Show all quotas" +#~ msgstr "Mostrar todas las cuotas" + +#~ msgid "mode" +#~ msgstr "modo" + +#~ msgid "all/none" +#~ msgstr "todos/ninguno" + +#~ msgid "Import this file" +#~ msgstr "Importar este archivo" + +#~ msgid "There is an ftp account in this folder" +#~ msgstr "Existe una cuenta FTP en esta carpeta" + +#~ msgid "Click here to edit this ftp account." +#~ msgstr "Presiona aquí para modificar esta cuenta FTP." + +#~ msgid "This folder has restricted access" +#~ msgstr "La carpeta está protegida" + +#~ msgid "Click here to protect this folder with login/password" +#~ msgstr "Presiona aquí para proteger esta carpeta con un login / contaseña" + +#~ msgid "this folder and its subfolders as a compressed file" +#~ msgstr "esta carpeta y sus sub-carpetas como archivo comprimido" + +#~ msgid "Configure the file browser" +#~ msgstr "Configurar el manejador de archivos" + +#~ msgid "File editor preferences" +#~ msgstr "Preferencias del editor de archivos" + +#~ msgid "" +#~ "The domain %s has been changed. The modifications will take effect in 5 " +#~ "minutes." +#~ msgstr "" +#~ "Tu dominio %s fue modificado. Las modificaciones serán efectivas dentro " +#~ "de 5 minutos." + +#~ msgid "Subdomains" +#~ msgstr "Subdominios" + +#~ msgid "DNS parameters" +#~ msgstr "Parámetros DNS" + +#~ msgid "help_dns_mx %s %s" +#~ msgstr "" +#~ "Si este servidor maneja el DNS de este dominio:
Si quieres, puedes " +#~ "manejar sus buzones de correo en otro lado (campo MX).
Ingresa " +#~ "%s en este campo si tus buzones deben ser manejados " +#~ "por %s
o ingresa la dirección IP o el nombre del servidor de mail " +#~ "utilizado para tus buzones Cuidado: si no pones nada en este " +#~ "campo, tus direcciones de correo estarán indisponibles." + +#~ msgid "MX Field" +#~ msgstr "Campo MX" + +#~ msgid "help_dns_mail" +#~ msgstr "" +#~ "Si este servidor no maneja el DNS de este dominio
¿maneja sus " +#~ "buzones de correo?" + +#~ msgid "The modifications will take effect in 5 minutes." +#~ msgstr "Las modificaciones serán efectivas dentro de 5 minutos." + +#~ msgid "The folder must exists." +#~ msgstr "La carpeta debe existir." + +#~ msgid "Add a username" +#~ msgstr "Añadir un usuario" + +#~ msgid "Administration of" +#~ msgstr "Administración de" + +#~ msgid "Enter your username and password to connect to the virtual desktop" +#~ msgstr "" +#~ "Ingresa tu nombre de usuario y tu contraseña para conectarte a la " +#~ "interfaz de administración" + +#~ msgid "Restrict this session to my ip address" +#~ msgstr "Restringir esta sesión a mi dirección IP" + +#~ msgid "You can use a different language: " +#~ msgstr "Puedes utilizar un idioma diferente:" + +#~ msgid "AlternC, Opensource hosting control panel" +#~ msgstr "" +#~ "AlternC, software libre para un panel de control de hospedaje compartido" + +#~ msgid "Is it a POP account?" +#~ msgstr "¿Cuenta POP?" + +#~ msgid "POP password" +#~ msgstr "Contraseña POP" + +#~ msgid "One email per line" +#~ msgstr "una cuenta de correo por línea" + +#~ msgid "Create this mailbox" +#~ msgstr "Añadir este buzón" + +#~ msgid "Delete the selected mailboxes" +#~ msgstr "Borrar los buzones de correo marcados" + +#~ msgid "Don't delete accounts and go back to the mail list" +#~ msgstr "No borrar nada, volver a la lista de buzones de correo" + +#~ msgid "The mailbox %s has been successfully created" +#~ msgstr "El buzón %s fue creado con éxito" + +#~ msgid "Back to the mail account list" +#~ msgstr "Regresar a la lista de buziones de correo" + +#~ msgid "The mailbox %s has been successfully changed" +#~ msgstr "Se modificó correctamente el buzón %s" + +#~ msgid "Edit a mailbox of the domain %s" +#~ msgstr "Modificar un buzón del dominio %s" + +#~ msgid "Change this mailbox" +#~ msgstr "Modificar este buzón" + +#~ msgid "Mailbox list of the domain %s" +#~ msgstr "Lista de las buzones de correo del dominio %s" + +#~ msgid "General SQL Admin" +#~ msgstr "Admin SQL general" + +#~ msgid "Front page" +#~ msgstr "Portada" + +# ################################################################# +#~ msgid "Create a new database" +#~ msgstr "Crear una nueva base de datos" + +#~ msgid "Create this new database." +#~ msgstr "Crear esta nueva base de datos" + +#~ msgid "Do sql backup?" +#~ msgstr "¿Respaldar la base SQL?" + +#~ msgid "How many backup should be kept?" +#~ msgstr "¿Cuantas copias de respaldo hay que conservar?" + +#~ msgid "Change the SQL backup parameters" +#~ msgstr "Cambiar los parámetros de resplados SQL" + +#~ msgid "Change the SQL password" +#~ msgstr "Cambiar contraseña SQL" + +#~ msgid "Get the current SQL parameters" +#~ msgstr "Mostrar los parámetros SQL actuales" + +#~ msgid "" +#~ "Enter the new password of your SQL database and click 'change the " +#~ "password' to change it" +#~ msgstr "" +#~ "Entra la nueva contraseña para la base de datos SQL y presiona en " +#~ "'Cambiar contraseña'" + +#~ msgid "Restore a SQL backup for database %s" +#~ msgstr "Restaurar una copia de respaldo de la base de datos SQL %s" + +#~ msgid "Please enter the filename containing SQL data to be restored." +#~ msgstr "" +#~ "Entra el nombre del archivo que contiene los datos SQL por restaurar en " +#~ "la base." + +#~ msgid "err_mysql_20" +#~ msgstr "Alcanzaste tu cuota de usuarios MySQL, ya no puedes crear uno más." + +#~ msgid "Create this new user" +#~ msgstr "Crear este nuevo uruario" + +#~ msgid "Statistics List" +#~ msgstr "Lista de juegos de estadísticas" + +#~ msgid "_" +#~ msgstr "_" + +#~ msgid "Update this page" +#~ msgstr "Volver a cargar esta página" + +#~ msgid "WARNING : Confirm the deletion of this files" +#~ msgstr "ADVERTENCIA : Confirma la supresión de estos archivos" + +#~ msgid "Please choose the filename containing SQL data to be restored." +#~ msgstr "" +#~ "Elige el archivo que contiene los datos SQL por restaurar en la base." + +#~ msgid "OR" +#~ msgstr "O" + +#~ msgid "" +#~ "Image_Graph not installed. pear install Image_Graph-devel to see the " +#~ "graph." +#~ msgstr "" +#~ "Image_Graph no está instalado. pear install Image_Graph-devel es " +#~ "necesario para vr este gráfico." + +#~ msgid "Old Name:" +#~ msgstr "Antiguo nombre:" + +#~ msgid "New Name:" +#~ msgstr "Nuevo nombre:" + +#~ msgid "Move to" +#~ msgstr "Mover a" + +#~ msgid "" +#~ "The subdomain has been deleted. Changes will take place in 5 minutes." +#~ msgstr "" +#~ "El sub-dominio fue borrado, las modificaciones serán efectivas dentro de " +#~ "5 minutos." + +#~ msgid "" +#~ "Image_Graph not installed. use 'aptitude install php-pear' then 'pear --" +#~ "alldeps install Image_Graph-devel' to see the graph." +#~ msgstr "" +#~ "Image_Graph no está instalado. Ejecuta 'aptitude install php-pear' en un " +#~ "terminal del servidor, y luego 'pear --alldeps install Image_Graph-devel' " +#~ "para poder ver el gráfico." + +#~ msgid "Copy to" +#~ msgstr "Copiar a" + +#~ msgid "AlternC configuration" +#~ msgstr "Configuración del AlternC" + +#~ msgid "Files and directories" +#~ msgstr "Archivos y carpetas" + +#~ msgid "Other" +#~ msgstr "Otro" + +#~ msgid "Messages" +#~ msgstr "Mensajes " + +#, fuzzy +#~ msgid "Sub-domain" +#~ msgstr "Subdominios" + +#, fuzzy +#~ msgid "Validate this change" +#~ msgstr "Volver a cargar esta página" + +#, fuzzy +#~ msgid "Actions" +#~ msgstr "Acción" + +#, fuzzy +#~ msgid "Manage this temporary account" +#~ msgstr "Modificar cuenta FTP." + +#, fuzzy +#~ msgid "Manage the Emails of this domain on the server ?" +#~ msgstr "¿Administrar el DNS de este dominio?" + +#~ msgid "Edition du sous-domaine" +#~ msgstr "Edición del sub-dominio" + +#~ msgid "Sous-domaine" +#~ msgstr "Sub-dominio" diff --git a/ssl/panel/locales/fr_CA b/ssl/panel/locales/fr_CA new file mode 120000 index 00000000..a9e3d124 --- /dev/null +++ b/ssl/panel/locales/fr_CA @@ -0,0 +1 @@ +/fr_FR \ No newline at end of file diff --git a/ssl/panel/locales/fr_FR/LC_MESSAGES/alternc.mo b/ssl/panel/locales/fr_FR/LC_MESSAGES/alternc.mo new file mode 100644 index 0000000000000000000000000000000000000000..8f5f1705c3fa5801e564acf21ed6660539f7e843 GIT binary patch literal 141346 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 Qf0D0vb$k8ryDNzCe+jGm(EtDd literal 0 HcmV?d00001 diff --git a/ssl/panel/locales/fr_FR/LC_MESSAGES/manual.po b/ssl/panel/locales/fr_FR/LC_MESSAGES/manual.po new file mode 100644 index 00000000..e5f4b1be --- /dev/null +++ b/ssl/panel/locales/fr_FR/LC_MESSAGES/manual.po @@ -0,0 +1,866 @@ +# French AlternC Translation +# Copyright (c) 2002 the AlternC Development Team +# +# $Id: admin_manual.po,v 1.3 2006/02/09 20:12:23 benjamin Exp $ +#. Template for AlternC Translation +#. Copyright (c) 2002 the AlternC Development Team +#. +#. $Id: admin.po,v 1.4 2006/02/09 20:12:23 benjamin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: $Id: admin_manual.po,v 1.3 2006/02/09 20:12:23 benjamin " +"Exp $\n" +"Report-Msgid-Bugs-To: i18n@alternc.org\n" +"POT-Creation-Date: 2004-05-24 19:34+0200\n" +"PO-Revision-Date: 2002-06-16 13:50CEST\n" +"Last-Translator: Benjamin Sonntag \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Emacs 21\n" + +#. -- Only administrators can access this page !! -- +msgid "err_admin_1" +msgstr "-- Seuls les administrateurs ont accès à ces pages !! --" + +#. Account not found +msgid "err_admin_2" +msgstr "Membre introuvable" + +#. This login already exists +msgid "err_admin_3" +msgstr "Le login existe déjà !" + +#. -- I cannot create this account -- +msgid "err_admin_4" +msgstr "--Impossible de créer le compte--" + +#. Please enter a valid email address +msgid "err_admin_5" +msgstr "Veuillez entrer un email valide" + +#. All fields are mandatory +msgid "err_admin_6" +msgstr "Les champs login, pass et email sont obligatoires" + +#. You can ask for your password only once a day ! +msgid "err_admin_7" +msgstr "" +"Vous ne pouvez demander votre mot de passe qu'une seule fois par jour !" + +#. This account is ALREADY an administrator account +msgid "err_admin_8" +msgstr "L'utilisateur spécifié est DÉJÀ Administrateur !" + +#. This account is NOT an administrator account ! +msgid "err_admin_9" +msgstr "L'utilisateur spécifié n'est PAS Administrateur !" + +#. Login can only contains characters a-z, 0-9 and - +msgid "err_admin_10" +msgstr "Les seuls caractères autorisés pour le login sont a-z 0-9 et -" + +#. This TLD does not exist +msgid "err_admin_11" +msgstr "Ce TLD n'existe pas" + +#. This TLD already exists +msgid "err_admin_12" +msgstr "Ce TLD existe déjà" + +#. The login is too long (16 chars max) +msgid "err_admin_13" +msgstr "Le login est trop long (16 caractères maximum)" + +#. Domain names +msgid "quota_dom" +msgstr "Noms de domaines" + +#. Domain '%s' not found. +msgid "err_dom_1" +msgstr "Le domaine '%s' n'existe pas." + +#. The domaine '%s' does not belong to you. +msgid "err_dom_2" +msgstr "Le domaine '%s' ne vous appartient pas." + +#. --- Programm error --- No lock on the domains ! +msgid "err_dom_3" +msgstr "--- Erreur de programmation --- Aucun Lock sur les domaines !" + +#. The domain name is too long. +msgid "err_dom_4" +msgstr "Le nom de domaine est trop long." + +#. One of the domain name member is too long. +msgid "err_dom_5" +msgstr "L'un des membres du nom de domaine est trop long." + +#. There is some forbidden characters in the domain name (only A-Z 0-9 and - are allowed). +msgid "err_dom_6" +msgstr "" +"Il y a des caractères interdits dans le nom de domaine (seuls A-Z 0-9 et - " +"sont autorisés)." + +#. The last member of the domain name is incorrect or cannot be hosted in that server. +msgid "err_dom_7" +msgstr "" +"Le dernier membre du domaine est incorrect ou non hébergeable sur ce serveur." + +#. The domain already exists. +msgid "err_dom_8" +msgstr "Le domaine existe deja." + +#. The domain has been deleted less than 5 minutes ago, please try again later. +msgid "err_dom_9" +msgstr "" +"Le domaine a été effacé il y a moins de 5 minutes, réessayez ultérieurement." + +#. Your domain quota is over, you cannot create more domain names. +msgid "err_dom_10" +msgstr "" +"Vous avez atteint votre quota de domaines, vous ne pouvez plus en créer." + +#. The Whois database is unavailable, please try again later. +msgid "err_dom_11" +msgstr "Impossible de se connecter à la base Whois" + +#. The domain cannot be found in the whois database. +msgid "err_dom_12" +msgstr "Domaine introuvable dans la base Whois" + +#. The domain has been changed less than 5 minutes ago. Please try again in a few minutes. +msgid "err_dom_13" +msgstr "" +"Le domaine a été modifié il y a moins de 5 minutes, réessayez ultérieurement." + +#. The sub-domain does not exist. +msgid "err_dom_14" +msgstr "Le sous-domaine n'existe pas." + +#. No change has been requested... +msgid "err_dom_15" +msgstr "Aucune modification n'a été demandée ... " + +#. The sub-domain already exists. +msgid "err_dom_16" +msgstr "Le sous-domaine existe déjà." + +#. --- Programm error --- Lock already obtained ! +msgid "err_dom_17" +msgstr "--- Erreur de programmation --- Lock sur les domaines déjà obtenu !" + +#. This domain is the server's domain !!! You cannot host it on your account ! +msgid "err_dom_18" +msgstr "" +"Ce domaine est celui du serveur !!! Vous ne pouvez pas l'installer sur votre " +"compte." + +#. The IP address you entered is incorrect. +msgid "err_dom_19" +msgstr "L'adresse IP entrée est incorrecte." + +#. The URL you entered is incorrect. +msgid "err_dom_20" +msgstr "L'url entrée est incorrecte." + +#. The folder you entered is incorrect or does not exist. +msgid "err_dom_21" +msgstr "Le répertoire entré est incorrect ou n'existe pas." + +#. The requested domain is forbidden in this server, please contact the administrator +msgid "err_dom_22" +msgstr "" +"Le domaine demandé est interdit sur ce serveur, contactez l'administrateur" + +#. The DNS of this domain do not match the server's DNS. Please change your +#. domain's DNS (and eventually wait 1 day) before you install it again. +msgid "err_dom_23" +msgstr "" +"Les DNS de ce domaine ne correspondent pas à ceux du serveur.
Vous " +"devez modifier les DNS du domaine (et, dans certains cas, attendre 24H)
avant de pouvoir l'installer" + +#. There is some forbidden characters in the sub domain (only A-Z 0-9 and - are allowed). +msgid "err_dom_24" +msgstr "" +"Il y a des caractères interdits dans le sous domaine (seuls A-Z 0-9 et - " +"sont autorisés)." + +#. There is no MX record pointing to this server, and you are asking us to host the Mail here +msgid "err_dom_25" +msgstr "" +"Il n'y a pas de MX pointant vers ce serveur, alors que vous nous demandez " +"d'héberger le mail ici." + +#. - Entrez le nom du domaine que vous souhaitez héberger. Le nom de domaine +#. doit être complet, mais sans le www.
IMPORTANT : Si vous voulez +#. un hébergement réel de domaine, il faut que les DNS de votre domaine +#. pointent vers nos serveurs DNS. Contacter votre hébergeur pour plus +#. d'information.
Exemples : globenet.org / demo.com / test.eu.org etc. +#.
Plus d'info sur la gestion des domaines dans l'aide en ligne +#. HELPID_200
+msgid "hlp_add_domain" +msgstr "" +"- Entrez le nom du domaine que vous souhaitez héberger. Le nom de domaine " +"doit être complet, mais sans le www.
IMPORTANT : Si vous voulez " +"un hébergement réel de domaine, il faut que les DNS de votre domaine " +"pointent vers nos serveurs DNS. Contacter votre hébergeur pour plus " +"d'information.
Plus d'info sur la gestion des domaines dans l'aide en " +"ligne HELPID_200
" + +#. Cliquez sur le lien ci-dessus. Vous pourrez ensuite accéder aux paremètres +#. du domaine dans le menu à gauche.2 liens vont apparaitre :
- un +#. premier pour modifier les paramètres d'hébergement du domaine (sous- +#. domaines, redirections, hébergement mails ...)
- un second pour gérer +#. les comptes emails du domaine (si vous souhaitez créer des boites aux +#. lettres).
Plus d'info sur la gestion des domaines dans l'aide en ligne +#. HELPID_200
+msgid "hlp_add_domain_2" +msgstr "" +"Cliquez sur le lien ci-dessus. Vous pourrez ensuite accéder aux paramètres " +"du domaine dans le menu à gauche. 2 liens vont apparaitre :
- un " +"premier pour modifier les paramètres d'hébergement du domaine (sous-" +"domaines, redirections, hébergement mails ...)
- un second pour gérer " +"les comptes emails du domaine (si vous souhaitez créer des boites aux " +"lettres).
Plus d'info sur la gestion des domaines dans l'aide en ligne " +"HELPID_200
" + +#. Le domaine a été effacé, mais les fichiers de votre site n'ont pas été +#. détruits.
Si vous souhaitez détruire les fichiers du site web, utilisez +#. le Gestionnaire de Fichier
Plus d'info sur la gestion des domaines dans +#. l'aide en ligne HELPID_200
+msgid "hlp_del_domain" +msgstr "" +"Le domaine a été effacé, mais les fichiers de votre site n'ont pas été " +"détruits.
Si vous souhaitez détruire les fichiers du site web, utilisez " +"le Gestionnaire de Fichiers ou un compte FTP
Plus d'info sur la gestion " +"des domaines dans l'aide en ligne HELPID_200
" + +#. Cette zone vous permet de modifier les paramètres de votre domaine, ainsi +#. que des sous-domaines installés
Vous pouvez créer un nouveau sous- +#. domaine et choisir, soit de le rediriger vers votre espace disque, vers une +#. autre adresse Internet, ou vers une adresse IP (utilisateurs avancés)
+#. Plus d'info sur la gestion des domaines dans l'aide en ligne HELPID_200
+msgid "hlp_edit_domain" +msgstr "" +"Cette zone vous permet de modifier les paramètres de votre domaine, ainsi " +"que des sous-domaines installés
Vous pouvez créer un nouveau sous-" +"domaine et choisir, soit de le rediriger vers votre espace disque, vers une " +"autre adresse Internet, ou vers une adresse IP (utilisateurs avancés)
Vous pouvez aussi diriger un sous-domaine vers le webmail, vous permettant " +"de lire votre mail par le web.
Plus d'info sur la gestion des domaines " +"dans l'aide en ligne HELPID_200
" + +#. FTP Accounts +msgid "quota_ftp" +msgstr "Comptes FTP" + +#. No ftp account found +msgid "err_ftp_1" +msgstr "Aucun compte ftp de trouvé." + +#. This ftp account does not exist +msgid "err_ftp_2" +msgstr "Ce compte ftp n'existe pas." + +#. The chosen prefix is not allowed +msgid "err_ftp_3" +msgstr "Le préfixe choisi n'est pas autorisé" + +#. This ftp account already exists +msgid "err_ftp_4" +msgstr "Ce compte ftp existe déjà !" + +#. Your ftp account quota is over. You cannot create more ftp accounts. +msgid "err_ftp_5" +msgstr "" +"Vous avez atteint votre quota de comptes ftp, vous ne pouvez plus en créer." + +#. The directory cannot be created. +msgid "err_ftp_6" +msgstr "Impossible de créer le répertoire." + +#. Voici la liste des comptes ftp ayant accès à votre compte. Cliquez sur +#. 'Modifier' pour changer le nom d'utilisateur, le mot de passe, ou le dossier +#. racine.
Pour supprimer un compte, cochez la case correspondante et +#. cliquez sur le bouton 'Supprimer les comptes cochés'
Pour pouvoir +#. accéder à vos fichiers avec un logiciel de ftp, vous devez créer au moins un +#. compte. Chaque compte est associé à un dossier, et n'aura donc accès qu'aux +#. fichiers situés dans ce dossier ou en dessous.
Plus d'info sur le FTP +#. dans l'aide en ligne HELPID_100
+msgid "hlp_ftp_list" +msgstr "" +"Voici la liste des comptes ftp ayant accès à votre compte. Cliquez sur " +"'Modifier' pour changer le nom d'utilisateur, le mot de passe, ou le " +"répertoire racine.
Pour supprimer un compte, cochez la case " +"correspondante et cliquez sur le bouton 'Supprimer les comptes cochés'
Pour pouvoir accéder à vos fichiers avec un logiciel de ftp, vous devez " +"créer au moins un compte. Chaque compte est associé à un répertoire, et " +"n'aura donc accès qu'aux fichiers situés dans ce répertoire ou en dessous. " +"
Plus d'info sur le FTP dans l'aide en ligne HELPID_100
" + +#. Vous n'avez actuellement aucun Compte FTP de disponible. Cliquez sur +#. 'Création d'un compte ftp' pour en créer un.
Pour pouvoir accéder à vos +#. fichiers avec un logiciel de ftp, vous devez créer au moins un compte. +#. Chaque compte est associé à un dossier, et n'aura donc accès qu'aux fichiers +#. situés dans ce dossier ou en dessous.
Plus d'info sur le FTP dans +#. l'aide en ligne HELPID_100
+msgid "hlp_ftp_list_no" +msgstr "" +"Vous n'avez actuellement aucun Compte FTP de disponible. Cliquez sur " +"'Création d'un compte FTP' pour en créer un.
Pour pouvoir accéder à vos " +"fichiers avec un logiciel de FTP, vous devez créer au moins un compte. " +"Chaque compte est associé à un répertoire, et n'aura donc accès qu'aux " +"fichiers situés dans ce répertoire ou en dessous.
Plus d'info sur le " +"FTP dans l'aide en ligne HELPID_100
" + +#. Pour ajouter un compte ftp, vous devez choisir un Nom d'utilisateur, un mot +#. de passe, et un répertoire racine
Le nom d'utilisateur commence +#. toujours par votre nom de login ou le nom d'un de vos domaines.
Le +#. répertoire racine, s'il n'existe pas, sera créé automatiquement.
Note : +#. Le compte que vous créez ainsi aura accès en lecture et en écriture aux +#. fichiers situés dans le répertoire et tous ses sous-répertoires.
Plus +#. d'info sur le FTP dans l'aide en ligne HELPID_100
+msgid "hlp_ftp_add" +msgstr "" +"Pour ajouter un compte ftp, vous devez choisir un Nom d'utilisateur, un mot " +"de passe, et un répertoire racine
Le nom d'utilisateur commence " +"toujours par votre nom de login ou le nom d'un de vos domaines.
Le " +"répertoire racine, s'il n'existe pas, sera créé automatiquement.
Note : " +"Le compte que vous créez ainsi aura accès en lecture et en écriture aux " +"fichiers situés dans le répertoire et tous ses sous-répertoires.
Plus " +"d'info sur le FTP dans l'aide en ligne HELPID_100
" + +#. An incompatible .htaccess file exists in this folder. +msgid "err_hta_1" +msgstr "Un fichier .htaccess incompatible est présent dans le répertoire." + +#. .htaccess parsed and syntaxically correct, a .htpassword file has been created. +msgid "err_hta_2" +msgstr ".htaccess reconnu et syntaxe correcte, un .htpassword à été créé." + +#. .htaccess parsed and syntaxically correct, a .htpasswd already exist. +msgid "err_hta_3" +msgstr ".htaccess reconnu et syntaxe correcte, .htpasswd existant." + +#. No protected folder +msgid "err_hta_4" +msgstr "Aucun répertoire protégé" + +#. I cannot delete the file '%s'/.htaccess +msgid "err_hta_5" +msgstr "Impossible de supprimer le fichier '%s'/.htaccess" + +#. I cannot delete the file '%s'/.htpasswd +msgid "err_hta_6" +msgstr "Impossible de supprimer le fichier '%s'/.htpasswd" + +#. The file .htaccess does not exist +msgid "err_hta_7" +msgstr "Le fichier .htaccess n'existe pas" + +#. The folder '%s' does not exist +msgid "err_hta_8" +msgstr "Le répertoire '%s' n'existe pas" + +#. The file '%s' is not correct +msgid "err_hta_9" +msgstr "Le fichier '%s' n'est pas valide" + +#. The user '%s' already exist for this folder +msgid "err_hta_10" +msgstr "L'utilisateur '%s' existe déja pour ce répertoire" + +#. Please enter a valid username +msgid "err_hta_11" +msgstr "Veuillez saisir un nom d'utilisateur valide" + +#. Email Accounts +msgid "quota_mail" +msgstr "Comptes emails" + +#. DB connection impossible, please try again later. +msgid "err_mail_1" +msgstr "Connexion à la base de données impossible. Réessayez plus tard." + +#. No email on domain '%s' +msgid "err_mail_2" +msgstr "Aucun email sur le domaine '%s'" + +#. The email '%s' does not exist +msgid "err_mail_3" +msgstr "L'email '%s' n'existe pas." + +#. Please check 'pop account' and choose a password pop, or enter some +#. redirections, or both +msgid "err_mail_4" +msgstr "" +"Veuillez cocher 'compte pop' et choisir un mot de passe pop ou entrer " +"des redirections ou les deux" + +#. -- Server error --- Parameter is incorrect (%s) +msgid "err_mail_5" +msgstr "-- Erreur Serveur --- Paramètre incorrect (%s)" + +#. The domain '%s' does not exist. +msgid "err_mail_6" +msgstr "Le domaine '%s' n'existe pas." + +#. The email '%s' already exists. +msgid "err_mail_7" +msgstr "Le mail '%s' existe déjà" + +#. Your mail account quota is over. You cannot create more email accounts. +msgid "err_mail_8" +msgstr "" +"Vous avez atteint votre quota de comptes email, vous ne pouvez plus en créer." + +#. The domain '%s' does not exist. +msgid "err_mail_9" +msgstr "Le domaine '%s' existe déjà." + +#. -- Programm error -- Mail quota does not exist +msgid "err_mail_10" +msgstr "-- Erreur de programmation -- Le quota Mail n'existe pas" + +#. Please enter an Email address +msgid "err_mail_11" +msgstr "Veuillez entrez un Email" + +#. Please enter a pop password +msgid "err_mail_12" +msgstr "Veuillez entrer un mot de passe pop" + +#. Please enter a valid email +msgid "err_mail_13" +msgstr "Veuillez entrer un Email valide" + +#. One or more email redirection are invalid +msgid "err_mail_14" +msgstr "Un ou plusieurs Email de redirection ne sont pas valides" + +#. This mail is not a pop account. It's impossible to change the password ! +msgid "err_mail_15" +msgstr "" +"Ce mail n'est pas un compte pop, il est impossible d'en changer le mot de " +"passe !" + +#. OK +msgid "err_err_0" +msgstr "OK" + +#. The error message does not exist (%s) +msgid "err_err_1" +msgstr "Le message d'erreur n'existe pas (%s)" + +#. This is a date representation : parameters are the date as follow : +#. $d,$m,$y,$h,$i,$hh,$am +#. 1 2 3 4 5 6 7 +#. hh is the hour in 12 hours format, and am is 'am' or 'pm'. +#. eg: english : %3$d/%1$d/%2$d, at %6$d:%5$d %7$s +msgid "the %3$d-%2$d-%1$d at %4$d:%5$d" +msgstr "le %1$d/%2$d/%3$d, à %4$dh%5$d" + +#. User or password incorrect +msgid "err_mem_1" +msgstr "Utilisateur ou mot de passe incorrect" + +#. This account is locked, contact the administrator +msgid "err_mem_2" +msgstr "Compte Verrouillé, contacter l'administrateur" + +#. Cookie incorrect, please accept the session cookie +msgid "err_mem_3" +msgstr "Cookie incorrect, acceptez les cookies" + +#. Session unknown, contact the administrator +msgid "err_mem_4" +msgstr "Session inexistante, contacter l'administrateur" + +#. IP address incorrect, please contact the administrator +msgid "err_mem_5" +msgstr "IP incorrecte, contacter l'administrateur" + +# PROBLEME : il y avait 2 fois le 5, les autres messages doivent surement etre décalés (TODO) +#. The old password is incorrect +#. PROBLEME : il y avait 2 fois le 5, les autres messages doivent surement etre décalés (TODO) +msgid "err_mem_6" +msgstr "L'ancien mot de passe est incorrect" + +#. The new passwords are differents, please retry +msgid "err_mem_7" +msgstr "Les deux nouveaux mots de passe sont différents" + +#. A password must be at least 3 characters long. +msgid "err_mem_8" +msgstr "Un mot de passe doit faire au moins 3 caractères" + +#. The information you entered is incorrect +msgid "err_mem_9" +msgstr "Les données entrées sont incorrectes" + +#. You are not allowed to change your password. +msgid "err_mem_11" +msgstr "Vous ne pouvez pas changer votre mot de passe" + +#. You must be a system administrator to do this +msgid "err_mem_12" +msgstr "" +"Vous devez être administrateur pour pouvoir modifier vos préférences " +"administrateur." + +# Please do NOT translate those strings to each language. Use the original language instead +#. Français (France) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "fr_FR" +msgstr "Français (France)" + +#. Français (Canada) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "fr_CA" +msgstr "Français (Canada)" + +#. English (United States) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "en_US" +msgstr "English (United States)" + +#. English (United Kingdom) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "en_UK" +msgstr "English (United Kingdom)" + +#. Deutsch (Germany) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "de_DE" +msgstr "Deutsch (Germany)" + +#. Español (Spania) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "es_ES" +msgstr "Español (Spania)" + +#. Español (Venezuela) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "es_VE" +msgstr "Español (Venezuela)" + +#. OK +msgid "err_quota_0" +msgstr "OK" + +#. Error writing the quota entry ! +msgid "err_quota_1" +msgstr "Les quotas disque ne sont pas activés sur le serveur" + +#. MySQL Databases +msgid "quota_mysql" +msgstr "Bases de données MySQL" + +#. MySQL Users +msgid "quota_mysql_users" +msgstr "Utilisateurs MySQL" + +#. Disk space +msgid "quota_web" +msgstr "Espace disque (Ko)" + +#. Data base name can contain only digits or lowercase alphabetic characters +msgid "err_mysql_2" +msgstr "" +"Le nom de la base de données ne peut contenir que des chiffres ou lettres " +"minuscules." + +#. The database does not exist, you'll get an access by creating it. +msgid "err_mysql_3" +msgstr "Cette base de données existe déjà, utilisez un autre nom." + +#. This database already exists! +msgid "err_mysql_4" +msgstr "Cette base de données n'existe pas." + +#. Your backup number is incorrect. +msgid "err_mysql_5" +msgstr "Le nombre de sauvegarde est incorrect." + +#. The folder is incorrect! +msgid "err_mysql_6" +msgstr "Le répertoire est incorrect !" + +#. The file name you chose does not exist or is incorrect. +msgid "err_mysql_7" +msgstr "Vous n'avez aucune base, vous ne pouvez pas changer le mot de passe" + +#. The password is too long (16 chars max) +msgid "err_mysql_8" +msgstr "Le mot de passe est trop long (16 caractères maximum)" + +#. The file is incorrect or does not exist. +msgid "err_mysql_9" +msgstr "Le fichier entré n'existe pas ou est incorect." + +#. Your cannot create your main database : you still have other dbs ! +msgid "err_mysql_10" +msgstr "" +"Erreur : vous ne pouvez créer votre base principale : il vous reste " +"d'autres bases !" + +#. You have no database, click on 'Databases' to create the first one +msgid "err_mysql_11" +msgstr "" +"Vous n'avez aucune base de données, cliquez sur 'Bases de données' pour en " +"créer une" + +#. The data base name is too long (64 chars max) +msgid "err_mysql_12" +msgstr "Le nom de la base de données est trop long (64 caractères maximum)" + +#. You cannot create more MySQL users +msgid "err_mysql_13" +msgstr "" +"Vous avez atteint votre quota d'utilisateurs MySQL, vous ne pouvez plus en " +"créer" + +#. MySQL users can only have a-z and 0-9 characters. +msgid "err_mysql_14" +msgstr "" +"Le nom d'utilisateur ne peut contenir que des chiffres et/ou lettres " +"minuscules" + +#. MySQL users must be less than 16 characters long. +msgid "err_mysql_15" +msgstr "Nom d'utilisateur trop long (16 caractères maximum)" + +#. This MySQL user already exists. +msgid "err_mysql_16" +msgstr "Un utilisateur du même nom existe déjà" + +#. Passwords do not match. +msgid "err_mysql_17" +msgstr "Les mot de passes ne correspondent pas" + +#. The requested MySQL user does not exist. +msgid "err_mysql_18" +msgstr "L'utilisateur n'existe pas" + +#. You have no MySQL users at the moment. +msgid "err_mysql_19" +msgstr "Aucun utilisateur n'est défini dans MySQL." + +#. Your MySQL backups are stored in the chosen folder from db.sql.1 to db.sql.19
your database name replaces 'db'.
WARNING: If you modify backup settings (backups, compression...) previous +#. backups may remain in the backup folder. Go to the file manager to delete +#. them. +msgid "hlp_sql_bck" +msgstr "" +"Les sauvegardes de votre base MySQL sont stockées dans le répertoire choisi " +"sous le nom db.sql.1 à db.sql.19
où 'db' est " +"remplacé par le nom de la base de données.
ATTENTION :
- " +"Le répertoire doit déja exister, si ce n'est pas le cas créez le au " +"préalable
- si vous modifiez les paramètres de la sauvegarde (nombre de " +"sauvegardes, compression ...) des vieilles sauvegardes peuvent rester dans " +"le répertoire concerné. Vous pouvez les effacer dans le gestionnaire de " +"fichiers." + +#. Web Statistics +msgid "quota_sta2" +msgstr "Statistiques Web Brutes" + +#. You cannot create more raw statistic set. +msgid "err_sta2_1" +msgstr "" +"Vous avez atteint votre quota de jeux de statistiques, vous ne pouvez plus " +"en créer." + +#. There is currently no raw statistic set. +msgid "err_sta2_2" +msgstr "Aucune jeu de statistiques brutes" + +#. The requested raw statistic set has not been found. +msgid "err_sta2_3" +msgstr "Jeu de statistiques brutes non trouvé" + +#. File or folder name is incorrect +msgid "err_bro_1" +msgstr "Répertoire ou fichier incorrect !" + +#. You cannot move or copy a file to the same folder +msgid "err_bro_2" +msgstr "Vous ne pouvez pas déplacer un fichier dans le même répertoire !" + +#. If we manage your DNS
You can manage your mails elsewhere if you want +#. (MX field).
Write %s in this field if your mail +#. must be managed by %s
or put the IP address or name of the mail server +#. used to manage your mails.Warning : if you put nothing in this field, +#. your mails will be unavailable +msgid "help_dns_mx %s %s" +msgstr "" + +#. If we don't manage the DNS for this domain
do we manage your mails? +msgid "help_dns_mail" +msgstr "" + +#. If you want to delete the domain %s, click the button below.Warning : this +#. delete all the ftp, mails, mailing-lists ... associated with thisdomain and +#. all its subdomains! +msgid "help_domain_del %s" +msgstr "" + +#. You can create various databases
Click on 'SQL Admin' in the menu to +#. manage them
or use the table below to backup, retrieve or delete them: +msgid "help_sql_list_ok" +msgstr "" + +#. Your haven't created your main database yet, please enter a password to create it. +msgid "help_sql_list_no" +msgstr "" + +# $d,$m,$y,$h,$i,$hh,$am +# 1 2 3 4 5 6 7 +#. This is a date representation : parameters are the date as follow : +#. $d,$m,$y,$h,$i,$hh,$am +#. 1 2 3 4 5 6 7 +#. hh is the hour in 12 hours format, and am is 'am' or 'pm'. +#. eg: english : %3$d/%1$d/%2$d, at %6$d:%5$d %7$s +msgid "%3$d-%2$d-%1$d %4$d:%5$d" +msgstr "%1$d/%2$d/%3$d %4$d:%5$d" + +msgid "1 column, detailed" +msgstr "1 colonne, détaillée" + +msgid "2 columns, short" +msgstr "2 colonnes, court" + +msgid "3 columns, short" +msgstr "3 colonnes, court" + +msgid "Go back to the file manager" +msgstr "Retourner au gestionnaire de fichiers" + +msgid "Edit the newly created file" +msgstr "Editer le nouveau fichier" + +msgid "hlp_login" +msgstr "" +"Vous pouvez aussi consulter l'aide en ligne sur l'accueil du panneau de " +"contrôle HELPID_300
" + +msgid "err_admin_14" +msgstr "" +"La politique de mot de passe demandée n'a pas été trouvée, Ce password est " +"refusé (c'est une erreur de programmation ...)" + +msgid "err_admin_15" +msgstr "" +"Le mot de passe est trop court selon votre politique de mot de passe, merci " +"de vérifier" + +msgid "err_admin_16" +msgstr "" +"Le mot de passe est trop long selon votre politique de mot de passe, merci " +"de vérifier" + +msgid "err_admin_17" +msgstr "" +"Le mot de passe ne peut pas être le même que le nom d'utilisateur (ou " +"quelque chose de similaire) selon votre politique de mot de passe, merci de " +"vérifier" + +msgid "err_admin_18" +msgstr "" +"Le mot de passe doit contenir des caractères de %s classes différentes selon " +"votre politique de mot de passe (il n'en contient que %s), merci de vérifier" + +msgid "err_hta_12" +msgstr "" +"Impossible d'écrire dans le dossier concerné. Vérifiez vos permissions." + +msgid "err_mail_16" +msgstr "Ce compte esclave MX existe déjà" + +msgid "err_mysql_20" +msgstr "Le mot de passe est obligatoire" + +msgid "err_mysql_21" +msgstr "Le nom d'utilisateur ne peut pas être vide" + +msgid "err_bro_3" +msgstr "Impossible de créer le fichier demandé. Vérifiez les permissions." + +# $d,$m,$y +# 1 2 3 +msgid "%3$d-%2$d-%1$d" +msgstr "%1$02d/%2$02d/%3$04d" + +msgid "AlternC's account password" +msgstr "Mots de passe des comptes AlternC" + +msgid "POP/IMAP account passwords" +msgstr "Mots de passe des comptes POP/IMAP" + +msgid "Protected folders passwords" +msgstr "Mots de passe des dossiers protégés" + +#~ msgid "err_dom_26" +#~ msgstr "" +#~ "Le nom des types de domaines ne doit être composé que de chiffres ou de " +#~ "lettres." + +#~ msgid "err_dom_27" +#~ msgstr "Un type de domaine invalide a été sélectionné, merci de vérifier." + +#~ msgid "err_dom_28" +#~ msgstr "" +#~ "Les paramètres pour ce sous-domaine et ce type de domaine sont invalide. " +#~ "Vérifiez qu'aucune incompatibilité n'existe sur ce sous-domaine." + +#~ msgid "err_bro_4" +#~ msgstr "" +#~ "Impossible de créer le répertoire demandé. Vérifiez les permissions." + +#~ msgid "err_bro_5" +#~ msgstr "" +#~ "Impossible de modifier le fichier demandé. Vérifiez les permissions." + +#~ msgid "err_bro_6" +#~ msgstr "Impossible de lire le fichier demandé. Vérifiez les permissions." + +#~ msgid "AlternC panel access" +#~ msgstr "Accès au bureau AlternC" + +#~ msgid "Locally hosted" +#~ msgstr "Géré en local" + +#~ msgid "URL redirection" +#~ msgstr "Redirection vers une url" + +#~ msgid "IPv4 redirect" +#~ msgstr "Redirection vers une IPv4" + +#~ msgid "Webmail access" +#~ msgstr "Accès au webmail" + +#~ msgid "IPv6 redirect" +#~ msgstr "Redirection vers une IPv6" + +#~ msgid "CNAME DNS entry" +#~ msgstr "Entrée DNS CNAME" + +#~ msgid "TXT DNS entry" +#~ msgstr "Entrée DNS TXT" + +#~ msgid "MX DNS entry" +#~ msgstr "Entrée DNS MX" + +#~ msgid "secondary MX DNS entry" +#~ msgstr "Entrée DNS MX secondaire" + +#~ msgid "Default mail server" +#~ msgstr "Serveur de mail par défaut" + +#~ msgid "Default backup mail server" +#~ msgstr "Serveur de mail de secours" diff --git a/ssl/panel/locales/fr_FR/LC_MESSAGES/messages.po b/ssl/panel/locales/fr_FR/LC_MESSAGES/messages.po new file mode 100644 index 00000000..b784104a --- /dev/null +++ b/ssl/panel/locales/fr_FR/LC_MESSAGES/messages.po @@ -0,0 +1,6076 @@ +# French AlternC Translation +# Copyright (c) 2002 the AlternC Development Team +# +# $Id: admin.po,v 1.10 2004/11/01 15:55:44 anonymous Exp $ +# Benjamin Sonntag , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: $Id: admin.po,v 1.10 2004/11/01 15:55:44 anonymous Exp " +"$\n" +"Report-Msgid-Bugs-To: i18n@alternc.org\n" +"POT-Creation-Date: 2013-10-18 15:42+0200\n" +"PO-Revision-Date: 2012-10-17 09:52+0200\n" +"Last-Translator: Benjamin Sonntag \n" +"Language-Team: français \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bits\n" +"X-Generator: Emacs 21\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#: ../../squirrelmail/alternc_changepass/change.php:39 +msgid "Can't connect to MySQL server on AlternC!" +msgstr "Impossible de se connecter au serveur MySQL d'AlternC !" + +# Change Mail Password plugin for Squirrelmail / AlternC +# Copyright (C) 2004 Benjamin Sonntag +# This file is distributed under the same license as the ALTERNC package. +# Benjamin Sonntag 2004 +# +#: ../../squirrelmail/alternc_changepass/change.php:66 +msgid "Your new passwords are differents, pleasy try again." +msgstr "Vos nouveaux mots de passes sont différents, réessayez." + +#: ../../squirrelmail/alternc_changepass/change.php:72 +msgid "" +"Your account has not been found, please try again later or ask an " +"administrator." +msgstr "" +"Votre compte email n'a pas été trouvé. Réessayez ultèrieurement ou demandez " +"à un administrateur." + +#: ../../squirrelmail/alternc_changepass/change.php:75 +msgid "Your current password is incorrect, please try again." +msgstr "Votre mot de passe actuel est incorrect, réessayez." + +#: ../../squirrelmail/alternc_changepass/change.php:88 +msgid "" +"Your password has been successfully changed. Don't forget to change it in " +"your mail software if you are using one (Outlook, Mozilla, Thunderbird, " +"Eudora ...)" +msgstr "" +"Votre mot de passe a été modifié avec succès. N'oubliez pas de le modifier " +"aussi dans votre logiciel de courrier si vous en utilisez un (Outlook, " +"Mozilla, Thunderbird, Eudora ...)" + +#: ../../squirrelmail/alternc_changepass/change.php:111 +msgid "Changing your mail password" +msgstr "Changement de votre mot de passe de courrier" + +#: ../../squirrelmail/alternc_changepass/change.php:115 +msgid "Old Password:" +msgstr "Ancien mot de passe : " + +#: ../../squirrelmail/alternc_changepass/change.php:120 +msgid "New Password:" +msgstr "Nouveau mot de passe : " + +#: ../../squirrelmail/alternc_changepass/change.php:124 +msgid "Verify New Password:" +msgstr "Vérifier le nouveau mot de passe :" + +#: ../../squirrelmail/alternc_changepass/change.php:129 +msgid "Change my mail password" +msgstr "Changer mon mot de passe" + +#: ../../squirrelmail/alternc_changepass/setup.php:21 +msgid "Change Password" +msgstr "Changer le mot de passe" + +#: ../../squirrelmail/alternc_changepass/setup.php:23 +msgid "Change the password of your email account." +msgstr "Changer le mot de passe de votre email" + +#: ../admin/about.php:36 +msgid "About AlternC" +msgstr "À propos d'AlternC" + +#: ../admin/about.php:37 +msgid "Hosting control panel" +msgstr "Panneau de contrôle d'hébergement" + +#: ../admin/about.php:41 +msgid "" +"AlternC is an automatic hosting software suite. It features a PHP-based " +"administration interface and scripts that manage server configuration.
It manages, among others, email, Web, Web statistics, and mailing list " +"services. It is available in many languages. It is a free software " +"distributed under GPL license." +msgstr "" +"AlternC est une suite logicielle d'hébergement automatisé. Il contient un " +"panneau de contrôle écrit en PHP, et des scripts qui gèrent la configuration " +"du serveur
Il gère, entre autre, les emails, sites web, statistiques " +"web, et les listes de discussions et de diffusion. Il est disponible en de " +"nombreuses langues. C'est un logiciel libre distribué sous licence GPL." + +#: ../admin/about.php:47 +msgid "Official website: " +msgstr "Site officiel :" + +#: ../admin/about.php:48 +msgid "Developer website: " +msgstr "Site des développeurs : " + +#: ../admin/about.php:49 +msgid "Help: " +msgstr "Aide :" + +#: ../admin/about.php:57 +msgid "You are currently using AlternC " +msgstr "Vous utilisez actuellement AlternC " + +#: ../admin/adm_add.php:36 ../admin/adm_db_servers.php:30 +#: ../admin/adm_deactivate.php:35 ../admin/adm_deactivate.php:52 +#: ../admin/adm_defquotas.php:35 ../admin/adm_dnsweberror.php:33 +#: ../admin/adm_doadd.php:26 ../admin/adm_dodefquotas.php:35 +#: ../admin/adm_dodel.php:33 ../admin/adm_dodel.php:52 +#: ../admin/adm_doedit.php:35 ../admin/adm_doedit.php:59 +#: ../admin/adm_domlock.php:33 ../admin/adm_doms.php:33 +#: ../admin/adm_doms_def_type.php:5 ../admin/adm_domstype.php:33 +#: ../admin/adm_domstypedoedit.php:4 ../admin/adm_domstypeedit.php:32 +#: ../admin/adm_domstyperegenerate.php:4 ../admin/adm_donosu.php:33 +#: ../admin/adm_dorenew.php:34 ../admin/adm_dorenew.php:45 +#: ../admin/adm_dosu.php:33 ../admin/adm_edit.php:36 ../admin/adm_edit.php:48 +#: ../admin/adm_email.php:30 ../admin/adm_list.php:32 ../admin/adm_list.php:58 +#: ../admin/adm_lockpanel.php:33 ../admin/adm_login.php:86 +#: ../admin/adm_login.php:93 ../admin/adm_mxaccount.php:33 +#: ../admin/adm_panel.php:33 ../admin/adm_passpolicy.php:30 +#: ../admin/adm_quotadoedit.php:33 ../admin/adm_quotaedit.php:34 +#: ../admin/adm_slavedns.php:33 ../admin/adm_tld.php:33 +#: ../admin/adm_tldadd.php:33 ../admin/adm_tlddoadd.php:33 +#: ../admin/adm_tlddoedit.php:39 ../admin/adm_tldedit.php:33 +#: ../admin/adm_update_domains.php:34 ../admin/adm_variables.php:33 +#: ../admin/dom_subdel.php:46 ../admin/dom_subdodel.php:47 +#: ../admin/dom_subdoedit.php:53 ../admin/dom_subedit.php:49 +#: ../admin/quotas_users.php:13 ../class/reset_stats_conf.php:6 +msgid "This page is restricted to authorized staff" +msgstr "Cette page est réservée aux administrateurs" + +#: ../admin/adm_add.php:54 +msgid "New AlternC account" +msgstr "Créer un compte AlternC" + +#: ../admin/adm_add.php:64 ../admin/adm_edit.php:69 +#: ../admin/adm_quotaedit.php:68 ../admin/ftp_edit.php:71 +#: ../admin/ftp_list.php:72 ../admin/hta_adduser.php:54 +#: ../admin/hta_edit.php:61 ../admin/hta_edit.php:98 ../admin/index.php:89 +#: ../admin/piwik_userlist.php:79 ../admin/sql_users_add.php:59 +msgid "Username" +msgstr "Utilisateur" + +#: ../admin/adm_add.php:68 +msgid "Initial password" +msgstr "Mot de passe initial" + +#: ../admin/adm_add.php:72 ../admin/adm_edit.php:89 ../admin/ftp_edit.php:88 +#: ../admin/hta_adduser.php:62 ../admin/hta_edit.php:106 +#: ../admin/hta_edituser.php:63 ../admin/mail_edit.php:97 +#: ../admin/sql_users_add.php:67 ../admin/sql_users_password.php:63 +msgid "Confirm password" +msgstr "Confirmer le mot de passe" + +#: ../admin/adm_add.php:76 +msgid "Can he change its password" +msgstr "Peut-il changer son mot de passe ?" + +#: ../admin/adm_add.php:78 ../admin/adm_domstype.php:82 +#: ../admin/adm_domstype.php:83 ../admin/adm_domstype.php:84 +#: ../admin/adm_domstype.php:85 ../admin/adm_domstype.php:86 +#: ../admin/adm_edit.php:78 ../admin/adm_edit.php:95 +#: ../admin/adm_passpolicy.php:113 ../admin/adm_passpolicy.php:157 +#: ../admin/dom_edit.php:231 ../admin/dom_edit.php:254 +#: ../admin/dom_subdel.php:71 ../admin/mail_edit.php:90 +#: ../admin/mail_list.php:164 ../admin/sql_bck.php:94 ../class/m_bro.php:70 +msgid "No" +msgstr "Non" + +#: ../admin/adm_add.php:79 ../admin/adm_domstype.php:82 +#: ../admin/adm_domstype.php:83 ../admin/adm_domstype.php:84 +#: ../admin/adm_domstype.php:85 ../admin/adm_domstype.php:86 +#: ../admin/adm_edit.php:79 ../admin/adm_edit.php:96 +#: ../admin/adm_passpolicy.php:114 ../admin/adm_passpolicy.php:157 +#: ../admin/dom_edit.php:230 ../admin/dom_edit.php:253 +#: ../admin/dom_subdel.php:70 ../admin/mail_edit.php:91 +#: ../admin/mail_list.php:209 ../admin/mail_list.php:220 +#: ../admin/mail_list.php:231 ../admin/mail_list.php:249 +#: ../admin/mail_list.php:260 ../admin/mail_list.php:271 +#: ../admin/mail_list.php:282 ../admin/sql_bck.php:95 ../class/m_bro.php:70 +msgid "Yes" +msgstr "Oui" + +#: ../admin/adm_add.php:83 ../admin/adm_edit.php:100 +msgid "Notes" +msgstr "Notes" + +#: ../admin/adm_add.php:87 ../admin/adm_edit.php:104 +msgid "First Name" +msgstr "Prénom" + +#: ../admin/adm_add.php:87 ../admin/adm_edit.php:104 +msgid "Surname" +msgstr "Nom" + +#: ../admin/adm_add.php:91 ../admin/adm_edit.php:108 +msgid "Email address" +msgstr "Adresse Email" + +#: ../admin/adm_add.php:95 ../admin/adm_dodefquotas.php:48 +#: ../admin/adm_dodefquotas.php:50 ../admin/adm_dodefquotas.php:57 +#: ../admin/adm_dodefquotas.php:59 ../admin/adm_edit.php:112 +msgid "Account type" +msgstr "Type de compte" + +#: ../admin/adm_add.php:105 +msgid "Wich database server for this user ?" +msgstr "" + +#: ../admin/adm_add.php:107 +msgid "Warning: you can't change it after the creation of the user." +msgstr "" + +#: ../admin/adm_add.php:124 +#, php-format +msgid "Install the domain" +msgstr "Installer le domaine" + +#: ../admin/adm_add.php:140 +msgid "Create this AlternC account" +msgstr "Créer ce compte AlternC" + +#: ../admin/adm_add.php:141 ../admin/adm_deactivate.php:75 +#: ../admin/adm_domstypeedit.php:134 ../admin/adm_edit.php:124 +#: ../admin/adm_quotaedit.php:88 ../admin/adm_tldadd.php:71 +#: ../admin/adm_tldedit.php:70 ../admin/bro_pref.php:150 +#: ../admin/browseforfolder.php:146 ../admin/browseforfolder2.php:142 +#: ../admin/ftp_del.php:83 ../admin/ftp_edit.php:98 +#: ../admin/hta_adduser.php:68 ../admin/hta_dodeluser.php:65 +#: ../admin/hta_edit.php:113 ../admin/mail_edit.php:116 +#: ../admin/mail_manage_catchall.php:122 ../admin/piwik_site_dodel.php:71 +#: ../admin/piwik_user_dodel.php:69 ../admin/sql_bck.php:108 +#: ../admin/sql_users_add.php:73 ../admin/sql_users_password.php:69 +#: ../admin/sql_users_rights.php:104 +msgid "Cancel" +msgstr "Annuler" + +#: ../admin/adm_authip_whitelist.php:31 ../admin/ip_main.php:50 +#: ../class/m_authip.php:40 +msgid "Access security" +msgstr "Contrôle d'accès" + +#: ../admin/adm_authip_whitelist.php:39 +msgid "" +"The IP and subnet you have here are allowed for ALL users and ALL usages" +msgstr "" +"L'IP et le préfixe ci-dessous seront autorisés pour TOUS les utilisateurs et " +"TOUS les usages" + +#: ../admin/adm_authip_whitelist.php:39 +msgid "Warning" +msgstr "Attention" + +#: ../admin/adm_authip_whitelist.php:44 +msgid "Add an IP" +msgstr "Ajouter une IP" + +#: ../admin/adm_authip_whitelist.php:44 ../admin/ip_main.php:174 +msgid "Add my current IP" +msgstr "Ajouter mon IP" + +#: ../admin/adm_authip_whitelist.php:47 ../admin/ip_main.php:177 +msgid "Cancel edit" +msgstr "Annuler la modification" + +#: ../admin/adm_authip_whitelist.php:50 +msgid "" +"Enter here the IP address you want.
IPv4, IPv6 and subnet allowed" +msgstr "" +"Entrez ici l'adresse IP que vous souhaitez.
IPV4, IPV6 et préfixes " +"sont autorisés " + +#: ../admin/adm_authip_whitelist.php:54 +msgid "Add a comment" +msgstr "Ajouter un commentaire" + +#: ../admin/adm_authip_whitelist.php:57 ../admin/adm_doms_def_type.php:88 +#: ../admin/bro_editor.php:89 ../admin/ftp_edit.php:97 +#: ../admin/ip_main.php:135 ../admin/ip_main.php:186 +#: ../admin/mail_manage_catchall.php:121 +msgid "Save" +msgstr "Enregistrer" + +#: ../admin/adm_authip_whitelist.php:64 +msgid "IP" +msgstr "IP" + +#: ../admin/adm_authip_whitelist.php:64 +msgid "Informations" +msgstr "Informations" + +#: ../admin/adm_authip_whitelist.php:64 ../admin/adm_doms_def_type.php:48 +#: ../admin/dom_edit.php:130 ../admin/ip_main.php:146 +msgid "Type" +msgstr "Type" + +#: ../admin/adm_authip_whitelist.php:82 ../admin/adm_domstype.php:74 +#: ../admin/adm_list.php:200 ../admin/adm_list.php:222 +#: ../admin/adm_list.php:251 ../admin/adm_passpolicy.php:151 +#: ../admin/adm_tld.php:80 ../admin/dom_edit.php:140 ../admin/ftp_list.php:78 +#: ../admin/ip_main.php:164 ../admin/mail_list.php:150 +msgid "Edit" +msgstr "Modifier" + +#: ../admin/adm_authip_whitelist.php:83 ../admin/adm_doms_def_type.php:60 +#: ../admin/adm_mxaccount.php:83 ../admin/adm_slavedns.php:101 +#: ../admin/adm_slavedns.php:145 ../admin/bro_main.php:285 +#: ../admin/cron.php:54 ../admin/dom_edit.php:123 ../admin/dom_edit.php:146 +#: ../admin/ftp_del.php:82 ../admin/hta_dodeluser.php:64 +#: ../admin/ip_main.php:79 ../admin/ip_main.php:165 +#: ../admin/piwik_site_dodel.php:70 ../admin/piwik_sitelist.php:128 +#: ../admin/piwik_user_dodel.php:68 ../admin/piwik_userlist.php:87 +msgid "Delete" +msgstr "Effacer" + +#: ../admin/adm_db_servers.php:35 +msgid "List of the databases servers" +msgstr "" + +#: ../admin/adm_db_servers.php:42 +#, fuzzy +msgid "Here the list of the available databases servers." +msgstr "Voici la liste des comptes AlternC hébergés" + +#: ../admin/adm_db_servers.php:49 +msgid "ID" +msgstr "" + +#: ../admin/adm_db_servers.php:50 ../admin/adm_domstype.php:58 +#: ../admin/adm_domstypeedit.php:74 ../admin/ip_main.php:146 +#: ../admin/ip_main.php:181 ../admin/logs_list.php:53 +msgid "Name" +msgstr "Nom" + +#: ../admin/adm_db_servers.php:51 ../admin/vm.php:77 +#, fuzzy +msgid "Hostname" +msgstr "Utilisateur" + +#: ../admin/adm_db_servers.php:52 ../admin/adm_mxaccount.php:78 +#: ../admin/adm_mxaccount.php:95 ../admin/adm_slavedns.php:140 +#: ../admin/adm_slavedns.php:158 ../admin/sql_getparam.php:70 +msgid "Login" +msgstr "Nom d'utilisateur" + +#: ../admin/adm_db_servers.php:53 +msgid "Client" +msgstr "" + +#: ../admin/adm_db_servers.php:54 +#, fuzzy +msgid "Users" +msgstr "Utilisateur" + +#: ../admin/adm_db_servers.php:71 +msgid "To add a database server, do an INSERT into the db_servers table" +msgstr "" + +#: ../admin/adm_db_servers.php:74 +msgid "" +"To update the list of the server on the PhpMyAdmin login page, launch " +"alternc.install" +msgstr "" + +#: ../admin/adm_deactivate.php:46 ../class/m_admin.php:208 +#: ../class/m_admin.php:234 ../class/m_admin.php:680 ../class/m_admin.php:704 +#: ../class/m_admin.php:728 ../class/m_admin.php:772 ../class/m_admin.php:797 +#: ../class/m_admin.php:821 ../class/m_admin.php:894 ../class/m_admin.php:916 +#, fuzzy +msgid "Account not found" +msgstr "Politique non trouvée" + +#: ../admin/adm_deactivate.php:58 +msgid "User does not exist" +msgstr "L'utilisateur n'existe pas" + +#: ../admin/adm_deactivate.php:63 ../admin/adm_deactivate.php:74 +msgid "Confirm" +msgstr "Confirmer" + +#: ../admin/adm_deactivate.php:67 +msgid "WARNING: experimental feature, use at your own risk" +msgstr "" +"ATTENTION: fonctionalité expérimentale, utilisez à vos risques et périls" + +#: ../admin/adm_deactivate.php:68 +msgid "" +"The following domains will be deactivated and redirected to the URL entered " +"in the following box. A backup of the domain configuration will be displayed " +"as a serie of SQL request that you can run to restore the current " +"configuration if you want. Click confirm if you are sure you want to " +"deactivate all this user's domains." +msgstr "" +"Les domaines suivants vont être désactivés et redirigés vers l'URL entré " +"dans la boîte ci-bas. Une sauvegarde de votre configuration sera affichée " +"comme une série de requêtes SQL que vous pouvez recharger pour restaurer la " +"configuration actuelle. Cliquez confirmer si vous êtes certain que vous " +"voulez désactiver tous les domaines de cet utilisateur." + +#: ../admin/adm_deactivate.php:73 +msgid "Redirection URL:" +msgstr "Redirection vers l'URL : " + +#: ../admin/adm_deactivate.php:78 +msgid "Domains of user: " +msgstr "Domaines de l'utilisateur: " + +#: ../admin/adm_deactivate.php:81 +msgid "Missing redirect url." +msgstr "URL de redirection manquant." + +#: ../admin/adm_deactivate.php:99 +#, php-format +msgid "-- Redirecting all domains and subdomains of the user %s to %s\n" +msgstr "" +"-- Rediriger tous les domaines et sous-domaines de l'utilisateur %s vers %s\n" + +#: ../admin/adm_defquotas.php:46 ../admin/adm_panel.php:54 +msgid "Change the default quotas" +msgstr "Changer les quotas par défaut" + +#: ../admin/adm_defquotas.php:52 +msgid "User's quotas synchronised" +msgstr "Synchroniser les quotas utilisateurs" + +#: ../admin/adm_defquotas.php:65 +msgid "Add account type" +msgstr "Ajouter ce type de compte" + +#: ../admin/adm_defquotas.php:83 +msgid "Delete account type" +msgstr "Effacer ce type de compte" + +#: ../admin/adm_defquotas.php:88 +msgid "" +"Here is the list of the quotas on the server for the new accounts. If you " +"want to change them, enter new values" +msgstr "" +"Voici la liste des quotas par défaut sur ce serveur pour les nouveaux " +"comptes." + +#: ../admin/adm_defquotas.php:90 +msgid "Synchronise user's quota (only to upper value)" +msgstr "" +"Synchroniser les quotas utilisateurs (uniquement pour une valeur plus grande)" + +#: ../admin/adm_defquotas.php:102 +msgid "Accounts of type" +msgstr "Type de compte" + +#: ../admin/adm_defquotas.php:104 +msgid "Default Value" +msgstr "Valeur par défaut" + +#: ../admin/adm_defquotas.php:104 ../admin/adm_list.php:159 +#: ../admin/adm_list.php:203 ../admin/adm_list.php:223 +#: ../admin/adm_list.php:253 +msgid "Quotas" +msgstr "Quotas" + +#: ../admin/adm_defquotas.php:124 +msgid "Edit the default quotas" +msgstr "Modifier les quotas par défaut" + +#: ../admin/adm_dnsweberror.php:40 +msgid "Domains and Websites having errors" +msgstr "Noms de domaines et sites en erreur" + +#: ../admin/adm_dnsweberror.php:50 +msgid "List of the websites having errors in the domain database." +msgstr "Liste des sites web en erreur dans la base des domaines." + +#: ../admin/adm_dnsweberror.php:53 ../admin/adm_dnsweberror.php:83 +msgid "Uid" +msgstr "Uid" + +#: ../admin/adm_dnsweberror.php:54 ../admin/adm_dnsweberror.php:84 +#: ../admin/adm_list.php:155 ../admin/adm_list.php:233 +#: ../admin/adm_list.php:234 ../admin/adm_list.php:235 +#: ../admin/quotas_users.php:169 +msgid "Account" +msgstr "Compte" + +#: ../admin/adm_dnsweberror.php:55 ../admin/adm_dnsweberror.php:85 +#: ../admin/dom_add.php:57 ../class/m_dom.php:1757 +msgid "Domain name" +msgstr "Nom de domaine" + +#: ../admin/adm_dnsweberror.php:56 +msgid "FQDN" +msgstr "FQDN" + +#: ../admin/adm_dnsweberror.php:57 ../admin/adm_variables.php:57 +msgid "Value" +msgstr "Valeur" + +#: ../admin/adm_dnsweberror.php:58 ../admin/adm_domstype.php:59 +#: ../admin/adm_domstypeedit.php:78 +msgid "Description" +msgstr "Description" + +#: ../admin/adm_dnsweberror.php:59 +msgid "Web Result field" +msgstr "champ Web Result" + +#: ../admin/adm_dnsweberror.php:80 +msgid "List of the domain names having errors in the domain database." +msgstr "Liste des noms de domaines en erreur dans la base des domaines." + +#: ../admin/adm_dnsweberror.php:86 +msgid "DNS Result field" +msgstr "champ DNS Result" + +#: ../admin/adm_doadd.php:53 ../admin/adm_doedit.php:64 +#: ../admin/ftp_doedit.php:44 ../admin/hta_doadduser.php:41 +#: ../admin/hta_doedituser.php:42 ../admin/mail_doedit.php:57 +msgid "Passwords do not match" +msgstr "Les mots de passe ne correspondent pas" + +#: ../admin/adm_doadd.php:65 +msgid "The new member has been successfully created" +msgstr "Le compte AlternC a été ajouté avec succès" + +#: ../admin/adm_dodefquotas.php:48 +msgid "added" +msgstr "ajouté" + +#: ../admin/adm_dodefquotas.php:50 +msgid "could not be added" +msgstr "n'a pas pu être ajouté" + +#: ../admin/adm_dodefquotas.php:57 +msgid "deleted" +msgstr "effacé" + +#: ../admin/adm_dodefquotas.php:59 +msgid "could not be deleted" +msgstr "n'a pas pu être effacé" + +#: ../admin/adm_dodefquotas.php:66 +#, php-format +msgid "Deleting quota %s" +msgstr "Suppression du quota %s" + +#: ../admin/adm_dodefquotas.php:72 +#, fuzzy +msgid "WARNING: Confirm the deletion of the quota" +msgstr "ATTENTION : Etes-vous sur de vouloir supprimer le quota" + +#: ../admin/adm_dodefquotas.php:75 +#, fuzzy +msgid "Yes, delete this default quota" +msgstr "Modifier les quotas par défaut" + +#: ../admin/adm_dodefquotas.php:76 +#, fuzzy +msgid "No, don't delete this default quota" +msgstr "n'a pas pu être effacé" + +#: ../admin/adm_dodefquotas.php:94 +msgid "Default quotas successfully changed" +msgstr "Les quotas par défaut ont été modifiés avec succès" + +#: ../admin/adm_dodefquotas.php:96 +msgid "Default quotas could not be set." +msgstr "Les quotas par défaut n'ont pas pu être modifiés" + +#: ../admin/adm_dodel.php:56 +#, php-format +msgid "Member '%s' does not exist" +msgstr "Le membre '%s' n'existe pas" + +#: ../admin/adm_dodel.php:58 +#, php-format +msgid "Member %s successfully deleted" +msgstr "Le compte AlternC '%s' a été effacé avec succès" + +#: ../admin/adm_dodel.php:65 +msgid "Please check the accounts you want to delete" +msgstr "Veuillez cocher les comptes que vous souhaitez effacer" + +#: ../admin/adm_dodel.php:73 +#, php-format +msgid "Deleting users" +msgstr "Supprimer un utilisateur" + +#: ../admin/adm_dodel.php:77 +msgid "WARNING : Confirm the deletion of the users" +msgstr "ATTENTION : Confirmez-vous la suppression de cette utilisateur" + +#: ../admin/adm_dodel.php:87 +#, fuzzy +msgid "Yes, delete those accounts" +msgstr "Supprimer les comptes AlternC cochés" + +#: ../admin/adm_dodel.php:88 +#, fuzzy +msgid "No, don't delete those accounts" +msgstr "Voulez-vous vraiment supprimer ces comptes ?" + +#: ../admin/adm_doedit.php:77 +msgid "The member has been successfully edited" +msgstr "Le compte AlternC a été modifié avec succès" + +#: ../admin/adm_doms.php:40 ../admin/adm_panel.php:53 +msgid "Manage installed domains" +msgstr "Liste des domaines installés" + +#: ../admin/adm_doms.php:59 +msgid "" +"Here is the list of the domains installed on this server. You can remove a " +"domain if it does not exist or does not point to our server anymore. You can " +"also set the 'Lock' flag on a domain so that the user will not be able to " +"change any DNS parameter or delete this domain from his account." +msgstr "" +"Voici la liste des domaines installés sur ce serveur. Vous pouvez Supprimer " +"un domaine s'il n'existe plus, ou s'il ne pointe plus vers ce serveur. Vous " +"pouvez aussi 'Verrouiller' un domaine afin que l'utilisateur ne puisse plus " +"modifier les paramètres DNS de ce domaine ou l'effacer." + +#: ../admin/adm_doms.php:62 +msgid "" +"The domain OK column are green when the domain exists in the worldwide " +"registry and has a proper NS,MX and IP depending on its configuration. It is " +"red if we have serious doubts about its NS, MX or IP configuration. Contact " +"the user of this domain or a system administrator." +msgstr "" +"La colonne OK? est verte quand le domaine existe dans le registre DNS " +"mondial et que sa configuration IP, NS et MX est correcte. Il est rouge " +"lorsque le serveur a de sérieux doutes sur sa configuration NS, MX ou IP. " +"Vérifiez auprès du propriétaire de ce domaine, et si besoin contactez un " +"administrateur système." + +#: ../admin/adm_doms.php:65 +msgid "If you want to force the check of NS, MX, IP on domains, click the link" +msgstr "" +"Si vous voulez forcer la vérification des NS, MX et IP des domaines, " +"cliquez le lien" + +#: ../admin/adm_doms.php:65 +msgid "Show domain list with refreshed checked NS, MX, IP information" +msgstr "" +"Afficher la liste des domaines avec des informations NS, MX et IP à jour." + +#: ../admin/adm_doms.php:69 ../admin/adm_mxaccount.php:78 +#: ../admin/adm_slavedns.php:95 ../admin/adm_slavedns.php:140 +msgid "Action" +msgstr "Action" + +#: ../admin/adm_doms.php:69 ../admin/adm_doms.php:85 ../admin/adm_list.php:196 +#: ../admin/adm_list.php:221 ../admin/adm_list.php:250 +msgid "Connect as" +msgstr "Se connecter" + +#: ../admin/adm_doms.php:69 +msgid "Creator" +msgstr "Créateur" + +#: ../admin/adm_doms.php:69 +msgid "Domain" +msgstr "Domaine" + +#: ../admin/adm_doms.php:69 +msgid "OK?" +msgstr "OK ?" + +#: ../admin/adm_doms.php:69 ../admin/dom_edit.php:130 +msgid "Status" +msgstr "État" + +#: ../admin/adm_doms.php:76 +msgid "Locked Domain" +msgstr "Domaine verrouillé" + +#: ../admin/adm_doms.php:79 +msgid "Lock" +msgstr "Verrouiller" + +#: ../admin/adm_doms.php:79 +msgid "Unlock" +msgstr "Déverrouiller" + +#: ../admin/adm_doms_def_type.php:12 ../admin/adm_panel.php:66 +msgid "Manage defaults domains type" +msgstr "Gestion des types de domaines par défaut" + +#: ../admin/adm_doms_def_type.php:14 ../admin/adm_domstype.php:42 +msgid "" +"If you don't know what this page is about, don't touch anything, and read " +"AlternC documentation about domain types" +msgstr "" +"Si vous ne savez pas de quoi parle cette page, ne touchez à rien.et lisez la " +"documentation d'AlternC sur les types de domaines" + +#: ../admin/adm_doms_def_type.php:15 +msgid "" +"The Type column contains a type of available VirtualHost config on The " +"server." +msgstr "" +"La colonne Type contient la liste des Hôtes Virtuels disponibles dans la " +"configuration du serveur." + +#: ../admin/adm_doms_def_type.php:16 +msgid "" +"The Setting column contains the variables to be expanded in the defaults " +"configuration. Available values are: " +msgstr "" +"La colonne Paramètre contient la variable qui sera substituée dans la " +"configuration par défaut. Les valeurs possibles sont : " + +#: ../admin/adm_doms_def_type.php:18 +#, php-format +msgid "%%DOMAIN%% : the Domain name" +msgstr "%%DOMAIN%% : Le nom du domaine" + +#: ../admin/adm_doms_def_type.php:19 +#, php-format +msgid "%%TARGETDOM%%: The destination domain" +msgstr "%%TARGETDOM%% : Le domaine de destination" + +#: ../admin/adm_doms_def_type.php:20 +#, php-format +msgid "%%SUB%% : The subdomain name" +msgstr "%%SUB%% : Le nom du sous-domaine" + +#: ../admin/adm_doms_def_type.php:21 +#, php-format +msgid "%%DOMAINDIR%%: the domain directory on the file system" +msgstr "%%DOMAINDIR%% : Le répertoire du domaine dans le système de fichier" + +#: ../admin/adm_doms_def_type.php:38 +msgid "There was an error during the record." +msgstr "Une erreur est survenue pendant l'enregistrement." + +#: ../admin/adm_doms_def_type.php:40 ../admin/cron.php:14 +msgid "Save done." +msgstr "Sauvegarde effectuée." + +#: ../admin/adm_doms_def_type.php:48 +msgid "Activation" +msgstr "Activation" + +#: ../admin/adm_doms_def_type.php:48 +msgid "Concerned" +msgstr "Concernant " + +#: ../admin/adm_doms_def_type.php:48 +msgid "Sub" +msgstr "Sous" + +#: ../admin/adm_doms_def_type.php:48 +msgid "settings" +msgstr "paramètres" + +#: ../admin/adm_domstype.php:40 ../admin/adm_panel.php:67 +msgid "Manage domains type" +msgstr "Gestion des types de domaines" + +#: ../admin/adm_domstype.php:52 +msgid "Here is the list of domain types." +msgstr "Voici la liste des types de domaines." + +#: ../admin/adm_domstype.php:54 +msgid "Create a domain type" +msgstr "Création d'un type de domaine" + +#: ../admin/adm_domstype.php:60 +msgid "Target" +msgstr "Cible" + +#: ../admin/adm_domstype.php:61 ../admin/adm_domstypeedit.php:92 +msgid "Entry" +msgstr "Entrée" + +#: ../admin/adm_domstype.php:62 +msgid "Compatible with" +msgstr "Compatible avec" + +#: ../admin/adm_domstype.php:62 ../admin/adm_domstypeedit.php:96 +msgid "Enter comma-separated name of other types" +msgstr "Entrez la liste séparée par des virgules des autres types" + +#: ../admin/adm_domstype.php:63 +msgid "Enabled?" +msgstr "Actif ? " + +#: ../admin/adm_domstype.php:64 +msgid "Only DNS?" +msgstr "Ne créer que l'entrée DNS ?" + +#: ../admin/adm_domstype.php:65 +msgid "Need to be DNS?" +msgstr "Le domaine doit-il avoir nos DNS ?" + +#: ../admin/adm_domstype.php:66 +msgid "Advanced?" +msgstr "Est-ce une fonctionnalité avancée ?" + +#: ../admin/adm_domstype.php:67 ../admin/adm_domstypeedit.php:123 +msgid "Create tmp directory ?" +msgstr "Créer un répertoire temporaire ?" + +#: ../admin/adm_domstype.php:68 +msgid "create www directory ?" +msgstr "Créer un répertoire www ?" + +#: ../admin/adm_domstype.php:75 +msgid "Regenerate" +msgstr "Régénérer" + +#: ../admin/adm_domstypeedit.php:60 +msgid "Edit a domain type" +msgstr "Modification d'un type de domaine" + +#: ../admin/adm_domstypeedit.php:82 +msgid "Target type" +msgstr "Type de destination" + +#: ../admin/adm_domstypeedit.php:96 +msgid "Compatibility" +msgstr "Compatibilité" + +#: ../admin/adm_domstypeedit.php:100 ../admin/dom_edit.php:170 +#: ../admin/ftp_list.php:72 ../admin/ftp_list.php:82 +#: ../admin/mail_list.php:125 ../admin/mail_list.php:152 +msgid "Enabled" +msgstr "Actif" + +#: ../admin/adm_domstypeedit.php:110 +msgid "Do only a DNS entry" +msgstr "Crée seulement l'entrée DNS" + +#: ../admin/adm_domstypeedit.php:114 +msgid "Domain must have our DNS" +msgstr "Le domaine doit avoir nos DNS" + +#: ../admin/adm_domstypeedit.php:118 +msgid "Is it an advanced option?" +msgstr "Est-ce une option avancée ?" + +#: ../admin/adm_domstypeedit.php:128 +msgid "Create target directory ?" +msgstr "Créer le répertoire destination ?" + +#: ../admin/adm_domstypeedit.php:133 +msgid "Change this domain type" +msgstr "Modifier ce type de domaine" + +#: ../admin/adm_donosu.php:45 +msgid "This account is now a normal account" +msgstr "Ce compte est maintenant un compte normal" + +#: ../admin/adm_dorenew.php:53 +msgid "The member has been successfully renewed" +msgstr "Le compte AlternC a été renouvelé avec succès" + +#: ../admin/adm_dosu.php:45 +msgid "This account is now an administrator account" +msgstr "Ce compte est maintenant un compte administrateur" + +#: ../admin/adm_edit.php:57 +msgid "Member Edition" +msgstr "Modification d'un compte AlternC" + +#: ../admin/adm_edit.php:73 +msgid "Account Enabled?" +msgstr "Compte Actif ? " + +#: ../admin/adm_edit.php:76 +msgid "You cannot disable your own account." +msgstr "Vous ne pouvez pas désactiver votre propre compte !" + +#: ../admin/adm_edit.php:85 ../admin/adm_mxaccount.php:78 +#: ../admin/adm_mxaccount.php:95 ../admin/adm_slavedns.php:140 +#: ../admin/adm_slavedns.php:158 ../admin/cron.php:39 ../admin/ftp_edit.php:84 +#: ../admin/ftp_edit.php:92 ../admin/hta_adduser.php:58 +#: ../admin/hta_edit.php:102 ../admin/index.php:90 ../admin/mem_param.php:58 +#: ../admin/sql_getparam.php:74 ../admin/sql_users_add.php:63 +#: ../admin/sql_users_list.php:48 ../admin/sql_users_password.php:59 +msgid "Password" +msgstr "Mot de passe" + +#: ../admin/adm_edit.php:93 +#, fuzzy +msgid "Password change allowed?" +msgstr "Changer le mot de passe" + +#: ../admin/adm_edit.php:116 +msgid "Reset quotas to default?" +msgstr "Réinitialiser les quotas de ce compte ?" + +#: ../admin/adm_edit.php:119 +msgid "Period" +msgstr "Périodicité de facturation" + +#: ../admin/adm_edit.php:123 +msgid "Edit this account" +msgstr "Modifier ce compte" + +#: ../admin/adm_edit.php:137 +msgid "Renew for" +msgstr "Renouveler pour" + +#: ../admin/adm_edit.php:138 +msgid "period(s)" +msgstr "période(s)" + +#: ../admin/adm_edit.php:141 +msgid "Renew" +msgstr "Renouveler" + +#: ../admin/adm_edit.php:153 +msgid "This account is a super-admin account" +msgstr "Ce compte AlternC est un compte d'administrateur" + +#: ../admin/adm_edit.php:157 +msgid "" +"There is only one administrator account, you cannot turn this account back " +"to normal" +msgstr "" +"Il n'y a qu'un seul compte Administrateur, vous ne pouvez pas transformer ce " +"compte Administrateur en compte Normal" + +#: ../admin/adm_edit.php:160 +msgid "Turn this account back to normal" +msgstr "Transformer ce compte Administrateur en compte Normal" + +#: ../admin/adm_edit.php:163 +msgid "Make this account a super admin one" +msgstr "Transformer ce compte en compte Administrateur" + +#: ../admin/adm_edit.php:170 +#, php-format +msgid "Account created by %s" +msgstr "Compte créé par %s" + +#: ../admin/adm_email.php:43 ../admin/adm_panel.php:56 +msgid "Send an email to all members" +msgstr "Envoyer un mail à tous les membres" + +#: ../admin/adm_email.php:48 +msgid "The email was successfully sent" +msgstr "L'Email a été modifié avec succès" + +#: ../admin/adm_email.php:50 +msgid "There was an error" +msgstr "Une erreur est survenue" + +#: ../admin/adm_email.php:63 +msgid "From" +msgstr "De" + +#: ../admin/adm_email.php:67 +msgid "Subject" +msgstr "Sujet" + +#: ../admin/adm_email.php:71 ../admin/mem_param.php:59 +msgid "Mail" +msgstr "Email" + +#: ../admin/adm_email.php:75 +msgid "Send" +msgstr "Envoyer" + +#: ../admin/adm_list.php:70 +msgid "AlternC account list" +msgstr "Liste des comptes AlternC" + +#: ../admin/adm_list.php:77 +msgid "Minimal view" +msgstr "Affichage simplifié" + +#: ../admin/adm_list.php:81 +msgid "Complete view" +msgstr "Affichage détaillé" + +#: ../admin/adm_list.php:87 +msgid "Filters" +msgstr "" + +#: ../admin/adm_list.php:90 +#, fuzzy +msgid "Search for a Login" +msgstr "Recherche d'un répertoire" + +#: ../admin/adm_list.php:91 +#, fuzzy +msgid "Search for a Domain" +msgstr "Recherche d'un répertoire" + +#: ../admin/adm_list.php:92 ../admin/piwik_sitelist.php:170 +msgid "submit" +msgstr "" + +#: ../admin/adm_list.php:100 +msgid "List all AlternC accounts" +msgstr "Liste de tous les comptes AlternC" + +#: ../admin/adm_list.php:110 +msgid "Or only the accounts of:" +msgstr "Ou seulement les comptes de :" + +#: ../admin/adm_list.php:115 +msgid "List only my accounts" +msgstr "Lister seulement mes comptes" + +#: ../admin/adm_list.php:129 +#, php-format +msgid "%s accounts" +msgstr "%s comptes" + +#: ../admin/adm_list.php:129 +msgid "Here is the list of hosted AlternC accounts" +msgstr "Voici la liste des comptes AlternC hébergés" + +#: ../admin/adm_list.php:132 +msgid "Create a new AlternC account" +msgstr "Créer un nouveau compte AlternC" + +#: ../admin/adm_list.php:136 +msgid "No account defined for now" +msgstr "Aucun compte n'existe pour l'instant" + +#: ../admin/adm_list.php:149 ../admin/adm_list.php:227 +#: ../admin/adm_list.php:264 ../admin/ftp_list.php:101 +msgid "Delete checked accounts" +msgstr "Supprimer les comptes AlternC cochés" + +#: ../admin/adm_list.php:156 +msgid "Manager" +msgstr "Administrateur" + +#: ../admin/adm_list.php:157 +msgid "Created by" +msgstr "Créateur" + +#: ../admin/adm_list.php:158 +msgid "Created on" +msgstr "Créé le" + +#: ../admin/adm_list.php:160 +msgid "Last login" +msgstr "Dernière connexion" + +#: ../admin/adm_list.php:161 +msgid "Last ip" +msgstr "Dernière IP" + +#: ../admin/adm_list.php:162 +msgid "Fails" +msgstr "Échecs" + +#: ../admin/adm_list.php:163 ../admin/main.php:87 +msgid "Expiry" +msgstr "Expiration" + +#: ../admin/adm_list.php:181 +#, fuzzy +msgid "Send an email" +msgstr "Envoyer un fichier :" + +#: ../admin/adm_list.php:183 ../admin/mail_list.php:167 +#, php-format +msgid "%3$d-%2$d-%1$d" +msgstr "" + +#: ../admin/adm_list.php:192 +#, fuzzy +msgid "DB:" +msgstr "Bases" + +#: ../admin/adm_list.php:207 ../admin/dom_edit.php:171 +msgid "Disable" +msgstr "Désactiver" + +#: ../admin/adm_list.php:221 ../admin/adm_list.php:250 +msgid "C" +msgstr "C" + +#: ../admin/adm_list.php:222 ../admin/adm_list.php:251 +msgid "E" +msgstr "M" + +#: ../admin/adm_list.php:223 ../admin/adm_list.php:253 +msgid "Q" +msgstr "Q" + +#: ../admin/adm_list.php:255 +msgid "himself" +msgstr "" + +#: ../admin/adm_list.php:257 +#, fuzzy, php-format +msgid "Creator: %s" +msgstr "Créateur" + +#: ../admin/adm_login.php:49 ../admin/adm_login.php:56 +msgid "Your authentication information are incorrect" +msgstr "Vos informations d'identification sont incorrectes" + +#: ../admin/adm_login.php:62 +msgid "Your IP is incorrect." +msgstr "" + +#: ../admin/adm_login.php:118 +msgid "Member login" +msgstr "Nom d'utilisateur du compte AlternC" + +#: ../admin/adm_mxaccount.php:47 ../admin/adm_slavedns.php:51 +msgid "The requested account has been deleted. It is now denied." +msgstr "Le compte esclave a été effacé. Il est maintenant interdit." + +#: ../admin/adm_mxaccount.php:53 ../admin/adm_slavedns.php:57 +msgid "The requested account address has been created. It is now allowed." +msgstr "Le compte esclave a été créé. Il est maintenant autorisé." + +#: ../admin/adm_mxaccount.php:60 ../admin/adm_panel.php:64 +msgid "Manage allowed accounts for secondary mx" +msgstr "Gérer les comptes autorisés pour les mx secondaires" + +#: ../admin/adm_mxaccount.php:74 +msgid "" +"Here is the list of the allowed accounts for secondary mx management. You " +"can configure the alternc-secondarymx package on your secondary mx server " +"and give him the login/pass that will grant him access to your server's mx-" +"hosted domain list. " +msgstr "" +"Voici la liste des comptes ayant le droit de synchroniser la liste des " +"domaines dont on héberge le mail. Vous pouvez utiliser le paquet alternc-" +"secondarymx sur votre serveur mx secondaire en lui donnant le login/pass " +"pour lui donner accès à ce serveur." + +#: ../admin/adm_mxaccount.php:92 +msgid "" +"If you want to allow a new server to access your mx-hosted domain list, give " +"him an account." +msgstr "" +"Si vous voulez autoriser un compte à synchroniser la liste des domaines dont " +"on héberge le mail, créez-lui un compte." + +#: ../admin/adm_mxaccount.php:101 ../admin/adm_slavedns.php:163 +msgid "Add this account to the allowed list" +msgstr "Ajouter ce compte à la liste des autorisés." + +#: ../admin/adm_panel.php:40 ../class/m_admin.php:98 +msgid "Admin Control Panel" +msgstr "Panneau Administrateur" + +#: ../admin/adm_panel.php:51 ../admin/adm_tld.php:56 +#: ../admin/adm_tldadd.php:46 ../admin/adm_tldedit.php:52 +msgid "Manage allowed domains (TLD)" +msgstr "Gestion des TLD autorisés" + +#: ../admin/adm_panel.php:52 +msgid "Password Policies" +msgstr "Politiques de mot de passe" + +#: ../admin/adm_panel.php:55 +msgid "Manage IP whitelist" +msgstr "Gérer les listes blanches IP" + +#: ../admin/adm_panel.php:60 +msgid "Advanced features" +msgstr "Fonctionnalités avancées" + +#: ../admin/adm_panel.php:63 +msgid "Manage slave DNS" +msgstr "" + +#: ../admin/adm_panel.php:65 ../admin/adm_variables.php:47 +msgid "Configure AlternC variables" +msgstr "Configurer les variables d'AlternC" + +#: ../admin/adm_panel.php:68 +msgid "DNS and website having errors" +msgstr "Sites et DNS en erreur" + +#: ../admin/adm_panel.php:69 +#, fuzzy +msgid "Manage databases servers" +msgstr "Gérer les comptes AlternC" + +#: ../admin/adm_panel.php:70 +msgid "Account creation statistics" +msgstr "Statistiques de création des comptes" + +#: ../admin/adm_panel.php:95 +msgid "Click here to unlock the panel and allow user to login." +msgstr "" + +#: ../admin/adm_panel.php:97 +msgid "Are you sure you want to kick everyone?" +msgstr "" + +#: ../admin/adm_panel.php:97 +#, fuzzy +msgid "Click here to lock the panel and force logout of all the user." +msgstr "Cliquer ici pour créer un compte ftp dans ce répertoire." + +#: ../admin/adm_passpolicy.php:49 +msgid "Manage Password Policy" +msgstr "Gestion des politiques de mot de passe" + +#: ../admin/adm_passpolicy.php:63 ../admin/adm_passpolicy.php:78 +msgid "Policy not found" +msgstr "Politique non trouvée" + +#: ../admin/adm_passpolicy.php:67 +msgid "Policy changed" +msgstr "Politique de mot de passe modifiée" + +#: ../admin/adm_passpolicy.php:71 +msgid "Cannot edit the policy, an error occurred" +msgstr "" +"Impossible de modifier la politique de mot de passe, une erreur est apparue" + +#: ../admin/adm_passpolicy.php:82 +msgid "Please choose which policy you want to apply to this password kind:" +msgstr "" +"Merci de choisir la politique à appliquer à ce type de mot de passe :" + +#: ../admin/adm_passpolicy.php:90 +msgid "Minimum Password Size:" +msgstr "Taille minimale du mot de passe :" + +#: ../admin/adm_passpolicy.php:97 +msgid "Maximum Password Size:" +msgstr "Taille maximale du mot de passe :" + +#: ../admin/adm_passpolicy.php:104 +msgid "In how many classes of characters must be the password (at least):" +msgstr "" +"Dans combien de classes de caractères doit être ce mot de passe (au minimum)" +" :" + +#: ../admin/adm_passpolicy.php:111 +msgid "Do we allow the password to be like the login?" +msgstr "Autorise-t-on le mot de passe à ressembler au nom d'utilisateur ?" + +#: ../admin/adm_passpolicy.php:117 +msgid "Apply this password policy" +msgstr "Appliquer cette politique de mot de passe" + +#: ../admin/adm_passpolicy.php:118 +msgid "Cancel and go back to the policy list" +msgstr "Annuler et revenir à la liste des politiques de mots de passe" + +#: ../admin/adm_passpolicy.php:121 +msgid "" +"The classes of characters are :
1. Low-case letters (a-z)
2. " +"Upper-case letters (A-Z)
3. Figures (0-9)
4. Ascii symbols (!\"#$" +"%&'()*+,-./:;<=>?@[\\]^_`)
5. Non-Ascii symbols (accents...)" +msgstr "" +"Les classes de caractère sont :
1. Lettres minuscules (a-z)
2. " +"Lettres majuscules (A-Z)
3. Chiffres (0-9)
4. Caractères Ascii (!" +"\"#$%&'()*+,-./:;<=>?@[\\]^_`)
5. Caractères non-Ascii (accents...)" + +#: ../admin/adm_passpolicy.php:134 +msgid "" +"Here is the list of the password policies for each place a password may be " +"needed in AlternC's services. For each of those password kind, you can " +"choose which policy will be applied to passwords. A policy is a minimum and " +"maximum password size, and how many classes of characters must appear in the " +"password. You can also forbid (or not) to use the login or part of it as a " +"password." +msgstr "" +"Voici la liste de politiques de mot de passe pour chaque endroit où un mot " +"de passe est requis dans les service d'AlternC. Pour chaque type de mot de " +"passe, vous pouvez choisir quelle politique y sera appliquée. Une politique " +"consiste en une taille minimale et maximale pour le mot de passe, et combien " +"de classes de caractères différentes ce mot de passe doit contenir. Vous " +"pouvez aussi interdire (ou pas) que le mot de passe ressemble au nom " +"d'utilisateur." + +#: ../admin/adm_passpolicy.php:138 +msgid "Password Kind" +msgstr "Type de mot de passe" + +#: ../admin/adm_passpolicy.php:138 +msgid "Password Policy" +msgstr "Politique de mot de passe" + +#: ../admin/adm_passpolicy.php:140 +msgid "Min Size" +msgstr "Taille minimale" + +#: ../admin/adm_passpolicy.php:141 +msgid "Max Size" +msgstr "Taille maximale" + +#: ../admin/adm_passpolicy.php:142 +msgid "Complexity" +msgstr "Complexité" + +#: ../admin/adm_passpolicy.php:143 +msgid "Allow Password=Login?" +msgstr "Autorise Mot de passe=Login ?" + +#: ../admin/adm_quotadoedit.php:52 +msgid "The quotas has been successfully edited" +msgstr "Les quotas ont été modifiés avec succès" + +#: ../admin/adm_quotaedit.php:55 +msgid "Editing the quotas of a member" +msgstr "Modification des quotas d'un compte AlternC" + +#: ../admin/adm_quotaedit.php:69 ../admin/quota_show.php:46 +msgid "Quota" +msgstr "Quotas" + +#: ../admin/adm_quotaedit.php:69 ../admin/quota_show.php:46 +#: ../admin/quotas_oneuser.php:87 ../admin/quotas_users.php:154 +#: ../admin/quotas_users.php:178 +msgid "Total" +msgstr "Total" + +#: ../admin/adm_quotaedit.php:69 ../admin/quota_show.php:46 +msgid "Used" +msgstr "Utilisé" + +#: ../admin/adm_quotaedit.php:87 +msgid "Edit the quotas" +msgstr "Modifier les quotas" + +#: ../admin/adm_slavedns.php:65 +msgid "" +"The requested ip address has been deleted. It will be denied in one hour." +msgstr "L'adresse ip a été supprimée. L'accès sera coupé sous une heure." + +#: ../admin/adm_slavedns.php:71 +msgid "" +"The requested ip address has been added to the list. It will be allowed in " +"one hour." +msgstr "L'adresse ip a été ajoutée. Son accès sera possible dans une heure." + +#: ../admin/adm_slavedns.php:83 +msgid "Manage allowed ip for slave zone transfers" +msgstr "Gérer les ip autorisés à faire des transferts de zone esclave DNS" + +#: ../admin/adm_slavedns.php:91 +msgid "" +"Here is the list of the allowed ip or ip class for slave dns zone transfer " +"requests (AXFR). You must add the ip address of all the slave DNS you have " +"so that those slaves will be allowed to transfer the zone files. There is " +"also some defaults ip from DNS checks made by some third-party technical " +"offices such as afnic (for .fr domains)" +msgstr "" +"Voici la liste des ip ou classes d'ip autorisées à effectuer des transferts " +"de zone DNS (AXFR). Vous devez ajouter ici les adresses ip des esclaves DNS " +"afin que ceux-ci puissent synchroniser leurs zones. Il y a aussi quelques ip " +"par défaut correspondants à des organismes officiels ou des sociétés comme " +"l'Afnic (pour les .fr) ou Gandi" + +#: ../admin/adm_slavedns.php:95 ../admin/adm_slavedns.php:114 +msgid "IP Address" +msgstr "Adresse IP" + +#: ../admin/adm_slavedns.php:110 +msgid "" +"If you want to allow an ip address or class to connect to your dns server, " +"enter it here. Choose 32 as a prefix for single ip address." +msgstr "" +"Si vous voulez autoriser une adresse ip ou une classe d'adresses ip à se " +"connecter à votre serveur DNS, entrez-la ici. Choisissez 32 comme préfixe " +"s'il s'agit d'une adresse ip seule." + +#: ../admin/adm_slavedns.php:114 +msgid "Prefix" +msgstr "Préfixe" + +#: ../admin/adm_slavedns.php:120 +msgid "Add this ip to the slave list" +msgstr "Ajouter cette adresse/class à la liste des esclaves DNS." + +#: ../admin/adm_slavedns.php:129 +msgid "Manage allowed accounts for slave zone transfers" +msgstr "Gérer les comptes autorisés pour les transferts de zone esclave DNS" + +#: ../admin/adm_slavedns.php:137 +msgid "" +"Here is the list of the allowed accounts for slave dns synchronization. You " +"can configure the alternc-slavedns package on your slave server and give him " +"the login/pass that will grant him access to your server's domain list. " +msgstr "" +"Voici la liste des comptes ayant le droit de synchroniser la liste des " +"domaines hébergés. Vous pouvez utiliser le paquet alternc-slavedns sur votre " +"serveur esclave en lui donnant le login/pass pour lui donner accès à ce " +"serveur." + +#: ../admin/adm_slavedns.php:154 +msgid "" +"If you want to allow a new server to access your domain list, give him an " +"account." +msgstr "" +"Si vous voulez autoriser un compte à synchroniser la liste des domaines, " +"créez-lui un compte." + +#: ../admin/adm_slavedns.php:194 +msgid "Need open DNS Slave servers?" +msgstr "" + +#: ../admin/adm_slavedns.php:196 +msgid "We offer free of charge DNS servers for alternc users." +msgstr "" + +#: ../admin/adm_slavedns.php:197 +msgid "How does it work?" +msgstr "" + +#: ../admin/adm_slavedns.php:199 +#, php-format +msgid "" +"Give access to the alternc.net servers. Follow the " +"instructions on this page. They will help " +"you to configure this page and configure your alternc.net account." +msgstr "" + +#: ../admin/adm_slavedns.php:200 +#, php-format +msgid "" +"Subscribe to alternc.net. Go to the alternc.net site to " +"use the DNS servers provided for free by the AlternC association and enter " +"the required informations for each server you want to connect to the service." +msgstr "" + +#: ../admin/adm_slavedns.php:203 +msgid "" +"The alternc.net servers will take care of transfering and distributing to " +"the world your domains zones." +msgstr "" + +#: ../admin/adm_tld.php:47 +msgid "Some TLD cannot be deleted..." +msgstr "Des TLD ne peuvent pas être effacés..." + +#: ../admin/adm_tld.php:50 +msgid "The requested TLD has been deleted" +msgstr "Les TLD ont été effacés avec succès" + +#: ../admin/adm_tld.php:68 +msgid "" +"Here is the list of the TLD allowed on this server. Each TLD can be allowed " +"or denied after some checks (whois, ns, domain exists...)" +msgstr "" +"Voici la liste des TLD autorisés sur le serveur. Chaque TLD peut être " +"autorisé ou interdit selon certains critères (whois, ns, domaine existe...)" + +#: ../admin/adm_tld.php:70 ../admin/adm_tld.php:91 ../admin/adm_tldadd.php:56 +#: ../admin/adm_tldadd.php:70 +msgid "Add a new TLD" +msgstr "Créer un nouveau TLD" + +#: ../admin/adm_tld.php:73 ../admin/adm_tldadd.php:66 +#: ../admin/adm_tldedit.php:65 +msgid "Allowed Mode" +msgstr "Contrôle effectué" + +#: ../admin/adm_tld.php:73 ../admin/adm_tldadd.php:65 +#: ../admin/adm_tldedit.php:64 +msgid "TLD" +msgstr "TLD" + +#: ../admin/adm_tld.php:87 +msgid "Delete the checked TLD" +msgstr "Effacer les TLD cochés" + +#: ../admin/adm_tldadd.php:58 +msgid "" +"Enter the new TLD (without the first dot) and choose what check should be " +"done." +msgstr "" +"Entrez le nouveau TLD (sans le point initial) et choisissez quel contrôle " +"doit être effectué." + +#: ../admin/adm_tldadd.php:59 +msgid "" +"Warning : only some final tld are known in the whois function of AlternC, " +"please check m_dom.php accordingly." +msgstr "" +"Attention : Seuls certains tld sont connus dans la fonction whois d'AlternC, " +"merci de vérifier le fichier m_dom.php." + +#: ../admin/adm_tlddoadd.php:49 +msgid "The TLD has been successfully added" +msgstr "Le TLD a été ajouté avec succès" + +#: ../admin/adm_tlddoedit.php:48 +msgid "The TLD has been successfully edited" +msgstr "Le TLD a été modifié avec succès" + +#: ../admin/adm_tldedit.php:60 +msgid "Edit a TLD" +msgstr "Modification d'un TLD" + +#: ../admin/adm_tldedit.php:69 +msgid "Edit this TLD" +msgstr "Modifier ce TLD" + +#: ../admin/adm_update_domains.php:40 +msgid "Missing INOTIFY_UPDATE_DOMAIN var in /etc/alternc/local.sh . Fix it!" +msgstr "" + +#: ../admin/adm_variables.php:52 +msgid "Here are the internal AlternC variables that are currently being used." +msgstr "Voici les variables internes de configurables dans AlternC." + +#: ../admin/adm_variables.php:57 +msgid "Comment" +msgstr "Commentaire" + +#: ../admin/adm_variables.php:57 +msgid "Names" +msgstr "Noms" + +#: ../admin/adm_variables.php:69 +msgid "Save variables" +msgstr "Sauver la configuration" + +#: ../admin/bro_editor.php:54 ../admin/bro_editor.php:63 +#: ../admin/bro_main.php:355 ../admin/bro_main.php:395 +#, php-format +msgid "%3$d-%2$d-%1$d %4$d:%5$d" +msgstr "" + +#: ../admin/bro_editor.php:54 ../admin/bro_editor.php:63 +#, php-format +msgid "Your file %s has been saved" +msgstr "Votre fichier %s a été enregistré" + +#: ../admin/bro_editor.php:74 +msgid "File editing" +msgstr "Edition de fichier" + +#: ../admin/bro_editor.php:80 +msgid "This file is empty" +msgstr "" + +#: ../admin/bro_editor.php:90 +msgid "Save & Quit" +msgstr "Enregistrer et Fermer" + +#: ../admin/bro_editor.php:91 +msgid "Quit" +msgstr "Fermer" + +#: ../admin/bro_main.php:91 +#, php-format +msgid "Deleting files and/or directories" +msgstr "Effacer des fichiers ou des répertoires" + +#: ../admin/bro_main.php:96 +msgid "WARNING: Confirm the deletion of this files" +msgstr "ATTENTION : Confirmez la suppression de ces fichiers" + +#: ../admin/bro_main.php:105 +#, fuzzy +msgid "Yes, delete those files/folders" +msgstr "Supprimer les comptes AlternC cochés" + +#: ../admin/bro_main.php:106 +msgid "No, don't delete those files/folders" +msgstr "" + +#: ../admin/bro_main.php:144 +msgid "extracting..." +msgstr "extraction..." + +#: ../admin/bro_main.php:148 +msgid "failed" +msgstr "échec" + +#: ../admin/bro_main.php:151 +msgid "done" +msgstr "terminé" + +#: ../admin/bro_main.php:156 ../class/m_bro.php:76 +msgid "File browser" +msgstr "Gestionnaire de fichiers" + +#: ../admin/bro_main.php:163 +msgid "Path" +msgstr "Répertoire courant" + +#: ../admin/bro_main.php:185 +msgid "Send one file:" +msgstr "Envoyer un fichier :" + +#: ../admin/bro_main.php:189 +msgid "Send this file" +msgstr "Envoyer ce fichier" + +#: ../admin/bro_main.php:190 +#, php-format +msgid "Warning: max size: %s" +msgstr "" + +#: ../admin/bro_main.php:197 +msgid "New file or folder:" +msgstr "Créer un fichier ou un répertoire :" + +#: ../admin/bro_main.php:202 ../admin/piwik_sitelist.php:86 +#: ../admin/piwik_userlist.php:44 ../admin/piwik_userlist.php:56 +msgid "Create" +msgstr "Créer" + +#: ../admin/bro_main.php:204 ../admin/bro_main.php:244 +msgid "File" +msgstr "Fichier" + +#: ../admin/bro_main.php:205 ../admin/bro_main.php:397 +#: ../admin/ftp_edit.php:75 ../admin/ftp_list.php:72 ../admin/hta_add.php:55 +#: ../admin/hta_adduser.php:50 ../admin/hta_edit.php:94 +#: ../admin/hta_edituser.php:51 ../admin/hta_list.php:68 +msgid "Folder" +msgstr "Répertoire" + +#: ../admin/bro_main.php:222 ../admin/bro_main.php:228 +#: ../admin/bro_main.php:286 +msgid "Rename" +msgstr "Renommer" + +#: ../admin/bro_main.php:238 ../admin/bro_main.php:244 +#: ../admin/bro_main.php:287 +msgid "Permissions" +msgstr "Permissions" + +#: ../admin/bro_main.php:258 +msgid "write" +msgstr "écriture" + +#: ../admin/bro_main.php:266 +msgid "Change permissions" +msgstr "Modifier les permissions" + +#: ../admin/bro_main.php:289 +msgid "Copy" +msgstr "Copier Vers" + +#: ../admin/bro_main.php:290 +msgid "Move" +msgstr "Déplacer" + +#: ../admin/bro_main.php:291 +msgid "To" +msgstr "Vers" + +#: ../admin/bro_main.php:302 +msgid "Please select a destination folder" +msgstr "" + +#: ../admin/bro_main.php:328 +msgid "Filename" +msgstr "Nom du fichier" + +#: ../admin/bro_main.php:329 ../admin/logs_list.php:53 +#: ../admin/sql_list.php:54 +msgid "Size" +msgstr "Taille" + +#: ../admin/bro_main.php:330 +msgid "Last modification" +msgstr "Dernière modification" + +#: ../admin/bro_main.php:332 +msgid "File Type" +msgstr "Type de fichier" + +#: ../admin/bro_main.php:361 ../admin/bro_main.php:542 +#: ../admin/dom_edit.php:121 +msgid "View" +msgstr "Voir" + +#: ../admin/bro_main.php:368 +msgid "Extract" +msgstr "Extraire" + +#: ../admin/bro_main.php:374 ../admin/bro_main.php:376 +#, fuzzy +msgid "Restore SQL" +msgstr "Restauration" + +#: ../admin/bro_main.php:376 +#, fuzzy +msgid "In which database to you want to restore this dump?" +msgstr "Où voulez-vous stocker les sauvegardes ?" + +#: ../admin/bro_main.php:381 +#, fuzzy +msgid "Restore it" +msgstr "Restauration" + +#: ../admin/bro_main.php:422 ../admin/bro_main.php:450 +#: ../admin/bro_main.php:485 ../admin/bro_main.php:513 +msgid "V" +msgstr "V" + +#: ../admin/bro_main.php:568 +msgid "No files in this folder" +msgstr "Aucun fichier dans ce répertoire" + +#: ../admin/bro_main.php:578 +msgid "(slow)" +msgstr "(lent)" + +#: ../admin/bro_main.php:578 +msgid "Show size of directories" +msgstr "Afficher la taille des répertoires" + +#: ../admin/bro_main.php:582 +msgid "Edit this folder's protection" +msgstr "Modifier la protection de ce répertoire" + +#: ../admin/bro_main.php:585 ../admin/hta_add.php:62 +msgid "Protect this folder" +msgstr "Protéger ce répertoire" + +#: ../admin/bro_main.php:587 +msgid "with a login and a password" +msgstr "utilisant un nom d'utilisateur et un mot de passe" + +#: ../admin/bro_main.php:590 +msgid "Download this folder" +msgstr "Télécharger ce répertoire" + +#: ../admin/bro_main.php:592 +#, php-format +msgid "as a %s file" +msgstr "comme fichier %s" + +#: ../admin/bro_main.php:599 +msgid "Edit the ftp account" +msgstr "Modifier le compte FTP" + +#: ../admin/bro_main.php:600 +msgid "that exists in this folder" +msgstr "qui existe dans ce répertoire" + +#: ../admin/bro_main.php:606 +msgid "Create an ftp account in this folder" +msgstr "Créer un compte FTP dans ce répertoire" + +#: ../admin/bro_main.php:615 +msgid "Configure the file editor" +msgstr "Configurer le gestionnaire de fichiers" + +#: ../admin/bro_pref.php:49 +msgid "Your preferences have been updated." +msgstr "Vos préférences ont été mises à jour." + +#: ../admin/bro_pref.php:59 +msgid "File browser preferences" +msgstr "Préférences du gestionnaire de fichiers" + +#: ../admin/bro_pref.php:66 +msgid "Horizontal window size" +msgstr "Taille horizontale de la fenêtre" + +#: ../admin/bro_pref.php:74 +msgid "Vertical window size" +msgstr "Taille verticale de la fenêtre" + +#: ../admin/bro_pref.php:82 +msgid "File editor font name" +msgstr "Police de caractères de l'éditeur de fichiers" + +#: ../admin/bro_pref.php:90 +msgid "File editor font size" +msgstr "Taille de la police de l'éditeur de fichiers" + +#: ../admin/bro_pref.php:98 +msgid "File list view" +msgstr "Mode d'affichage des fichiers" + +#: ../admin/bro_pref.php:106 +msgid "Downloading file format" +msgstr "Format du téléchargement du site ? " + +#: ../admin/bro_pref.php:114 +msgid "What to do after creating a file" +msgstr "Que faire après la création d'un fichier" + +#: ../admin/bro_pref.php:122 +msgid "Show icons?" +msgstr "Afficher les icones ?" + +#: ../admin/bro_pref.php:130 +msgid "Show file types?" +msgstr "Affichage les types de fichier ?" + +#: ../admin/bro_pref.php:138 +msgid "Remember last visited directory?" +msgstr "Revenir au dernier répertoire visité ?" + +#: ../admin/bro_pref.php:149 +msgid "Change my settings" +msgstr "Modifier mes préférences" + +#: ../admin/browseforfolder.php:125 ../admin/browseforfolder2.php:120 +msgid "Searching for a folder" +msgstr "Recherche d'un répertoire" + +#: ../admin/browseforfolder.php:131 ../admin/browseforfolder2.php:126 +msgid "Error, cannot find this folder" +msgstr "Erreur, impossible de trouver ce répertoire" + +#: ../admin/browseforfolder.php:133 ../admin/browseforfolder2.php:128 +msgid "Back to the root folder" +msgstr "Retour au répertoire racine" + +#: ../admin/browseforfolder.php:145 ../admin/browseforfolder2.php:141 +msgid "Select" +msgstr "Sélectionner" + +#: ../admin/cron.php:21 ../class/m_cron.php:72 ../class/m_cron.php:181 +msgid "Scheduled tasks" +msgstr "Tâches planifiées" + +#: ../admin/cron.php:36 +msgid "URL" +msgstr "URL" + +#: ../admin/cron.php:37 +msgid "Schedule" +msgstr "Planification" + +#: ../admin/cron.php:38 ../admin/hta_edituser.php:55 +#: ../admin/sql_users_list.php:48 +msgid "User" +msgstr "Utilisateur" + +#: ../admin/cron.php:40 +msgid "Email report" +msgstr "Rapport par mail" + +#: ../admin/cron.php:57 +msgid "Called URL" +msgstr "URL appellée" + +#: ../admin/cron.php:60 +msgid "Period:" +msgstr "Périodicité :" + +#: ../admin/cron.php:72 +msgid "Next execution: " +msgstr "Prochaine exécution :" + +#: ../admin/cron.php:75 +#, fuzzy +msgid "HTTP user (optional)" +msgstr "Utilisateur HTTP (facultatif)" + +#: ../admin/cron.php:76 +#, fuzzy +msgid "HTTP password (optional)" +msgstr "Mot de passe HTTP (facultatif)" + +#: ../admin/cron.php:77 +#, fuzzy +msgid "Mail address (optional)" +msgstr "Adresses email (pour les rapports)" + +#: ../admin/cron.php:81 +msgid "Apply the modifications" +msgstr "Appliquer les modifications" + +#: ../admin/dom_add.php:45 +msgid "Domain hosting" +msgstr "Hébergement de domaine" + +#: ../admin/dom_add.php:49 +msgid "Contact your administrator for more information." +msgstr "Contactez nous pour plus d'information." + +#: ../admin/dom_add.php:49 +msgid "You cannot add any new domain, your quota is over." +msgstr "Vous ne pouvez plus héberger de domaine, votre quota est atteint." + +#: ../admin/dom_add.php:57 +#, fuzzy +msgid "Advanced import" +msgstr "Est-ce une fonctionnalité avancée ?" + +#: ../admin/dom_add.php:60 +msgid "host my dns here" +msgstr "Héberger le DNS sur le serveur" + +#: ../admin/dom_add.php:68 +msgid "" +"Do you want to point this domain to another domain already installed in your " +"account?" +msgstr "" +"Voulez-vous pointer ce domaine sur un autre déjà installé sur votre " +"compte ?" + +#: ../admin/dom_add.php:71 +msgid "No: This domain will have its own folder." +msgstr "Non : ce domaine aura son propre répertoire." + +#: ../admin/dom_add.php:73 +msgid "Yes, redirect this new domain to this one:" +msgstr "Oui, redirigez ce nouveau domaine vers ce domaine existant :" + +#: ../admin/dom_add.php:74 +msgid "-- Choose a domain --" +msgstr "-- Choisir un nom de domaine --" + +#: ../admin/dom_add.php:87 +msgid "Add this domain" +msgstr "Héberger ce nouveau domaine" + +#: ../admin/dom_add.php:91 +msgid "" +"If you don't want to host in our server the DNS of your domain, don't check " +"the box 'host my dns here'. If you don't know what it mean, leave it checked." +msgstr "" +"Si vous ne souhaitez pas que nous hébergions le DNS du domaine, décochez la " +"case 'Héberger le DNS sur le serveur'. Si vous ne comprenez pas, laissez la " +"case cochée." + +#: ../admin/dom_add.php:96 ../admin/dom_doadd.php:60 +msgid "Whois result on the domain" +msgstr "Résultat du Whois sur le domaine" + +#: ../admin/dom_dnsdump.php:9 +msgid "Error: no domain" +msgstr "" + +#: ../admin/dom_doadd.php:52 ../class/m_dom.php:104 +msgid "Add a domain" +msgstr "Héberger un domaine" + +#: ../admin/dom_doadd.php:54 +#, php-format +msgid "Your new domain %s has been successfully installed" +msgstr "Votre nouveau domaine %s a été installé avec succès" + +#: ../admin/dom_doadd.php:55 ../admin/dom_dodel.php:56 +#: ../admin/dom_dodel.php:86 ../admin/dom_editdns.php:62 +#: ../admin/dom_import.php:87 ../admin/dom_subdodel.php:79 +#: ../admin/hta_doedituser.php:62 +msgid "Click here to continue" +msgstr "Cliquez ici pour continuer" + +#: ../admin/dom_dodel.php:54 +msgid "Deletion have been successfully cancelled" +msgstr "La suppression a été annulée avec succès." + +#: ../admin/dom_dodel.php:64 ../admin/dom_dodel.php:67 +#, php-format +msgid "Confirm the deletion of domain %s" +msgstr "Confirmation d'effacement du domaine %s" + +#: ../admin/dom_dodel.php:67 ../admin/sql_del.php:75 +#: ../admin/sql_users_del.php:61 +msgid "WARNING" +msgstr "ATTENTION" + +#: ../admin/dom_dodel.php:69 +msgid "This will delete the related sub-domains too." +msgstr "Ceci va effacer tous les mails et les sous-domaines correspondants." + +#: ../admin/dom_dodel.php:74 +#, fuzzy +msgid "Yes, delete this domain name" +msgstr "Cacher les domaines" + +#: ../admin/dom_dodel.php:75 +#, fuzzy +msgid "No, don't delete this domain name" +msgstr "Cacher les domaines" + +#: ../admin/dom_dodel.php:81 +#, php-format +msgid "Domain %s deleted" +msgstr "Domaine %s effacé" + +#: ../admin/dom_dodel.php:85 +#, php-format +msgid "The domain %s has been successfully deleted." +msgstr "Le domaine %s a été effacé avec succès." + +#: ../admin/dom_edit.inc.php:40 +msgid "Edit a subdomain:" +msgstr "Modification d'un sous-domaine : " + +#: ../admin/dom_edit.inc.php:42 +msgid "Create a subdomain:" +msgstr "Création d'un sous-domaine : " + +#: ../admin/dom_edit.inc.php:63 +msgid "Show advanced options" +msgstr "Afficher les options avancées" + +#: ../admin/dom_edit.inc.php:64 +msgid "Hide advanced options" +msgstr "Cacher les options avancées" + +#: ../admin/dom_edit.inc.php:88 +msgid "(enter an URL here)" +msgstr "(entrez une URL ici)" + +#: ../admin/dom_edit.inc.php:92 +msgid "(enter an IPv4 address, for example 192.168.1.2)" +msgstr "(entrez une adresse IPv4, par exemple 192.168.1.2)" + +#: ../admin/dom_edit.inc.php:96 +msgid "(enter an IPv6 address, for example 2001:0910::0)" +msgstr "(entrez une adresse IPv6, par exemple 2001:0910::0)" + +#: ../admin/dom_edit.inc.php:100 +#, fuzzy +msgid "(enter a TXT content for this domain)" +msgstr "(entrez une information TXT pour le domaine)" + +#: ../admin/dom_edit.inc.php:104 +msgid "(enter a domain name or subdomain)" +msgstr "(entrez un domaine ou sous-domaine)" + +#: ../admin/dom_edit.inc.php:114 +msgid "Edit this subdomain" +msgstr "Modifier ce sous-domaine" + +#: ../admin/dom_edit.inc.php:116 +msgid "Add this subdomain" +msgstr "Ajouter ce sous-domaine" + +#: ../admin/dom_edit.inc.php:135 +#, fuzzy +msgid "Missing value for this sub-domain" +msgstr "Ajout d'un mail sur le domaine %s" + +#: ../admin/dom_edit.inc.php:141 +msgid "Please select a type for this sub-domain" +msgstr "" + +#: ../admin/dom_edit.php:80 +msgid "" +"Are you sure you want to do this? This will DELETE ALL the mailboxes, " +"messages and aliases on this domain ?" +msgstr "" + +#: ../admin/dom_edit.php:91 +#, fuzzy, php-format +msgid "Manage %s" +msgstr "Administrateur" + +#: ../admin/dom_edit.php:96 +msgid "This domain have some DNS change pending. Please wait." +msgstr "Ce domaine a des modifications DNS en attente, merci de patienter." + +#: ../admin/dom_edit.php:99 +#, php-format +msgid "You requested deletion of domain %s." +msgstr "Vous avez demandé la suppression du domaine %s" + +#: ../admin/dom_edit.php:117 +#, fuzzy +msgid "Edit subdomains" +msgstr "Modification d'un sous-domaine : " + +#: ../admin/dom_edit.php:118 +#, fuzzy +msgid "Add subdomains" +msgstr "Ajouter un sous-domaine" + +#: ../admin/dom_edit.php:119 ../class/m_mem.php:63 +msgid "Settings" +msgstr "Configuration" + +#: ../admin/dom_edit.php:128 +#, php-format +msgid "Editing subdomains of %s" +msgstr "Edition des sous-domaines de %s" + +#: ../admin/dom_edit.php:130 +msgid "Subdomain" +msgstr "Sous-domaine" + +#: ../admin/dom_edit.php:153 +msgid "ERROR, please check your server setup" +msgstr "" + +#: ../admin/dom_edit.php:160 ../admin/ftp_list.php:94 +#, fuzzy +msgid "Directory not found" +msgstr "Politique non trouvée" + +#: ../admin/dom_edit.php:174 +msgid "Activation pending" +msgstr "Activation en cours" + +#: ../admin/dom_edit.php:177 ../admin/ftp_list.php:84 +#: ../admin/mail_list.php:144 ../admin/mail_list.php:154 +msgid "Disabled" +msgstr "Désactivé" + +#: ../admin/dom_edit.php:178 +msgid "Enable" +msgstr "Activer" + +#: ../admin/dom_edit.php:181 +msgid "Desactivation pending" +msgstr "Désactivation en attente" + +#: ../admin/dom_edit.php:189 +msgid "Update pending" +msgstr "Mise à jour en attente" + +#: ../admin/dom_edit.php:192 +msgid "Deletion pending" +msgstr "Suppression en attente" + +#: ../admin/dom_edit.php:206 +#, fuzzy, php-format +msgid "Add a subdomains to %s" +msgstr "Ajouter un sous-domaine" + +#: ../admin/dom_edit.php:223 +#, fuzzy +msgid "DNS & Email parameters" +msgstr "Paramètres DNS & Email" + +#: ../admin/dom_edit.php:228 +msgid "Manage the DNS on the server ?" +msgstr "Gère-t-on le DNS de ce domaine ?" + +#: ../admin/dom_edit.php:239 +msgid "Define TTL for the zone records" +msgstr "" + +#: ../admin/dom_edit.php:241 +msgid "" +"Warning: a low TTL can be problematic. It is recommended not to use a lower " +"TTL than 3600 seconds." +msgstr "" + +#: ../admin/dom_edit.php:241 +msgid "seconds" +msgstr "" + +#: ../admin/dom_edit.php:250 +msgid "Manage the Emails Addresses of this domain on the server?" +msgstr "Gère-t-on les Adresses Emails de ce domaine sur le serveur ?" + +#: ../admin/dom_edit.php:258 +msgid "" +"Warning: If you set this to 'no', all your email accounts and aliases on " +"this domain will be immediately deleted." +msgstr "" +"Attention: Si vous mettez 'non' ici, toutes les adresses emails de ce " +"domaine et les messages qu'elles contiennent seront immédiatement détruits." + +#: ../admin/dom_edit.php:259 +msgid "Submit the changes" +msgstr "Valider les changements" + +#: ../admin/dom_edit.php:267 +msgid "" +"Here is the actual DNS zone running on the AlternC server. If you just made " +"some changes, you have to wait for it." +msgstr "" + +#: ../admin/dom_edit.php:271 +#, fuzzy +msgid "Click here to view the dump" +msgstr "Cliquez ici pour continuer" + +#: ../admin/dom_edit.php:279 +msgid "Domain removal" +msgstr "Suppression du nom de domaine" + +#: ../admin/dom_edit.php:280 +#, php-format +msgid "" +"If you want to destroy the domain %s, click on the button below. Warning: " +"this also deletes all FTP accounts, email, mailing lists associated with the " +"domain and subdomains." +msgstr "" + +#: ../admin/dom_edit.php:283 +#, php-format +msgid "Delete %s from this server" +msgstr "Effacer le domaine %s de ce serveur" + +#: ../admin/dom_editdns.php:52 +#, php-format +msgid "Editing domain %s" +msgstr "Edition du domaine %s" + +# ,php-format +#: ../admin/dom_editdns.php:57 +#, php-format +msgid "The domain %s has been changed." +msgstr "Le domaine %s a été modifié avec succès." + +#: ../admin/dom_editdns.php:60 ../admin/dom_subdodel.php:75 +msgid "The modifications will take effect at %time. Server time is %now." +msgstr "" +"Les modifications seront prises en comptes à %time. L'heure du serveur est " +"%now." + +#: ../admin/dom_import.php:43 +msgid "Import a DNS zone" +msgstr "" + +#: ../admin/dom_import.php:55 +#, fuzzy +msgid "The domain field seems to be empty" +msgstr "L'adresse email %s n'existe pas" + +#: ../admin/dom_import.php:57 +msgid "" +"Here is my proposition. Modify your zone until my proposition seems good to " +"you" +msgstr "" + +#: ../admin/dom_import.php:59 +#, fuzzy, php-format +msgid "Working on %s" +msgstr "Edition du domaine %s" + +#: ../admin/dom_import.php:61 +msgid "Generated entry" +msgstr "" + +#: ../admin/dom_import.php:61 +msgid "Result" +msgstr "" + +#: ../admin/dom_import.php:61 +msgid "Zone" +msgstr "" + +#: ../admin/dom_import.php:74 +msgid "ERROR" +msgstr "" + +#: ../admin/dom_import.php:74 ../admin/mem_cm.php:56 +msgid "OK" +msgstr "OK" + +#: ../admin/dom_import.php:96 +#, fuzzy +msgid "Enter the domain name you want to import" +msgstr "L'adresse email %s n'existe pas" + +#: ../admin/dom_import.php:104 +#, fuzzy +msgid "Do you want to detect the redirection?" +msgstr "Voulez-vous vraiment supprimer ces comptes ?" + +#: ../admin/dom_import.php:115 +msgid "Paste your existing DNS zone here." +msgstr "" + +#: ../admin/dom_import.php:117 +msgid "If you don't know what it is, don't submit this form." +msgstr "" + +#: ../admin/dom_import.php:122 +#, fuzzy +msgid "Do you want to import the zone as it?" +msgstr "Voulez-vous vraiment supprimer ces comptes ?" + +#: ../admin/dom_import.php:126 +#, fuzzy +msgid "Submit" +msgstr "Permissions" + +#: ../admin/dom_subdel.php:51 +#, php-format +msgid "Deleting subdomain %s" +msgstr "Suppression du sous-domaine %s" + +#: ../admin/dom_subdel.php:67 +msgid "WARNING : Confirm the deletion of the subdomain" +msgstr "ATTENTION : Etes-vous sur de vouloir supprimer le sous-domaine suivant" + +#: ../admin/dom_subdodel.php:64 +#, php-format +msgid "Deleting the subdomain %s:" +msgstr "Effacement du sous-domaine %s : " + +#: ../admin/dom_subdoedit.php:72 ../admin/dom_substatus.php:29 +msgid "The modifications will take effect at %time. Server time is %now." +msgstr "" +"Les modifications seront prises en comptes à %time. L'heure du serveur est " +"%now." + +#: ../admin/dom_subedit.php:56 +msgid "Editing subdomain" +msgstr "Edition du sous-domaine" + +#: ../admin/ftp_del.php:60 +#, php-format +msgid "The ftp account %s has been successfully deleted" +msgstr "Le compte ftp %s a été supprimé avec succès" + +#: ../admin/ftp_del.php:68 +#, fuzzy +msgid "Confirm the FTP accounts deletion" +msgstr "Confirmer la suppression" + +#: ../admin/ftp_del.php:71 +#, fuzzy +msgid "Do you really want to delete those accounts?" +msgstr "Voulez-vous vraiment supprimer ces comptes ?" + +#: ../admin/ftp_doedit.php:46 ../admin/ftp_edit.php:44 +#: ../admin/ftp_edit.php:51 +#, fuzzy +msgid "Create a FTP account" +msgstr "Créer le compte FTP." + +#: ../admin/ftp_doedit.php:52 +msgid "Error: neither a creation nor an edition" +msgstr "" + +#: ../admin/ftp_doedit.php:72 +#, fuzzy +msgid "The ftp account has been successfully saved" +msgstr "Le compte ftp a été modifié avec succès" + +#: ../admin/ftp_edit.php:43 +msgid "Neither a creation nor a edition" +msgstr "" + +#: ../admin/ftp_edit.php:53 +#, fuzzy +msgid "Editing a FTP account" +msgstr "Modification d'un compte ftp" + +#: ../admin/ftp_edit.php:79 +msgid "" +"This is the root folder for this FTP user. i.e. this FTP user can access to " +"this forlder and all its sub-folders." +msgstr "" + +#: ../admin/ftp_edit.php:93 +#, fuzzy +msgid "Click here if you want to edit password" +msgstr "Veuillez entrer un mot de passe" + +#: ../admin/ftp_edit.php:114 +#, fuzzy +msgid "Password do not match" +msgstr "Les mots de passe ne correspondent pas" + +#: ../admin/ftp_edit.php:120 ../class/m_admin.php:1279 ../class/m_hta.php:235 +msgid "Please enter a password" +msgstr "Veuillez entrer un mot de passe" + +#: ../admin/ftp_list.php:45 ../class/m_ftp.php:76 +msgid "FTP accounts list" +msgstr "Liste des comptes ftp" + +#: ../admin/ftp_list.php:57 ../class/m_ftp.php:67 +msgid "Create a new ftp account" +msgstr "Créer un compte ftp" + +#: ../admin/ftp_list.php:80 +msgid "Are you sure you want to change his status?" +msgstr "" + +#: ../admin/ftp_list.php:107 +msgid "FTP configuration information" +msgstr "" + +#: ../admin/ftp_list.php:109 +msgid "" +"Here are some configuration information you will need to configure your FTP " +"application." +msgstr "" + +#: ../admin/ftp_list.php:112 +#, fuzzy +msgid "Server:" +msgstr "Serveur MySQL" + +#: ../admin/ftp_list.php:113 +msgid "FTP mode for data transfer:" +msgstr "" + +#: ../admin/ftp_list.php:113 +msgid "passive" +msgstr "" + +#: ../admin/ftp_list.php:114 +#, fuzzy +msgid "User/password:" +msgstr "Nouveau mot de passe" + +#: ../admin/ftp_list.php:114 +msgid "" +"the one you specified when you created the account. You can edit them in the " +"panel." +msgstr "" + +#: ../admin/head.php:32 +msgid "AlternC Control Panel" +msgstr "Panneau de contrôle AlternC" + +#: ../admin/head.php:59 +#, fuzzy +msgid "" +"Administrator session. you may return to your " +"account or cancel this feature." +msgstr "" +"Session administrateur. Vous pouvez revenir à votre " +"compte ou annuler cette possibilité" + +#: ../admin/head.php:60 +msgid "You can also apply changes." +msgstr "" + +#: ../admin/head.php:65 +msgid "Panel is locked! No one can login!" +msgstr "" + +#: ../admin/hta_add.php:39 ../admin/hta_list.php:49 ../admin/hta_list.php:87 +msgid "Protect a folder" +msgstr "Protéger un répertoire" + +#: ../admin/hta_add.php:43 +msgid "" +"Enter the name of the folder you want to protect. It must already exists." +msgstr "" +"Choisir le répertoire que vous souhaitez protéger. Ce répertoire doit " +"préexister." + +#: ../admin/hta_adduser.php:40 +#, php-format +msgid "Adding a username in %s" +msgstr "Ajout d'un utilisateur autorisé dans %s" + +#: ../admin/hta_adduser.php:67 ../admin/hta_edit.php:112 +msgid "Add this user" +msgstr "Ajouter l'utilisateur" + +#: ../admin/hta_del.php:42 +#, php-format +msgid "The protected folder %s has been successfully unprotected" +msgstr "Le répertoire protégé %s a été déprotégé avec succès" + +#: ../admin/hta_dodeluser.php:49 +msgid "Authorized user deletion confirm" +msgstr "Confirmation de la suppression de l'utilisateur autorisé" + +#: ../admin/hta_dodeluser.php:52 +msgid "Do you really want to delete those users ?" +msgstr "Voulez-vous vraiment supprimer ces utilisateurs ?" + +#: ../admin/hta_doedituser.php:52 +#, php-format +msgid "Change the user %s in the protected folder %s" +msgstr "Modification de l'utilisateur %s dans le répertoire protégé %s" + +#: ../admin/hta_doedituser.php:60 +#, php-format +msgid "The password of the user %s has been successfully changed" +msgstr "Le mot de passe de l'utilisateur %s à été modifié avec succés" + +#: ../admin/hta_edit.php:39 +msgid "No folder selected!" +msgstr "Aucun répertoire sélectionné !" + +#: ../admin/hta_edit.php:48 +#, php-format +msgid "List of authorized user in folder %s" +msgstr "Liste des utilisateurs autorisés dans %s" + +#: ../admin/hta_edit.php:53 +#, php-format +msgid "No authorized user in %s" +msgstr "Aucun utilisateur autorisé dans %s" + +#: ../admin/hta_edit.php:68 ../admin/sql_users_password.php:38 +msgid "Change this user's password" +msgstr "Changer le mot de passe de cet utilisateur" + +#: ../admin/hta_edit.php:78 ../admin/sql_users_list.php:70 +msgid "Delete the checked users" +msgstr "Supprimer les utilisateurs cochés" + +#: ../admin/hta_edit.php:83 +msgid "Show this folder's content in the File Browser" +msgstr "Afficher le contenu de ce répertoire dans le Gestionnaire de Fichiers" + +#: ../admin/hta_edit.php:89 +msgid "Adding an authorized user" +msgstr "Ajout d'un utilisateur autorisé" + +#: ../admin/hta_edituser.php:40 +#, php-format +msgid "Editing user %s in the protected folder %s" +msgstr "Modification de l'utilisateur %s dans le répertoire protégé %s" + +#: ../admin/hta_edituser.php:59 ../admin/mem_param.php:83 +#: ../admin/mem_param.php:84 +msgid "New password" +msgstr "Nouveau mot de passe" + +#: ../admin/hta_edituser.php:68 +msgid "Change the password" +msgstr "Modifier le mot de passe" + +#: ../admin/hta_list.php:40 +msgid "Protected folders list" +msgstr "Liste des répertoires protégés" + +#: ../admin/hta_list.php:60 +msgid "" +"You can set passwords to protect some of your folders.
This will create ." +"htaccess and .htpasswd files that restrict access to these directory and to " +"any sub-elements." +msgstr "" + +#: ../admin/hta_list.php:77 +msgid "Edit login and passwords" +msgstr "Gérer les utilisateurs et mots de passe" + +#: ../admin/hta_list.php:86 +msgid "Unprotect the checked folders" +msgstr "Déprotéger les répertoires cochés" + +#: ../admin/index.php:67 +msgid "Web Hosting Control Panel" +msgstr "Panneau de contrôle d'hébergement" + +#: ../admin/index.php:83 +msgid "" +"To connect to the hosting control panel, enter your AlternC's login and " +"password in the following form and click 'Enter'" +msgstr "" +"Pour vous connecter au bureau de gestion de votre hébergement, entrez " +"votre nom d'utilisateur AlternC et votre mot de passe dans le formulaire ci-" +"contre et cliquez sur 'Entrer'" + +#: ../admin/index.php:84 +msgid "You are attemping to connect without IP restriction." +msgstr "Vous êtes sur le point de vous connecter sans restriction d'IP." + +#: ../admin/index.php:88 +msgid "AlternC access" +msgstr "Accès à AlternC" + +#: ../admin/index.php:91 +msgid "Enter" +msgstr "Entrer" + +#: ../admin/index.php:111 +msgid "" +"To read your mail in a browser, click here to go to your server's Webmail" +msgstr "" +"Pour lire votre mail dans un navigateur, cliquez ici pour vous rendre sur le " +"webmail de votre serveur." + +#: ../admin/index.php:123 +msgid "You must accept the session cookie to log-in" +msgstr "Vous devez accepter le cookie de session pour pouvoir vous connecter" + +#: ../admin/index.php:152 +#, fuzzy +msgid "Need a login and a password" +msgstr "utilisant un nom d'utilisateur et un mot de passe" + +#: ../admin/ip_main.php:58 +msgid "" +"Here you can add rules to restrict access to AlternC's services, filtered by " +"IP. First, add trusted IPs in the 'Known IP and networks' list. Then, add " +"rules to grant access on services to the chosen IPs from this list." +msgstr "" + +#: ../admin/ip_main.php:60 +msgid "Enabled rules" +msgstr "Règles actives" + +#: ../admin/ip_main.php:64 +#, fuzzy +msgid "Authorised IP address or network" +msgstr "Adresse IP (ou préfixe)" + +#: ../admin/ip_main.php:65 ../admin/ip_main.php:95 +#, fuzzy +msgid "Access type" +msgstr "Type de compte" + +#: ../admin/ip_main.php:76 +msgid "for" +msgstr "" + +#: ../admin/ip_main.php:86 +msgid "Add a new rule" +msgstr "Ajouter une règle" + +#: ../admin/ip_main.php:89 +msgid "" +"You need to have some 'Known IP and networks' defined below to define a new " +"rule." +msgstr "" + +#: ../admin/ip_main.php:119 +#, fuzzy +msgid "Authorized IP address or network" +msgstr "Adresse IP (ou préfixe)" + +#: ../admin/ip_main.php:144 +msgid "Known IP and networks" +msgstr "" + +#: ../admin/ip_main.php:146 +msgid "IP or network" +msgstr "" + +#: ../admin/ip_main.php:172 +msgid "Add an IP or a networks" +msgstr "" + +#: ../admin/ip_main.php:181 +#, fuzzy +msgid "IP or network. IPv4, IPv6 and subnet allowed" +msgstr "" +"Entrez ici l'adresse IP que vous souhaitez.
IPV4, IPV6 et préfixes " +"sont autorisés " + +#: ../admin/ip_main.php:214 +msgid "Please select an access type" +msgstr "" + +#: ../admin/logs_list.php:35 +msgid "Logs Listing" +msgstr "" + +#: ../admin/logs_list.php:43 +msgid "You have no web logs to list at the moment." +msgstr "" + +#: ../admin/logs_list.php:49 +msgid "" +"Here are web logs of your account.
You can download them to do specific " +"extract and statistics." +msgstr "" + +#: ../admin/logs_list.php:53 +#, fuzzy +msgid "Creation Date" +msgstr "Créer" + +#: ../admin/logs_list.php:53 +#, fuzzy +msgid "Download link" +msgstr "Télécharger" + +#: ../admin/logs_list.php:65 +msgid "Download" +msgstr "Télécharger" + +#: ../admin/mail_del.php:54 +msgid "Deleting mail accounts" +msgstr "Suppression des adresses email" + +#: ../admin/mail_del.php:57 +msgid "Please confirm the deletion of the following mail accounts:" +msgstr "Confirmez la suppression des adresses email suivantes :" + +#: ../admin/mail_del.php:74 +msgid "Confirm the deletion" +msgstr "Confirmer la suppression" + +#: ../admin/mail_del.php:74 +msgid "Don't delete anything and go back to the email list" +msgstr "Ne rien supprimer, revenir à la liste des adresses email" + +#: ../admin/mail_del.php:78 +msgid "" +"Warning: Deleting an email address will destroy all the messages it " +"contains! You will NOT be able to get it back!" +msgstr "" +"Attention: La suppression d'une adresse email détruit tous ses " +"messages ! Vous ne pourrez PLUS retrouver les messages ainsi " +"effacés !" + +#: ../admin/mail_doedit.php:120 +#, fuzzy +msgid "Your email has been edited successfully" +msgstr "Votre nouveau domaine %s a été installé avec succès" + +#: ../admin/mail_edit.php:53 +#, fuzzy, php-format +msgid "Editing the email %s" +msgstr "Modifier l'adresse email %s" + +#: ../admin/mail_edit.php:67 +msgid "Is this email enabled?" +msgstr "" + +#: ../admin/mail_edit.php:69 +msgid "" +"You can enable or disable this email anytime. This will bounce any mail " +"received on this address, but will not delete the stored email, or the " +"redirections or password." +msgstr "" + +#: ../admin/mail_edit.php:73 +msgid "No (email disabled)" +msgstr "" + +#: ../admin/mail_edit.php:74 +msgid "Yes (email enabled)" +msgstr "" + +#: ../admin/mail_edit.php:78 +msgid "Is it a POP/IMAP account?" +msgstr "Est-ce un compte POP/IMAP ?" + +#: ../admin/mail_edit.php:79 +msgid "" +"POP/IMAP accounts are receiving emails in the server. To read those emails, " +"you can use a Webmail, or a mail client such as Thunderbird. If you don't " +"use POP/IMAP, you can configure your email to be a redirection to other " +"existing emails. The maximum size is in megabytes, use 0 to make it infinite." +msgstr "" + +#: ../admin/mail_edit.php:82 +#, php-format +msgid "This mailbox is currently using %1$s / %2$s" +msgstr "" + +#: ../admin/mail_edit.php:85 +msgid "" +"This mailbox is pending deletion. You can recover its mails by setting it to " +"'Yes' NOW!" +msgstr "" + +#: ../admin/mail_edit.php:95 +#, fuzzy +msgid "Click here to edit the existing password" +msgstr "Veuillez entrer un mot de passe" + +#: ../admin/mail_edit.php:96 +#, fuzzy +msgid "Enter a POP/IMAP password" +msgstr "Mot de passe POP/IMAP" + +#: ../admin/mail_edit.php:98 ../class/m_quota.php:537 +msgid "MB" +msgstr "Mo" + +#: ../admin/mail_edit.php:98 +msgid "Maximum allowed size of this Mailbox" +msgstr "" + +#: ../admin/mail_edit.php:103 +#, fuzzy +msgid "" +"WARNING: turning POP/IMAP off will DELETE the stored messages in this email " +"address." +msgstr "" +"ATTENTION : Choisir 'Non' ici supprimera les messages stockés dans " +"cette adresse email. L'adresse email sera transformée en simple redirection." + +#: ../admin/mail_edit.php:105 +#, fuzzy +msgid "Is it a redirection to other email addresses?" +msgstr "Retour à la liste des adresses email" + +#: ../admin/mail_edit.php:107 +msgid "" +"If you want to send emails received on this address to other addresses, even " +"outside this server, enter those recipients here." +msgstr "" + +#: ../admin/mail_edit.php:107 +#, fuzzy +msgid "one recipient per line" +msgstr "une adresse email par ligne" + +#: ../admin/mail_edit.php:115 +msgid "Change this email address" +msgstr "Modifier cette adresse email" + +#: ../admin/mail_list.php:72 +#, fuzzy +msgid "Create a new mail account" +msgstr "Créer un compte ftp" + +#: ../admin/mail_list.php:76 +#, fuzzy +msgid "Can't have empty mail." +msgstr "Changer mon adresse email" + +#: ../admin/mail_list.php:76 +msgid "Create this email address" +msgstr "Ajouter cette adresse email" + +#: ../admin/mail_list.php:78 +#, fuzzy +msgid "Manage Catch-all for this domain" +msgstr "Ajout d'un mail sur le domaine %s" + +#: ../admin/mail_list.php:92 +#, php-format +msgid "Email addresses of the domain %s" +msgstr "Liste des adresses emails du domaine %s" + +#: ../admin/mail_list.php:96 +#, fuzzy +msgid "No mails for this domain." +msgstr "Ajout d'un mail sur le domaine %s" + +#: ../admin/mail_list.php:106 +msgid "Search" +msgstr "" + +#: ../admin/mail_list.php:111 +#, fuzzy +msgid "Show system emails" +msgstr "Afficher les domaines" + +#: ../admin/mail_list.php:118 +msgid "Items per page:" +msgstr "" + +#: ../admin/mail_list.php:125 +#, fuzzy +msgid "Address" +msgstr "Adresse IP" + +#: ../admin/mail_list.php:125 +#, fuzzy +msgid "Last login time" +msgstr "Dernière connexion" + +#: ../admin/mail_list.php:125 +msgid "Other recipients" +msgstr "Autres destinataires" + +#: ../admin/mail_list.php:125 +msgid "Pop/Imap" +msgstr "" + +#: ../admin/mail_list.php:136 +#, fuzzy +msgid "Deleting..." +msgstr "extraction..." + +#: ../admin/mail_list.php:141 +msgid "" +"This email will be deleted soon. You may still be able to undelete it by " +"clicking here" +msgstr "" + +#: ../admin/mail_list.php:141 +#, fuzzy +msgid "Undelete" +msgstr "effacé" + +#: ../admin/mail_list.php:167 ../admin/main.php:34 +msgid "Never" +msgstr "" + +#: ../admin/mail_list.php:178 +msgid "Delete the checked email addresses" +msgstr "Supprimer les adresses email cochées" + +#: ../admin/mail_list.php:186 +msgid "Mails configuration information" +msgstr "" + +#: ../admin/mail_list.php:188 +msgid "" +"Here are some configuration information you will need to configure your mail " +"application." +msgstr "" + +#: ../admin/mail_list.php:195 +msgid "Outgoing mail (SMTP)" +msgstr "" + +#: ../admin/mail_list.php:196 +msgid "Incoming mail" +msgstr "" + +#: ../admin/mail_list.php:201 ../admin/mail_list.php:242 +msgid "Which protocol shall you use?" +msgstr "" + +#: ../admin/mail_list.php:203 +#, fuzzy +msgid "Submission" +msgstr "Permissions" + +#: ../admin/mail_list.php:206 ../admin/mail_list.php:217 +#: ../admin/mail_list.php:228 ../admin/mail_list.php:247 +#: ../admin/mail_list.php:258 ../admin/mail_list.php:269 +#: ../admin/mail_list.php:280 +#, fuzzy +msgid "Server name: " +msgstr "Nom du fichier" + +#: ../admin/mail_list.php:207 ../admin/mail_list.php:218 +#: ../admin/mail_list.php:229 +msgid "" +"The mail address you want to access (example : myuser@example.tld)" +msgstr "" + +#: ../admin/mail_list.php:207 ../admin/mail_list.php:218 +#: ../admin/mail_list.php:229 +#, fuzzy +msgid "Username: " +msgstr "Utilisateur" + +#: ../admin/mail_list.php:208 ../admin/mail_list.php:219 +#: ../admin/mail_list.php:230 ../admin/mail_list.php:248 +#: ../admin/mail_list.php:259 ../admin/mail_list.php:270 +#: ../admin/mail_list.php:281 +msgid "Port: " +msgstr "" + +#: ../admin/mail_list.php:209 ../admin/mail_list.php:220 +#: ../admin/mail_list.php:231 ../admin/mail_list.php:249 +#: ../admin/mail_list.php:260 ../admin/mail_list.php:271 +#: ../admin/mail_list.php:282 +msgid "Authentication: " +msgstr "" + +#: ../admin/mail_list.php:210 ../admin/mail_list.php:221 +#: ../admin/mail_list.php:232 ../admin/mail_list.php:250 +#: ../admin/mail_list.php:261 ../admin/mail_list.php:272 +#: ../admin/mail_list.php:283 +msgid "Authentication method: " +msgstr "" + +#: ../admin/mail_list.php:210 ../admin/mail_list.php:250 +#: ../admin/mail_list.php:261 ../admin/mail_list.php:272 +#: ../admin/mail_list.php:283 +#, fuzzy +msgid "Normal password" +msgstr "Confirmer le mot de passe" + +#: ../admin/mail_list.php:211 ../admin/mail_list.php:222 +#: ../admin/mail_list.php:233 ../admin/mail_list.php:251 +#: ../admin/mail_list.php:262 ../admin/mail_list.php:273 +#: ../admin/mail_list.php:284 +#, fuzzy +msgid "Connection security:" +msgstr "Se connecter" + +#: ../admin/mail_list.php:214 +msgid "SMTP" +msgstr "" + +#: ../admin/mail_list.php:221 ../admin/mail_list.php:232 +#, fuzzy +msgid "Normal Password" +msgstr "Confirmer le mot de passe" + +#: ../admin/mail_list.php:225 +msgid "SMTPS" +msgstr "" + +#: ../admin/mail_list.php:244 +msgid "IMAP" +msgstr "" + +#: ../admin/mail_list.php:255 +msgid "IMAPS" +msgstr "" + +#: ../admin/mail_list.php:266 +msgid "POP3" +msgstr "" + +#: ../admin/mail_list.php:277 +msgid "POP3S" +msgstr "" + +#: ../admin/mail_manage_catchall.php:38 +msgid "Problem with the domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:47 +#, fuzzy +msgid "Catchall successfully deleted" +msgstr "Le compte AlternC '%s' a été effacé avec succès" + +#: ../admin/mail_manage_catchall.php:50 ../admin/mail_manage_catchall.php:53 +#, fuzzy +msgid "Catchall successfully updated" +msgstr "Le jeu de statistiques a été créé avec succès" + +#: ../admin/mail_manage_catchall.php:56 +#, fuzzy +msgid "Unknown target type" +msgstr "Type de destination" + +#: ../admin/mail_manage_catchall.php:63 +#, php-format +msgid "Manage catch-all configuration of %s" +msgstr "" + +#: ../admin/mail_manage_catchall.php:72 +msgid "" +"You can choose what to do with emails sent to unexisting address of this " +"domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:80 +msgid "No catch-all" +msgstr "" + +#: ../admin/mail_manage_catchall.php:84 +#, fuzzy +msgid "No catch-all for this domain." +msgstr "Ajout d'un mail sur le domaine %s" + +#: ../admin/mail_manage_catchall.php:88 +msgid "Redirect to same address on a different domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:92 +#, php-format +msgid "" +"Mails sent to john.doe@%s will be redirect to john.doe@anotherdomain.tld" +msgstr "" + +#: ../admin/mail_manage_catchall.php:95 +#, fuzzy +msgid "Enter the 'target' domain" +msgstr "Installer le domaine" + +#: ../admin/mail_manage_catchall.php:96 +msgid "example.tld" +msgstr "" + +#: ../admin/mail_manage_catchall.php:98 +msgid "Or choose one of your own" +msgstr "" + +#: ../admin/mail_manage_catchall.php:106 +msgid "Redirect to a specific email" +msgstr "" + +#: ../admin/mail_manage_catchall.php:110 +#, php-format +msgid "" +"Mails sent to an unexisting email on '@%s' will be redirect to user@example." +"tld." +msgstr "" + +#: ../admin/mail_manage_catchall.php:113 +msgid "john.doe@example.tld" +msgstr "" + +#: ../admin/mailautoconfig_outlook.php:16 +#, fuzzy +msgid "Missing POST of the mail address" +msgstr "Modifier cette adresse email" + +#: ../admin/mailautoconfig_thunderbird.php:9 +msgid "Error: Missing GET of emailaddress" +msgstr "" + +#: ../admin/mailautoconfig_thunderbird.php:12 +msgid "Error: Empty $emailDomain" +msgstr "" + +#: ../admin/main.php:31 +msgid "Last Login: " +msgstr "Dernière connexion : " + +#: ../admin/main.php:36 +#, php-format +msgid "the %3$d-%2$d-%1$d at %4$d:%5$02d" +msgstr "" + +#: ../admin/main.php:37 +#, php-format +msgid "from: %1$s " +msgstr "depuis %1$s " + +#: ../admin/main.php:42 +#, php-format +msgid "%1$d login failed since last login" +msgstr "%1$d tentatives incorrectes depuis la dernière connexion" + +#: ../admin/main.php:85 +msgid "Expired or about to expire accounts" +msgstr "Comptes expirés ou expirant bientôt" + +#: ../admin/main.php:87 +msgid "Last name, surname" +msgstr "Prénom, Nom" + +#: ../admin/main.php:87 +msgid "uid" +msgstr "uid" + +#: ../admin/main.php:103 +msgid "" +"You are using the AlternC Panel. You can contact the AlternC community for " +"information or feedback by joining the mailing-list" +msgstr "" + +#: ../admin/mem_admin.php:40 +msgid "Your administrator preferences has been successfully changed." +msgstr "Vos préférences d'administrateurs ont été modifiées avec succès." + +#: ../admin/mem_admin.php:46 ../admin/mem_param.php:116 +msgid "Admin preferences" +msgstr "Préférences d'administration" + +#: ../admin/mem_chgmail.php:44 ../admin/mem_cm.php:42 ../admin/mem_cm.php:53 +#: ../admin/mem_cm2.php:47 ../admin/mem_param.php:92 +msgid "Change the email of the account" +msgstr "Changer l'adresse email du compte AlternC" + +#: ../admin/mem_chgmail.php:51 +#, php-format +msgid "help_mem_chgmail %s" +msgstr "" +"Un essage a été envoyé à l'adresse %s pour " +"confirmation.
Ce message contient un lien où vous devrez vous rendre " +"pour valider la modification.
A cette adresse, la clé suivante vous " +"sera demandée :
" + +#: ../admin/mem_cm.php:54 +msgid "" +"Enter the key you got when you requested the mailbox change, then click the " +"OK button." +msgstr "" +"Entrez la clé qui vous a été donnée lors de la demande de changement " +"d'adresse email, puis cliquez sur OK" + +#: ../admin/mem_cm.php:55 +msgid "Key" +msgstr "Clé" + +#: ../admin/mem_cm2.php:55 +msgid "The mailbox has been successfully changed." +msgstr "Le mail a été changé avec succès." + +#: ../admin/mem_logout.php:41 ../admin/mem_logout.php:49 +msgid "Disconnected" +msgstr "Déconnexion" + +#: ../admin/mem_logout.php:51 +msgid "You have been logged out of your administration desktop." +msgstr "Vous avez été déconnecté de votre espace d'administration." + +#: ../admin/mem_logout.php:52 +msgid "Click here to log in" +msgstr "Cliquez ici pour vous reconnecter" + +#: ../admin/mem_param.php:43 +msgid "Your help setting has been updated." +msgstr "Vos paramètres d'aide ont été modifiés." + +#: ../admin/mem_param.php:47 +msgid "Settings of your account" +msgstr "Paramètres de votre compte AlternC" + +#: ../admin/mem_param.php:60 ../class/m_mem.php:579 +msgid "Help" +msgstr "Aide" + +#: ../admin/mem_param.php:63 +#, fuzzy +msgid "Administrator" +msgstr "Administration" + +#: ../admin/mem_param.php:69 ../admin/mem_passwd.php:50 +#: ../admin/sql_users_list.php:59 +msgid "Password change" +msgstr "Changer le mot de passe" + +#: ../admin/mem_param.php:73 +msgid "You cannot change your password" +msgstr "Vous ne pouvez pas changer votre mot de passe" + +#: ../admin/mem_param.php:78 +msgid "help_chg_passwd" +msgstr "" +"Vous pouvez modifier ici le mot de passe vous permettant d'utiliser ce " +"bureau virtuel. Ne l'oubliez pas !
Entrez ici votre mot de passe " +"actuel, puis un nouveau mot de passe (2 fois, par sécurité), puis cliquez " +"sur 'Changer mon mot de passe'" + +#: ../admin/mem_param.php:82 +msgid "Old password" +msgstr "Ancien mot de passe" + +#: ../admin/mem_param.php:85 +msgid "Change my password" +msgstr "Changer mon mot de passe" + +#: ../admin/mem_param.php:95 +msgid "help_chg_mail" +msgstr "" +"Vous pouvez modifier ici l'adresse email d'inscription correspondant à votre " +"compte AlternC.
Entrez ici la nouvelle adresse email. Un message est " +"envoyé à cette adresse pour confirmation." + +#: ../admin/mem_param.php:96 +msgid "Current mailbox" +msgstr "Adresse email actuelle" + +#: ../admin/mem_param.php:97 +msgid "New mailbox" +msgstr "Nouvelle adresse email" + +#: ../admin/mem_param.php:98 +msgid "Change my email address" +msgstr "Changer mon adresse email" + +#: ../admin/mem_param.php:103 +msgid "Online help settings" +msgstr "Paramètres de l'aide en ligne" + +#: ../admin/mem_param.php:106 +msgid "help_help_settings" +msgstr "" +"Chaque page du bureau virtuel peut vous présenter une aide succinte, " +"accompagnée d'un lien vers l'aide en ligne
Si vous voulez afficher " +"cette aide automatique, cochez la case ci-dessous." + +#: ../admin/mem_param.php:107 +msgid "Do you want to see the help texts and links on each page?" +msgstr "Voulez-vous voir les textes d'aide et les liens sur chaque page ?" + +#: ../admin/mem_param.php:108 +msgid "Change these settings" +msgstr "Modifier ce paramètre" + +#: ../admin/mem_param.php:119 +msgid "Members list view" +msgstr "Vue de la liste des membres" + +#: ../admin/mem_param.php:120 +msgid "Large view" +msgstr "Vue large" + +#: ../admin/mem_param.php:121 +msgid "Short view" +msgstr "Vue étroite" + +#: ../admin/mem_param.php:123 +msgid "Change my admin preferences" +msgstr "Modifier mes préférences d'administration" + +#: ../admin/mem_passwd.php:44 +msgid "Your password has been successfully changed." +msgstr "Votre mot de passe a été changé avec succès." + +#: ../admin/menu.php:37 +#, fuzzy, php-format +msgid "Welcome %s" +msgstr "Effacer %s" + +#: ../admin/menu.php:105 +msgid "About" +msgstr "À Propos" + +#: ../admin/nowebmail.php:28 +msgid "" +"There is currently no webmail configured. If you need one, contact your " +"server administrator" +msgstr "" + +#: ../admin/piwik_addaccount.php:34 +#, fuzzy +msgid "You cannot add any new Piwik account, your quota is over." +msgstr "" +"Vous avez atteint votre quota de comptes ftp, vous ne pouvez plus en créer." + +#: ../admin/piwik_addaccount.php:44 +msgid "Error : missing arguments." +msgstr "" + +#: ../admin/piwik_addaccount.php:50 +#, fuzzy, php-format +msgid "Creation of Piwik account \"%s\"" +msgstr "Créer un compte ftp" + +#: ../admin/piwik_addaccount.php:67 +msgid "Successfully added piwik user" +msgstr "" + +#: ../admin/piwik_addsites.php:44 +msgid "Error while adding website.
" +msgstr "" + +#: ../admin/piwik_addsites.php:46 +msgid "Website added Successfully" +msgstr "" + +#: ../admin/piwik_site_dodel.php:39 +msgid "Missing site parameters" +msgstr "" + +#: ../admin/piwik_site_dodel.php:50 +#, fuzzy +msgid "Site successfully deleted" +msgstr "Le compte AlternC '%s' a été effacé avec succès" + +#: ../admin/piwik_site_dodel.php:61 +#, fuzzy +msgid "Piwik site deletion confirm" +msgstr "Confirmation de la suppression des comptes FTP" + +#: ../admin/piwik_site_dodel.php:64 +#, fuzzy +msgid "Do you really want to delete this Piwik website ?" +msgstr "Voulez-vous vraiment supprimer ces utilisateurs ?" + +#: ../admin/piwik_sitelist.php:48 +msgid "You don't own this piwik site!" +msgstr "" + +#: ../admin/piwik_sitelist.php:56 +msgid "You dont own user" +msgstr "" + +#: ../admin/piwik_sitelist.php:83 ../admin/piwik_userlist.php:53 +#, fuzzy +msgid "Add a new website" +msgstr "Créer un nouveau TLD" + +#: ../admin/piwik_sitelist.php:85 ../admin/piwik_userlist.php:55 +msgid "URL of the website" +msgstr "" + +#: ../admin/piwik_sitelist.php:106 +msgid "Existing Piwik monitored websites" +msgstr "" + +#: ../admin/piwik_sitelist.php:114 +#, fuzzy +msgid "No existing Piwik websites" +msgstr "Modification d'un compte ftp" + +#: ../admin/piwik_sitelist.php:120 +#, fuzzy +msgid "Site name" +msgstr "Nom du fichier" + +#: ../admin/piwik_sitelist.php:120 +msgid "Site url" +msgstr "" + +#: ../admin/piwik_sitelist.php:147 +msgid "Credentials management" +msgstr "" + +#: ../admin/piwik_user_dodel.php:39 +msgid "Missing login parameters" +msgstr "" + +#: ../admin/piwik_user_dodel.php:59 +msgid "Piwik accounts deletion confirm" +msgstr "" + +#: ../admin/piwik_user_dodel.php:62 +#, php-format +msgid "Do you really want to delete the Piwik account %s ?" +msgstr "" + +#: ../admin/piwik_useradmin.php:42 +#, fuzzy +msgid "No piwik user specified" +msgstr "Aucun répertoire sélectionné !" + +#: ../admin/piwik_useradmin.php:52 +msgid "You don't own this piwik website" +msgstr "" + +#: ../admin/piwik_useradmin.php:60 +msgid "You don't own this piwik user" +msgstr "" + +#: ../admin/piwik_useradmin.php:71 +msgid "success" +msgstr "" + +#: ../admin/piwik_useradmin.php:75 +#, fuzzy +msgid "This right does not exist" +msgstr "L'utilisateur n'existe pas" + +#: ../admin/piwik_useradmin.php:105 +#, fuzzy +msgid "Rights for user" +msgstr "Droits MySQL pour %s" + +#: ../admin/piwik_useradmin.php:128 +#, fuzzy +msgid "Add rights to user" +msgstr "Ajouter l'utilisateur" + +#: ../admin/piwik_useradmin.php:139 +msgid "admin" +msgstr "" + +#: ../admin/piwik_useradmin.php:139 +#, fuzzy +msgid "noacces" +msgstr "Accès à AlternC" + +#: ../admin/piwik_useradmin.php:139 +msgid "view" +msgstr "" + +#: ../admin/piwik_userlist.php:41 +#, fuzzy +msgid "Create a new piwik account" +msgstr "Créer un compte ftp" + +#: ../admin/piwik_userlist.php:66 +#, fuzzy +msgid "Existing Piwik accounts" +msgstr "Modification d'un compte ftp" + +#: ../admin/piwik_userlist.php:74 +msgid "No existing Piwik users" +msgstr "" + +#: ../admin/piwik_userlist.php:79 ../admin/piwik_userlist.php:89 +#, fuzzy +msgid "Connect" +msgstr "Se connecter" + +#: ../admin/quota_show.php:34 +msgid "Account's quotas" +msgstr "Quotas du compte" + +#: ../admin/quota_show.php:40 +msgid "No quotas for this account, or quotas currently unavailable!" +msgstr "Aucun quota pour ce compte AlternC, ou quota impossible à obtenir !" + +#: ../admin/quotas_oneuser.php:14 +#, fuzzy, php-format +msgid "%s account" +msgstr "%s comptes" + +#: ../admin/quotas_oneuser.php:25 ../class/m_quota.php:60 +#, fuzzy +msgid "quota_web" +msgstr "quota_" + +#: ../admin/quotas_oneuser.php:36 ../admin/quotas_users.php:132 +#: ../class/m_dom.php:93 +msgid "Domains" +msgstr "Domaines" + +#: ../admin/quotas_oneuser.php:37 +msgid "Emails" +msgstr "Adresses email" + +#: ../admin/quotas_oneuser.php:38 ../admin/quotas_oneuser.php:121 +#: ../admin/quotas_oneuser.php:167 ../admin/quotas_users.php:128 +#: ../admin/quotas_users.php:169 +msgid "Space" +msgstr "Espace" + +#: ../admin/quotas_oneuser.php:112 +#, fuzzy +msgid "Databases:" +msgstr "Bases de données" + +#: ../admin/quotas_oneuser.php:120 ../admin/quotas_users.php:177 +msgid "DB" +msgstr "Bases" + +#: ../admin/quotas_oneuser.php:158 +#, fuzzy +msgid "Mailman lists:" +msgstr "Listes Mailman" + +#: ../admin/quotas_oneuser.php:166 ../admin/quotas_users.php:173 +#: ../admin/quotas_users.php:176 +msgid "Lists" +msgstr "Listes" + +#: ../admin/quotas_users.php:20 +#, fuzzy +msgid "Quotas status" +msgstr "Quotas" + +#: ../admin/quotas_users.php:29 +msgid "" +"This page shows the space and service count of your AlternC server and each " +"AlternC accounts." +msgstr "" +"Cette page montre l'espace et le nombre de service utilisé sur AlternC et " +"pour chaque compte." + +#: ../admin/quotas_users.php:30 +#, fuzzy, php-format +msgid "Administration -> Manage the Alternc accounts" +msgstr "Gérer les comptes AlternC" + +#: ../admin/quotas_users.php:30 +#, php-format +msgid "If you want to manage them, go to" +msgstr "" + +#: ../admin/quotas_users.php:33 +#, php-format +msgid "% of the total." +msgstr "% du total." + +#: ../admin/quotas_users.php:33 +msgid "MB." +msgstr "Mo." + +#: ../admin/quotas_users.php:33 +#, php-format +msgid "Sizes are shown as %s" +msgstr "Les tailles sont exprimées en %s" + +#: ../admin/quotas_users.php:36 +msgid "Global" +msgstr "Global" + +#: ../admin/quotas_users.php:36 +msgid "Server-side view:" +msgstr "Vue générale du serveur :" + +#: ../admin/quotas_users.php:37 +msgid "Detailed view:" +msgstr "Vue détaillée par compte :" + +#: ../admin/quotas_users.php:38 +msgid "In MB" +msgstr "En Mo" + +#: ../admin/quotas_users.php:39 +msgid "Percentage" +msgstr "En pourcentages" + +#: ../admin/quotas_users.php:40 +msgid "Graphical" +msgstr "En graphique" + +#: ../admin/quotas_users.php:43 +msgid "Show the domain names" +msgstr "Afficher les domaines" + +#: ../admin/quotas_users.php:45 +msgid "Hide the domain names" +msgstr "Cacher les domaines" + +#: ../admin/quotas_users.php:48 +msgid "All accounts" +msgstr "Tous les comptes" + +#: ../admin/quotas_users.php:128 ../admin/quotas_users.php:169 +msgid "Count" +msgstr "Nombre" + +#: ../admin/quotas_users.php:137 ../class/m_mail.php:177 +msgid "Email addresses" +msgstr "Adresses email" + +#: ../admin/quotas_users.php:143 +msgid "Mailman lists" +msgstr "Listes Mailman" + +#: ../admin/quotas_users.php:149 ../admin/sql_del.php:72 +#: ../admin/sql_dorestore.php:40 ../admin/sql_getparam.php:44 +#: ../admin/sql_list.php:37 ../admin/sql_restore.php:44 +#: ../class/m_mysql.php:990 +msgid "MySQL Databases" +msgstr "Base de données MySQL" + +#: ../admin/quotas_users.php:171 +msgid "Dom" +msgstr "Domaines" + +#: ../admin/quotas_users.php:172 ../admin/quotas_users.php:175 +msgid "Mails" +msgstr "Adresses Email" + +#: ../admin/quotas_users.php:174 +msgid "Web" +msgstr "Espace Web" + +#: ../admin/sql_bck.php:34 +#, fuzzy +msgid "MySQL Databases - Configure backups" +msgstr "Base de données MySQL" + +#: ../admin/sql_bck.php:40 ../admin/sql_dobck.php:34 +msgid "" +"You aren't allowed to access this page. Contact your administrator if you " +"want to." +msgstr "" + +#: ../admin/sql_bck.php:65 +#, php-format +msgid "Manage the SQL backup for database %s" +msgstr "Gérer la sauvegarde de la base %s" + +#: ../admin/sql_bck.php:70 +msgid "Do MySQL backup?" +msgstr "Sauvegarder la base MySQL ?" + +#: ../admin/sql_bck.php:73 +msgid "No backup" +msgstr "Pas de sauvegarde" + +#: ../admin/sql_bck.php:74 +msgid "Weekly backup" +msgstr "Sauvegarde hebdomadaire" + +#: ../admin/sql_bck.php:75 +msgid "Daily backup" +msgstr "Sauvegarde quotidienne" + +#: ../admin/sql_bck.php:79 +msgid "How many backups should be kept?" +msgstr "Combien de sauvegardes conserve-t-on ?" + +#: ../admin/sql_bck.php:91 +msgid "Compress the backups? (gzip)" +msgstr "Compresser les sauvegardes ? (gzip)" + +#: ../admin/sql_bck.php:100 +msgid "In which folder do you want to store the backups?" +msgstr "Où voulez-vous stocker les sauvegardes ?" + +#: ../admin/sql_bck.php:107 +msgid "Change the MySQL backup parameters" +msgstr "Changer les paramètres de sauvegarde MySQL" + +#: ../admin/sql_bck.php:116 ../admin/sql_dorestore.php:50 +#: ../admin/sql_restore.php:53 +msgid "You currently have no database defined" +msgstr "Vous n'avez pas de base de données de définie" + +#: ../admin/sql_del.php:51 +#, php-format +msgid "The database %s has been successfully deleted" +msgstr "La base de données %s a été effacée avec succès" + +#: ../admin/sql_del.php:66 +msgid "Please check which databases you want to delete" +msgstr "Vous devez cocher les bases de données que vous souhaitez effacer" + +#: ../admin/sql_del.php:75 +msgid "Confirm the deletion of the following SQL databases" +msgstr "Confirmez l'effacement des bases de données SQL suivantes" + +#: ../admin/sql_del.php:76 +msgid "This will delete all the tables currently in those db." +msgstr "Cela va effacer toutes les tables présentes dans ces bases." + +#: ../admin/sql_del.php:90 +#, fuzzy +msgid "No, don't delete the database" +msgstr "Effacer les bases cochées" + +#: ../admin/sql_del.php:90 +#, fuzzy +msgid "Yes, delete the database" +msgstr "Effacer les bases cochées" + +#: ../admin/sql_doadd.php:37 +#, fuzzy +msgid "Can't create a database: your quota is over" +msgstr "Vous ne pouvez plus créer de statistiques, votre quota est atteint." + +#: ../admin/sql_dobck.php:56 +msgid "Your backup parameters has been successfully changed." +msgstr "Vos paramètres de sauvegarde ont été modifiés avec succès" + +#: ../admin/sql_dorestore.php:56 +msgid "Restore a SQL backup" +msgstr "Restaurer une sauvegarde SQL" + +#: ../admin/sql_dorestore.php:63 +msgid "" +"Your database has been restored, check out the previous text for error " +"messages." +msgstr "" +"Votre base a été restaurée, vérifiez les erreurs éventuelles dans le texte " +"ci-dessus." + +#: ../admin/sql_getparam.php:53 +#, fuzzy +msgid "Your current connection settings are" +msgstr "Voici vos paramètres actuels" + +#: ../admin/sql_getparam.php:59 +#, fuzzy +msgid "Mysql Server" +msgstr "Serveur MySQL" + +#: ../admin/sql_getparam.php:63 ../admin/sql_list.php:54 +msgid "Database" +msgstr "Base de données" + +#: ../admin/sql_getparam.php:79 +#, fuzzy +msgid "Web interface PhpMyAdmin" +msgstr "PhpMyAdmin Général" + +#: ../admin/sql_getparam.php:91 +msgid "" +"You changed the MySQL User base configuration. Please refer to your " +"configuration" +msgstr "" + +#: ../admin/sql_getparam.php:94 +msgid "Back to the MySQL database list" +msgstr "Retour à la liste des bases MySQL" + +#: ../admin/sql_list.php:45 +msgid "You have no sql user at the moment." +msgstr "" + +#: ../admin/sql_list.php:54 ../admin/sql_list.php:65 +msgid "Backup" +msgstr "Sauvegarde" + +#: ../admin/sql_list.php:54 ../admin/sql_list.php:67 +msgid "Restore" +msgstr "Restauration" + +#: ../admin/sql_list.php:54 ../admin/sql_list.php:68 +#, fuzzy +msgid "Show Settings" +msgstr "Configuration" + +#: ../admin/sql_list.php:77 +msgid "Delete the checked databases" +msgstr "Effacer les bases cochées" + +#: ../admin/sql_list.php:90 +msgid "Create a new MySQL database" +msgstr "Créer une nouvelle base de données MySQL" + +#: ../admin/sql_list.php:96 +msgid "MySQL Database" +msgstr "Base de données MySQL" + +#: ../admin/sql_list.php:103 +msgid "Can't have empty MySQL suffix" +msgstr "" + +#: ../admin/sql_list.php:103 +msgid "Create this new MySQL database." +msgstr "Créer cette nouvelle base de données MySQL." + +#: ../admin/sql_pma_sso.php:46 +msgid "SQL Admin" +msgstr "Administration SQL" + +#: ../admin/sql_restore.php:58 +#, php-format +msgid "Restore a MySQL backup for database %s" +msgstr "Restaurer la sauvegarde MySQL de la base %s" + +#: ../admin/sql_restore.php:61 +msgid "" +"Warning: Write the complete path and the filename.
For example if your " +"backups are in the directory /Backups,
write /Backups/file.sql.gz " +"(where file.sql.gz is the filename)." +msgstr "" +"Attention : Indiquez le chemin complet et le nom du fichier
Par " +"exemple si vos sauvegardes sont dans le répertoire /Sauvegardes,
écrivez /Sauvegardes/file.sql.gz (où file.sql.gz est le nom du fichier)." + +#: ../admin/sql_restore.php:66 +msgid "" +"Please enter the path and the filename containing SQL data to be restored." +msgstr "" +"Entrez le chemin complet et le nom du fichier contenant des données SQL à " +"restaurer dans la base." + +#: ../admin/sql_restore.php:67 +msgid "Restore my database" +msgstr "Restaurer ma base de données" + +#: ../admin/sql_restore.php:67 +msgid "Tip: you can restore a file directly in the File Browser" +msgstr "" + +#: ../admin/sql_restore.php:72 +msgid "Please the complete path of the filename" +msgstr "" + +#: ../admin/sql_restore.php:81 +msgid "Note: If the filename ends with .gz, it will be uncompressed before." +msgstr "" +"Note : Si le nom du fichier se termine par .gz, il sera décompressé avant." + +#: ../admin/sql_users_add.php:41 ../admin/sql_users_list.php:79 +msgid "Create a new MySQL user" +msgstr "Créer un nouvel utilisateur MySQL" + +#: ../admin/sql_users_add.php:72 +msgid "Create this new MySQL user" +msgstr "Créer ce nouvel utilisateur MySQL" + +#: ../admin/sql_users_del.php:47 +#, php-format +msgid "The user %s has been successfully deleted" +msgstr "L'utilisateur %s a été effacée avec succès" + +#: ../admin/sql_users_del.php:58 +msgid "MySQL users" +msgstr "Utilisateurs MySQL" + +#: ../admin/sql_users_del.php:61 +msgid "Confirm the deletion of the following MySQL users" +msgstr "Confirmez l'effacement des utilisateurs MySQL suivants" + +#: ../admin/sql_users_del.php:76 +#, fuzzy +msgid "No, don't delete the MySQL user" +msgstr "Créer ce nouvel utilisateur MySQL" + +#: ../admin/sql_users_del.php:76 +#, fuzzy +msgid "Yes, delete the MySQL user" +msgstr "Créer ce nouvel utilisateur MySQL" + +#: ../admin/sql_users_dorights.php:54 +msgid "The rights has been successfully applied to the user" +msgstr "La droits ont été appliqués avec succès à l'utilisateur" + +#: ../admin/sql_users_list.php:37 ../class/m_mysql.php:124 +msgid "MySQL Users" +msgstr "Utilisateurs MySQL" + +#: ../admin/sql_users_list.php:48 +msgid "Rights" +msgstr "Droits" + +#: ../admin/sql_users_list.php:58 +msgid "Manage the rights" +msgstr "Gérer les droits" + +#: ../admin/sql_users_password.php:68 +msgid "Change user password" +msgstr "Modifier le mot de passe de l'utilisateur" + +#: ../admin/sql_users_rights.php:38 +#, php-format +msgid "MySQL Rights for %s" +msgstr "Droits MySQL pour %s" + +#: ../admin/sql_users_rights.php:89 +msgid "Reverse selection" +msgstr "Inverse la sélection" + +#: ../admin/sql_users_rights.php:103 +msgid "Apply" +msgstr "Appliquer" + +#: ../admin/stats_members.php:32 +msgid "" +"Image_Graph not installed. use 'aptitude install php-pear' then 'pear " +"install --alldeps Image_Graph-devel' to see the graph." +msgstr "" +"Image_Graph n'est pas installée. Lancez 'aptitude install php-pear' puis " +"'pear --alldeps install Image_Graph-devel' pour voir le graphique." + +#: ../admin/stats_members.php:41 +msgid "Account creation per month" +msgstr "Comptes créés par mois" + +#: ../admin/stats_members.php:54 +msgid "before the month" +msgstr "avant le mois" + +#: ../admin/stats_members.php:56 +msgid "during the month" +msgstr "durant le mois" + +#: ../admin/vm.php:52 ../class/m_lxc.php:60 +#, fuzzy +msgid "Console access" +msgstr "Accès à AlternC" + +#: ../admin/vm.php:69 +msgid "You can start a virtual machine." +msgstr "" + +#: ../admin/vm.php:72 +#, fuzzy +msgid "Click here to start a virtual machine." +msgstr "Cliquez ici pour continuer" + +#: ../admin/vm.php:78 +msgid "Start time" +msgstr "" + +#: ../admin/vm.php:79 +msgid "SSH Fingerprint" +msgstr "" + +#: ../admin/vm.php:80 +msgid "Useful command" +msgstr "" + +#: ../admin/vm.php:86 +msgid "You can stop your virtual machine." +msgstr "" + +#: ../admin/vm.php:89 +#, fuzzy +msgid "Click here to stop your running virtual machine." +msgstr "Cliquez ici pour continuer" + +#: ../admin/vm.php:99 +msgid "Tips" +msgstr "" + +#: ../admin/vm.php:104 +msgid "Available softwares" +msgstr "" + +#: ../admin/vm.php:105 +msgid "Remotely start/stop a VM" +msgstr "" + +#: ../admin/vm.php:110 +msgid "" +"You can script the launch the console access in command line by using this " +"url:" +msgstr "" + +#: ../admin/vm.php:112 +msgid "You can halt the vm by using:" +msgstr "" + +#: ../admin/vm.php:114 +msgid "" +"And you can see existing vm information (if the vm is running) by using:" +msgstr "" + +#: ../admin/vm.php:116 +msgid "" +"Warning: if you do not use HTTPS, your password will be transfered without " +"any protection" +msgstr "" + +#: ../admin/vm.php:120 +msgid "To access a remote console with SSH, you can use Putty." +msgstr "" + +#: ../admin/vm.php:122 +msgid "To transfer files, you can use Filezilla in SFTP mode." +msgstr "" + +# Variables used in functions.php3 +#: ../class/functions.php:281 +msgid "Bytes" +msgstr "Octets" + +# Variables used in functions.php3 +#: ../class/functions.php:283 +msgid "Byte" +msgstr "Octets" + +#: ../class/functions.php:288 +msgid "Kb" +msgstr "Ko" + +#: ../class/functions.php:292 +msgid "Mb" +msgstr "Mo" + +#: ../class/functions.php:296 +msgid "Gb" +msgstr "Go" + +#: ../class/functions.php:298 +msgid "Tb" +msgstr "To" + +#: ../class/functions.php:389 +msgid "year" +msgstr "an" + +#: ../class/functions.php:389 +msgid "years" +msgstr "ans" + +#: ../class/functions.php:391 +msgid "month" +msgstr "mois" + +#: ../class/functions.php:391 +msgid "months" +msgstr "mois" + +#: ../class/functions.php:414 +msgid "Not managed" +msgstr "Non géré" + +#: ../class/functions.php:541 ../class/functions.php:543 +msgid "Previous Page" +msgstr "Page précédente" + +#: ../class/functions.php:597 ../class/functions.php:599 +msgid "Next Page" +msgstr "Page suivante" + +#: ../class/functions.php:621 +#, fuzzy +msgid "Clic here to generate a password" +msgstr "Veuillez entrer un mot de passe" + +#: ../class/functions.php:656 ../class/functions.php:657 +msgid "Choose a folder..." +msgstr "Choisir un répertoire ..." + +#: ../class/m_action.php:156 +msgid "Error setting actions" +msgstr "" + +#: ../class/m_action.php:168 +#, fuzzy +msgid "Error selecting old actions" +msgstr "Paramètres de votre compte AlternC" + +#: ../class/m_action.php:181 +msgid "Error purging old actions" +msgstr "" + +#: ../class/m_admin.php:60 +msgid "This TLD is forbidden" +msgstr "Ce TLD est interdit" + +#: ../class/m_admin.php:61 +msgid "primary DNS is checked in WHOIS db" +msgstr "vérifier le DNS primaire dans la base WHOIS" + +#: ../class/m_admin.php:62 +msgid "primary & secondary DNS are checked in WHOIS db" +msgstr "vérifier les dns primaires ET secondaires dans la base WHOIS" + +#: ../class/m_admin.php:63 +msgid "Domain must exist, but don't do any DNS check" +msgstr "Le domaine doit exister, mais ne vérifie pas les DNS" + +#: ../class/m_admin.php:64 +msgid "Domain can be installed, no check at all" +msgstr "Le domaine peut être installé sans aucun contrôle" + +#: ../class/m_admin.php:65 +#, fuzzy +msgid "Domain can be installed, force NO DNS hosting" +msgstr "Le domaine peut être installé, (ne gère pas les DNS cependant)" + +#: ../class/m_admin.php:75 +msgid "Administration" +msgstr "Administration" + +#: ../class/m_admin.php:83 +#, fuzzy +msgid "Manage AlternC accounts" +msgstr "Gérer les comptes AlternC" + +#: ../class/m_admin.php:88 +msgid "User Quotas" +msgstr "Quotas Utilisateurs" + +#: ../class/m_admin.php:104 ../class/m_mysql.php:130 +msgid "PhpMyAdmin" +msgstr "PhpMyAdmin" + +#: ../class/m_admin.php:111 +msgid "Switch debug Off" +msgstr "" + +#: ../class/m_admin.php:111 +msgid "Switch debug On" +msgstr "" + +#: ../class/m_admin.php:118 +#, fuzzy +msgid "Applying..." +msgstr "extraction..." + +#: ../class/m_admin.php:119 +msgid "Domain changes are already applying" +msgstr "" + +#: ../class/m_admin.php:125 +#, fuzzy +msgid "Apply changes" +msgstr "Politique de mot de passe modifiée" + +#: ../class/m_admin.php:128 +msgid "" +"Server configuration changes are applied every 5 minutes. Do you want to do " +"it right now?" +msgstr "" + +#: ../class/m_admin.php:174 ../class/m_admin.php:224 ../class/m_admin.php:288 +#: ../class/m_admin.php:364 ../class/m_admin.php:405 ../class/m_admin.php:436 +#: ../class/m_admin.php:491 ../class/m_admin.php:657 ../class/m_admin.php:696 +#: ../class/m_admin.php:720 ../class/m_admin.php:746 +msgid "-- Only administrators can access this page! --" +msgstr "" + +#: ../class/m_admin.php:322 +msgid "" +"Invalid pattern type provided. Are you even performing a legitimate action?" +msgstr "" + +#: ../class/m_admin.php:372 +msgid "Subject, message and sender are mandatory" +msgstr "" + +#: ../class/m_admin.php:377 +msgid "Sender is syntaxically incorrect" +msgstr "" + +#: ../class/m_admin.php:448 +msgid "-- Only administrators can do that! --" +msgstr "" + +#: ../class/m_admin.php:454 +#, fuzzy +msgid "You don't seem to be allowed to delegate this domain" +msgstr "Vous avez demandé la suppression du domaine %s" + +#: ../class/m_admin.php:495 +msgid "Missing db_server field" +msgstr "" + +#: ../class/m_admin.php:499 ../class/m_admin.php:504 +msgid "All fields are mandatory" +msgstr "" + +#: ../class/m_admin.php:508 +#, fuzzy +msgid "Please enter a valid email address" +msgstr "Ajouter cette adresse email" + +#: ../class/m_admin.php:514 +msgid "Login can only contains characters a-z and 0-9" +msgstr "" + +#: ../class/m_admin.php:521 +msgid "The login is too long (14 chars max)" +msgstr "" + +#: ../class/m_admin.php:526 +msgid "Login can only contains characters a-z, 0-9 and -" +msgstr "" + +#: ../class/m_admin.php:572 +msgid "This login already exists" +msgstr "" + +#: ../class/m_admin.php:589 +#, php-format +msgid "query failed: %s " +msgstr "" + +#: ../class/m_admin.php:616 +#, php-format +msgid "New account %s from %s on %s" +msgstr "" + +#: ../class/m_admin.php:621 +#, php-format +msgid "Cannot send email to %s" +msgstr "" + +#: ../class/m_admin.php:625 +#, php-format +msgid "Query failed: %s" +msgstr "" + +#: ../class/m_admin.php:898 +#, fuzzy +msgid "This account is ALREADY an administrator account" +msgstr "Ce compte est maintenant un compte administrateur" + +#: ../class/m_admin.php:920 +#, fuzzy +msgid "This account is NOT an administrator account!" +msgstr "Ce compte est maintenant un compte administrateur" + +#: ../class/m_admin.php:1061 +#, fuzzy, php-format +msgid "Domain '%s' not found." +msgstr "Politique non trouvée" + +#: ../class/m_admin.php:1080 ../class/m_admin.php:1112 +#: ../class/m_admin.php:1162 +#, fuzzy +msgid "This TLD does not exist" +msgstr "L'utilisateur n'existe pas" + +#: ../class/m_admin.php:1133 +msgid "The TLD name is mandatory" +msgstr "" + +#: ../class/m_admin.php:1140 +msgid "This TLD already exist" +msgstr "" + +#: ../class/m_admin.php:1275 +#, fuzzy +msgid "Please enter a login" +msgstr "Veuillez entrer un mot de passe" + +#: ../class/m_admin.php:1285 +msgid "-- Program error -- The requested password policy does not exist!" +msgstr "" + +#: ../class/m_admin.php:1293 +msgid "The password length is too short according to the password policy" +msgstr "" + +#: ../class/m_admin.php:1298 +msgid "The password is too long according to the password policy" +msgstr "" + +#: ../class/m_admin.php:1308 +msgid "" +"The password policy prevents you to use your login name inside your password" +msgstr "" + +#: ../class/m_admin.php:1332 +msgid "" +"Your password contains not enough different classes of character, between " +"low-case, up-case, figures and special characters." +msgstr "" + +#: ../class/m_authip.php:338 +msgid "Object not available" +msgstr "" + +#: ../class/m_authip.php:347 +#, php-format +msgid "Can't identified class for the protocole %s" +msgstr "" + +#: ../class/m_bro.php:68 +msgid "1 column, detailed" +msgstr "" + +#: ../class/m_bro.php:68 +msgid "2 columns, short" +msgstr "" + +#: ../class/m_bro.php:68 +msgid "3 columns, short" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "tar.Z (Unix)" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "tar.bz2 (Linux)" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "tgz (Linux)" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "zip (Windows/Dos)" +msgstr "" + +#: ../class/m_bro.php:71 +msgid "Edit the newly created file" +msgstr "" + +#: ../class/m_bro.php:71 +#, fuzzy +msgid "Go back to the file manager" +msgstr "Retour au gestionnaire de fichiers" + +#: ../class/m_bro.php:186 +#, fuzzy +msgid "This directory do not exist" +msgstr "L'utilisateur n'existe pas" + +#: ../class/m_bro.php:365 ../class/m_bro.php:1040 +msgid "Cannot create the requested directory. Please check the permissions" +msgstr "" + +#: ../class/m_bro.php:371 ../class/m_bro.php:388 ../class/m_bro.php:413 +#: ../class/m_bro.php:437 ../class/m_bro.php:469 ../class/m_bro.php:479 +#: ../class/m_bro.php:509 ../class/m_bro.php:546 ../class/m_bro.php:587 +#: ../class/m_bro.php:625 ../class/m_bro.php:630 ../class/m_bro.php:721 +#: ../class/m_bro.php:868 ../class/m_bro.php:900 +msgid "File or folder name is incorrect" +msgstr "" + +#: ../class/m_bro.php:393 ../class/m_bro.php:558 +msgid "Cannot create the requested file. Please check the permissions" +msgstr "" + +#: ../class/m_bro.php:483 ../class/m_bro.php:634 +msgid "You cannot move or copy a file to the same folder" +msgstr "" + +#: ../class/m_bro.php:610 +#, php-format +msgid "" +"I cannot find a way to extract the file %s, it is an unsupported compressed " +"format" +msgstr "" + +#: ../class/m_bro.php:717 +msgid "Cannot read the requested file. Please check the permissions" +msgstr "" + +#: ../class/m_bro.php:792 +#, fuzzy +msgid "File not in authorized directory" +msgstr "Ajout d'un utilisateur autorisé" + +#: ../class/m_bro.php:895 +msgid "Cannot edit the requested file. Please check the permissions" +msgstr "" + +#: ../class/m_cron.php:40 +msgid "Daily" +msgstr "" + +#: ../class/m_cron.php:41 +#, fuzzy +msgid "Hour" +msgstr "Heures" + +#: ../class/m_cron.php:42 +msgid "Half Hour" +msgstr "" + +#: ../class/m_cron.php:125 +msgid "URL not valid" +msgstr "" + +#: ../class/m_cron.php:133 +#, fuzzy +msgid "Email address is not valid" +msgstr "Liste des adresses emails du domaine %s" + +#: ../class/m_cron.php:142 +msgid "You quota of cron entries is over. You cannot create more cron entries" +msgstr "" + +#: ../class/m_cron.php:151 +msgid "Identity problem" +msgstr "" + +#: ../class/m_dom.php:178 +msgid "Err: failed to prepare the zone" +msgstr "" + +#: ../class/m_dom.php:200 +#, fuzzy +msgid "Missing domain name" +msgstr "Edition du domaine %s" + +#: ../class/m_dom.php:495 +msgid "The name MUST contain only letter and digits" +msgstr "" + +#: ../class/m_dom.php:515 ../class/m_dom.php:1291 +msgid "" +"The parameters for this subdomain and domain type are invalid. Please check " +"for subdomain entries incompatibility" +msgstr "" + +#: ../class/m_dom.php:629 ../class/m_dom.php:1054 ../class/m_dom.php:1119 +#: ../class/m_dom.php:1262 ../class/m_dom.php:1351 ../class/m_dom.php:1395 +#: ../class/m_dom.php:1710 +msgid "--- Program error --- No lock on the domains!" +msgstr "" + +#: ../class/m_dom.php:636 ../class/m_dom.php:1059 ../class/m_dom.php:1286 +#: ../class/m_dom.php:1420 +msgid "The domain name is syntaxically incorrect" +msgstr "" + +#: ../class/m_dom.php:642 ../class/m_dom.php:683 ../class/m_dom.php:1498 +msgid "" +"The requested domain is forbidden in this server, please contact the " +"administrator" +msgstr "" + +#: ../class/m_dom.php:646 +msgid "This domain is the server's domain! You cannot host it on your account!" +msgstr "" + +#: ../class/m_dom.php:651 ../class/m_dom.php:656 +#, fuzzy +msgid "The domain already exist" +msgstr "Edition de fichier" + +#: ../class/m_dom.php:663 ../class/m_dom.php:1402 +msgid "" +"The last member of the domain name is incorrect or cannot be hosted in that " +"server" +msgstr "" + +#: ../class/m_dom.php:667 ../class/m_dom.php:671 +#, fuzzy +msgid "The domain cannot be found in the whois database" +msgstr "Liste des noms de domaines en erreur dans la base des domaines." + +#: ../class/m_dom.php:690 +msgid "Your domain quota is over, you cannot create more domain names" +msgstr "" + +#: ../class/m_dom.php:697 +msgid "An unexpected error occured when creating the domain" +msgstr "" + +#: ../class/m_dom.php:706 ../class/m_dom.php:1065 +#, fuzzy, php-format +msgid "Domain '%s' not found" +msgstr "Politique non trouvée" + +#: ../class/m_dom.php:820 +#, fuzzy +msgid "Could not delete default type" +msgstr "n'a pas pu être effacé" + +#: ../class/m_dom.php:972 +msgid "The Whois database is unavailable, please try again later" +msgstr "" + +#: ../class/m_dom.php:979 ../class/m_dom.php:1406 +#, fuzzy +msgid "The domain cannot be found in the Whois database" +msgstr "Liste des noms de domaines en erreur dans la base des domaines." + +#: ../class/m_dom.php:1124 ../class/m_dom.php:1355 +#, fuzzy +msgid "The sub-domain does not exist" +msgstr "L'adresse email %s n'existe pas !" + +#: ../class/m_dom.php:1155 +msgid "invalid url" +msgstr "" + +#: ../class/m_dom.php:1165 +#, fuzzy +msgid "The folder you entered is incorrect or does not exist" +msgstr "Vos informations d'identification sont incorrectes" + +#: ../class/m_dom.php:1174 ../class/m_dom.php:1182 +#, fuzzy +msgid "The ip address is invalid" +msgstr "Liste des adresses emails du domaine %s" + +#: ../class/m_dom.php:1190 +#, fuzzy +msgid "The name you entered is incorrect" +msgstr "Vos informations d'identification sont incorrectes" + +#: ../class/m_dom.php:1198 +#, fuzzy +msgid "The TXT value you entered is incorrect" +msgstr "Vos informations d'identification sont incorrectes" + +#: ../class/m_dom.php:1203 +msgid "Invalid domain type selected, please check" +msgstr "" + +#: ../class/m_dom.php:1274 +msgid "" +"There is some forbidden characters in the sub domain (only A-Z 0-9 and - are " +"allowed)" +msgstr "" + +#: ../class/m_dom.php:1313 ../class/m_dom.php:1324 +msgid "Cannot write to the destination folder" +msgstr "" + +#: ../class/m_dom.php:1410 +msgid "" +"The DNS of this domain do not match the server's DNS. Please change your " +"domain's DNS before you install it again" +msgstr "" + +#: ../class/m_dom.php:1425 +#, fuzzy, php-format +msgid "The domain name %s does not exist" +msgstr "L'adresse email %s n'existe pas" + +#: ../class/m_dom.php:1431 +#, fuzzy +msgid "No change has been requested..." +msgstr "Vos paramètres d'aide ont été modifiés." + +#: ../class/m_dom.php:1439 ../class/m_dom.php:1444 +msgid "" +"There is no MX record pointing to this server, and you are asking us to host " +"the mail here. Make sure to update your MX entries or no mail will be " +"received" +msgstr "" + +#: ../class/m_dom.php:1491 ../class/m_dom.php:1515 +#, fuzzy +msgid "The IP address you entered is incorrect" +msgstr "Vos informations d'identification sont incorrectes" + +#: ../class/m_dom.php:1588 ../class/m_dom.php:1594 ../class/m_dom.php:1612 +#: ../class/m_dom.php:1618 +#, fuzzy +msgid "This domain is not installed in your account" +msgstr "Ce compte est maintenant un compte normal" + +#: ../class/m_dom.php:1660 +msgid "The specified slave account already exists" +msgstr "" + +#: ../class/m_dom.php:1691 +msgid "--- Program error --- Lock already obtained!" +msgstr "" + +#: ../class/m_dom.php:1831 +#, fuzzy +msgid "Locally hosted" +msgstr "Non géré" + +#: ../class/m_dom.php:1832 +#, fuzzy +msgid "URL redirection" +msgstr "Redirection vers l'URL : " + +#: ../class/m_dom.php:1833 +msgid "IPv4 redirect" +msgstr "" + +#: ../class/m_dom.php:1834 +#, fuzzy +msgid "Webmail access" +msgstr "Accès au webmail" + +#: ../class/m_dom.php:1835 +#, fuzzy +msgid "Squirrelmail Webmail access" +msgstr "Accès au webmail" + +#: ../class/m_dom.php:1836 +#, fuzzy +msgid "Roundcube Webmail access" +msgstr "Accès au webmail" + +#: ../class/m_dom.php:1837 +msgid "IPv6 redirect" +msgstr "" + +#: ../class/m_dom.php:1838 +msgid "CNAME DNS entry" +msgstr "" + +#: ../class/m_dom.php:1839 +#, fuzzy +msgid "TXT DNS entry" +msgstr "Crée seulement l'entrée DNS" + +#: ../class/m_dom.php:1840 +#, fuzzy +msgid "MX DNS entry" +msgstr "Crée seulement l'entrée DNS" + +#: ../class/m_dom.php:1841 +#, fuzzy +msgid "secondary MX DNS entry" +msgstr "Crée seulement l'entrée DNS" + +#: ../class/m_dom.php:1842 +#, fuzzy +msgid "Default mail server" +msgstr "Valeur par défaut" + +#: ../class/m_dom.php:1843 +msgid "Default backup mail server" +msgstr "" + +#: ../class/m_dom.php:1844 +#, fuzzy +msgid "AlternC panel access" +msgstr "Accès à AlternC" + +#: ../class/m_err.php:66 ../class/m_err.php:98 +msgid "err_" +msgstr "err_" + +#: ../class/m_ftp.php:56 ../class/m_ftp.php:447 +msgid "FTP accounts" +msgstr "Comptes FTP" + +#: ../class/m_ftp.php:105 +#, fuzzy +msgid "This account do not exist or is not of this account" +msgstr "Ce compte est maintenant un compte normal" + +#: ../class/m_ftp.php:117 +msgid "Error during update" +msgstr "" + +#: ../class/m_ftp.php:151 +#, fuzzy +msgid "No FTP account found" +msgstr "Aucun compte n'existe pour l'instant" + +#: ../class/m_ftp.php:187 ../class/m_ftp.php:262 ../class/m_ftp.php:322 +#, fuzzy +msgid "This FTP account does not exist" +msgstr "L'utilisateur n'existe pas" + +#: ../class/m_ftp.php:217 +#, php-format +msgid "FTP login is incorrect: too many '%s'" +msgstr "" + +#: ../class/m_ftp.php:224 +#, fuzzy +msgid "FTP login is incorrect" +msgstr "Vos informations d'identification sont incorrectes" + +#: ../class/m_ftp.php:271 ../class/m_ftp.php:351 +msgid "The chosen prefix is not allowed" +msgstr "" + +#: ../class/m_ftp.php:282 ../class/m_ftp.php:360 +#, fuzzy +msgid "This FTP account already exists" +msgstr "Retour à la liste des adresses email" + +#: ../class/m_ftp.php:290 ../class/m_ftp.php:372 +#, fuzzy +msgid "The directory cannot be created" +msgstr "n'a pas pu être effacé" + +#: ../class/m_ftp.php:347 +#, fuzzy +msgid "Password can't be empty" +msgstr "Changer le mot de passe" + +#: ../class/m_ftp.php:388 +msgid "Your FTP account quota is over. You cannot create more ftp accounts" +msgstr "" + +#: ../class/m_hta.php:60 +msgid "Protected folders" +msgstr "Répertoires protégés" + +#: ../class/m_hta.php:81 ../class/m_hta.php:291 ../class/m_hta.php:332 +#, fuzzy, php-format +msgid "The folder '%s' does not exist" +msgstr "Le membre '%s' n'existe pas" + +#: ../class/m_hta.php:89 ../class/m_hta.php:94 ../class/m_hta.php:104 +#: ../class/m_hta.php:253 ../class/m_hta.php:298 ../class/m_hta.php:347 +#, fuzzy +msgid "File already exist" +msgstr "Edition de fichier" + +#: ../class/m_hta.php:98 +msgid "Restricted area" +msgstr "" + +#: ../class/m_hta.php:126 +#, fuzzy +msgid "No protected folder" +msgstr "Répertoires protégés" + +#: ../class/m_hta.php:208 +#, php-format +msgid "I cannot delete the file '%s/.htaccess'" +msgstr "" + +#: ../class/m_hta.php:212 +#, php-format +msgid "I cannot delete the file '%s/.htpasswd'" +msgstr "" + +#: ../class/m_hta.php:231 +#, fuzzy +msgid "Please enter a user" +msgstr "Veuillez entrer un mot de passe" + +#: ../class/m_hta.php:261 +#, fuzzy, php-format +msgid "The user '%s' already exist for this folder" +msgstr "qui existe dans ce répertoire" + +#: ../class/m_hta.php:273 +#, fuzzy +msgid "Please enter a valid username" +msgstr "Veuillez entrer un mot de passe" + +#: ../class/m_hta.php:402 +#, fuzzy +msgid "An incompatible .htaccess file exists in this folder" +msgstr "qui existe dans ce répertoire" + +#: ../class/m_log.php:60 +msgid "Logs" +msgstr "Journaux" + +#: ../class/m_lxc.php:133 +#, fuzzy +msgid "VM already started" +msgstr "Désactiver" + +#: ../class/m_mail.php:95 +msgid "Email Addresses" +msgstr "Adresses email" + +#: ../class/m_mail.php:158 ../class/m_mail.php:243 ../class/m_mail.php:328 +#: ../class/m_mail.php:455 ../class/m_mail.php:509 +msgid "The email you entered is syntaxically incorrect" +msgstr "" + +#: ../class/m_mail.php:191 +#, fuzzy +msgid "Email account password" +msgstr "Gérer les utilisateurs et mots de passe" + +#: ../class/m_mail.php:281 +#, fuzzy +msgid "No email found for this query" +msgstr "Ajout d'un mail sur le domaine %s" + +#: ../class/m_mail.php:340 +#, fuzzy +msgid "You cannot create email addresses: your quota is over" +msgstr "Vous ne pouvez plus créer de statistiques, votre quota est atteint." + +#: ../class/m_mail.php:346 +#, fuzzy +msgid "This email address already exists" +msgstr "Retour à la liste des adresses email" + +#: ../class/m_mail.php:352 +msgid "An unexpected error occured when creating the email" +msgstr "" + +#: ../class/m_mail.php:406 +msgid "This email is not yours, you can't change anything on it" +msgstr "" + +#: ../class/m_mail.php:469 ../class/m_mail.php:875 +#, fuzzy, php-format +msgid "The email %s does not exist, it can't be deleted" +msgstr "L'adresse email %s n'existe pas !" + +#: ../class/m_mail.php:473 +#, php-format +msgid "The email %s is already marked for deletion, it can't be deleted" +msgstr "" + +#: ../class/m_mail.php:482 +#, fuzzy, php-format +msgid "The email %s has been marked for deletion" +msgstr "Le domaine %s a été effacé avec succès." + +#: ../class/m_mail.php:488 +#, fuzzy, php-format +msgid "The email %s has been successfully deleted" +msgstr "Le domaine %s a été effacé avec succès." + +#: ../class/m_mail.php:520 +#, php-format +msgid "The email %s does not exist, it can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:524 +#, php-format +msgid "The email %s is special, it can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:528 +#, php-format +msgid "" +"Sorry, deletion of email %s is already in progress, or not marked for " +"deletion, it can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:537 +#, fuzzy, php-format +msgid "The email %s has been undeleted" +msgstr "L'adresse email %s a été supprimée !" + +#: ../class/m_mail.php:540 +#, php-format +msgid "-- Program Error -- The email %s can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:621 +msgid "" +"There is forbidden characters in your email address. You can't make it a POP/" +"IMAP account, you can only use it as redirection to other emails" +msgstr "" + +#: ../class/m_mail.php:641 +msgid "" +"You set a quota smaller than the current mailbox size. Since it's not " +"allowed, we set the quota to the current mailbox size" +msgstr "" + +#: ../class/m_mail.php:826 +#, fuzzy +msgid "The slave MX account was not found" +msgstr "Politique non trouvée" + +#: ../class/m_mem.php:95 ../class/m_mem.php:101 ../class/m_mem.php:168 +#: ../class/m_mem.php:299 +msgid "User or password incorrect" +msgstr "" + +#: ../class/m_mem.php:105 ../class/m_mem.php:483 +#, fuzzy +msgid "This account is locked, contact the administrator" +msgstr "Ce compte est maintenant un compte administrateur" + +#: ../class/m_mem.php:112 ../class/m_mem.php:271 +msgid "" +"This website is currently under maintenance, login is currently disabled." +msgstr "" + +#: ../class/m_mem.php:127 +msgid "Your IP isn't allowed to connect" +msgstr "" + +#: ../class/m_mem.php:243 +#, fuzzy +msgid "Missing password" +msgstr "Mot de passe initial" + +#: ../class/m_mem.php:252 +msgid "Identity lost or unknown, please login" +msgstr "" + +#: ../class/m_mem.php:258 ../class/m_mem.php:347 +msgid "Session unknown, contact the administrator" +msgstr "" + +#: ../class/m_mem.php:264 ../class/m_mem.php:352 +msgid "IP address incorrect, please contact the administrator" +msgstr "" + +#: ../class/m_mem.php:341 +#, fuzzy +msgid "Cookie incorrect, please accept the session cookie" +msgstr "Vous devez accepter le cookie de session pour pouvoir vous connecter" + +#: ../class/m_mem.php:388 +#, fuzzy +msgid "You are not allowed to change your password." +msgstr "Vous ne pouvez pas changer votre mot de passe" + +#: ../class/m_mem.php:392 +msgid "The old password is incorrect" +msgstr "" + +# Change Mail Password plugin for Squirrelmail / AlternC +# Copyright (C) 2004 Benjamin Sonntag +# This file is distributed under the same license as the ALTERNC package. +# Benjamin Sonntag 2004 +# +#: ../class/m_mem.php:396 ../class/m_mem.php:445 +#, fuzzy +msgid "The new passwords are differents, please retry" +msgstr "Vos nouveaux mots de passes sont différents, réessayez." + +#: ../class/m_mem.php:420 +msgid "You must be a system administrator to do this." +msgstr "" + +#: ../class/m_mem.php:440 +#, fuzzy +msgid "This account is locked, contact the administrator." +msgstr "Ce compte est maintenant un compte administrateur" + +#: ../class/m_mem.php:448 +#, php-format +msgid "" +"Hello,\n" +"\n" +"You requested the modification of your password for your\n" +"account %s on %s\n" +"Here are your username and password to access the panel :\n" +"\n" +"--------------------------------------\n" +"\n" +"Username : %s\n" +"Password : %s\n" +"\n" +"--------------------------------------\n" +"\n" +"Note : if you didn't requested that modification, it means that\n" +"someone did it instead of you. You can choose to ignore this message.\n" +"If it happens again, please contact your server's Administrator. \n" +"\n" +"Cordially.\n" +msgstr "" + +#: ../class/m_mem.php:493 +#, php-format +msgid "" +"Hello,\n" +"\n" +"Someone (maybe you) requested an email's address modification of the " +"account\n" +"%s on %s\n" +"To confirm your request, go to this url :\n" +"\n" +"%s\n" +"\n" +"(Warning : if this address is displayed on 2 lines, don't forgot to\n" +"take it on one line).\n" +"The panel will ask you the key given when the email address\n" +"modification was requested.\n" +"\n" +"If you didn't asked for this modification, it means that someone\n" +"did it instead of you. You can choose to ignore this message. If it happens\n" +"again, please contact your server's administrator.\n" +"\n" +"Cordially.\n" +msgstr "" + +#: ../class/m_mem.php:534 +#, fuzzy +msgid "The information you entered is incorrect." +msgstr "Vos informations d'identification sont incorrectes" + +#: ../class/m_menu.php:113 +msgid "Home / Information" +msgstr "Accueil / Information" + +#: ../class/m_menu.php:120 +msgid "Logout" +msgstr "Se déconnecter" + +#: ../class/m_menu.php:127 +msgid "Online help" +msgstr "Aide en ligne" + +#: ../class/m_menu.php:135 +msgid "Languages" +msgstr "Langues" + +#: ../class/m_mysql.php:49 +msgid "" +"There are no databases in db_servers for this user. Please contact your " +"administrator." +msgstr "" + +#: ../class/m_mysql.php:110 +#, fuzzy +msgid "MySQL" +msgstr "Utilisateurs MySQL" + +#: ../class/m_mysql.php:119 +msgid "Databases" +msgstr "Bases de données" + +#: ../class/m_mysql.php:178 +msgid "Cannot connect to PhpMyAdmin" +msgstr "" + +#: ../class/m_mysql.php:219 ../class/m_mysql.php:385 +#, fuzzy, php-format +msgid "Database %s not found" +msgstr "Politique non trouvée" + +#: ../class/m_mysql.php:246 +msgid "Your databases quota is over. You cannot create more databases" +msgstr "" + +#: ../class/m_mysql.php:257 +msgid "Database can't have empty suffix" +msgstr "" + +#: ../class/m_mysql.php:262 ../class/m_mysql.php:380 ../class/m_mysql.php:462 +msgid "Database name can contain only letters and numbers" +msgstr "" + +#: ../class/m_mysql.php:268 +msgid "Database name cannot exceed 64 characters" +msgstr "" + +#: ../class/m_mysql.php:273 +#, fuzzy, php-format +msgid "Database %s already exists" +msgstr "Edition de fichier" + +#: ../class/m_mysql.php:291 +msgid "" +"There is a problem with the special PhpMyAdmin user. Contact the " +"administrator" +msgstr "" + +#: ../class/m_mysql.php:310 +#, fuzzy +msgid "An error occured. The database could not be created" +msgstr "n'a pas pu être effacé" + +#: ../class/m_mysql.php:328 +#, fuzzy +msgid "The database was not found. I can't delete it" +msgstr "La base de données %s a été effacée avec succès" + +#: ../class/m_mysql.php:367 +#, fuzzy +msgid "User aren't allowed to configure their backups" +msgstr "Vous ne pouvez pas changer votre mot de passe" + +#: ../class/m_mysql.php:398 +msgid "You have to choose how many backups you want to keep" +msgstr "" + +#: ../class/m_mysql.php:402 +#, fuzzy +msgid "Directory does not exist" +msgstr "L'utilisateur n'existe pas" + +#: ../class/m_mysql.php:420 ../class/m_mysql.php:465 +#, fuzzy +msgid "Database not found" +msgstr "Politique non trouvée" + +#: ../class/m_mysql.php:427 ../class/m_mysql.php:711 +#, fuzzy +msgid "The password is mandatory" +msgstr "Les mots de passe ne correspondent pas" + +#: ../class/m_mysql.php:432 +msgid "MySQL password cannot exceed 16 characters" +msgstr "" + +#: ../class/m_mysql.php:472 +msgid "Databases rights are not correct" +msgstr "" + +#: ../class/m_mysql.php:477 +msgid "The username can contain only letters and numbers." +msgstr "" + +#: ../class/m_mysql.php:483 +#, fuzzy +msgid "Database user not found" +msgstr "Politique non trouvée" + +#: ../class/m_mysql.php:495 +msgid "Could not grant rights" +msgstr "" + +#: ../class/m_mysql.php:513 +#, fuzzy +msgid "No file specified" +msgstr "Aucun répertoire sélectionné !" + +#: ../class/m_mysql.php:520 ../class/m_mysql.php:524 +#, fuzzy +msgid "File not found" +msgstr "Politique non trouvée" + +#: ../class/m_mysql.php:707 +msgid "The username is mandatory" +msgstr "" + +#: ../class/m_mysql.php:715 ../class/m_mysql.php:792 +msgid "The username can contain only letters and numbers" +msgstr "" + +#: ../class/m_mysql.php:722 +msgid "MySQL username cannot exceed 16 characters" +msgstr "" + +#: ../class/m_mysql.php:727 +#, fuzzy +msgid "The database user already exists" +msgstr "Edition de fichier" + +#: ../class/m_mysql.php:731 ../class/m_mysql.php:765 +#, fuzzy +msgid "The passwords do not match" +msgstr "Les mots de passe ne correspondent pas" + +#: ../class/m_mysql.php:802 +#, fuzzy +msgid "The username was not found" +msgstr "Politique non trouvée" + +#: ../class/m_mysql.php:831 +#, fuzzy +msgid "This user does not exist in the MySQL/User database" +msgstr "Liste des noms de domaines en erreur dans la base des domaines." + +#: ../class/m_mysql.php:1105 +#, fuzzy +msgid "The directory could not be created" +msgstr "n'a pas pu être effacé" + +#: ../class/m_piwik.php:40 +#, fuzzy +msgid "Piwik statistics" +msgstr "Statistiques web" + +#: ../class/m_piwik.php:45 +#, fuzzy +msgid "Piwik Users" +msgstr "Utilisateurs" + +#: ../class/m_piwik.php:46 +msgid "Piwik Sites" +msgstr "" + +#: ../class/m_piwik.php:81 +msgid "Statistics through Piwik accounts" +msgstr "" + +#: ../class/m_piwik.php:193 ../class/m_piwik.php:316 +msgid "You are not allowed to delete the statistics of this website" +msgstr "" + +#: ../class/m_piwik.php:366 +msgid "Unable to reach the API" +msgstr "" + +#: ../class/m_piwik.php:372 +msgid "Error while decoding response from the API" +msgstr "" + +#: ../class/m_piwik.php:378 +msgid "Other format than JSON is not implemented yet" +msgstr "" + +#: ../class/m_quota.php:65 +msgid "Show my quotas" +msgstr "Quotas du compte AlternC" + +#: ../class/m_quota.php:78 +#, php-format +msgid "%s%% of %s" +msgstr "" + +#: ../class/m_quota.php:78 ../class/m_quota.php:105 ../class/m_quota.php:196 +msgid "quota_" +msgstr "quota_" + +#: ../class/m_quota.php:236 +#, fuzzy +msgid "Error writing the quota entry!" +msgstr "Modification des quotas d'un compte AlternC" + +#: ../class/m_quota.php:537 +#, fuzzy +msgid "B" +msgstr "Mo" + +#: ../class/m_quota.php:537 +msgid "GB" +msgstr "" + +#: ../class/m_quota.php:537 +msgid "KB" +msgstr "" + +#: ../class/mime.php:135 +msgid "CSS Stylesheet" +msgstr "Feuille de style CSS" + +#: ../class/mime.php:136 +msgid "Comma Separated Values data" +msgstr "Données à séparateur virgule" + +#: ../class/mime.php:137 +msgid "DIA Diagram" +msgstr "Diagramme DIA" + +#: ../class/mime.php:138 +msgid "Word Document" +msgstr "Document Word" + +#: ../class/mime.php:139 +msgid "Word Document Template" +msgstr "Modèle de document Word" + +#: ../class/mime.php:140 +msgid "Encapsulated Postscript" +msgstr "Postscript encapsulé" + +#: ../class/mime.php:141 +msgid "GIF Image" +msgstr "Image GIF" + +#: ../class/mime.php:142 +msgid "Macintosh Executable" +msgstr "Exécutable Macintosh" + +#: ../class/mime.php:143 ../class/mime.php:144 +msgid "HTML Document" +msgstr "Document HTML" + +#: ../class/mime.php:145 ../class/mime.php:146 +msgid "JPEG Image" +msgstr "Image JPEG" + +#: ../class/mime.php:147 +msgid "Music Playlist" +msgstr "Liste de pistes musicales" + +#: ../class/mime.php:148 +msgid "MP3 Music File" +msgstr "Fichier musique MP3" + +#: ../class/mime.php:149 +msgid "Ogg Music File" +msgstr "Fichier musique OGG" + +#: ../class/mime.php:150 +msgid "Acrobat PDF" +msgstr "Document PDF" + +#: ../class/mime.php:151 +msgid "PHP Source" +msgstr "Source PHP" + +#: ../class/mime.php:152 +msgid "PNG Image" +msgstr "Image PNG" + +#: ../class/mime.php:153 ../class/mime.php:154 +msgid "Powerpoint Slideshow" +msgstr "Diaporama Powerpoint" + +#: ../class/mime.php:155 +msgid "Postscript Document" +msgstr "Document Postscript" + +#: ../class/mime.php:156 +msgid "Photoshop Image" +msgstr "Image Photoshop" + +#: ../class/mime.php:157 +msgid "Rar Compressed Files" +msgstr "Fichiers compressés RAR" + +#: ../class/mime.php:158 +msgid "Rich Text Document" +msgstr "Document enrichi RTF" + +#: ../class/mime.php:159 +msgid "OpenOffice Spreadsheet" +msgstr "Feuille de calcul OpenOffice" + +#: ../class/mime.php:160 +msgid "OpenOffice Drawing" +msgstr "Dessin OpenOffice" + +#: ../class/mime.php:161 +msgid "OpenOffice Presentation" +msgstr "Présentation OpenOffice" + +#: ../class/mime.php:162 +msgid "OpenOffice Writer" +msgstr "Texte OpenOffice" + +#: ../class/mime.php:163 ../class/mime.php:164 +msgid "TIFF Image" +msgstr "Image TIFF" + +#: ../class/mime.php:165 +msgid "Text Document" +msgstr "Document Texte" + +#: ../class/mime.php:166 ../class/mime.php:167 +msgid "Virtual Card" +msgstr "Carte de visite" + +#: ../class/mime.php:168 +msgid "Gimp Image" +msgstr "Image GIMP" + +#: ../class/mime.php:169 +msgid "Excel Spreadsheet" +msgstr "Feuille de calcul Excel" + +#: ../class/mime.php:170 +msgid "Zip Compressed Files" +msgstr "Fichiers compressés ZIP" + +#: ../class/mime.php:171 +msgid "Flash Animation" +msgstr "Animation Flash" + +#: ../class/mime.php:172 ../class/mime.php:173 ../class/mime.php:174 +msgid "Real Media File" +msgstr "Fichier Real Media" + +#, fuzzy +#~ msgid "Click here to do so." +#~ msgstr "Cliquez ici pour vous reconnecter" + +#, fuzzy +#~ msgid "Mailing lists" +#~ msgstr "Listes Mailman" + +#, fuzzy +#~ msgid "Web Statistics" +#~ msgstr "Statistiques web brutes" + +#~ msgid "" +#~ "Edit the file /etc/alternc/menulist.txt to enable, disable ou change " +#~ "order of menu entry." +#~ msgstr "" +#~ "Modifiez le fichier /etc/alternc/menulist.txt pour activer, désactiver, " +#~ "ou changer l'ordre du menu." + +#~ msgid "Menu activated but not present" +#~ msgstr "Menu actif mais non présent" + +#, fuzzy +#~ msgid "Menu available but not activated" +#~ msgstr "Menu actif mais non présent" + +#~ msgid "Manage menu" +#~ msgstr "Gérer le Menu" + +#~ msgid "help_domain_del %s" +#~ msgstr "" +#~ "Si vous voulez détruire le domaine %s, cliquez sur le bouton ci-dessous. " +#~ "Attention, cela supprime aussi tous les comptes ftp, les adresses email, " +#~ "les listes de diffusion etc... associés à ce domaine et à tous ses sous-" +#~ "domaines !" + +#, fuzzy +#~ msgid "Add %s mail to the domain %s" +#~ msgstr "Ajout d'un mail sur le domaine %s" + +#, fuzzy +#~ msgid "AlternC" +#~ msgstr "À propos d'AlternC" + +#, fuzzy +#~ msgid "Mailboxes size:" +#~ msgstr "Adresses email" + +#~ msgid "You want it to be deleted in" +#~ msgstr "Vous souhaitez que cette adresse soit supprimée dans" + +#~ msgid "Hours" +#~ msgstr "Heures" + +#~ msgid "Days" +#~ msgstr "Jours" + +#~ msgid "Weeks" +#~ msgstr "Semaines" + +#~ msgid "" +#~ "Delete this email the following day,
enter the date using DD/MM/YYYY " +#~ "format" +#~ msgstr "" +#~ "Cette adresse doit être supprimée le jour suivant
entrez la date " +#~ "sous la forme JJ/MM/AAAA" + +#~ msgid "All this account information will be deleted at expiration" +#~ msgstr "L'adresse email sera détruite à la date d'expiration" + +#~ msgid "Missing uid" +#~ msgstr "Utilisateur manquant" + +#~ msgid "General PhpMyAdmin" +#~ msgstr "PhpMyAdmin Général" + +#~ msgid "Editing an FTP account" +#~ msgstr "Modification d'un compte ftp" + +#~ msgid "help_hta_list" +#~ msgstr "Voici la liste des répertoires protégés de votre compte" + +#~ msgid "Protocol" +#~ msgstr "Protocole" + +#~ msgid "IP address" +#~ msgstr "Adresse IP" + +#~ msgid "Web Space:" +#~ msgstr "Espace Web :" + +#~ msgid "You cannot add any new ftp account, your quota is over." +#~ msgstr "" +#~ "Vous avez atteint votre quota de comptes ftp, vous ne pouvez plus en " +#~ "créer." + +#~ msgid "The FTP account has been successfully created" +#~ msgstr "Le compte FTP a été créé avec succès" + +#~ msgid "No account selected!" +#~ msgstr "Aucun compte sélectionné !" + +#~ msgid "Change this FTP account" +#~ msgstr "Modifier le compte FTP." + +#, fuzzy +#~ msgid "The database user was not found" +#~ msgstr "La base de données %s a été effacée avec succès" + +#, fuzzy +#~ msgid "Edition of %s" +#~ msgstr "Ajouter une adresse email sur %s" + +#, fuzzy +#~ msgid "Global options" +#~ msgstr "Global" + +# Change Mail Password plugin for Squirrelmail / AlternC +# Copyright (C) 2004 Benjamin Sonntag +# This file is distributed under the same license as the ALTERNC package. +# Benjamin Sonntag 2004 +# +#, fuzzy +#~ msgid "The new passwords are differents, please retry." +#~ msgstr "Vos nouveaux mots de passes sont différents, réessayez." + +#, fuzzy +#~ msgid "You have to set a new password." +#~ msgstr "Vous ne pouvez pas changer votre mot de passe" + +#, fuzzy +#~ msgid "You have to input a password." +#~ msgstr "Vous ne pouvez pas changer votre mot de passe" + +#, fuzzy +#~ msgid "Create this alias" +#~ msgstr "Créer un alias" + +#, fuzzy +#~ msgid "Set a passowrd:" +#~ msgstr "Nouveau mot de passe" + +#~ msgid "Change your password:" +#~ msgstr "Modifier votre mot de passe :" + +#~ msgid "Password does not match" +#~ msgstr "Les mots de passe ne correspondent pas" + +#~ msgid "Password match" +#~ msgstr "Les mots de passe correspondent" + +#, fuzzy +#~ msgid "Already disactivated" +#~ msgstr "Désactiver" + +#~ msgid "" +#~ "WARNING: turning POP/IMAP off will DELETE the stored messages in this " +#~ "email address. This email address will become a simple redirection." +#~ msgstr "" +#~ "ATTENTION : Choisir 'Non' ici supprimera les messages stockés dans " +#~ "cette adresse email. L'adresse email sera transformée en simple " +#~ "redirection." + +#, fuzzy +#~ msgid "Clear all redirections" +#~ msgstr "Redirection vers l'URL : " + +#~ msgid "" +#~ "This password is not strong enough for your policy, set a stronger " +#~ "password or call your administrator" +#~ msgstr "" +#~ "Ce mot de passe n'est pas assez compliqué selon votre politique de mot de " +#~ "passe. Entrez un mot de passe plus compliqué ou contactez votre " +#~ "administrateur" + +#~ msgid "This allow you to change your mail password." +#~ msgstr "Vous pouvez modifier votre mot de passe de messagerie." + +#~ msgid "" +#~ "If you want to read your mail, enter your Email address and password in " +#~ "the following form and click 'Enter'" +#~ msgstr "" +#~ "Si vous souhaitez accéder à votre messagerie en ligne, entrez " +#~ "votre adresse email et votre mot de passe dans le formulaire ci-contre et " +#~ "cliquez sur 'Entrer'" + +#~ msgid "Webmail Access" +#~ msgstr "Accès au webmail" + +#~ msgid "Email Address" +#~ msgstr "Adresse Email" + +#, fuzzy +#~ msgid "Active" +#~ msgstr "Action" + +#, fuzzy +#~ msgid "State" +#~ msgstr "État" + +#~ msgid "Latest news" +#~ msgstr "Dernières nouvelles" + +#~ msgid "Langues" +#~ msgstr "Langues" + +#~ msgid "Raw web statistics" +#~ msgstr "Statistiques web brutes" + +#~ msgid "err_mysql_1" +#~ msgstr "" +#~ "Vous avez atteint votre quota de bases, vous ne pouvez plus en créer." + +#~ msgid "Your database has been successfully created" +#~ msgstr "Votre base de données a été créée avec succès" + +#~ msgid "Your current settings are" +#~ msgstr "Voici vos paramètres actuels" + +#~ msgid "MySQL Server" +#~ msgstr "Serveur MySQL" + +#~ msgid "Main database" +#~ msgstr "Base de données principale" + +#~ msgid "" +#~ "Enter the new password of your MySQL database and click 'change the " +#~ "password' to change it" +#~ msgstr "" +#~ "Entrez le nouveau mot de passe de votre base de données MySQL et cliquez " +#~ "sur 'Changer le mot de passe'" + +#~ msgid "err_mysql_13" +#~ msgstr "" +#~ "Vous avez atteint votre quota d'utilisateurs MySQL, vous ne pouvez plus " +#~ "en créer" + +#~ msgid "You cannot add any new statistics, your quota is over." +#~ msgstr "Vous ne pouvez plus créer de statistiques, votre quota est atteint." + +#~ msgid "New Raw Statistics (apache)" +#~ msgstr "Nouvelles statistiques brutes (apache)" + +#~ msgid "Domain name:" +#~ msgstr "Nom de domaine :" + +#~ msgid "Folder where we will put the log file:" +#~ msgstr "Répertoire qui accueillera vos logs :" + +#~ msgid "Create those raw statistics" +#~ msgstr "Créer ce jeu de statistiques brutes" + +#~ msgid "" +#~ "The statistics %s has been successfully deleted (the stats files must be " +#~ "manually deleted)" +#~ msgstr "" +#~ "Le jeu de statistiques %s a été supprimé avec succès (les fichiers de " +#~ "stats doivent etre supprimés manuellement)" + +#~ msgid "No Statistics selected!" +#~ msgstr "Aucun jeu de sélectionné !" + +#~ msgid "The Statistics has been successfully changed" +#~ msgstr "Le jeu de statistiques a été modifié avec succès" + +#~ msgid "Change the Raw Statistics" +#~ msgstr "Modifier ce jeu de stats brutes." + +#~ msgid "Change those Raw Statistics." +#~ msgstr "Modifier ce jeu de stats brutes." + +#~ msgid "Raw Statistics List" +#~ msgstr "Liste des jeux de statistiques brutes" + +#~ msgid "Create new Raw Statistics (apache)" +#~ msgstr "Créer un nouveau jeu de statistiques brutes (apache)" + +#~ msgid "Delete the checked Raw Statistics (apache)" +#~ msgstr "Effacer les jeux de stats brutes cochees" + +#, fuzzy +#~ msgid "The email %s is special, it can't be deleted" +#~ msgstr "L'adresse email %s a été supprimée !" + +#, fuzzy +#~ msgid "Local mailbox" +#~ msgstr "Nouvelle adresse email" + +#~ msgid "ctrl+click or shift+click and drag to resize the editing zone" +#~ msgstr "" +#~ "ctrl+clic ou shift+clic et déplacer pour redimensionner la zone d'édition" + +#~ msgid "Add a mail to the domain %s" +#~ msgstr "Ajout d'un mail sur le domaine %s" + +#~ msgid "Redirections
Other recipients:" +#~ msgstr "Redirections/Autres destinataires :" + +#~ msgid "Is it a temporary mail account?" +#~ msgstr "Souhaitez-vous que ce mail soit temporaire ?" + +#~ msgid "help_mail_add" +#~ msgstr "" +#~ "- Pour créer cette adresse email
* Si vous voulez stocker les " +#~ "messages reçus et y accéder avec un logiciel de messagerie ou le webmail, " +#~ "cochez la case 'Compte pop'. Dans ce cas, entrez un mot de passe pour le " +#~ "compte pop.
* Si vous souhaitez rediriger ce mail vers d'autres, " +#~ "entrer la liste des mails concernés, un mail par ligne (avec le @ dans " +#~ "tous les cas).
Note : il faut soit cocher la case 'Creer un compte " +#~ "pop' soit entrer une redirection, soit les deux.
* Pour accéder à " +#~ "la lecture du mail, utiliser l'adresse http://'votredomaine'/webmail/ ou " +#~ "un sous-domaine de type 'Accès au Webmail'
Le nom d'utilisateur est " +#~ "l'adresse email (par exemple login@votredomaine.com) et le " +#~ "mot de passe est celui que vous avez entré dans ce formulaire. " + +#~ msgid "The email address %s has been successfully created" +#~ msgstr "L'adresse email %s a été ajouté avec succès" + +#~ msgid "The email address %s has been successfully changed" +#~ msgstr "L'adresse email %s a été modifiée avec succès" + +#~ msgid "Edit an email address of the domain %s" +#~ msgstr "Modification d'une adresse email du domaine %s" + +#~ msgid "Edit the email address %s" +#~ msgstr "Modification de l'adresse email %s" + +#~ msgid "This account is a temporary account.
It will be delete on " +#~ msgstr "Cette adresse email est temporaire
Elle sera détruite le " + +#~ msgid "help_mail_edit" +#~ msgstr "" +#~ "- Pour modifier cet email
* Si vous voulez stocker les emails recus " +#~ "et y accéder avec un logiciel de messagerie ou le webmail, cochez la case " +#~ "'Compte pop'. Dans ce cas, entrez un mot de passe pour le compte pop." +#~ "
* Si vous souhaitez rediriger ce mail vers d'autres, entrer la " +#~ "liste des mails concernés, un mail par ligne (avec le @ dans tous les " +#~ "cas).
Note : il faut soit cocher la case 'Creer un compte pop' soit " +#~ "entrer une redirection, soit les deux.
* Si vous ne mettez rien " +#~ "dans la zone 'Mot de passe', celui-ci ne sera pas changé. Si vous voulez " +#~ "changer le mot de passe, entrez le nouveau mot de passe
* Pour " +#~ "accéder à la lecture du mail, utiliser l'adresse http://'votredomaine'/" +#~ "webmail/ ou un sous-domaine du type 'Accès au Webmail'
Le nom " +#~ "d'utilisateur est votre adresse email (par exemple " +#~ "login@votredomaine.com et le mot de passe est celui que vous " +#~ "avez entré dans ce formulaire. " + +#~ msgid "Add a mailbox on %s" +#~ msgstr "Ajouter une adresse email sur %s" + +#~ msgid "Add many mailboxes on %s" +#~ msgstr "Ajouter plusieurs adresses email sur %s" + +#~ msgid "Show only mail starting by:" +#~ msgstr "Afficher seulement les adresses mails commençant par :" + +#~ msgid "All" +#~ msgstr "Tous" + +#~ msgid "This account will be deleted on" +#~ msgstr "Ce compte sera détruit le" + +#~ msgid "help_sql_list_ok" +#~ msgstr "" +#~ "Vous disposez de une ou plusieurs bases de données
Cliquez sur " +#~ "'Admin SQL' dans le menu pour les administrer
Ou utilisez le tableau " +#~ "ci-dessous pour gérer les sauvegardes / restaurations, effacer vos " +#~ "bases : " + +#~ msgid "Change the MySQL password" +#~ msgstr "Changer le mot de passe MySQL" + +#~ msgid "Get the current MySQL parameters" +#~ msgstr "Afficher les paramètres MySQL actuels" + +#~ msgid "help_sql_list_no" +#~ msgstr "" +#~ "Votre base de données principale n'existe pas, entrez ici un mot de passe " +#~ "pour la créer" + +#~ msgid "Create my main database" +#~ msgstr "Créer ma base de données principale" + +#~ msgid "help_sql_users_list_ok" +#~ msgstr "Utilisez le tableau ci-dessous pour gérer vos utilisateurs MySQL : " + +#~ msgid "help_sql_users_rights_ok" +#~ msgstr "" +#~ "Cochez les droits sur les bases dont vous voulez fournir à " +#~ "l'utilisateur : " + +#~ msgid "New member" +#~ msgstr "Nouveau compte : " + +#~ msgid "Create the domain username.%s" +#~ msgstr "Installer le domaine login.%s" + +#~ msgid "Create a new member" +#~ msgstr "Créer un nouvel utilisateur" + +#~ msgid "Member" +#~ msgstr "Compte AlternC" + +#, fuzzy +#~ msgid "Account Enabled ?" +#~ msgstr "Compte Actif ? " + +#, fuzzy +#~ msgid "Reset quotas to default ?" +#~ msgstr "Réinitialiser les quotas de ce compte ?" + +#~ msgid "Back to the account list" +#~ msgstr "Retour à la liste des comptes AlternC" + +#~ msgid "Member list" +#~ msgstr "Liste des comptes" + +#~ msgid "List all the accounts" +#~ msgstr "Liste de tous les comptes AlternC" + +#~ msgid "Last fail" +#~ msgstr "Dernièr échec" + +#~ msgid "Locked Account" +#~ msgstr "Compte AlternC verrouillé" + +#~ msgid "AlternC Desktop" +#~ msgstr "Bureau AlternC" + +#~ msgid "Show all quotas" +#~ msgstr "Montrer tous les quotas" + +#~ msgid "mode" +#~ msgstr "mode" + +#~ msgid "all/none" +#~ msgstr "tous/aucun" + +#~ msgid "Import this file" +#~ msgstr "Importer ce fichier" + +#~ msgid "There is an ftp account in this folder" +#~ msgstr "Il existe un compte ftp dans ce répertoire" + +#~ msgid "Click here to edit this ftp account." +#~ msgstr "Cliquez ici pour le modifier." + +#~ msgid "This folder has restricted access" +#~ msgstr "Le répertoire est protégé" + +#~ msgid "Click here to protect this folder with login/password" +#~ msgstr "Cliquer ici pour protéger ce répertoire par un login / mot de passe" + +#~ msgid "this folder and its subfolders as a compressed file" +#~ msgstr "ce répertoire dans un fichier compressé" + +#~ msgid "Configure the file browser" +#~ msgstr "Configurer le gestionnaire de fichiers" + +#~ msgid "File editor preferences" +#~ msgstr "Préférences du gestionnaire de fichiers" + +#~ msgid "" +#~ "The domain %s has been changed. The modifications will take effect in 5 " +#~ "minutes." +#~ msgstr "" +#~ "Votre domaine %s a été modifié. Les modifications prendront effet dans 5 " +#~ "minutes." + +#~ msgid "Subdomains" +#~ msgstr "Sous-domaines" + +#~ msgid "DNS parameters" +#~ msgstr "Paramètres DNS" + +#~ msgid "help_dns_mx %s %s" +#~ msgstr "" +#~ "Si l'on gère vos DNS :
Vous pouvez choisir de faire gérer vos " +#~ "mails ailleurs (champ MX).
Mettez %s dans ce " +#~ "champ pour gérer vos mails par %s
Sinon mettez l'ip ou le nom du " +#~ "serveur que vous souhaitez utiliser pour gérer vos mails." +#~ "\tAttention : Si vous laissez ce champ vide, vous ne pourrez pas " +#~ "utiliser les mails de votre domaine !" + +#~ msgid "MX Field" +#~ msgstr "Champs MX" + +#~ msgid "help_dns_mail" +#~ msgstr "Si l'on ne gère pas vos DNS :
gère-t-on vos mails ?" + +#~ msgid "The modifications will take effect in 5 minutes." +#~ msgstr "Les modifications seront prises en comptes dans 5 minutes." + +#~ msgid "The folder must exists." +#~ msgstr "Le répertoire doit déjà exister." + +#~ msgid "Add a username" +#~ msgstr "Ajouter un utilisateur" + +#~ msgid "Administration of" +#~ msgstr "Administration de" + +#~ msgid "Enter your username and password to connect to the virtual desktop" +#~ msgstr "" +#~ "Entrez votre nom d'utilisateur et votre mot de passe pour vous connecter " +#~ "a l'interface d'administration" + +#~ msgid "Restrict this session to my ip address" +#~ msgstr "Restreindre cette session à mon adresse IP" + +#~ msgid "You can use a different language: " +#~ msgstr "Vous pouvez utiliser une langue différente : " + +#~ msgid "AlternC, Opensource hosting control panel" +#~ msgstr "AlternC, Panneau de contrôle d'hébergement mutualisé opensource" + +#~ msgid "Is it a POP account?" +#~ msgstr "Est-ce un compte POP/IMAP ?" + +#~ msgid "POP password" +#~ msgstr "Mot de passe POP" + +#~ msgid "One email per line" +#~ msgstr "une adresse email par ligne" + +#~ msgid "Create this mailbox" +#~ msgstr "Ajouter cette adresse email" + +#~ msgid "Delete the selected mailboxes" +#~ msgstr "Effacer les adresses email cochées" + +#~ msgid "Don't delete accounts and go back to the mail list" +#~ msgstr "Ne rien supprimer et revenir à la liste des adresses email" + +#~ msgid "The mailbox %s has been successfully created" +#~ msgstr "L'adresse email %s a été créée avec succès" + +#~ msgid "Back to the mail account list" +#~ msgstr "Retour à la liste des comptes AlternC" + +#~ msgid "The mailbox %s has been successfully changed" +#~ msgstr "L'adresse email %s a été modifiée avec succès" + +#~ msgid "Edit a mailbox of the domain %s" +#~ msgstr "Modification d'une adresse email sur le domaine %s" + +#~ msgid "Change this mailbox" +#~ msgstr "Modifier cette adresse email" + +#~ msgid "Mailbox list of the domain %s" +#~ msgstr "Liste des adresses emails du domaine %s" + +#~ msgid "General SQL Admin" +#~ msgstr "PhpMyAdmin Général" + +#~ msgid "Front page" +#~ msgstr "Accueil" + +#~ msgid "Create a new database" +#~ msgstr "Créer une nouvelle base de données" + +#~ msgid "Create this new database." +#~ msgstr "Créer cette nouvelle base de données MySQL." + +#~ msgid "Do sql backup?" +#~ msgstr "Sauvegarder la base MySQL ?" + +#~ msgid "How many backup should be kept?" +#~ msgstr "Combien de sauvegardes conserve-t-on ?" + +#~ msgid "Change the SQL backup parameters" +#~ msgstr "Changer les paramètres de sauvegarde MySQL" + +#~ msgid "Change the SQL password" +#~ msgstr "Changer le mot de passe MySQL" + +#~ msgid "Get the current SQL parameters" +#~ msgstr "Afficher les paramètres MySQL actuels" + +#~ msgid "" +#~ "Enter the new password of your SQL database and click 'change the " +#~ "password' to change it" +#~ msgstr "" +#~ "Entrez le nouveau mot de passe de votre base de données MySQL et cliquez " +#~ "sur 'Changer le mot de passe'" + +#~ msgid "Restore a SQL backup for database %s" +#~ msgstr "Restaurer la sauvegarde MySQL de la base %s" + +#~ msgid "Please enter the filename containing SQL data to be restored." +#~ msgstr "" +#~ "Choisissez le nom du fichier contenant des données SQL à restaurer dans " +#~ "la base." + +#~ msgid "err_mysql_20" +#~ msgstr "" +#~ "Vous avez atteint votre quota d'utilisateurs, vous ne pouvez plus en " +#~ "créer." + +#~ msgid "Create this new user" +#~ msgstr "Créer ce nouvel utilisateur" + +#~ msgid "Statistics List" +#~ msgstr "Liste des jeux de statistiques brutes" + +#~ msgid "_" +#~ msgstr "_" + +#~ msgid "Update this page" +#~ msgstr "Recharger cette page" + +#~ msgid "WARNING : Confirm the deletion of this files" +#~ msgstr "ATTENTION : Confirmez-vous la suppression de ces fichiers" + +#~ msgid "Please choose the filename containing SQL data to be restored." +#~ msgstr "" +#~ "Choisissez le nom du fichier contenant des données SQL à restaurer dans " +#~ "la base." + +#~ msgid "OR" +#~ msgstr "OU" + +#~ msgid "" +#~ "Image_Graph not installed. pear install Image_Graph-devel to see the " +#~ "graph." +#~ msgstr "" +#~ "Image_Graph n'est pas installé. pear install Image_Graph-devel pour voir " +#~ "ce graphique." + +#~ msgid "Old Name:" +#~ msgstr "Ancien nom : " + +#~ msgid "New Name:" +#~ msgstr "Nouveau nom : " + +#~ msgid "Move to" +#~ msgstr "Déplacer vers" + +#~ msgid "" +#~ "The subdomain has been deleted. Changes will take place in 5 minutes." +#~ msgstr "" +#~ "Le sous-domaine a ete supprime, les modifications seront prises en " +#~ "comptes dans 5 minutes." + +#~ msgid "" +#~ "Image_Graph not installed. use 'aptitude install php-pear' then 'pear --" +#~ "alldeps install Image_Graph-devel' to see the graph." +#~ msgstr "" +#~ "Image_Graph n'est pas installée. Lancez 'aptitude install php-pear' puis " +#~ "'pear --alldeps install Image_Graph-devel' pour voir le graphique." + +#~ msgid "Copy to" +#~ msgstr "Copier vers" + +#~ msgid "WARNING: turning POP off will DELETE the mailbox and its content" +#~ msgstr "" +#~ "ATTENTION: décocher la case POP EFFACERA le contenu de l'adresse email" + +#~ msgid "AlternC configuration" +#~ msgstr "Configuration d'AlternC" + +#~ msgid "Files and directories" +#~ msgstr "Fichiers et répertoires" + +#~ msgid "Other" +#~ msgstr "Autre" + +#~ msgid "Messages" +#~ msgstr "Messages" + +#~ msgid "Show disk usage of directories (slow)" +#~ msgstr "Afficher la taille complète des répertoires (lent)" + +#~ msgid "Sub-domain" +#~ msgstr "Sous-domaine" + +#~ msgid "" +#~ "Warning: Deleting a mailbox will destroy all the emails it contains! You " +#~ "will NOT be able to get it back!" +#~ msgstr "" +#~ "Attention: La suppression d'une adresse email détruit tous ses " +#~ "messages ! Vous ne pourrez PLUS retrouver les messages ainsi " +#~ "effacés !" + +#~ msgid "Validate this change" +#~ msgstr "Valider les changements" + +#~ msgid "Actions" +#~ msgstr "Actions" + +#, fuzzy +#~ msgid "" +#~ "The classes of characters are :
1. Low-case letters (a-z)
2. " +#~ "Upper-case letters (A-Z)
3. Figures (0-9)
4. Ascii symbols (!\"#" +#~ "$%&'()*+,-./:;<=>?@[\\]^_`)
5. Non-Ascii symbols (~...)" +#~ msgstr "" +#~ "Les classes de caractère sont :
1. Lettres minuscules (a-z)
2. " +#~ "Lettres majuscules (A-Z)
3. Chiffres (0-9)
4. Caractères Ascii " +#~ "(!\"#$%&'()*+,-./:;<=>?@[\\]^_`)
5. Caractères non-Ascii (accents...)" + +#~ msgid "Place" +#~ msgstr "Emplacement" + +#~ msgid "Pending" +#~ msgstr "En cours" + +#~ msgid "Informations for temporary account" +#~ msgstr "Informations du compte temporaire" + +#, fuzzy +#~ msgid "All this account information will
be deleted at expiration" +#~ msgstr "Cette adresse email sera supprimée
à sa date d'expiration" + +#~ msgid "" +#~ "All this account information will
be deleted at expiration time" +#~ msgstr "Cette adresse email sera supprimée
à sa date d'expiration" + +#~ msgid "Manage this temporary account" +#~ msgstr "Gérer les adresses email temporaires" + +#~ msgid "No auto-deletion date" +#~ msgstr "Pas de date d'autosuppression" + +#~ msgid "Is it an advanced option ?" +#~ msgstr "Est-ce une option avancée ?" + +#~ msgid "Manage the Emails of this domain on the server ?" +#~ msgstr "Gère-t-on les Adresses Emails de ce domaine sur le serveur ?" + +#~ msgid "If you want to use a different language, click on the flag below" +#~ msgstr "" +#~ "Si vous voulez utiliser une langue différente, cliquez l'un des drapeaux " +#~ "ci-dessous" + +#~ msgid "Subscribe this email to the list" +#~ msgstr "Ajouter cette adresse/class à la liste des esclaves DNS." + +#~ msgid "2 months" +#~ msgstr "2 mois" + +#~ msgid "3 months" +#~ msgstr "3 mois" + +#~ msgid "4 months" +#~ msgstr "4 mois" + +#~ msgid "<-No Password->" +#~ msgstr "<-Aucun mot de passe->" + +#~ msgid "Error:" +#~ msgstr "Erreur : " diff --git a/ssl/panel/locales/it_IT/LC_MESSAGES/alternc.mo b/ssl/panel/locales/it_IT/LC_MESSAGES/alternc.mo new file mode 100644 index 0000000000000000000000000000000000000000..b550b85b9fcbf124b28a85645c64949e292b32b7 GIT binary patch literal 2906 zcmb7_OK%)S5XT!Z5SC{igm+Xy3hPZg`*4C1))>Wc9vH>O#G7yms6E@e+sSPAGToDn z!zbW^$bka~1c(bK4qP}zij)gN2*ekNlp9DK5EnS|ub$oY+Hn%4rO|J?ryo`Ss;;@Y zW8!mx_6nYt@k~4*L<#&0Z-h!_;K|c5TqeAQee+6FyZ-E7H+qT?~ zo!~C?Uk3?%2V_4kf<^FSkahePtby0T?chHk>o)ON?<mb=nWIE+;|u=RC-MUI1B_ zPe8WkE6{>JfOYUy7{&gb2g~56Ap3s}B=GOS_;!fO=N<*&W@v0LYt4Re496Si0gebU z=W(`e*dV=t8^J%;jvM>NjdOq-!X9+w*g?`@J0KuqXlx7T1^b2&1)o_5m@8hyBPRRW zcc?3M(v_wp=90wrRg=y-l{zukcV2o&axj`2Y~9ffJ(`TIY3a0E z5{poj4GdPGXC&)1rlTv8jANS_@5GYo(_G?JYUYQ7VQhIQ=aLPoIf}D1RmLZ4@Uo?i zYEIFb&8VBfra0Fzv2ATAgq0;N-u>(%b(P7=VmVRpj^d7Dp|Eb)_G=jEKD6yQ{3rN>!p&6aS{eckmVO*yOIptXiq=-*#f)p|; zDV$L~oBC+cwRJN(mbG2fuyyKq-*fd!MTVq^%QkIS(lE19D=fd;h~_!g*grast5c`x zYVBZDt46gWRIAkw9X?Q{^X|H( zE|+85t@Lu8T%|Yku#yb+s%Zb=LZebDEG{gbSXZ%Dt`_DY9CANuto7isSC@UImq=}9 zkhL;JlFpuOoQ#gF&*L*&DveH<*ft@3osO((KQg;c;jF@PlBF_STJM>t?5C zD1V)uG_-e?YNeTi;0r!1Iwf(I?a?GNsHU%6K|}=KcS&>auY|(cRP97lwt3pZpnfJY zRe0^LYP?V)M`eYYSY`5sThF+|GL_OEsT9Zr#I?Igv<)>^oKm=MFlfsFXt9Lt?BH_7!;&(l+33%;gi +#. $Id: admin.po,v 1.4 2006/02/09 20:12:23 benjamin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: $Id: admin.po,v 1.4 2006/02/09 20:12:23 benjamin Exp $\n" +"Report-Msgid-Bugs-To: i18n@alternc.org\n" +"POT-Creation-Date: 2004-05-24 19:34+0200\n" +"PO-Revision-Date: 2002-06-16 13:50CEST\n" +"Last-Translator: Benjamin Sonntag \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Emacs 21\n" + +#. -- Only administrators can access this page !! -- +msgid "err_admin_1" +msgstr "" + +#. Account not found +msgid "err_admin_2" +msgstr "" + +#. This login already exists +msgid "err_admin_3" +msgstr "" + +#. -- I cannot create this account -- +msgid "err_admin_4" +msgstr "" + +#. Please enter a valid email address +msgid "err_admin_5" +msgstr "" + +#. All fields are mandatory +msgid "err_admin_6" +msgstr "" + +#. You can ask for your password only once a day ! +msgid "err_admin_7" +msgstr "" + +#. This account is ALREADY an administrator account +msgid "err_admin_8" +msgstr "" + +#. This account is NOT an administrator account ! +msgid "err_admin_9" +msgstr "" + +#. Login can only contains characters a-z, 0-9 and - +msgid "err_admin_10" +msgstr "" + +#. This TLD does not exist +msgid "err_admin_11" +msgstr "" + +#. This TLD already exists +msgid "err_admin_12" +msgstr "" + +#. The login is too long (16 chars max) +msgid "err_admin_13" +msgstr "" + +#. Domain names +msgid "quota_dom" +msgstr "" + +#. Domain '%s' not found. +msgid "err_dom_1" +msgstr "" + +#. The domaine '%s' does not belong to you. +msgid "err_dom_2" +msgstr "" + +#. --- Programm error --- No lock on the domains ! +msgid "err_dom_3" +msgstr "" + +#. The domain name is too long. +msgid "err_dom_4" +msgstr "" + +#. One of the domain name member is too long. +msgid "err_dom_5" +msgstr "" + +#. There is some forbidden characters in the domain name (only A-Z 0-9 and - are allowed). +msgid "err_dom_6" +msgstr "" + +#. The last member of the domain name is incorrect or cannot be hosted in that server. +msgid "err_dom_7" +msgstr "" +"The last member of the domain name is incorrect or cannot be hosted in that " +"server." + +#. The domain already exists. +msgid "err_dom_8" +msgstr "" + +#. The domain has been deleted less than 5 minutes ago, please try again later. +msgid "err_dom_9" +msgstr "" +"The domain has been deleted less than 5 minutes ago, please try again later." + +#. Your domain quota is over, you cannot create more domain names. +msgid "err_dom_10" +msgstr "" + +#. The Whois database is unavailable, please try again later. +msgid "err_dom_11" +msgstr "" + +#. The domain cannot be found in the whois database. +msgid "err_dom_12" +msgstr "" + +#. The domain has been changed less than 5 minutes ago. Please try again in a few minutes. +msgid "err_dom_13" +msgstr "" + +#. The sub-domain does not exist. +msgid "err_dom_14" +msgstr "" + +#. No change has been requested... +msgid "err_dom_15" +msgstr "" + +#. The sub-domain already exists. +msgid "err_dom_16" +msgstr "" + +#. --- Programm error --- Lock already obtained ! +msgid "err_dom_17" +msgstr "" + +#. This domain is the server's domain !!! You cannot host it on your account ! +msgid "err_dom_18" +msgstr "" + +#. The IP address you entered is incorrect. +msgid "err_dom_19" +msgstr "" + +#. The URL you entered is incorrect. +msgid "err_dom_20" +msgstr "" + +#. The folder you entered is incorrect or does not exist. +msgid "err_dom_21" +msgstr "" + +#. The requested domain is forbidden in this server, please contact the administrator +msgid "err_dom_22" +msgstr "" + +#. The DNS of this domain do not match the server's DNS. Please change your +#. domain's DNS (and eventually wait 1 day) before you install it again. +msgid "err_dom_23" +msgstr "" + +#. There is some forbidden characters in the sub domain (only A-Z 0-9 and - are allowed). +msgid "err_dom_24" +msgstr "" + +#. There is no MX record pointing to this server, and you are asking us to host the Mail here +msgid "err_dom_25" +msgstr "" + +#. - Entrez le nom du domaine que vous souhaitez héberger. Le nom de domaine +#. doit être complet, mais sans le www.
IMPORTANT : Si vous voulez +#. un hébergement réel de domaine, il faut que les DNS de votre domaine +#. pointent vers nos serveurs DNS. Contacter votre hébergeur pour plus +#. d'information.
Exemples : globenet.org / demo.com / test.eu.org etc. +#.
Plus d'info sur la gestion des domaines dans l'aide en ligne +#. HELPID_200
+msgid "hlp_add_domain" +msgstr "" + +#. Cliquez sur le lien ci-dessus. Vous pourrez ensuite accéder aux paremètres +#. du domaine dans le menu à gauche.2 liens vont apparaitre :
- un +#. premier pour modifier les paramètres d'hébergement du domaine (sous- +#. domaines, redirections, hébergement mails ...)
- un second pour gérer +#. les comptes emails du domaine (si vous souhaitez créer des boites aux +#. lettres).
Plus d'info sur la gestion des domaines dans l'aide en ligne +#. HELPID_200
+msgid "hlp_add_domain_2" +msgstr "" + +#. Le domaine a été effacé, mais les fichiers de votre site n'ont pas été +#. détruits.
Si vous souhaitez détruire les fichiers du site web, utilisez +#. le Gestionnaire de Fichier
Plus d'info sur la gestion des domaines dans +#. l'aide en ligne HELPID_200
+msgid "hlp_del_domain" +msgstr "" + +#. Cette zone vous permet de modifier les paramètres de votre domaine, ainsi +#. que des sous-domaines installés
Vous pouvez créer un nouveau sous- +#. domaine et choisir, soit de le rediriger vers votre espace disque, vers une +#. autre adresse Internet, ou vers une adresse IP (utilisateurs avancés)
+#. Plus d'info sur la gestion des domaines dans l'aide en ligne HELPID_200
+msgid "hlp_edit_domain" +msgstr "" + +#. FTP Accounts +msgid "quota_ftp" +msgstr "" + +#. No ftp account found +msgid "err_ftp_1" +msgstr "" + +#. This ftp account does not exist +msgid "err_ftp_2" +msgstr "" + +#. The chosen prefix is not allowed +msgid "err_ftp_3" +msgstr "" + +#. This ftp account already exists +msgid "err_ftp_4" +msgstr "" + +#. Your ftp account quota is over. You cannot create more ftp accounts. +msgid "err_ftp_5" +msgstr "" + +#. The directory cannot be created. +msgid "err_ftp_6" +msgstr "" + +#. Voici la liste des comptes ftp ayant accès à votre compte. Cliquez sur +#. 'Modifier' pour changer le nom d'utilisateur, le mot de passe, ou le dossier +#. racine.
Pour supprimer un compte, cochez la case correspondante et +#. cliquez sur le bouton 'Supprimer les comptes cochés'
Pour pouvoir +#. accéder à vos fichiers avec un logiciel de ftp, vous devez créer au moins un +#. compte. Chaque compte est associé à un dossier, et n'aura donc accès qu'aux +#. fichiers situés dans ce dossier ou en dessous.
Plus d'info sur le FTP +#. dans l'aide en ligne HELPID_100
+msgid "hlp_ftp_list" +msgstr "" + +#. Vous n'avez actuellement aucun Compte FTP de disponible. Cliquez sur +#. 'Création d'un compte ftp' pour en créer un.
Pour pouvoir accéder à vos +#. fichiers avec un logiciel de ftp, vous devez créer au moins un compte. +#. Chaque compte est associé à un dossier, et n'aura donc accès qu'aux fichiers +#. situés dans ce dossier ou en dessous.
Plus d'info sur le FTP dans +#. l'aide en ligne HELPID_100
+msgid "hlp_ftp_list_no" +msgstr "" + +#. Pour ajouter un compte ftp, vous devez choisir un Nom d'utilisateur, un mot +#. de passe, et un répertoire racine
Le nom d'utilisateur commence +#. toujours par votre nom de login ou le nom d'un de vos domaines.
Le +#. répertoire racine, s'il n'existe pas, sera créé automatiquement.
Note : +#. Le compte que vous créez ainsi aura accès en lecture et en écriture aux +#. fichiers situés dans le répertoire et tous ses sous-répertoires.
Plus +#. d'info sur le FTP dans l'aide en ligne HELPID_100
+msgid "hlp_ftp_add" +msgstr "" + +#. An incompatible .htaccess file exists in this folder. +msgid "err_hta_1" +msgstr "" + +#. .htaccess parsed and syntaxically correct, a .htpassword file has been created. +msgid "err_hta_2" +msgstr "" + +#. .htaccess parsed and syntaxically correct, a .htpasswd already exist. +msgid "err_hta_3" +msgstr "" + +#. No protected folder +msgid "err_hta_4" +msgstr "" + +#. I cannot delete the file '%s'/.htaccess +msgid "err_hta_5" +msgstr "" + +#. I cannot delete the file '%s'/.htpasswd +msgid "err_hta_6" +msgstr "" + +#. The file .htaccess does not exist +msgid "err_hta_7" +msgstr "" + +#. The folder '%s' does not exist +msgid "err_hta_8" +msgstr "" + +#. The file '%s' is not correct +msgid "err_hta_9" +msgstr "" + +#. The user '%s' already exist for this folder +msgid "err_hta_10" +msgstr "" + +#. Please enter a valid username +msgid "err_hta_11" +msgstr "" + +#. Email Accounts +msgid "quota_mail" +msgstr "" + +#. DB connection impossible, please try again later. +msgid "err_mail_1" +msgstr "" + +#. No email on domain '%s' +msgid "err_mail_2" +msgstr "" + +#. The email '%s' does not exist +msgid "err_mail_3" +msgstr "" + +#. Please check 'pop account' and choose a password pop, or enter some +#. redirections, or both +msgid "err_mail_4" +msgstr "" + +#. -- Server error --- Parameter is incorrect (%s) +msgid "err_mail_5" +msgstr "" + +#. The domain '%s' does not exist. +msgid "err_mail_6" +msgstr "" + +#. The email '%s' already exists. +msgid "err_mail_7" +msgstr "" + +#. Your mail account quota is over. You cannot create more email accounts. +msgid "err_mail_8" +msgstr "" + +#. The domain '%s' does not exist. +msgid "err_mail_9" +msgstr "" + +#. -- Programm error -- Mail quota does not exist +msgid "err_mail_10" +msgstr "" + +#. Please enter an Email address +msgid "err_mail_11" +msgstr "" + +#. Please enter a pop password +msgid "err_mail_12" +msgstr "" + +#. Please enter a valid email +msgid "err_mail_13" +msgstr "" + +#. One or more email redirection are invalid +msgid "err_mail_14" +msgstr "" + +#. This mail is not a pop account. It's impossible to change the password ! +msgid "err_mail_15" +msgstr "" + +#. OK +msgid "err_err_0" +msgstr "" + +#. The error message does not exist (%s) +msgid "err_err_1" +msgstr "" + +#. This is a date representation : parameters are the date as follow : +#. $d,$m,$y,$h,$i,$hh,$am +#. 1 2 3 4 5 6 7 +#. hh is the hour in 12 hours format, and am is 'am' or 'pm'. +#. eg: english : %3$d/%1$d/%2$d, at %6$d:%5$d %7$s +msgid "the %3$d-%2$d-%1$d at %4$d:%5$d" +msgstr "" + +#. User or password incorrect +msgid "err_mem_1" +msgstr "" + +#. This account is locked, contact the administrator +msgid "err_mem_2" +msgstr "" + +#. Cookie incorrect, please accept the session cookie +msgid "err_mem_3" +msgstr "" + +#. Session unknown, contact the administrator +msgid "err_mem_4" +msgstr "" + +#. IP address incorrect, please contact the administrator +msgid "err_mem_5" +msgstr "" + +#. The old password is incorrect +#. PROBLEME : il y avait 2 fois le 5, les autres messages doivent surement etre décalés (TODO) +msgid "err_mem_6" +msgstr "" + +#. The new passwords are differents, please retry +msgid "err_mem_7" +msgstr "" + +#. A password must be at least 3 characters long. +msgid "err_mem_8" +msgstr "" + +#. The information you entered is incorrect +msgid "err_mem_9" +msgstr "" + +#. You are not allowed to change your password. +msgid "err_mem_11" +msgstr "" + +#. You must be a system administrator to do this +msgid "err_mem_12" +msgstr "" + +#. Français (France) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "fr_FR" +msgstr "" + +#. Français (Canada) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "fr_CA" +msgstr "" + +#. English (United States) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "en_US" +msgstr "" + +#. English (United Kingdom) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "en_UK" +msgstr "" + +#. Deutsch (Germany) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "de_DE" +msgstr "" + +#. Español (Spania) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "es_ES" +msgstr "" + +#. Español (Venezuela) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "es_VE" +msgstr "" + +#. OK +msgid "err_quota_0" +msgstr "" + +#. Error writing the quota entry ! +msgid "err_quota_1" +msgstr "" + +#. MySQL Databases +msgid "quota_mysql" +msgstr "" + +#. MySQL Users +msgid "quota_mysql_users" +msgstr "" + +#. Disk space +msgid "quota_web" +msgstr "" + +#. Data base name can contain only digits or lowercase alphabetic characters +msgid "err_mysql_2" +msgstr "" + +#. The database does not exist, you'll get an access by creating it. +msgid "err_mysql_3" +msgstr "" + +#. This database already exists! +msgid "err_mysql_4" +msgstr "" + +#. Your backup number is incorrect. +msgid "err_mysql_5" +msgstr "" + +#. The folder is incorrect! +msgid "err_mysql_6" +msgstr "" + +#. The file name you chose does not exist or is incorrect. +msgid "err_mysql_7" +msgstr "" + +#. The password is too long (16 chars max) +msgid "err_mysql_8" +msgstr "" + +#. The file is incorrect or does not exist. +msgid "err_mysql_9" +msgstr "" + +#. Your cannot create your main database : you still have other dbs ! +msgid "err_mysql_10" +msgstr "" + +#. You have no database, click on 'Databases' to create the first one +msgid "err_mysql_11" +msgstr "" + +#. The data base name is too long (64 chars max) +msgid "err_mysql_12" +msgstr "" + +#. You cannot create more MySQL users +msgid "err_mysql_13" +msgstr "" + +#. MySQL users can only have a-z and 0-9 characters. +msgid "err_mysql_14" +msgstr "" + +#. MySQL users must be less than 16 characters long. +msgid "err_mysql_15" +msgstr "" + +#. This MySQL user already exists. +msgid "err_mysql_16" +msgstr "" + +#. Passwords do not match. +msgid "err_mysql_17" +msgstr "" + +#. The requested MySQL user does not exist. +msgid "err_mysql_18" +msgstr "" + +#. You have no MySQL users at the moment. +msgid "err_mysql_19" +msgstr "" + +#. Your MySQL backups are stored in the chosen folder from db.sql.1 to db.sql.19
your database name replaces 'db'.
WARNING: If you modify backup settings (backups, compression...) previous +#. backups may remain in the backup folder. Go to the file manager to delete +#. them. +msgid "hlp_sql_bck" +msgstr "" + +#. Web Statistics +msgid "quota_sta2" +msgstr "" + +#. You cannot create more raw statistic set. +msgid "err_sta2_1" +msgstr "" + +#. There is currently no raw statistic set. +msgid "err_sta2_2" +msgstr "" + +#. The requested raw statistic set has not been found. +msgid "err_sta2_3" +msgstr "" + +#. File or folder name is incorrect +msgid "err_bro_1" +msgstr "" + +#. You cannot move or copy a file to the same folder +msgid "err_bro_2" +msgstr "" + +#. If we manage your DNS
You can manage your mails elsewhere if you want +#. (MX field).
Write %s in this field if your mail +#. must be managed by %s
or put the IP address or name of the mail server +#. used to manage your mails.Warning : if you put nothing in this field, +#. your mails will be unavailable +msgid "help_dns_mx %s %s" +msgstr "" + +#. If we don't manage the DNS for this domain
do we manage your mails? +msgid "help_dns_mail" +msgstr "" + +#. If you want to delete the domain %s, click the button below.Warning : this +#. delete all the ftp, mails, mailing-lists ... associated with thisdomain and +#. all its subdomains! +msgid "help_domain_del %s" +msgstr "" + +#. You can create various databases
Click on 'SQL Admin' in the menu to +#. manage them
or use the table below to backup, retrieve or delete them: +msgid "help_sql_list_ok" +msgstr "" + +#. Your haven't created your main database yet, please enter a password to create it. +msgid "help_sql_list_no" +msgstr "" + +#. This is a date representation : parameters are the date as follow : +#. $d,$m,$y,$h,$i,$hh,$am +#. 1 2 3 4 5 6 7 +#. hh is the hour in 12 hours format, and am is 'am' or 'pm'. +#. eg: english : %3$d/%1$d/%2$d, at %6$d:%5$d %7$s +msgid "%3$d-%2$d-%1$d %4$d:%5$d" +msgstr "" + + +msgid "1 column, detailed" +msgstr "" + +msgid "2 columns, short" +msgstr "" + +msgid "3 columns, short" +msgstr "" + +msgid "Go back to the file manager" +msgstr "" + +msgid "Edit the newly created file" +msgstr "" + +msgid "hlp_login" +msgstr "" + +msgid "err_admin_14" +msgstr "" +"La politique de mot de passe demandée n'a pas été trouvée, Ce password " +"est refusé (c'est une erreur de programmation ...)" + +msgid "err_admin_15" +msgstr "" +"Le mot de passe est trop court selon votre politique de mot de passe, " +"merci de vérifier" + +msgid "err_admin_16" +msgstr "" +"Le mot de passe est trop long selon votre politique de mot de passe, " +"merci de vérifier" + +msgid "err_admin_17" +msgstr "" +"Le mot de passe ne peut pas être le même que le nom d'utilisateur (ou " +"quelque chose de similaire) selon votre politique de mot de passe, merci " +"de vérifier" + +msgid "err_admin_18" +msgstr "" +"Le mot de passe doit contenir des caractères de %s classes différentes " +"selon votre politique de mot de passe (il n'en contient que %s), merci de " +"vérifier" + +msgid "err_hta_12" +msgstr "Le fichier .htpasswd n'existe pas" + +msgid "err_mail_16" +msgstr "Ce compte esclave MX existe déjà" + +msgid "err_mysql_20" +msgstr "Le mot de passe est obligatoire" + +msgid "err_mysql_21" +msgstr "Le nom d'utilisateur ne peut pas être vide" + +msgid "err_bro_3" +msgstr "" +"Vous n'avez pas le droit d'écrire dans ce répertoire. Vérifiez les droits " +"d'accès !" + +# $d,$m,$y +# 1 2 3 +msgid "%3$d-%2$d-%1$d" +msgstr "%1$02d/%2$02d/%3$04d" + +msgid "AlternC's account password" +msgstr "Mots de passe des comptes AlternC" + +msgid "POP/IMAP account passwords" +msgstr "Mots de passe des comptes POP/IMAP" + +msgid "Protected folders passwords" +msgstr "Mots de passe des dossiers protégés" + diff --git a/ssl/panel/locales/it_IT/LC_MESSAGES/messages.po b/ssl/panel/locales/it_IT/LC_MESSAGES/messages.po new file mode 100644 index 00000000..2e5cba2d --- /dev/null +++ b/ssl/panel/locales/it_IT/LC_MESSAGES/messages.po @@ -0,0 +1,4969 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR AlternC Team +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: AlternC 2.0\n" +"Report-Msgid-Bugs-To: i18n@alternc.org\n" +"POT-Creation-Date: 2013-10-18 15:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it_IT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../squirrelmail/alternc_changepass/change.php:39 +msgid "Can't connect to MySQL server on AlternC!" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:66 +msgid "Your new passwords are differents, pleasy try again." +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:72 +msgid "" +"Your account has not been found, please try again later or ask an " +"administrator." +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:75 +msgid "Your current password is incorrect, please try again." +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:88 +msgid "" +"Your password has been successfully changed. Don't forget to change it in " +"your mail software if you are using one (Outlook, Mozilla, Thunderbird, " +"Eudora ...)" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:111 +msgid "Changing your mail password" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:115 +msgid "Old Password:" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:120 +msgid "New Password:" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:124 +msgid "Verify New Password:" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:129 +msgid "Change my mail password" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/setup.php:21 +msgid "Change Password" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/setup.php:23 +msgid "Change the password of your email account." +msgstr "" + +#: ../admin/about.php:36 +msgid "About AlternC" +msgstr "" + +#: ../admin/about.php:37 +msgid "Hosting control panel" +msgstr "" + +#: ../admin/about.php:41 +msgid "" +"AlternC is an automatic hosting software suite. It features a PHP-based " +"administration interface and scripts that manage server configuration.
It manages, among others, email, Web, Web statistics, and mailing list " +"services. It is available in many languages. It is a free software " +"distributed under GPL license." +msgstr "" + +#: ../admin/about.php:47 +msgid "Official website: " +msgstr "" + +#: ../admin/about.php:48 +msgid "Developer website: " +msgstr "" + +#: ../admin/about.php:49 +msgid "Help: " +msgstr "" + +#: ../admin/about.php:57 +msgid "You are currently using AlternC " +msgstr "" + +#: ../admin/adm_add.php:36 ../admin/adm_db_servers.php:30 +#: ../admin/adm_deactivate.php:35 ../admin/adm_deactivate.php:52 +#: ../admin/adm_defquotas.php:35 ../admin/adm_dnsweberror.php:33 +#: ../admin/adm_doadd.php:26 ../admin/adm_dodefquotas.php:35 +#: ../admin/adm_dodel.php:33 ../admin/adm_dodel.php:52 +#: ../admin/adm_doedit.php:35 ../admin/adm_doedit.php:59 +#: ../admin/adm_domlock.php:33 ../admin/adm_doms.php:33 +#: ../admin/adm_doms_def_type.php:5 ../admin/adm_domstype.php:33 +#: ../admin/adm_domstypedoedit.php:4 ../admin/adm_domstypeedit.php:32 +#: ../admin/adm_domstyperegenerate.php:4 ../admin/adm_donosu.php:33 +#: ../admin/adm_dorenew.php:34 ../admin/adm_dorenew.php:45 +#: ../admin/adm_dosu.php:33 ../admin/adm_edit.php:36 ../admin/adm_edit.php:48 +#: ../admin/adm_email.php:30 ../admin/adm_list.php:32 ../admin/adm_list.php:58 +#: ../admin/adm_lockpanel.php:33 ../admin/adm_login.php:86 +#: ../admin/adm_login.php:93 ../admin/adm_mxaccount.php:33 +#: ../admin/adm_panel.php:33 ../admin/adm_passpolicy.php:30 +#: ../admin/adm_quotadoedit.php:33 ../admin/adm_quotaedit.php:34 +#: ../admin/adm_slavedns.php:33 ../admin/adm_tld.php:33 +#: ../admin/adm_tldadd.php:33 ../admin/adm_tlddoadd.php:33 +#: ../admin/adm_tlddoedit.php:39 ../admin/adm_tldedit.php:33 +#: ../admin/adm_update_domains.php:34 ../admin/adm_variables.php:33 +#: ../admin/dom_subdel.php:46 ../admin/dom_subdodel.php:47 +#: ../admin/dom_subdoedit.php:53 ../admin/dom_subedit.php:49 +#: ../admin/quotas_users.php:13 ../class/reset_stats_conf.php:6 +msgid "This page is restricted to authorized staff" +msgstr "" + +#: ../admin/adm_add.php:54 +msgid "New AlternC account" +msgstr "" + +#: ../admin/adm_add.php:64 ../admin/adm_edit.php:69 +#: ../admin/adm_quotaedit.php:68 ../admin/ftp_edit.php:71 +#: ../admin/ftp_list.php:72 ../admin/hta_adduser.php:54 +#: ../admin/hta_edit.php:61 ../admin/hta_edit.php:98 ../admin/index.php:89 +#: ../admin/piwik_userlist.php:79 ../admin/sql_users_add.php:59 +msgid "Username" +msgstr "" + +#: ../admin/adm_add.php:68 +msgid "Initial password" +msgstr "" + +#: ../admin/adm_add.php:72 ../admin/adm_edit.php:89 ../admin/ftp_edit.php:88 +#: ../admin/hta_adduser.php:62 ../admin/hta_edit.php:106 +#: ../admin/hta_edituser.php:63 ../admin/mail_edit.php:97 +#: ../admin/sql_users_add.php:67 ../admin/sql_users_password.php:63 +msgid "Confirm password" +msgstr "" + +#: ../admin/adm_add.php:76 +msgid "Can he change its password" +msgstr "" + +#: ../admin/adm_add.php:78 ../admin/adm_domstype.php:82 +#: ../admin/adm_domstype.php:83 ../admin/adm_domstype.php:84 +#: ../admin/adm_domstype.php:85 ../admin/adm_domstype.php:86 +#: ../admin/adm_edit.php:78 ../admin/adm_edit.php:95 +#: ../admin/adm_passpolicy.php:113 ../admin/adm_passpolicy.php:157 +#: ../admin/dom_edit.php:231 ../admin/dom_edit.php:254 +#: ../admin/dom_subdel.php:71 ../admin/mail_edit.php:90 +#: ../admin/mail_list.php:164 ../admin/sql_bck.php:94 ../class/m_bro.php:70 +msgid "No" +msgstr "" + +#: ../admin/adm_add.php:79 ../admin/adm_domstype.php:82 +#: ../admin/adm_domstype.php:83 ../admin/adm_domstype.php:84 +#: ../admin/adm_domstype.php:85 ../admin/adm_domstype.php:86 +#: ../admin/adm_edit.php:79 ../admin/adm_edit.php:96 +#: ../admin/adm_passpolicy.php:114 ../admin/adm_passpolicy.php:157 +#: ../admin/dom_edit.php:230 ../admin/dom_edit.php:253 +#: ../admin/dom_subdel.php:70 ../admin/mail_edit.php:91 +#: ../admin/mail_list.php:209 ../admin/mail_list.php:220 +#: ../admin/mail_list.php:231 ../admin/mail_list.php:249 +#: ../admin/mail_list.php:260 ../admin/mail_list.php:271 +#: ../admin/mail_list.php:282 ../admin/sql_bck.php:95 ../class/m_bro.php:70 +msgid "Yes" +msgstr "" + +#: ../admin/adm_add.php:83 ../admin/adm_edit.php:100 +msgid "Notes" +msgstr "" + +#: ../admin/adm_add.php:87 ../admin/adm_edit.php:104 +msgid "First Name" +msgstr "" + +#: ../admin/adm_add.php:87 ../admin/adm_edit.php:104 +msgid "Surname" +msgstr "" + +#: ../admin/adm_add.php:91 ../admin/adm_edit.php:108 +msgid "Email address" +msgstr "" + +#: ../admin/adm_add.php:95 ../admin/adm_dodefquotas.php:48 +#: ../admin/adm_dodefquotas.php:50 ../admin/adm_dodefquotas.php:57 +#: ../admin/adm_dodefquotas.php:59 ../admin/adm_edit.php:112 +msgid "Account type" +msgstr "" + +#: ../admin/adm_add.php:105 +msgid "Wich database server for this user ?" +msgstr "" + +#: ../admin/adm_add.php:107 +msgid "Warning: you can't change it after the creation of the user." +msgstr "" + +#: ../admin/adm_add.php:124 +#, php-format +msgid "Install the domain" +msgstr "" + +#: ../admin/adm_add.php:140 +msgid "Create this AlternC account" +msgstr "" + +#: ../admin/adm_add.php:141 ../admin/adm_deactivate.php:75 +#: ../admin/adm_domstypeedit.php:134 ../admin/adm_edit.php:124 +#: ../admin/adm_quotaedit.php:88 ../admin/adm_tldadd.php:71 +#: ../admin/adm_tldedit.php:70 ../admin/bro_pref.php:150 +#: ../admin/browseforfolder.php:146 ../admin/browseforfolder2.php:142 +#: ../admin/ftp_del.php:83 ../admin/ftp_edit.php:98 +#: ../admin/hta_adduser.php:68 ../admin/hta_dodeluser.php:65 +#: ../admin/hta_edit.php:113 ../admin/mail_edit.php:116 +#: ../admin/mail_manage_catchall.php:122 ../admin/piwik_site_dodel.php:71 +#: ../admin/piwik_user_dodel.php:69 ../admin/sql_bck.php:108 +#: ../admin/sql_users_add.php:73 ../admin/sql_users_password.php:69 +#: ../admin/sql_users_rights.php:104 +msgid "Cancel" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:31 ../admin/ip_main.php:50 +#: ../class/m_authip.php:40 +msgid "Access security" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:39 +msgid "" +"The IP and subnet you have here are allowed for ALL users and ALL usages" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:39 +msgid "Warning" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:44 +msgid "Add an IP" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:44 ../admin/ip_main.php:174 +msgid "Add my current IP" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:47 ../admin/ip_main.php:177 +msgid "Cancel edit" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:50 +msgid "" +"Enter here the IP address you want.
IPv4, IPv6 and subnet allowed" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:54 +msgid "Add a comment" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:57 ../admin/adm_doms_def_type.php:88 +#: ../admin/bro_editor.php:89 ../admin/ftp_edit.php:97 +#: ../admin/ip_main.php:135 ../admin/ip_main.php:186 +#: ../admin/mail_manage_catchall.php:121 +msgid "Save" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:64 +msgid "IP" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:64 +msgid "Informations" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:64 ../admin/adm_doms_def_type.php:48 +#: ../admin/dom_edit.php:130 ../admin/ip_main.php:146 +msgid "Type" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:82 ../admin/adm_domstype.php:74 +#: ../admin/adm_list.php:200 ../admin/adm_list.php:222 +#: ../admin/adm_list.php:251 ../admin/adm_passpolicy.php:151 +#: ../admin/adm_tld.php:80 ../admin/dom_edit.php:140 ../admin/ftp_list.php:78 +#: ../admin/ip_main.php:164 ../admin/mail_list.php:150 +msgid "Edit" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:83 ../admin/adm_doms_def_type.php:60 +#: ../admin/adm_mxaccount.php:83 ../admin/adm_slavedns.php:101 +#: ../admin/adm_slavedns.php:145 ../admin/bro_main.php:285 +#: ../admin/cron.php:54 ../admin/dom_edit.php:123 ../admin/dom_edit.php:146 +#: ../admin/ftp_del.php:82 ../admin/hta_dodeluser.php:64 +#: ../admin/ip_main.php:79 ../admin/ip_main.php:165 +#: ../admin/piwik_site_dodel.php:70 ../admin/piwik_sitelist.php:128 +#: ../admin/piwik_user_dodel.php:68 ../admin/piwik_userlist.php:87 +msgid "Delete" +msgstr "" + +#: ../admin/adm_db_servers.php:35 +msgid "List of the databases servers" +msgstr "" + +#: ../admin/adm_db_servers.php:42 +msgid "Here the list of the available databases servers." +msgstr "" + +#: ../admin/adm_db_servers.php:49 +msgid "ID" +msgstr "" + +#: ../admin/adm_db_servers.php:50 ../admin/adm_domstype.php:58 +#: ../admin/adm_domstypeedit.php:74 ../admin/ip_main.php:146 +#: ../admin/ip_main.php:181 ../admin/logs_list.php:53 +msgid "Name" +msgstr "" + +#: ../admin/adm_db_servers.php:51 ../admin/vm.php:77 +msgid "Hostname" +msgstr "" + +#: ../admin/adm_db_servers.php:52 ../admin/adm_mxaccount.php:78 +#: ../admin/adm_mxaccount.php:95 ../admin/adm_slavedns.php:140 +#: ../admin/adm_slavedns.php:158 ../admin/sql_getparam.php:70 +msgid "Login" +msgstr "" + +#: ../admin/adm_db_servers.php:53 +msgid "Client" +msgstr "" + +#: ../admin/adm_db_servers.php:54 +msgid "Users" +msgstr "" + +#: ../admin/adm_db_servers.php:71 +msgid "To add a database server, do an INSERT into the db_servers table" +msgstr "" + +#: ../admin/adm_db_servers.php:74 +msgid "" +"To update the list of the server on the PhpMyAdmin login page, launch " +"alternc.install" +msgstr "" + +#: ../admin/adm_deactivate.php:46 ../class/m_admin.php:208 +#: ../class/m_admin.php:234 ../class/m_admin.php:680 ../class/m_admin.php:704 +#: ../class/m_admin.php:728 ../class/m_admin.php:772 ../class/m_admin.php:797 +#: ../class/m_admin.php:821 ../class/m_admin.php:894 ../class/m_admin.php:916 +msgid "Account not found" +msgstr "" + +#: ../admin/adm_deactivate.php:58 +msgid "User does not exist" +msgstr "" + +#: ../admin/adm_deactivate.php:63 ../admin/adm_deactivate.php:74 +msgid "Confirm" +msgstr "" + +#: ../admin/adm_deactivate.php:67 +msgid "WARNING: experimental feature, use at your own risk" +msgstr "" + +#: ../admin/adm_deactivate.php:68 +msgid "" +"The following domains will be deactivated and redirected to the URL entered " +"in the following box. A backup of the domain configuration will be displayed " +"as a serie of SQL request that you can run to restore the current " +"configuration if you want. Click confirm if you are sure you want to " +"deactivate all this user's domains." +msgstr "" + +#: ../admin/adm_deactivate.php:73 +msgid "Redirection URL:" +msgstr "" + +#: ../admin/adm_deactivate.php:78 +msgid "Domains of user: " +msgstr "" + +#: ../admin/adm_deactivate.php:81 +msgid "Missing redirect url." +msgstr "" + +#: ../admin/adm_deactivate.php:99 +#, php-format +msgid "-- Redirecting all domains and subdomains of the user %s to %s\n" +msgstr "" + +#: ../admin/adm_defquotas.php:46 ../admin/adm_panel.php:54 +msgid "Change the default quotas" +msgstr "" + +#: ../admin/adm_defquotas.php:52 +msgid "User's quotas synchronised" +msgstr "" + +#: ../admin/adm_defquotas.php:65 +msgid "Add account type" +msgstr "" + +#: ../admin/adm_defquotas.php:83 +msgid "Delete account type" +msgstr "" + +#: ../admin/adm_defquotas.php:88 +msgid "" +"Here is the list of the quotas on the server for the new accounts. If you " +"want to change them, enter new values" +msgstr "" + +#: ../admin/adm_defquotas.php:90 +msgid "Synchronise user's quota (only to upper value)" +msgstr "" + +#: ../admin/adm_defquotas.php:102 +msgid "Accounts of type" +msgstr "" + +#: ../admin/adm_defquotas.php:104 +msgid "Default Value" +msgstr "" + +#: ../admin/adm_defquotas.php:104 ../admin/adm_list.php:159 +#: ../admin/adm_list.php:203 ../admin/adm_list.php:223 +#: ../admin/adm_list.php:253 +msgid "Quotas" +msgstr "" + +#: ../admin/adm_defquotas.php:124 +msgid "Edit the default quotas" +msgstr "" + +#: ../admin/adm_dnsweberror.php:40 +msgid "Domains and Websites having errors" +msgstr "" + +#: ../admin/adm_dnsweberror.php:50 +msgid "List of the websites having errors in the domain database." +msgstr "" + +#: ../admin/adm_dnsweberror.php:53 ../admin/adm_dnsweberror.php:83 +msgid "Uid" +msgstr "" + +#: ../admin/adm_dnsweberror.php:54 ../admin/adm_dnsweberror.php:84 +#: ../admin/adm_list.php:155 ../admin/adm_list.php:233 +#: ../admin/adm_list.php:234 ../admin/adm_list.php:235 +#: ../admin/quotas_users.php:169 +msgid "Account" +msgstr "" + +#: ../admin/adm_dnsweberror.php:55 ../admin/adm_dnsweberror.php:85 +#: ../admin/dom_add.php:57 ../class/m_dom.php:1757 +msgid "Domain name" +msgstr "" + +#: ../admin/adm_dnsweberror.php:56 +msgid "FQDN" +msgstr "" + +#: ../admin/adm_dnsweberror.php:57 ../admin/adm_variables.php:57 +msgid "Value" +msgstr "" + +#: ../admin/adm_dnsweberror.php:58 ../admin/adm_domstype.php:59 +#: ../admin/adm_domstypeedit.php:78 +msgid "Description" +msgstr "" + +#: ../admin/adm_dnsweberror.php:59 +msgid "Web Result field" +msgstr "" + +#: ../admin/adm_dnsweberror.php:80 +msgid "List of the domain names having errors in the domain database." +msgstr "" + +#: ../admin/adm_dnsweberror.php:86 +msgid "DNS Result field" +msgstr "" + +#: ../admin/adm_doadd.php:53 ../admin/adm_doedit.php:64 +#: ../admin/ftp_doedit.php:44 ../admin/hta_doadduser.php:41 +#: ../admin/hta_doedituser.php:42 ../admin/mail_doedit.php:57 +msgid "Passwords do not match" +msgstr "" + +#: ../admin/adm_doadd.php:65 +msgid "The new member has been successfully created" +msgstr "" + +#: ../admin/adm_dodefquotas.php:48 +msgid "added" +msgstr "" + +#: ../admin/adm_dodefquotas.php:50 +msgid "could not be added" +msgstr "" + +#: ../admin/adm_dodefquotas.php:57 +msgid "deleted" +msgstr "" + +#: ../admin/adm_dodefquotas.php:59 +msgid "could not be deleted" +msgstr "" + +#: ../admin/adm_dodefquotas.php:66 +#, php-format +msgid "Deleting quota %s" +msgstr "" + +#: ../admin/adm_dodefquotas.php:72 +msgid "WARNING: Confirm the deletion of the quota" +msgstr "" + +#: ../admin/adm_dodefquotas.php:75 +msgid "Yes, delete this default quota" +msgstr "" + +#: ../admin/adm_dodefquotas.php:76 +msgid "No, don't delete this default quota" +msgstr "" + +#: ../admin/adm_dodefquotas.php:94 +msgid "Default quotas successfully changed" +msgstr "" + +#: ../admin/adm_dodefquotas.php:96 +msgid "Default quotas could not be set." +msgstr "" + +#: ../admin/adm_dodel.php:56 +#, php-format +msgid "Member '%s' does not exist" +msgstr "" + +#: ../admin/adm_dodel.php:58 +#, php-format +msgid "Member %s successfully deleted" +msgstr "" + +#: ../admin/adm_dodel.php:65 +msgid "Please check the accounts you want to delete" +msgstr "" + +#: ../admin/adm_dodel.php:73 +#, php-format +msgid "Deleting users" +msgstr "" + +#: ../admin/adm_dodel.php:77 +msgid "WARNING : Confirm the deletion of the users" +msgstr "" + +#: ../admin/adm_dodel.php:87 +msgid "Yes, delete those accounts" +msgstr "" + +#: ../admin/adm_dodel.php:88 +msgid "No, don't delete those accounts" +msgstr "" + +#: ../admin/adm_doedit.php:77 +msgid "The member has been successfully edited" +msgstr "" + +#: ../admin/adm_doms.php:40 ../admin/adm_panel.php:53 +msgid "Manage installed domains" +msgstr "" + +#: ../admin/adm_doms.php:59 +msgid "" +"Here is the list of the domains installed on this server. You can remove a " +"domain if it does not exist or does not point to our server anymore. You can " +"also set the 'Lock' flag on a domain so that the user will not be able to " +"change any DNS parameter or delete this domain from his account." +msgstr "" + +#: ../admin/adm_doms.php:62 +msgid "" +"The domain OK column are green when the domain exists in the worldwide " +"registry and has a proper NS,MX and IP depending on its configuration. It is " +"red if we have serious doubts about its NS, MX or IP configuration. Contact " +"the user of this domain or a system administrator." +msgstr "" + +#: ../admin/adm_doms.php:65 +msgid "If you want to force the check of NS, MX, IP on domains, click the link" +msgstr "" + +#: ../admin/adm_doms.php:65 +msgid "Show domain list with refreshed checked NS, MX, IP information" +msgstr "" + +#: ../admin/adm_doms.php:69 ../admin/adm_mxaccount.php:78 +#: ../admin/adm_slavedns.php:95 ../admin/adm_slavedns.php:140 +msgid "Action" +msgstr "" + +#: ../admin/adm_doms.php:69 ../admin/adm_doms.php:85 ../admin/adm_list.php:196 +#: ../admin/adm_list.php:221 ../admin/adm_list.php:250 +msgid "Connect as" +msgstr "" + +#: ../admin/adm_doms.php:69 +msgid "Creator" +msgstr "" + +#: ../admin/adm_doms.php:69 +msgid "Domain" +msgstr "" + +#: ../admin/adm_doms.php:69 +msgid "OK?" +msgstr "" + +#: ../admin/adm_doms.php:69 ../admin/dom_edit.php:130 +msgid "Status" +msgstr "" + +#: ../admin/adm_doms.php:76 +msgid "Locked Domain" +msgstr "" + +#: ../admin/adm_doms.php:79 +msgid "Lock" +msgstr "" + +#: ../admin/adm_doms.php:79 +msgid "Unlock" +msgstr "" + +#: ../admin/adm_doms_def_type.php:12 ../admin/adm_panel.php:66 +msgid "Manage defaults domains type" +msgstr "" + +#: ../admin/adm_doms_def_type.php:14 ../admin/adm_domstype.php:42 +msgid "" +"If you don't know what this page is about, don't touch anything, and read " +"AlternC documentation about domain types" +msgstr "" + +#: ../admin/adm_doms_def_type.php:15 +msgid "" +"The Type column contains a type of available VirtualHost config on The " +"server." +msgstr "" + +#: ../admin/adm_doms_def_type.php:16 +msgid "" +"The Setting column contains the variables to be expanded in the defaults " +"configuration. Available values are: " +msgstr "" + +#: ../admin/adm_doms_def_type.php:18 +#, php-format +msgid "%%DOMAIN%% : the Domain name" +msgstr "" + +#: ../admin/adm_doms_def_type.php:19 +#, php-format +msgid "%%TARGETDOM%%: The destination domain" +msgstr "" + +#: ../admin/adm_doms_def_type.php:20 +#, php-format +msgid "%%SUB%% : The subdomain name" +msgstr "" + +#: ../admin/adm_doms_def_type.php:21 +#, php-format +msgid "%%DOMAINDIR%%: the domain directory on the file system" +msgstr "" + +#: ../admin/adm_doms_def_type.php:38 +msgid "There was an error during the record." +msgstr "" + +#: ../admin/adm_doms_def_type.php:40 ../admin/cron.php:14 +msgid "Save done." +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +msgid "Activation" +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +msgid "Concerned" +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +msgid "Sub" +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +msgid "settings" +msgstr "" + +#: ../admin/adm_domstype.php:40 ../admin/adm_panel.php:67 +msgid "Manage domains type" +msgstr "" + +#: ../admin/adm_domstype.php:52 +msgid "Here is the list of domain types." +msgstr "" + +#: ../admin/adm_domstype.php:54 +msgid "Create a domain type" +msgstr "" + +#: ../admin/adm_domstype.php:60 +msgid "Target" +msgstr "" + +#: ../admin/adm_domstype.php:61 ../admin/adm_domstypeedit.php:92 +msgid "Entry" +msgstr "" + +#: ../admin/adm_domstype.php:62 +msgid "Compatible with" +msgstr "" + +#: ../admin/adm_domstype.php:62 ../admin/adm_domstypeedit.php:96 +msgid "Enter comma-separated name of other types" +msgstr "" + +#: ../admin/adm_domstype.php:63 +msgid "Enabled?" +msgstr "" + +#: ../admin/adm_domstype.php:64 +msgid "Only DNS?" +msgstr "" + +#: ../admin/adm_domstype.php:65 +msgid "Need to be DNS?" +msgstr "" + +#: ../admin/adm_domstype.php:66 +msgid "Advanced?" +msgstr "" + +#: ../admin/adm_domstype.php:67 ../admin/adm_domstypeedit.php:123 +msgid "Create tmp directory ?" +msgstr "" + +#: ../admin/adm_domstype.php:68 +msgid "create www directory ?" +msgstr "" + +#: ../admin/adm_domstype.php:75 +msgid "Regenerate" +msgstr "" + +#: ../admin/adm_domstypeedit.php:60 +msgid "Edit a domain type" +msgstr "" + +#: ../admin/adm_domstypeedit.php:82 +msgid "Target type" +msgstr "" + +#: ../admin/adm_domstypeedit.php:96 +msgid "Compatibility" +msgstr "" + +#: ../admin/adm_domstypeedit.php:100 ../admin/dom_edit.php:170 +#: ../admin/ftp_list.php:72 ../admin/ftp_list.php:82 +#: ../admin/mail_list.php:125 ../admin/mail_list.php:152 +msgid "Enabled" +msgstr "" + +#: ../admin/adm_domstypeedit.php:110 +msgid "Do only a DNS entry" +msgstr "" + +#: ../admin/adm_domstypeedit.php:114 +msgid "Domain must have our DNS" +msgstr "" + +#: ../admin/adm_domstypeedit.php:118 +msgid "Is it an advanced option?" +msgstr "" + +#: ../admin/adm_domstypeedit.php:128 +msgid "Create target directory ?" +msgstr "" + +#: ../admin/adm_domstypeedit.php:133 +msgid "Change this domain type" +msgstr "" + +#: ../admin/adm_donosu.php:45 +msgid "This account is now a normal account" +msgstr "" + +#: ../admin/adm_dorenew.php:53 +msgid "The member has been successfully renewed" +msgstr "" + +#: ../admin/adm_dosu.php:45 +msgid "This account is now an administrator account" +msgstr "" + +#: ../admin/adm_edit.php:57 +msgid "Member Edition" +msgstr "" + +#: ../admin/adm_edit.php:73 +msgid "Account Enabled?" +msgstr "" + +#: ../admin/adm_edit.php:76 +msgid "You cannot disable your own account." +msgstr "" + +#: ../admin/adm_edit.php:85 ../admin/adm_mxaccount.php:78 +#: ../admin/adm_mxaccount.php:95 ../admin/adm_slavedns.php:140 +#: ../admin/adm_slavedns.php:158 ../admin/cron.php:39 ../admin/ftp_edit.php:84 +#: ../admin/ftp_edit.php:92 ../admin/hta_adduser.php:58 +#: ../admin/hta_edit.php:102 ../admin/index.php:90 ../admin/mem_param.php:58 +#: ../admin/sql_getparam.php:74 ../admin/sql_users_add.php:63 +#: ../admin/sql_users_list.php:48 ../admin/sql_users_password.php:59 +msgid "Password" +msgstr "" + +#: ../admin/adm_edit.php:93 +msgid "Password change allowed?" +msgstr "" + +#: ../admin/adm_edit.php:116 +msgid "Reset quotas to default?" +msgstr "" + +#: ../admin/adm_edit.php:119 +msgid "Period" +msgstr "" + +#: ../admin/adm_edit.php:123 +msgid "Edit this account" +msgstr "" + +#: ../admin/adm_edit.php:137 +msgid "Renew for" +msgstr "" + +#: ../admin/adm_edit.php:138 +msgid "period(s)" +msgstr "" + +#: ../admin/adm_edit.php:141 +msgid "Renew" +msgstr "" + +#: ../admin/adm_edit.php:153 +msgid "This account is a super-admin account" +msgstr "" + +#: ../admin/adm_edit.php:157 +msgid "" +"There is only one administrator account, you cannot turn this account back " +"to normal" +msgstr "" + +#: ../admin/adm_edit.php:160 +msgid "Turn this account back to normal" +msgstr "" + +#: ../admin/adm_edit.php:163 +msgid "Make this account a super admin one" +msgstr "" + +#: ../admin/adm_edit.php:170 +#, php-format +msgid "Account created by %s" +msgstr "" + +#: ../admin/adm_email.php:43 ../admin/adm_panel.php:56 +msgid "Send an email to all members" +msgstr "" + +#: ../admin/adm_email.php:48 +msgid "The email was successfully sent" +msgstr "" + +#: ../admin/adm_email.php:50 +msgid "There was an error" +msgstr "" + +#: ../admin/adm_email.php:63 +msgid "From" +msgstr "" + +#: ../admin/adm_email.php:67 +msgid "Subject" +msgstr "" + +#: ../admin/adm_email.php:71 ../admin/mem_param.php:59 +msgid "Mail" +msgstr "" + +#: ../admin/adm_email.php:75 +msgid "Send" +msgstr "" + +#: ../admin/adm_list.php:70 +msgid "AlternC account list" +msgstr "" + +#: ../admin/adm_list.php:77 +msgid "Minimal view" +msgstr "" + +#: ../admin/adm_list.php:81 +msgid "Complete view" +msgstr "" + +#: ../admin/adm_list.php:87 +msgid "Filters" +msgstr "" + +#: ../admin/adm_list.php:90 +msgid "Search for a Login" +msgstr "" + +#: ../admin/adm_list.php:91 +msgid "Search for a Domain" +msgstr "" + +#: ../admin/adm_list.php:92 ../admin/piwik_sitelist.php:170 +msgid "submit" +msgstr "" + +#: ../admin/adm_list.php:100 +msgid "List all AlternC accounts" +msgstr "" + +#: ../admin/adm_list.php:110 +msgid "Or only the accounts of:" +msgstr "" + +#: ../admin/adm_list.php:115 +msgid "List only my accounts" +msgstr "" + +#: ../admin/adm_list.php:129 +#, php-format +msgid "%s accounts" +msgstr "" + +#: ../admin/adm_list.php:129 +msgid "Here is the list of hosted AlternC accounts" +msgstr "" + +#: ../admin/adm_list.php:132 +msgid "Create a new AlternC account" +msgstr "" + +#: ../admin/adm_list.php:136 +msgid "No account defined for now" +msgstr "" + +#: ../admin/adm_list.php:149 ../admin/adm_list.php:227 +#: ../admin/adm_list.php:264 ../admin/ftp_list.php:101 +msgid "Delete checked accounts" +msgstr "" + +#: ../admin/adm_list.php:156 +msgid "Manager" +msgstr "" + +#: ../admin/adm_list.php:157 +msgid "Created by" +msgstr "" + +#: ../admin/adm_list.php:158 +msgid "Created on" +msgstr "" + +#: ../admin/adm_list.php:160 +msgid "Last login" +msgstr "" + +#: ../admin/adm_list.php:161 +msgid "Last ip" +msgstr "" + +#: ../admin/adm_list.php:162 +msgid "Fails" +msgstr "" + +#: ../admin/adm_list.php:163 ../admin/main.php:87 +msgid "Expiry" +msgstr "" + +#: ../admin/adm_list.php:181 +msgid "Send an email" +msgstr "" + +#: ../admin/adm_list.php:183 ../admin/mail_list.php:167 +#, php-format +msgid "%3$d-%2$d-%1$d" +msgstr "" + +#: ../admin/adm_list.php:192 +msgid "DB:" +msgstr "" + +#: ../admin/adm_list.php:207 ../admin/dom_edit.php:171 +msgid "Disable" +msgstr "" + +#: ../admin/adm_list.php:221 ../admin/adm_list.php:250 +msgid "C" +msgstr "" + +#: ../admin/adm_list.php:222 ../admin/adm_list.php:251 +msgid "E" +msgstr "" + +#: ../admin/adm_list.php:223 ../admin/adm_list.php:253 +msgid "Q" +msgstr "" + +#: ../admin/adm_list.php:255 +msgid "himself" +msgstr "" + +#: ../admin/adm_list.php:257 +#, php-format +msgid "Creator: %s" +msgstr "" + +#: ../admin/adm_login.php:49 ../admin/adm_login.php:56 +msgid "Your authentication information are incorrect" +msgstr "" + +#: ../admin/adm_login.php:62 +msgid "Your IP is incorrect." +msgstr "" + +#: ../admin/adm_login.php:118 +msgid "Member login" +msgstr "" + +#: ../admin/adm_mxaccount.php:47 ../admin/adm_slavedns.php:51 +msgid "The requested account has been deleted. It is now denied." +msgstr "" + +#: ../admin/adm_mxaccount.php:53 ../admin/adm_slavedns.php:57 +msgid "The requested account address has been created. It is now allowed." +msgstr "" + +#: ../admin/adm_mxaccount.php:60 ../admin/adm_panel.php:64 +msgid "Manage allowed accounts for secondary mx" +msgstr "" + +#: ../admin/adm_mxaccount.php:74 +msgid "" +"Here is the list of the allowed accounts for secondary mx management. You " +"can configure the alternc-secondarymx package on your secondary mx server " +"and give him the login/pass that will grant him access to your server's mx-" +"hosted domain list. " +msgstr "" + +#: ../admin/adm_mxaccount.php:92 +msgid "" +"If you want to allow a new server to access your mx-hosted domain list, give " +"him an account." +msgstr "" + +#: ../admin/adm_mxaccount.php:101 ../admin/adm_slavedns.php:163 +msgid "Add this account to the allowed list" +msgstr "" + +#: ../admin/adm_panel.php:40 ../class/m_admin.php:98 +msgid "Admin Control Panel" +msgstr "" + +#: ../admin/adm_panel.php:51 ../admin/adm_tld.php:56 +#: ../admin/adm_tldadd.php:46 ../admin/adm_tldedit.php:52 +msgid "Manage allowed domains (TLD)" +msgstr "" + +#: ../admin/adm_panel.php:52 +msgid "Password Policies" +msgstr "" + +#: ../admin/adm_panel.php:55 +msgid "Manage IP whitelist" +msgstr "" + +#: ../admin/adm_panel.php:60 +msgid "Advanced features" +msgstr "" + +#: ../admin/adm_panel.php:63 +msgid "Manage slave DNS" +msgstr "" + +#: ../admin/adm_panel.php:65 ../admin/adm_variables.php:47 +msgid "Configure AlternC variables" +msgstr "" + +#: ../admin/adm_panel.php:68 +msgid "DNS and website having errors" +msgstr "" + +#: ../admin/adm_panel.php:69 +msgid "Manage databases servers" +msgstr "" + +#: ../admin/adm_panel.php:70 +msgid "Account creation statistics" +msgstr "" + +#: ../admin/adm_panel.php:95 +msgid "Click here to unlock the panel and allow user to login." +msgstr "" + +#: ../admin/adm_panel.php:97 +msgid "Are you sure you want to kick everyone?" +msgstr "" + +#: ../admin/adm_panel.php:97 +msgid "Click here to lock the panel and force logout of all the user." +msgstr "" + +#: ../admin/adm_passpolicy.php:49 +msgid "Manage Password Policy" +msgstr "" + +#: ../admin/adm_passpolicy.php:63 ../admin/adm_passpolicy.php:78 +msgid "Policy not found" +msgstr "" + +#: ../admin/adm_passpolicy.php:67 +msgid "Policy changed" +msgstr "" + +#: ../admin/adm_passpolicy.php:71 +msgid "Cannot edit the policy, an error occurred" +msgstr "" + +#: ../admin/adm_passpolicy.php:82 +msgid "Please choose which policy you want to apply to this password kind:" +msgstr "" + +#: ../admin/adm_passpolicy.php:90 +msgid "Minimum Password Size:" +msgstr "" + +#: ../admin/adm_passpolicy.php:97 +msgid "Maximum Password Size:" +msgstr "" + +#: ../admin/adm_passpolicy.php:104 +msgid "In how many classes of characters must be the password (at least):" +msgstr "" + +#: ../admin/adm_passpolicy.php:111 +msgid "Do we allow the password to be like the login?" +msgstr "" + +#: ../admin/adm_passpolicy.php:117 +msgid "Apply this password policy" +msgstr "" + +#: ../admin/adm_passpolicy.php:118 +msgid "Cancel and go back to the policy list" +msgstr "" + +#: ../admin/adm_passpolicy.php:121 +msgid "" +"The classes of characters are :
1. Low-case letters (a-z)
2. " +"Upper-case letters (A-Z)
3. Figures (0-9)
4. Ascii symbols (!\"#$" +"%&'()*+,-./:;<=>?@[\\]^_`)
5. Non-Ascii symbols (accents...)" +msgstr "" + +#: ../admin/adm_passpolicy.php:134 +msgid "" +"Here is the list of the password policies for each place a password may be " +"needed in AlternC's services. For each of those password kind, you can " +"choose which policy will be applied to passwords. A policy is a minimum and " +"maximum password size, and how many classes of characters must appear in the " +"password. You can also forbid (or not) to use the login or part of it as a " +"password." +msgstr "" + +#: ../admin/adm_passpolicy.php:138 +msgid "Password Kind" +msgstr "" + +#: ../admin/adm_passpolicy.php:138 +msgid "Password Policy" +msgstr "" + +#: ../admin/adm_passpolicy.php:140 +msgid "Min Size" +msgstr "" + +#: ../admin/adm_passpolicy.php:141 +msgid "Max Size" +msgstr "" + +#: ../admin/adm_passpolicy.php:142 +msgid "Complexity" +msgstr "" + +#: ../admin/adm_passpolicy.php:143 +msgid "Allow Password=Login?" +msgstr "" + +#: ../admin/adm_quotadoedit.php:52 +msgid "The quotas has been successfully edited" +msgstr "" + +#: ../admin/adm_quotaedit.php:55 +msgid "Editing the quotas of a member" +msgstr "" + +#: ../admin/adm_quotaedit.php:69 ../admin/quota_show.php:46 +msgid "Quota" +msgstr "" + +#: ../admin/adm_quotaedit.php:69 ../admin/quota_show.php:46 +#: ../admin/quotas_oneuser.php:87 ../admin/quotas_users.php:154 +#: ../admin/quotas_users.php:178 +msgid "Total" +msgstr "" + +#: ../admin/adm_quotaedit.php:69 ../admin/quota_show.php:46 +msgid "Used" +msgstr "" + +#: ../admin/adm_quotaedit.php:87 +msgid "Edit the quotas" +msgstr "" + +#: ../admin/adm_slavedns.php:65 +msgid "" +"The requested ip address has been deleted. It will be denied in one hour." +msgstr "" + +#: ../admin/adm_slavedns.php:71 +msgid "" +"The requested ip address has been added to the list. It will be allowed in " +"one hour." +msgstr "" + +#: ../admin/adm_slavedns.php:83 +msgid "Manage allowed ip for slave zone transfers" +msgstr "" + +#: ../admin/adm_slavedns.php:91 +msgid "" +"Here is the list of the allowed ip or ip class for slave dns zone transfer " +"requests (AXFR). You must add the ip address of all the slave DNS you have " +"so that those slaves will be allowed to transfer the zone files. There is " +"also some defaults ip from DNS checks made by some third-party technical " +"offices such as afnic (for .fr domains)" +msgstr "" + +#: ../admin/adm_slavedns.php:95 ../admin/adm_slavedns.php:114 +msgid "IP Address" +msgstr "" + +#: ../admin/adm_slavedns.php:110 +msgid "" +"If you want to allow an ip address or class to connect to your dns server, " +"enter it here. Choose 32 as a prefix for single ip address." +msgstr "" + +#: ../admin/adm_slavedns.php:114 +msgid "Prefix" +msgstr "" + +#: ../admin/adm_slavedns.php:120 +msgid "Add this ip to the slave list" +msgstr "" + +#: ../admin/adm_slavedns.php:129 +msgid "Manage allowed accounts for slave zone transfers" +msgstr "" + +#: ../admin/adm_slavedns.php:137 +msgid "" +"Here is the list of the allowed accounts for slave dns synchronization. You " +"can configure the alternc-slavedns package on your slave server and give him " +"the login/pass that will grant him access to your server's domain list. " +msgstr "" + +#: ../admin/adm_slavedns.php:154 +msgid "" +"If you want to allow a new server to access your domain list, give him an " +"account." +msgstr "" + +#: ../admin/adm_slavedns.php:194 +msgid "Need open DNS Slave servers?" +msgstr "" + +#: ../admin/adm_slavedns.php:196 +msgid "We offer free of charge DNS servers for alternc users." +msgstr "" + +#: ../admin/adm_slavedns.php:197 +msgid "How does it work?" +msgstr "" + +#: ../admin/adm_slavedns.php:199 +#, php-format +msgid "" +"Give access to the alternc.net servers. Follow the " +"instructions on this page. They will help " +"you to configure this page and configure your alternc.net account." +msgstr "" + +#: ../admin/adm_slavedns.php:200 +#, php-format +msgid "" +"Subscribe to alternc.net. Go to the alternc.net site to " +"use the DNS servers provided for free by the AlternC association and enter " +"the required informations for each server you want to connect to the service." +msgstr "" + +#: ../admin/adm_slavedns.php:203 +msgid "" +"The alternc.net servers will take care of transfering and distributing to " +"the world your domains zones." +msgstr "" + +#: ../admin/adm_tld.php:47 +msgid "Some TLD cannot be deleted..." +msgstr "" + +#: ../admin/adm_tld.php:50 +msgid "The requested TLD has been deleted" +msgstr "" + +#: ../admin/adm_tld.php:68 +msgid "" +"Here is the list of the TLD allowed on this server. Each TLD can be allowed " +"or denied after some checks (whois, ns, domain exists...)" +msgstr "" + +#: ../admin/adm_tld.php:70 ../admin/adm_tld.php:91 ../admin/adm_tldadd.php:56 +#: ../admin/adm_tldadd.php:70 +msgid "Add a new TLD" +msgstr "" + +#: ../admin/adm_tld.php:73 ../admin/adm_tldadd.php:66 +#: ../admin/adm_tldedit.php:65 +msgid "Allowed Mode" +msgstr "" + +#: ../admin/adm_tld.php:73 ../admin/adm_tldadd.php:65 +#: ../admin/adm_tldedit.php:64 +msgid "TLD" +msgstr "" + +#: ../admin/adm_tld.php:87 +msgid "Delete the checked TLD" +msgstr "" + +#: ../admin/adm_tldadd.php:58 +msgid "" +"Enter the new TLD (without the first dot) and choose what check should be " +"done." +msgstr "" + +#: ../admin/adm_tldadd.php:59 +msgid "" +"Warning : only some final tld are known in the whois function of AlternC, " +"please check m_dom.php accordingly." +msgstr "" + +#: ../admin/adm_tlddoadd.php:49 +msgid "The TLD has been successfully added" +msgstr "" + +#: ../admin/adm_tlddoedit.php:48 +msgid "The TLD has been successfully edited" +msgstr "" + +#: ../admin/adm_tldedit.php:60 +msgid "Edit a TLD" +msgstr "" + +#: ../admin/adm_tldedit.php:69 +msgid "Edit this TLD" +msgstr "" + +#: ../admin/adm_update_domains.php:40 +msgid "Missing INOTIFY_UPDATE_DOMAIN var in /etc/alternc/local.sh . Fix it!" +msgstr "" + +#: ../admin/adm_variables.php:52 +msgid "Here are the internal AlternC variables that are currently being used." +msgstr "" + +#: ../admin/adm_variables.php:57 +msgid "Comment" +msgstr "" + +#: ../admin/adm_variables.php:57 +msgid "Names" +msgstr "" + +#: ../admin/adm_variables.php:69 +msgid "Save variables" +msgstr "" + +#: ../admin/bro_editor.php:54 ../admin/bro_editor.php:63 +#: ../admin/bro_main.php:355 ../admin/bro_main.php:395 +#, php-format +msgid "%3$d-%2$d-%1$d %4$d:%5$d" +msgstr "" + +#: ../admin/bro_editor.php:54 ../admin/bro_editor.php:63 +#, php-format +msgid "Your file %s has been saved" +msgstr "" + +#: ../admin/bro_editor.php:74 +msgid "File editing" +msgstr "" + +#: ../admin/bro_editor.php:80 +msgid "This file is empty" +msgstr "" + +#: ../admin/bro_editor.php:90 +msgid "Save & Quit" +msgstr "" + +#: ../admin/bro_editor.php:91 +msgid "Quit" +msgstr "" + +#: ../admin/bro_main.php:91 +#, php-format +msgid "Deleting files and/or directories" +msgstr "" + +#: ../admin/bro_main.php:96 +msgid "WARNING: Confirm the deletion of this files" +msgstr "" + +#: ../admin/bro_main.php:105 +msgid "Yes, delete those files/folders" +msgstr "" + +#: ../admin/bro_main.php:106 +msgid "No, don't delete those files/folders" +msgstr "" + +#: ../admin/bro_main.php:144 +msgid "extracting..." +msgstr "" + +#: ../admin/bro_main.php:148 +msgid "failed" +msgstr "" + +#: ../admin/bro_main.php:151 +msgid "done" +msgstr "" + +#: ../admin/bro_main.php:156 ../class/m_bro.php:76 +msgid "File browser" +msgstr "" + +#: ../admin/bro_main.php:163 +msgid "Path" +msgstr "" + +#: ../admin/bro_main.php:185 +msgid "Send one file:" +msgstr "" + +#: ../admin/bro_main.php:189 +msgid "Send this file" +msgstr "" + +#: ../admin/bro_main.php:190 +#, php-format +msgid "Warning: max size: %s" +msgstr "" + +#: ../admin/bro_main.php:197 +msgid "New file or folder:" +msgstr "" + +#: ../admin/bro_main.php:202 ../admin/piwik_sitelist.php:86 +#: ../admin/piwik_userlist.php:44 ../admin/piwik_userlist.php:56 +msgid "Create" +msgstr "" + +#: ../admin/bro_main.php:204 ../admin/bro_main.php:244 +msgid "File" +msgstr "" + +#: ../admin/bro_main.php:205 ../admin/bro_main.php:397 +#: ../admin/ftp_edit.php:75 ../admin/ftp_list.php:72 ../admin/hta_add.php:55 +#: ../admin/hta_adduser.php:50 ../admin/hta_edit.php:94 +#: ../admin/hta_edituser.php:51 ../admin/hta_list.php:68 +msgid "Folder" +msgstr "" + +#: ../admin/bro_main.php:222 ../admin/bro_main.php:228 +#: ../admin/bro_main.php:286 +msgid "Rename" +msgstr "" + +#: ../admin/bro_main.php:238 ../admin/bro_main.php:244 +#: ../admin/bro_main.php:287 +msgid "Permissions" +msgstr "" + +#: ../admin/bro_main.php:258 +msgid "write" +msgstr "" + +#: ../admin/bro_main.php:266 +msgid "Change permissions" +msgstr "" + +#: ../admin/bro_main.php:289 +msgid "Copy" +msgstr "" + +#: ../admin/bro_main.php:290 +msgid "Move" +msgstr "" + +#: ../admin/bro_main.php:291 +msgid "To" +msgstr "" + +#: ../admin/bro_main.php:302 +msgid "Please select a destination folder" +msgstr "" + +#: ../admin/bro_main.php:328 +msgid "Filename" +msgstr "" + +#: ../admin/bro_main.php:329 ../admin/logs_list.php:53 +#: ../admin/sql_list.php:54 +msgid "Size" +msgstr "" + +#: ../admin/bro_main.php:330 +msgid "Last modification" +msgstr "" + +#: ../admin/bro_main.php:332 +msgid "File Type" +msgstr "" + +#: ../admin/bro_main.php:361 ../admin/bro_main.php:542 +#: ../admin/dom_edit.php:121 +msgid "View" +msgstr "" + +#: ../admin/bro_main.php:368 +msgid "Extract" +msgstr "" + +#: ../admin/bro_main.php:374 ../admin/bro_main.php:376 +msgid "Restore SQL" +msgstr "" + +#: ../admin/bro_main.php:376 +msgid "In which database to you want to restore this dump?" +msgstr "" + +#: ../admin/bro_main.php:381 +msgid "Restore it" +msgstr "" + +#: ../admin/bro_main.php:422 ../admin/bro_main.php:450 +#: ../admin/bro_main.php:485 ../admin/bro_main.php:513 +msgid "V" +msgstr "" + +#: ../admin/bro_main.php:568 +msgid "No files in this folder" +msgstr "" + +#: ../admin/bro_main.php:578 +msgid "(slow)" +msgstr "" + +#: ../admin/bro_main.php:578 +msgid "Show size of directories" +msgstr "" + +#: ../admin/bro_main.php:582 +msgid "Edit this folder's protection" +msgstr "" + +#: ../admin/bro_main.php:585 ../admin/hta_add.php:62 +msgid "Protect this folder" +msgstr "" + +#: ../admin/bro_main.php:587 +msgid "with a login and a password" +msgstr "" + +#: ../admin/bro_main.php:590 +msgid "Download this folder" +msgstr "" + +#: ../admin/bro_main.php:592 +#, php-format +msgid "as a %s file" +msgstr "" + +#: ../admin/bro_main.php:599 +msgid "Edit the ftp account" +msgstr "" + +#: ../admin/bro_main.php:600 +msgid "that exists in this folder" +msgstr "" + +#: ../admin/bro_main.php:606 +msgid "Create an ftp account in this folder" +msgstr "" + +#: ../admin/bro_main.php:615 +msgid "Configure the file editor" +msgstr "" + +#: ../admin/bro_pref.php:49 +msgid "Your preferences have been updated." +msgstr "" + +#: ../admin/bro_pref.php:59 +msgid "File browser preferences" +msgstr "" + +#: ../admin/bro_pref.php:66 +msgid "Horizontal window size" +msgstr "" + +#: ../admin/bro_pref.php:74 +msgid "Vertical window size" +msgstr "" + +#: ../admin/bro_pref.php:82 +msgid "File editor font name" +msgstr "" + +#: ../admin/bro_pref.php:90 +msgid "File editor font size" +msgstr "" + +#: ../admin/bro_pref.php:98 +msgid "File list view" +msgstr "" + +#: ../admin/bro_pref.php:106 +msgid "Downloading file format" +msgstr "" + +#: ../admin/bro_pref.php:114 +msgid "What to do after creating a file" +msgstr "" + +#: ../admin/bro_pref.php:122 +msgid "Show icons?" +msgstr "" + +#: ../admin/bro_pref.php:130 +msgid "Show file types?" +msgstr "" + +#: ../admin/bro_pref.php:138 +msgid "Remember last visited directory?" +msgstr "" + +#: ../admin/bro_pref.php:149 +msgid "Change my settings" +msgstr "" + +#: ../admin/browseforfolder.php:125 ../admin/browseforfolder2.php:120 +msgid "Searching for a folder" +msgstr "" + +#: ../admin/browseforfolder.php:131 ../admin/browseforfolder2.php:126 +msgid "Error, cannot find this folder" +msgstr "" + +#: ../admin/browseforfolder.php:133 ../admin/browseforfolder2.php:128 +msgid "Back to the root folder" +msgstr "" + +#: ../admin/browseforfolder.php:145 ../admin/browseforfolder2.php:141 +msgid "Select" +msgstr "" + +#: ../admin/cron.php:21 ../class/m_cron.php:72 ../class/m_cron.php:181 +msgid "Scheduled tasks" +msgstr "" + +#: ../admin/cron.php:36 +msgid "URL" +msgstr "" + +#: ../admin/cron.php:37 +msgid "Schedule" +msgstr "" + +#: ../admin/cron.php:38 ../admin/hta_edituser.php:55 +#: ../admin/sql_users_list.php:48 +msgid "User" +msgstr "" + +#: ../admin/cron.php:40 +msgid "Email report" +msgstr "" + +#: ../admin/cron.php:57 +msgid "Called URL" +msgstr "" + +#: ../admin/cron.php:60 +msgid "Period:" +msgstr "" + +#: ../admin/cron.php:72 +msgid "Next execution: " +msgstr "" + +#: ../admin/cron.php:75 +msgid "HTTP user (optional)" +msgstr "" + +#: ../admin/cron.php:76 +msgid "HTTP password (optional)" +msgstr "" + +#: ../admin/cron.php:77 +msgid "Mail address (optional)" +msgstr "" + +#: ../admin/cron.php:81 +msgid "Apply the modifications" +msgstr "" + +#: ../admin/dom_add.php:45 +msgid "Domain hosting" +msgstr "" + +#: ../admin/dom_add.php:49 +msgid "Contact your administrator for more information." +msgstr "" + +#: ../admin/dom_add.php:49 +msgid "You cannot add any new domain, your quota is over." +msgstr "" + +#: ../admin/dom_add.php:57 +msgid "Advanced import" +msgstr "" + +#: ../admin/dom_add.php:60 +msgid "host my dns here" +msgstr "" + +#: ../admin/dom_add.php:68 +msgid "" +"Do you want to point this domain to another domain already installed in your " +"account?" +msgstr "" + +#: ../admin/dom_add.php:71 +msgid "No: This domain will have its own folder." +msgstr "" + +#: ../admin/dom_add.php:73 +msgid "Yes, redirect this new domain to this one:" +msgstr "" + +#: ../admin/dom_add.php:74 +msgid "-- Choose a domain --" +msgstr "" + +#: ../admin/dom_add.php:87 +msgid "Add this domain" +msgstr "" + +#: ../admin/dom_add.php:91 +msgid "" +"If you don't want to host in our server the DNS of your domain, don't check " +"the box 'host my dns here'. If you don't know what it mean, leave it checked." +msgstr "" + +#: ../admin/dom_add.php:96 ../admin/dom_doadd.php:60 +msgid "Whois result on the domain" +msgstr "" + +#: ../admin/dom_dnsdump.php:9 +msgid "Error: no domain" +msgstr "" + +#: ../admin/dom_doadd.php:52 ../class/m_dom.php:104 +msgid "Add a domain" +msgstr "" + +#: ../admin/dom_doadd.php:54 +#, php-format +msgid "Your new domain %s has been successfully installed" +msgstr "" + +#: ../admin/dom_doadd.php:55 ../admin/dom_dodel.php:56 +#: ../admin/dom_dodel.php:86 ../admin/dom_editdns.php:62 +#: ../admin/dom_import.php:87 ../admin/dom_subdodel.php:79 +#: ../admin/hta_doedituser.php:62 +msgid "Click here to continue" +msgstr "" + +#: ../admin/dom_dodel.php:54 +msgid "Deletion have been successfully cancelled" +msgstr "" + +#: ../admin/dom_dodel.php:64 ../admin/dom_dodel.php:67 +#, php-format +msgid "Confirm the deletion of domain %s" +msgstr "" + +#: ../admin/dom_dodel.php:67 ../admin/sql_del.php:75 +#: ../admin/sql_users_del.php:61 +msgid "WARNING" +msgstr "" + +#: ../admin/dom_dodel.php:69 +msgid "This will delete the related sub-domains too." +msgstr "" + +#: ../admin/dom_dodel.php:74 +msgid "Yes, delete this domain name" +msgstr "" + +#: ../admin/dom_dodel.php:75 +msgid "No, don't delete this domain name" +msgstr "" + +#: ../admin/dom_dodel.php:81 +#, php-format +msgid "Domain %s deleted" +msgstr "" + +#: ../admin/dom_dodel.php:85 +#, php-format +msgid "The domain %s has been successfully deleted." +msgstr "" + +#: ../admin/dom_edit.inc.php:40 +msgid "Edit a subdomain:" +msgstr "" + +#: ../admin/dom_edit.inc.php:42 +msgid "Create a subdomain:" +msgstr "" + +#: ../admin/dom_edit.inc.php:63 +msgid "Show advanced options" +msgstr "" + +#: ../admin/dom_edit.inc.php:64 +msgid "Hide advanced options" +msgstr "" + +#: ../admin/dom_edit.inc.php:88 +msgid "(enter an URL here)" +msgstr "" + +#: ../admin/dom_edit.inc.php:92 +msgid "(enter an IPv4 address, for example 192.168.1.2)" +msgstr "" + +#: ../admin/dom_edit.inc.php:96 +msgid "(enter an IPv6 address, for example 2001:0910::0)" +msgstr "" + +#: ../admin/dom_edit.inc.php:100 +msgid "(enter a TXT content for this domain)" +msgstr "" + +#: ../admin/dom_edit.inc.php:104 +msgid "(enter a domain name or subdomain)" +msgstr "" + +#: ../admin/dom_edit.inc.php:114 +msgid "Edit this subdomain" +msgstr "" + +#: ../admin/dom_edit.inc.php:116 +msgid "Add this subdomain" +msgstr "" + +#: ../admin/dom_edit.inc.php:135 +msgid "Missing value for this sub-domain" +msgstr "" + +#: ../admin/dom_edit.inc.php:141 +msgid "Please select a type for this sub-domain" +msgstr "" + +#: ../admin/dom_edit.php:80 +msgid "" +"Are you sure you want to do this? This will DELETE ALL the mailboxes, " +"messages and aliases on this domain ?" +msgstr "" + +#: ../admin/dom_edit.php:91 +#, php-format +msgid "Manage %s" +msgstr "" + +#: ../admin/dom_edit.php:96 +msgid "This domain have some DNS change pending. Please wait." +msgstr "" + +#: ../admin/dom_edit.php:99 +#, php-format +msgid "You requested deletion of domain %s." +msgstr "" + +#: ../admin/dom_edit.php:117 +msgid "Edit subdomains" +msgstr "" + +#: ../admin/dom_edit.php:118 +msgid "Add subdomains" +msgstr "" + +#: ../admin/dom_edit.php:119 ../class/m_mem.php:63 +msgid "Settings" +msgstr "" + +#: ../admin/dom_edit.php:128 +#, php-format +msgid "Editing subdomains of %s" +msgstr "" + +#: ../admin/dom_edit.php:130 +msgid "Subdomain" +msgstr "" + +#: ../admin/dom_edit.php:153 +msgid "ERROR, please check your server setup" +msgstr "" + +#: ../admin/dom_edit.php:160 ../admin/ftp_list.php:94 +msgid "Directory not found" +msgstr "" + +#: ../admin/dom_edit.php:174 +msgid "Activation pending" +msgstr "" + +#: ../admin/dom_edit.php:177 ../admin/ftp_list.php:84 +#: ../admin/mail_list.php:144 ../admin/mail_list.php:154 +msgid "Disabled" +msgstr "" + +#: ../admin/dom_edit.php:178 +msgid "Enable" +msgstr "" + +#: ../admin/dom_edit.php:181 +msgid "Desactivation pending" +msgstr "" + +#: ../admin/dom_edit.php:189 +msgid "Update pending" +msgstr "" + +#: ../admin/dom_edit.php:192 +msgid "Deletion pending" +msgstr "" + +#: ../admin/dom_edit.php:206 +#, php-format +msgid "Add a subdomains to %s" +msgstr "" + +#: ../admin/dom_edit.php:223 +msgid "DNS & Email parameters" +msgstr "" + +#: ../admin/dom_edit.php:228 +msgid "Manage the DNS on the server ?" +msgstr "" + +#: ../admin/dom_edit.php:239 +msgid "Define TTL for the zone records" +msgstr "" + +#: ../admin/dom_edit.php:241 +msgid "" +"Warning: a low TTL can be problematic. It is recommended not to use a lower " +"TTL than 3600 seconds." +msgstr "" + +#: ../admin/dom_edit.php:241 +msgid "seconds" +msgstr "" + +#: ../admin/dom_edit.php:250 +msgid "Manage the Emails Addresses of this domain on the server?" +msgstr "" + +#: ../admin/dom_edit.php:258 +msgid "" +"Warning: If you set this to 'no', all your email accounts and aliases on " +"this domain will be immediately deleted." +msgstr "" + +#: ../admin/dom_edit.php:259 +msgid "Submit the changes" +msgstr "" + +#: ../admin/dom_edit.php:267 +msgid "" +"Here is the actual DNS zone running on the AlternC server. If you just made " +"some changes, you have to wait for it." +msgstr "" + +#: ../admin/dom_edit.php:271 +msgid "Click here to view the dump" +msgstr "" + +#: ../admin/dom_edit.php:279 +msgid "Domain removal" +msgstr "" + +#: ../admin/dom_edit.php:280 +#, php-format +msgid "" +"If you want to destroy the domain %s, click on the button below. Warning: " +"this also deletes all FTP accounts, email, mailing lists associated with the " +"domain and subdomains." +msgstr "" + +#: ../admin/dom_edit.php:283 +#, php-format +msgid "Delete %s from this server" +msgstr "" + +#: ../admin/dom_editdns.php:52 +#, php-format +msgid "Editing domain %s" +msgstr "" + +#: ../admin/dom_editdns.php:57 +#, php-format +msgid "The domain %s has been changed." +msgstr "" + +#: ../admin/dom_editdns.php:60 ../admin/dom_subdodel.php:75 +msgid "The modifications will take effect at %time. Server time is %now." +msgstr "" + +#: ../admin/dom_import.php:43 +msgid "Import a DNS zone" +msgstr "" + +#: ../admin/dom_import.php:55 +msgid "The domain field seems to be empty" +msgstr "" + +#: ../admin/dom_import.php:57 +msgid "" +"Here is my proposition. Modify your zone until my proposition seems good to " +"you" +msgstr "" + +#: ../admin/dom_import.php:59 +#, php-format +msgid "Working on %s" +msgstr "" + +#: ../admin/dom_import.php:61 +msgid "Generated entry" +msgstr "" + +#: ../admin/dom_import.php:61 +msgid "Result" +msgstr "" + +#: ../admin/dom_import.php:61 +msgid "Zone" +msgstr "" + +#: ../admin/dom_import.php:74 +msgid "ERROR" +msgstr "" + +#: ../admin/dom_import.php:74 ../admin/mem_cm.php:56 +msgid "OK" +msgstr "" + +#: ../admin/dom_import.php:96 +msgid "Enter the domain name you want to import" +msgstr "" + +#: ../admin/dom_import.php:104 +msgid "Do you want to detect the redirection?" +msgstr "" + +#: ../admin/dom_import.php:115 +msgid "Paste your existing DNS zone here." +msgstr "" + +#: ../admin/dom_import.php:117 +msgid "If you don't know what it is, don't submit this form." +msgstr "" + +#: ../admin/dom_import.php:122 +msgid "Do you want to import the zone as it?" +msgstr "" + +#: ../admin/dom_import.php:126 +msgid "Submit" +msgstr "" + +#: ../admin/dom_subdel.php:51 +#, php-format +msgid "Deleting subdomain %s" +msgstr "" + +#: ../admin/dom_subdel.php:67 +msgid "WARNING : Confirm the deletion of the subdomain" +msgstr "" + +#: ../admin/dom_subdodel.php:64 +#, php-format +msgid "Deleting the subdomain %s:" +msgstr "" + +#: ../admin/dom_subdoedit.php:72 ../admin/dom_substatus.php:29 +msgid "The modifications will take effect at %time. Server time is %now." +msgstr "" + +#: ../admin/dom_subedit.php:56 +msgid "Editing subdomain" +msgstr "" + +#: ../admin/ftp_del.php:60 +#, php-format +msgid "The ftp account %s has been successfully deleted" +msgstr "" + +#: ../admin/ftp_del.php:68 +msgid "Confirm the FTP accounts deletion" +msgstr "" + +#: ../admin/ftp_del.php:71 +msgid "Do you really want to delete those accounts?" +msgstr "" + +#: ../admin/ftp_doedit.php:46 ../admin/ftp_edit.php:44 +#: ../admin/ftp_edit.php:51 +msgid "Create a FTP account" +msgstr "" + +#: ../admin/ftp_doedit.php:52 +msgid "Error: neither a creation nor an edition" +msgstr "" + +#: ../admin/ftp_doedit.php:72 +msgid "The ftp account has been successfully saved" +msgstr "" + +#: ../admin/ftp_edit.php:43 +msgid "Neither a creation nor a edition" +msgstr "" + +#: ../admin/ftp_edit.php:53 +msgid "Editing a FTP account" +msgstr "" + +#: ../admin/ftp_edit.php:79 +msgid "" +"This is the root folder for this FTP user. i.e. this FTP user can access to " +"this forlder and all its sub-folders." +msgstr "" + +#: ../admin/ftp_edit.php:93 +msgid "Click here if you want to edit password" +msgstr "" + +#: ../admin/ftp_edit.php:114 +msgid "Password do not match" +msgstr "" + +#: ../admin/ftp_edit.php:120 ../class/m_admin.php:1279 ../class/m_hta.php:235 +msgid "Please enter a password" +msgstr "" + +#: ../admin/ftp_list.php:45 ../class/m_ftp.php:76 +msgid "FTP accounts list" +msgstr "" + +#: ../admin/ftp_list.php:57 ../class/m_ftp.php:67 +msgid "Create a new ftp account" +msgstr "" + +#: ../admin/ftp_list.php:80 +msgid "Are you sure you want to change his status?" +msgstr "" + +#: ../admin/ftp_list.php:107 +msgid "FTP configuration information" +msgstr "" + +#: ../admin/ftp_list.php:109 +msgid "" +"Here are some configuration information you will need to configure your FTP " +"application." +msgstr "" + +#: ../admin/ftp_list.php:112 +msgid "Server:" +msgstr "" + +#: ../admin/ftp_list.php:113 +msgid "FTP mode for data transfer:" +msgstr "" + +#: ../admin/ftp_list.php:113 +msgid "passive" +msgstr "" + +#: ../admin/ftp_list.php:114 +msgid "User/password:" +msgstr "" + +#: ../admin/ftp_list.php:114 +msgid "" +"the one you specified when you created the account. You can edit them in the " +"panel." +msgstr "" + +#: ../admin/head.php:32 +msgid "AlternC Control Panel" +msgstr "" + +#: ../admin/head.php:59 +msgid "" +"Administrator session. you may return to your " +"account or cancel this feature." +msgstr "" + +#: ../admin/head.php:60 +msgid "You can also apply changes." +msgstr "" + +#: ../admin/head.php:65 +msgid "Panel is locked! No one can login!" +msgstr "" + +#: ../admin/hta_add.php:39 ../admin/hta_list.php:49 ../admin/hta_list.php:87 +msgid "Protect a folder" +msgstr "" + +#: ../admin/hta_add.php:43 +msgid "" +"Enter the name of the folder you want to protect. It must already exists." +msgstr "" + +#: ../admin/hta_adduser.php:40 +#, php-format +msgid "Adding a username in %s" +msgstr "" + +#: ../admin/hta_adduser.php:67 ../admin/hta_edit.php:112 +msgid "Add this user" +msgstr "" + +#: ../admin/hta_del.php:42 +#, php-format +msgid "The protected folder %s has been successfully unprotected" +msgstr "" + +#: ../admin/hta_dodeluser.php:49 +msgid "Authorized user deletion confirm" +msgstr "" + +#: ../admin/hta_dodeluser.php:52 +msgid "Do you really want to delete those users ?" +msgstr "" + +#: ../admin/hta_doedituser.php:52 +#, php-format +msgid "Change the user %s in the protected folder %s" +msgstr "" + +#: ../admin/hta_doedituser.php:60 +#, php-format +msgid "The password of the user %s has been successfully changed" +msgstr "" + +#: ../admin/hta_edit.php:39 +msgid "No folder selected!" +msgstr "" + +#: ../admin/hta_edit.php:48 +#, php-format +msgid "List of authorized user in folder %s" +msgstr "" + +#: ../admin/hta_edit.php:53 +#, php-format +msgid "No authorized user in %s" +msgstr "" + +#: ../admin/hta_edit.php:68 ../admin/sql_users_password.php:38 +msgid "Change this user's password" +msgstr "" + +#: ../admin/hta_edit.php:78 ../admin/sql_users_list.php:70 +msgid "Delete the checked users" +msgstr "" + +#: ../admin/hta_edit.php:83 +msgid "Show this folder's content in the File Browser" +msgstr "" + +#: ../admin/hta_edit.php:89 +msgid "Adding an authorized user" +msgstr "" + +#: ../admin/hta_edituser.php:40 +#, php-format +msgid "Editing user %s in the protected folder %s" +msgstr "" + +#: ../admin/hta_edituser.php:59 ../admin/mem_param.php:83 +#: ../admin/mem_param.php:84 +msgid "New password" +msgstr "" + +#: ../admin/hta_edituser.php:68 +msgid "Change the password" +msgstr "" + +#: ../admin/hta_list.php:40 +msgid "Protected folders list" +msgstr "" + +#: ../admin/hta_list.php:60 +msgid "" +"You can set passwords to protect some of your folders.
This will create ." +"htaccess and .htpasswd files that restrict access to these directory and to " +"any sub-elements." +msgstr "" + +#: ../admin/hta_list.php:77 +msgid "Edit login and passwords" +msgstr "" + +#: ../admin/hta_list.php:86 +msgid "Unprotect the checked folders" +msgstr "" + +#: ../admin/index.php:67 +msgid "Web Hosting Control Panel" +msgstr "" + +#: ../admin/index.php:83 +msgid "" +"To connect to the hosting control panel, enter your AlternC's login and " +"password in the following form and click 'Enter'" +msgstr "" + +#: ../admin/index.php:84 +msgid "You are attemping to connect without IP restriction." +msgstr "" + +#: ../admin/index.php:88 +msgid "AlternC access" +msgstr "" + +#: ../admin/index.php:91 +msgid "Enter" +msgstr "" + +#: ../admin/index.php:111 +msgid "" +"To read your mail in a browser, click here to go to your server's Webmail" +msgstr "" + +#: ../admin/index.php:123 +msgid "You must accept the session cookie to log-in" +msgstr "" + +#: ../admin/index.php:152 +msgid "Need a login and a password" +msgstr "" + +#: ../admin/ip_main.php:58 +msgid "" +"Here you can add rules to restrict access to AlternC's services, filtered by " +"IP. First, add trusted IPs in the 'Known IP and networks' list. Then, add " +"rules to grant access on services to the chosen IPs from this list." +msgstr "" + +#: ../admin/ip_main.php:60 +msgid "Enabled rules" +msgstr "" + +#: ../admin/ip_main.php:64 +msgid "Authorised IP address or network" +msgstr "" + +#: ../admin/ip_main.php:65 ../admin/ip_main.php:95 +msgid "Access type" +msgstr "" + +#: ../admin/ip_main.php:76 +msgid "for" +msgstr "" + +#: ../admin/ip_main.php:86 +msgid "Add a new rule" +msgstr "" + +#: ../admin/ip_main.php:89 +msgid "" +"You need to have some 'Known IP and networks' defined below to define a new " +"rule." +msgstr "" + +#: ../admin/ip_main.php:119 +msgid "Authorized IP address or network" +msgstr "" + +#: ../admin/ip_main.php:144 +msgid "Known IP and networks" +msgstr "" + +#: ../admin/ip_main.php:146 +msgid "IP or network" +msgstr "" + +#: ../admin/ip_main.php:172 +msgid "Add an IP or a networks" +msgstr "" + +#: ../admin/ip_main.php:181 +msgid "IP or network. IPv4, IPv6 and subnet allowed" +msgstr "" + +#: ../admin/ip_main.php:214 +msgid "Please select an access type" +msgstr "" + +#: ../admin/logs_list.php:35 +msgid "Logs Listing" +msgstr "" + +#: ../admin/logs_list.php:43 +msgid "You have no web logs to list at the moment." +msgstr "" + +#: ../admin/logs_list.php:49 +msgid "" +"Here are web logs of your account.
You can download them to do specific " +"extract and statistics." +msgstr "" + +#: ../admin/logs_list.php:53 +msgid "Creation Date" +msgstr "" + +#: ../admin/logs_list.php:53 +msgid "Download link" +msgstr "" + +#: ../admin/logs_list.php:65 +msgid "Download" +msgstr "" + +#: ../admin/mail_del.php:54 +msgid "Deleting mail accounts" +msgstr "" + +#: ../admin/mail_del.php:57 +msgid "Please confirm the deletion of the following mail accounts:" +msgstr "" + +#: ../admin/mail_del.php:74 +msgid "Confirm the deletion" +msgstr "" + +#: ../admin/mail_del.php:74 +msgid "Don't delete anything and go back to the email list" +msgstr "" + +#: ../admin/mail_del.php:78 +msgid "" +"Warning: Deleting an email address will destroy all the messages it " +"contains! You will NOT be able to get it back!" +msgstr "" + +#: ../admin/mail_doedit.php:120 +msgid "Your email has been edited successfully" +msgstr "" + +#: ../admin/mail_edit.php:53 +#, php-format +msgid "Editing the email %s" +msgstr "" + +#: ../admin/mail_edit.php:67 +msgid "Is this email enabled?" +msgstr "" + +#: ../admin/mail_edit.php:69 +msgid "" +"You can enable or disable this email anytime. This will bounce any mail " +"received on this address, but will not delete the stored email, or the " +"redirections or password." +msgstr "" + +#: ../admin/mail_edit.php:73 +msgid "No (email disabled)" +msgstr "" + +#: ../admin/mail_edit.php:74 +msgid "Yes (email enabled)" +msgstr "" + +#: ../admin/mail_edit.php:78 +msgid "Is it a POP/IMAP account?" +msgstr "" + +#: ../admin/mail_edit.php:79 +msgid "" +"POP/IMAP accounts are receiving emails in the server. To read those emails, " +"you can use a Webmail, or a mail client such as Thunderbird. If you don't " +"use POP/IMAP, you can configure your email to be a redirection to other " +"existing emails. The maximum size is in megabytes, use 0 to make it infinite." +msgstr "" + +#: ../admin/mail_edit.php:82 +#, php-format +msgid "This mailbox is currently using %1$s / %2$s" +msgstr "" + +#: ../admin/mail_edit.php:85 +msgid "" +"This mailbox is pending deletion. You can recover its mails by setting it to " +"'Yes' NOW!" +msgstr "" + +#: ../admin/mail_edit.php:95 +msgid "Click here to edit the existing password" +msgstr "" + +#: ../admin/mail_edit.php:96 +msgid "Enter a POP/IMAP password" +msgstr "" + +#: ../admin/mail_edit.php:98 ../class/m_quota.php:537 +msgid "MB" +msgstr "" + +#: ../admin/mail_edit.php:98 +msgid "Maximum allowed size of this Mailbox" +msgstr "" + +#: ../admin/mail_edit.php:103 +msgid "" +"WARNING: turning POP/IMAP off will DELETE the stored messages in this email " +"address." +msgstr "" + +#: ../admin/mail_edit.php:105 +msgid "Is it a redirection to other email addresses?" +msgstr "" + +#: ../admin/mail_edit.php:107 +msgid "" +"If you want to send emails received on this address to other addresses, even " +"outside this server, enter those recipients here." +msgstr "" + +#: ../admin/mail_edit.php:107 +msgid "one recipient per line" +msgstr "" + +#: ../admin/mail_edit.php:115 +msgid "Change this email address" +msgstr "" + +#: ../admin/mail_list.php:72 +msgid "Create a new mail account" +msgstr "" + +#: ../admin/mail_list.php:76 +msgid "Can't have empty mail." +msgstr "" + +#: ../admin/mail_list.php:76 +msgid "Create this email address" +msgstr "" + +#: ../admin/mail_list.php:78 +msgid "Manage Catch-all for this domain" +msgstr "" + +#: ../admin/mail_list.php:92 +#, php-format +msgid "Email addresses of the domain %s" +msgstr "" + +#: ../admin/mail_list.php:96 +msgid "No mails for this domain." +msgstr "" + +#: ../admin/mail_list.php:106 +msgid "Search" +msgstr "" + +#: ../admin/mail_list.php:111 +msgid "Show system emails" +msgstr "" + +#: ../admin/mail_list.php:118 +msgid "Items per page:" +msgstr "" + +#: ../admin/mail_list.php:125 +msgid "Address" +msgstr "" + +#: ../admin/mail_list.php:125 +msgid "Last login time" +msgstr "" + +#: ../admin/mail_list.php:125 +msgid "Other recipients" +msgstr "" + +#: ../admin/mail_list.php:125 +msgid "Pop/Imap" +msgstr "" + +#: ../admin/mail_list.php:136 +msgid "Deleting..." +msgstr "" + +#: ../admin/mail_list.php:141 +msgid "" +"This email will be deleted soon. You may still be able to undelete it by " +"clicking here" +msgstr "" + +#: ../admin/mail_list.php:141 +msgid "Undelete" +msgstr "" + +#: ../admin/mail_list.php:167 ../admin/main.php:34 +msgid "Never" +msgstr "" + +#: ../admin/mail_list.php:178 +msgid "Delete the checked email addresses" +msgstr "" + +#: ../admin/mail_list.php:186 +msgid "Mails configuration information" +msgstr "" + +#: ../admin/mail_list.php:188 +msgid "" +"Here are some configuration information you will need to configure your mail " +"application." +msgstr "" + +#: ../admin/mail_list.php:195 +msgid "Outgoing mail (SMTP)" +msgstr "" + +#: ../admin/mail_list.php:196 +msgid "Incoming mail" +msgstr "" + +#: ../admin/mail_list.php:201 ../admin/mail_list.php:242 +msgid "Which protocol shall you use?" +msgstr "" + +#: ../admin/mail_list.php:203 +msgid "Submission" +msgstr "" + +#: ../admin/mail_list.php:206 ../admin/mail_list.php:217 +#: ../admin/mail_list.php:228 ../admin/mail_list.php:247 +#: ../admin/mail_list.php:258 ../admin/mail_list.php:269 +#: ../admin/mail_list.php:280 +msgid "Server name: " +msgstr "" + +#: ../admin/mail_list.php:207 ../admin/mail_list.php:218 +#: ../admin/mail_list.php:229 +msgid "" +"The mail address you want to access (example : myuser@example.tld)" +msgstr "" + +#: ../admin/mail_list.php:207 ../admin/mail_list.php:218 +#: ../admin/mail_list.php:229 +msgid "Username: " +msgstr "" + +#: ../admin/mail_list.php:208 ../admin/mail_list.php:219 +#: ../admin/mail_list.php:230 ../admin/mail_list.php:248 +#: ../admin/mail_list.php:259 ../admin/mail_list.php:270 +#: ../admin/mail_list.php:281 +msgid "Port: " +msgstr "" + +#: ../admin/mail_list.php:209 ../admin/mail_list.php:220 +#: ../admin/mail_list.php:231 ../admin/mail_list.php:249 +#: ../admin/mail_list.php:260 ../admin/mail_list.php:271 +#: ../admin/mail_list.php:282 +msgid "Authentication: " +msgstr "" + +#: ../admin/mail_list.php:210 ../admin/mail_list.php:221 +#: ../admin/mail_list.php:232 ../admin/mail_list.php:250 +#: ../admin/mail_list.php:261 ../admin/mail_list.php:272 +#: ../admin/mail_list.php:283 +msgid "Authentication method: " +msgstr "" + +#: ../admin/mail_list.php:210 ../admin/mail_list.php:250 +#: ../admin/mail_list.php:261 ../admin/mail_list.php:272 +#: ../admin/mail_list.php:283 +msgid "Normal password" +msgstr "" + +#: ../admin/mail_list.php:211 ../admin/mail_list.php:222 +#: ../admin/mail_list.php:233 ../admin/mail_list.php:251 +#: ../admin/mail_list.php:262 ../admin/mail_list.php:273 +#: ../admin/mail_list.php:284 +msgid "Connection security:" +msgstr "" + +#: ../admin/mail_list.php:214 +msgid "SMTP" +msgstr "" + +#: ../admin/mail_list.php:221 ../admin/mail_list.php:232 +msgid "Normal Password" +msgstr "" + +#: ../admin/mail_list.php:225 +msgid "SMTPS" +msgstr "" + +#: ../admin/mail_list.php:244 +msgid "IMAP" +msgstr "" + +#: ../admin/mail_list.php:255 +msgid "IMAPS" +msgstr "" + +#: ../admin/mail_list.php:266 +msgid "POP3" +msgstr "" + +#: ../admin/mail_list.php:277 +msgid "POP3S" +msgstr "" + +#: ../admin/mail_manage_catchall.php:38 +msgid "Problem with the domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:47 +msgid "Catchall successfully deleted" +msgstr "" + +#: ../admin/mail_manage_catchall.php:50 ../admin/mail_manage_catchall.php:53 +msgid "Catchall successfully updated" +msgstr "" + +#: ../admin/mail_manage_catchall.php:56 +msgid "Unknown target type" +msgstr "" + +#: ../admin/mail_manage_catchall.php:63 +#, php-format +msgid "Manage catch-all configuration of %s" +msgstr "" + +#: ../admin/mail_manage_catchall.php:72 +msgid "" +"You can choose what to do with emails sent to unexisting address of this " +"domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:80 +msgid "No catch-all" +msgstr "" + +#: ../admin/mail_manage_catchall.php:84 +msgid "No catch-all for this domain." +msgstr "" + +#: ../admin/mail_manage_catchall.php:88 +msgid "Redirect to same address on a different domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:92 +#, php-format +msgid "" +"Mails sent to john.doe@%s will be redirect to john.doe@anotherdomain.tld" +msgstr "" + +#: ../admin/mail_manage_catchall.php:95 +msgid "Enter the 'target' domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:96 +msgid "example.tld" +msgstr "" + +#: ../admin/mail_manage_catchall.php:98 +msgid "Or choose one of your own" +msgstr "" + +#: ../admin/mail_manage_catchall.php:106 +msgid "Redirect to a specific email" +msgstr "" + +#: ../admin/mail_manage_catchall.php:110 +#, php-format +msgid "" +"Mails sent to an unexisting email on '@%s' will be redirect to user@example." +"tld." +msgstr "" + +#: ../admin/mail_manage_catchall.php:113 +msgid "john.doe@example.tld" +msgstr "" + +#: ../admin/mailautoconfig_outlook.php:16 +msgid "Missing POST of the mail address" +msgstr "" + +#: ../admin/mailautoconfig_thunderbird.php:9 +msgid "Error: Missing GET of emailaddress" +msgstr "" + +#: ../admin/mailautoconfig_thunderbird.php:12 +msgid "Error: Empty $emailDomain" +msgstr "" + +#: ../admin/main.php:31 +msgid "Last Login: " +msgstr "" + +#: ../admin/main.php:36 +#, php-format +msgid "the %3$d-%2$d-%1$d at %4$d:%5$02d" +msgstr "" + +#: ../admin/main.php:37 +#, php-format +msgid "from: %1$s " +msgstr "" + +#: ../admin/main.php:42 +#, php-format +msgid "%1$d login failed since last login" +msgstr "" + +#: ../admin/main.php:85 +msgid "Expired or about to expire accounts" +msgstr "" + +#: ../admin/main.php:87 +msgid "Last name, surname" +msgstr "" + +#: ../admin/main.php:87 +msgid "uid" +msgstr "" + +#: ../admin/main.php:103 +msgid "" +"You are using the AlternC Panel. You can contact the AlternC community for " +"information or feedback by joining the mailing-list" +msgstr "" + +#: ../admin/mem_admin.php:40 +msgid "Your administrator preferences has been successfully changed." +msgstr "" + +#: ../admin/mem_admin.php:46 ../admin/mem_param.php:116 +msgid "Admin preferences" +msgstr "" + +#: ../admin/mem_chgmail.php:44 ../admin/mem_cm.php:42 ../admin/mem_cm.php:53 +#: ../admin/mem_cm2.php:47 ../admin/mem_param.php:92 +msgid "Change the email of the account" +msgstr "" + +#: ../admin/mem_chgmail.php:51 +#, php-format +msgid "help_mem_chgmail %s" +msgstr "" + +#: ../admin/mem_cm.php:54 +msgid "" +"Enter the key you got when you requested the mailbox change, then click the " +"OK button." +msgstr "" + +#: ../admin/mem_cm.php:55 +msgid "Key" +msgstr "" + +#: ../admin/mem_cm2.php:55 +msgid "The mailbox has been successfully changed." +msgstr "" + +#: ../admin/mem_logout.php:41 ../admin/mem_logout.php:49 +msgid "Disconnected" +msgstr "" + +#: ../admin/mem_logout.php:51 +msgid "You have been logged out of your administration desktop." +msgstr "" + +#: ../admin/mem_logout.php:52 +msgid "Click here to log in" +msgstr "" + +#: ../admin/mem_param.php:43 +msgid "Your help setting has been updated." +msgstr "" + +#: ../admin/mem_param.php:47 +msgid "Settings of your account" +msgstr "" + +#: ../admin/mem_param.php:60 ../class/m_mem.php:579 +msgid "Help" +msgstr "" + +#: ../admin/mem_param.php:63 +msgid "Administrator" +msgstr "" + +#: ../admin/mem_param.php:69 ../admin/mem_passwd.php:50 +#: ../admin/sql_users_list.php:59 +msgid "Password change" +msgstr "" + +#: ../admin/mem_param.php:73 +msgid "You cannot change your password" +msgstr "" + +#: ../admin/mem_param.php:78 +msgid "help_chg_passwd" +msgstr "" + +#: ../admin/mem_param.php:82 +msgid "Old password" +msgstr "" + +#: ../admin/mem_param.php:85 +msgid "Change my password" +msgstr "" + +#: ../admin/mem_param.php:95 +msgid "help_chg_mail" +msgstr "" + +#: ../admin/mem_param.php:96 +msgid "Current mailbox" +msgstr "" + +#: ../admin/mem_param.php:97 +msgid "New mailbox" +msgstr "" + +#: ../admin/mem_param.php:98 +msgid "Change my email address" +msgstr "" + +#: ../admin/mem_param.php:103 +msgid "Online help settings" +msgstr "" + +#: ../admin/mem_param.php:106 +msgid "help_help_settings" +msgstr "" + +#: ../admin/mem_param.php:107 +msgid "Do you want to see the help texts and links on each page?" +msgstr "" + +#: ../admin/mem_param.php:108 +msgid "Change these settings" +msgstr "" + +#: ../admin/mem_param.php:119 +msgid "Members list view" +msgstr "" + +#: ../admin/mem_param.php:120 +msgid "Large view" +msgstr "" + +#: ../admin/mem_param.php:121 +msgid "Short view" +msgstr "" + +#: ../admin/mem_param.php:123 +msgid "Change my admin preferences" +msgstr "" + +#: ../admin/mem_passwd.php:44 +msgid "Your password has been successfully changed." +msgstr "" + +#: ../admin/menu.php:37 +#, php-format +msgid "Welcome %s" +msgstr "" + +#: ../admin/menu.php:105 +msgid "About" +msgstr "" + +#: ../admin/nowebmail.php:28 +msgid "" +"There is currently no webmail configured. If you need one, contact your " +"server administrator" +msgstr "" + +#: ../admin/piwik_addaccount.php:34 +msgid "You cannot add any new Piwik account, your quota is over." +msgstr "" + +#: ../admin/piwik_addaccount.php:44 +msgid "Error : missing arguments." +msgstr "" + +#: ../admin/piwik_addaccount.php:50 +#, php-format +msgid "Creation of Piwik account \"%s\"" +msgstr "" + +#: ../admin/piwik_addaccount.php:67 +msgid "Successfully added piwik user" +msgstr "" + +#: ../admin/piwik_addsites.php:44 +msgid "Error while adding website.
" +msgstr "" + +#: ../admin/piwik_addsites.php:46 +msgid "Website added Successfully" +msgstr "" + +#: ../admin/piwik_site_dodel.php:39 +msgid "Missing site parameters" +msgstr "" + +#: ../admin/piwik_site_dodel.php:50 +msgid "Site successfully deleted" +msgstr "" + +#: ../admin/piwik_site_dodel.php:61 +msgid "Piwik site deletion confirm" +msgstr "" + +#: ../admin/piwik_site_dodel.php:64 +msgid "Do you really want to delete this Piwik website ?" +msgstr "" + +#: ../admin/piwik_sitelist.php:48 +msgid "You don't own this piwik site!" +msgstr "" + +#: ../admin/piwik_sitelist.php:56 +msgid "You dont own user" +msgstr "" + +#: ../admin/piwik_sitelist.php:83 ../admin/piwik_userlist.php:53 +msgid "Add a new website" +msgstr "" + +#: ../admin/piwik_sitelist.php:85 ../admin/piwik_userlist.php:55 +msgid "URL of the website" +msgstr "" + +#: ../admin/piwik_sitelist.php:106 +msgid "Existing Piwik monitored websites" +msgstr "" + +#: ../admin/piwik_sitelist.php:114 +msgid "No existing Piwik websites" +msgstr "" + +#: ../admin/piwik_sitelist.php:120 +msgid "Site name" +msgstr "" + +#: ../admin/piwik_sitelist.php:120 +msgid "Site url" +msgstr "" + +#: ../admin/piwik_sitelist.php:147 +msgid "Credentials management" +msgstr "" + +#: ../admin/piwik_user_dodel.php:39 +msgid "Missing login parameters" +msgstr "" + +#: ../admin/piwik_user_dodel.php:59 +msgid "Piwik accounts deletion confirm" +msgstr "" + +#: ../admin/piwik_user_dodel.php:62 +#, php-format +msgid "Do you really want to delete the Piwik account %s ?" +msgstr "" + +#: ../admin/piwik_useradmin.php:42 +msgid "No piwik user specified" +msgstr "" + +#: ../admin/piwik_useradmin.php:52 +msgid "You don't own this piwik website" +msgstr "" + +#: ../admin/piwik_useradmin.php:60 +msgid "You don't own this piwik user" +msgstr "" + +#: ../admin/piwik_useradmin.php:71 +msgid "success" +msgstr "" + +#: ../admin/piwik_useradmin.php:75 +msgid "This right does not exist" +msgstr "" + +#: ../admin/piwik_useradmin.php:105 +msgid "Rights for user" +msgstr "" + +#: ../admin/piwik_useradmin.php:128 +msgid "Add rights to user" +msgstr "" + +#: ../admin/piwik_useradmin.php:139 +msgid "admin" +msgstr "" + +#: ../admin/piwik_useradmin.php:139 +msgid "noacces" +msgstr "" + +#: ../admin/piwik_useradmin.php:139 +msgid "view" +msgstr "" + +#: ../admin/piwik_userlist.php:41 +msgid "Create a new piwik account" +msgstr "" + +#: ../admin/piwik_userlist.php:66 +msgid "Existing Piwik accounts" +msgstr "" + +#: ../admin/piwik_userlist.php:74 +msgid "No existing Piwik users" +msgstr "" + +#: ../admin/piwik_userlist.php:79 ../admin/piwik_userlist.php:89 +msgid "Connect" +msgstr "" + +#: ../admin/quota_show.php:34 +msgid "Account's quotas" +msgstr "" + +#: ../admin/quota_show.php:40 +msgid "No quotas for this account, or quotas currently unavailable!" +msgstr "" + +#: ../admin/quotas_oneuser.php:14 +#, php-format +msgid "%s account" +msgstr "" + +#: ../admin/quotas_oneuser.php:25 ../class/m_quota.php:60 +msgid "quota_web" +msgstr "" + +#: ../admin/quotas_oneuser.php:36 ../admin/quotas_users.php:132 +#: ../class/m_dom.php:93 +msgid "Domains" +msgstr "" + +#: ../admin/quotas_oneuser.php:37 +msgid "Emails" +msgstr "" + +#: ../admin/quotas_oneuser.php:38 ../admin/quotas_oneuser.php:121 +#: ../admin/quotas_oneuser.php:167 ../admin/quotas_users.php:128 +#: ../admin/quotas_users.php:169 +msgid "Space" +msgstr "" + +#: ../admin/quotas_oneuser.php:112 +msgid "Databases:" +msgstr "" + +#: ../admin/quotas_oneuser.php:120 ../admin/quotas_users.php:177 +msgid "DB" +msgstr "" + +#: ../admin/quotas_oneuser.php:158 +msgid "Mailman lists:" +msgstr "" + +#: ../admin/quotas_oneuser.php:166 ../admin/quotas_users.php:173 +#: ../admin/quotas_users.php:176 +msgid "Lists" +msgstr "" + +#: ../admin/quotas_users.php:20 +msgid "Quotas status" +msgstr "" + +#: ../admin/quotas_users.php:29 +msgid "" +"This page shows the space and service count of your AlternC server and each " +"AlternC accounts." +msgstr "" + +#: ../admin/quotas_users.php:30 +#, php-format +msgid "Administration -> Manage the Alternc accounts" +msgstr "" + +#: ../admin/quotas_users.php:30 +#, php-format +msgid "If you want to manage them, go to" +msgstr "" + +#: ../admin/quotas_users.php:33 +#, php-format +msgid "% of the total." +msgstr "" + +#: ../admin/quotas_users.php:33 +msgid "MB." +msgstr "" + +#: ../admin/quotas_users.php:33 +#, php-format +msgid "Sizes are shown as %s" +msgstr "" + +#: ../admin/quotas_users.php:36 +msgid "Global" +msgstr "" + +#: ../admin/quotas_users.php:36 +msgid "Server-side view:" +msgstr "" + +#: ../admin/quotas_users.php:37 +msgid "Detailed view:" +msgstr "" + +#: ../admin/quotas_users.php:38 +msgid "In MB" +msgstr "" + +#: ../admin/quotas_users.php:39 +msgid "Percentage" +msgstr "" + +#: ../admin/quotas_users.php:40 +msgid "Graphical" +msgstr "" + +#: ../admin/quotas_users.php:43 +msgid "Show the domain names" +msgstr "" + +#: ../admin/quotas_users.php:45 +msgid "Hide the domain names" +msgstr "" + +#: ../admin/quotas_users.php:48 +msgid "All accounts" +msgstr "" + +#: ../admin/quotas_users.php:128 ../admin/quotas_users.php:169 +msgid "Count" +msgstr "" + +#: ../admin/quotas_users.php:137 ../class/m_mail.php:177 +msgid "Email addresses" +msgstr "" + +#: ../admin/quotas_users.php:143 +msgid "Mailman lists" +msgstr "" + +#: ../admin/quotas_users.php:149 ../admin/sql_del.php:72 +#: ../admin/sql_dorestore.php:40 ../admin/sql_getparam.php:44 +#: ../admin/sql_list.php:37 ../admin/sql_restore.php:44 +#: ../class/m_mysql.php:990 +msgid "MySQL Databases" +msgstr "" + +#: ../admin/quotas_users.php:171 +msgid "Dom" +msgstr "" + +#: ../admin/quotas_users.php:172 ../admin/quotas_users.php:175 +msgid "Mails" +msgstr "" + +#: ../admin/quotas_users.php:174 +msgid "Web" +msgstr "" + +#: ../admin/sql_bck.php:34 +msgid "MySQL Databases - Configure backups" +msgstr "" + +#: ../admin/sql_bck.php:40 ../admin/sql_dobck.php:34 +msgid "" +"You aren't allowed to access this page. Contact your administrator if you " +"want to." +msgstr "" + +#: ../admin/sql_bck.php:65 +#, php-format +msgid "Manage the SQL backup for database %s" +msgstr "" + +#: ../admin/sql_bck.php:70 +msgid "Do MySQL backup?" +msgstr "" + +#: ../admin/sql_bck.php:73 +msgid "No backup" +msgstr "" + +#: ../admin/sql_bck.php:74 +msgid "Weekly backup" +msgstr "" + +#: ../admin/sql_bck.php:75 +msgid "Daily backup" +msgstr "" + +#: ../admin/sql_bck.php:79 +msgid "How many backups should be kept?" +msgstr "" + +#: ../admin/sql_bck.php:91 +msgid "Compress the backups? (gzip)" +msgstr "" + +#: ../admin/sql_bck.php:100 +msgid "In which folder do you want to store the backups?" +msgstr "" + +#: ../admin/sql_bck.php:107 +msgid "Change the MySQL backup parameters" +msgstr "" + +#: ../admin/sql_bck.php:116 ../admin/sql_dorestore.php:50 +#: ../admin/sql_restore.php:53 +msgid "You currently have no database defined" +msgstr "" + +#: ../admin/sql_del.php:51 +#, php-format +msgid "The database %s has been successfully deleted" +msgstr "" + +#: ../admin/sql_del.php:66 +msgid "Please check which databases you want to delete" +msgstr "" + +#: ../admin/sql_del.php:75 +msgid "Confirm the deletion of the following SQL databases" +msgstr "" + +#: ../admin/sql_del.php:76 +msgid "This will delete all the tables currently in those db." +msgstr "" + +#: ../admin/sql_del.php:90 +msgid "No, don't delete the database" +msgstr "" + +#: ../admin/sql_del.php:90 +msgid "Yes, delete the database" +msgstr "" + +#: ../admin/sql_doadd.php:37 +msgid "Can't create a database: your quota is over" +msgstr "" + +#: ../admin/sql_dobck.php:56 +msgid "Your backup parameters has been successfully changed." +msgstr "" + +#: ../admin/sql_dorestore.php:56 +msgid "Restore a SQL backup" +msgstr "" + +#: ../admin/sql_dorestore.php:63 +msgid "" +"Your database has been restored, check out the previous text for error " +"messages." +msgstr "" + +#: ../admin/sql_getparam.php:53 +msgid "Your current connection settings are" +msgstr "" + +#: ../admin/sql_getparam.php:59 +msgid "Mysql Server" +msgstr "" + +#: ../admin/sql_getparam.php:63 ../admin/sql_list.php:54 +msgid "Database" +msgstr "" + +#: ../admin/sql_getparam.php:79 +msgid "Web interface PhpMyAdmin" +msgstr "" + +#: ../admin/sql_getparam.php:91 +msgid "" +"You changed the MySQL User base configuration. Please refer to your " +"configuration" +msgstr "" + +#: ../admin/sql_getparam.php:94 +msgid "Back to the MySQL database list" +msgstr "" + +#: ../admin/sql_list.php:45 +msgid "You have no sql user at the moment." +msgstr "" + +#: ../admin/sql_list.php:54 ../admin/sql_list.php:65 +msgid "Backup" +msgstr "" + +#: ../admin/sql_list.php:54 ../admin/sql_list.php:67 +msgid "Restore" +msgstr "" + +#: ../admin/sql_list.php:54 ../admin/sql_list.php:68 +msgid "Show Settings" +msgstr "" + +#: ../admin/sql_list.php:77 +msgid "Delete the checked databases" +msgstr "" + +#: ../admin/sql_list.php:90 +msgid "Create a new MySQL database" +msgstr "" + +#: ../admin/sql_list.php:96 +msgid "MySQL Database" +msgstr "" + +#: ../admin/sql_list.php:103 +msgid "Can't have empty MySQL suffix" +msgstr "" + +#: ../admin/sql_list.php:103 +msgid "Create this new MySQL database." +msgstr "" + +#: ../admin/sql_pma_sso.php:46 +msgid "SQL Admin" +msgstr "" + +#: ../admin/sql_restore.php:58 +#, php-format +msgid "Restore a MySQL backup for database %s" +msgstr "" + +#: ../admin/sql_restore.php:61 +msgid "" +"Warning: Write the complete path and the filename.
For example if your " +"backups are in the directory /Backups,
write /Backups/file.sql.gz " +"(where file.sql.gz is the filename)." +msgstr "" + +#: ../admin/sql_restore.php:66 +msgid "" +"Please enter the path and the filename containing SQL data to be restored." +msgstr "" + +#: ../admin/sql_restore.php:67 +msgid "Restore my database" +msgstr "" + +#: ../admin/sql_restore.php:67 +msgid "Tip: you can restore a file directly in the File Browser" +msgstr "" + +#: ../admin/sql_restore.php:72 +msgid "Please the complete path of the filename" +msgstr "" + +#: ../admin/sql_restore.php:81 +msgid "Note: If the filename ends with .gz, it will be uncompressed before." +msgstr "" + +#: ../admin/sql_users_add.php:41 ../admin/sql_users_list.php:79 +msgid "Create a new MySQL user" +msgstr "" + +#: ../admin/sql_users_add.php:72 +msgid "Create this new MySQL user" +msgstr "" + +#: ../admin/sql_users_del.php:47 +#, php-format +msgid "The user %s has been successfully deleted" +msgstr "" + +#: ../admin/sql_users_del.php:58 +msgid "MySQL users" +msgstr "" + +#: ../admin/sql_users_del.php:61 +msgid "Confirm the deletion of the following MySQL users" +msgstr "" + +#: ../admin/sql_users_del.php:76 +msgid "No, don't delete the MySQL user" +msgstr "" + +#: ../admin/sql_users_del.php:76 +msgid "Yes, delete the MySQL user" +msgstr "" + +#: ../admin/sql_users_dorights.php:54 +msgid "The rights has been successfully applied to the user" +msgstr "" + +#: ../admin/sql_users_list.php:37 ../class/m_mysql.php:124 +msgid "MySQL Users" +msgstr "" + +#: ../admin/sql_users_list.php:48 +msgid "Rights" +msgstr "" + +#: ../admin/sql_users_list.php:58 +msgid "Manage the rights" +msgstr "" + +#: ../admin/sql_users_password.php:68 +msgid "Change user password" +msgstr "" + +#: ../admin/sql_users_rights.php:38 +#, php-format +msgid "MySQL Rights for %s" +msgstr "" + +#: ../admin/sql_users_rights.php:89 +msgid "Reverse selection" +msgstr "" + +#: ../admin/sql_users_rights.php:103 +msgid "Apply" +msgstr "" + +#: ../admin/stats_members.php:32 +msgid "" +"Image_Graph not installed. use 'aptitude install php-pear' then 'pear " +"install --alldeps Image_Graph-devel' to see the graph." +msgstr "" + +#: ../admin/stats_members.php:41 +msgid "Account creation per month" +msgstr "" + +#: ../admin/stats_members.php:54 +msgid "before the month" +msgstr "" + +#: ../admin/stats_members.php:56 +msgid "during the month" +msgstr "" + +#: ../admin/vm.php:52 ../class/m_lxc.php:60 +msgid "Console access" +msgstr "" + +#: ../admin/vm.php:69 +msgid "You can start a virtual machine." +msgstr "" + +#: ../admin/vm.php:72 +msgid "Click here to start a virtual machine." +msgstr "" + +#: ../admin/vm.php:78 +msgid "Start time" +msgstr "" + +#: ../admin/vm.php:79 +msgid "SSH Fingerprint" +msgstr "" + +#: ../admin/vm.php:80 +msgid "Useful command" +msgstr "" + +#: ../admin/vm.php:86 +msgid "You can stop your virtual machine." +msgstr "" + +#: ../admin/vm.php:89 +msgid "Click here to stop your running virtual machine." +msgstr "" + +#: ../admin/vm.php:99 +msgid "Tips" +msgstr "" + +#: ../admin/vm.php:104 +msgid "Available softwares" +msgstr "" + +#: ../admin/vm.php:105 +msgid "Remotely start/stop a VM" +msgstr "" + +#: ../admin/vm.php:110 +msgid "" +"You can script the launch the console access in command line by using this " +"url:" +msgstr "" + +#: ../admin/vm.php:112 +msgid "You can halt the vm by using:" +msgstr "" + +#: ../admin/vm.php:114 +msgid "" +"And you can see existing vm information (if the vm is running) by using:" +msgstr "" + +#: ../admin/vm.php:116 +msgid "" +"Warning: if you do not use HTTPS, your password will be transfered without " +"any protection" +msgstr "" + +#: ../admin/vm.php:120 +msgid "To access a remote console with SSH, you can use Putty." +msgstr "" + +#: ../admin/vm.php:122 +msgid "To transfer files, you can use Filezilla in SFTP mode." +msgstr "" + +#: ../class/functions.php:281 +msgid "Bytes" +msgstr "" + +#: ../class/functions.php:283 +msgid "Byte" +msgstr "" + +#: ../class/functions.php:288 +msgid "Kb" +msgstr "" + +#: ../class/functions.php:292 +msgid "Mb" +msgstr "" + +#: ../class/functions.php:296 +msgid "Gb" +msgstr "" + +#: ../class/functions.php:298 +msgid "Tb" +msgstr "" + +#: ../class/functions.php:389 +msgid "year" +msgstr "" + +#: ../class/functions.php:389 +msgid "years" +msgstr "" + +#: ../class/functions.php:391 +msgid "month" +msgstr "" + +#: ../class/functions.php:391 +msgid "months" +msgstr "" + +#: ../class/functions.php:414 +msgid "Not managed" +msgstr "" + +#: ../class/functions.php:541 ../class/functions.php:543 +msgid "Previous Page" +msgstr "" + +#: ../class/functions.php:597 ../class/functions.php:599 +msgid "Next Page" +msgstr "" + +#: ../class/functions.php:621 +msgid "Clic here to generate a password" +msgstr "" + +#: ../class/functions.php:656 ../class/functions.php:657 +msgid "Choose a folder..." +msgstr "" + +#: ../class/m_action.php:156 +msgid "Error setting actions" +msgstr "" + +#: ../class/m_action.php:168 +msgid "Error selecting old actions" +msgstr "" + +#: ../class/m_action.php:181 +msgid "Error purging old actions" +msgstr "" + +#: ../class/m_admin.php:60 +msgid "This TLD is forbidden" +msgstr "" + +#: ../class/m_admin.php:61 +msgid "primary DNS is checked in WHOIS db" +msgstr "" + +#: ../class/m_admin.php:62 +msgid "primary & secondary DNS are checked in WHOIS db" +msgstr "" + +#: ../class/m_admin.php:63 +msgid "Domain must exist, but don't do any DNS check" +msgstr "" + +#: ../class/m_admin.php:64 +msgid "Domain can be installed, no check at all" +msgstr "" + +#: ../class/m_admin.php:65 +msgid "Domain can be installed, force NO DNS hosting" +msgstr "" + +#: ../class/m_admin.php:75 +msgid "Administration" +msgstr "" + +#: ../class/m_admin.php:83 +msgid "Manage AlternC accounts" +msgstr "" + +#: ../class/m_admin.php:88 +msgid "User Quotas" +msgstr "" + +#: ../class/m_admin.php:104 ../class/m_mysql.php:130 +msgid "PhpMyAdmin" +msgstr "" + +#: ../class/m_admin.php:111 +msgid "Switch debug Off" +msgstr "" + +#: ../class/m_admin.php:111 +msgid "Switch debug On" +msgstr "" + +#: ../class/m_admin.php:118 +msgid "Applying..." +msgstr "" + +#: ../class/m_admin.php:119 +msgid "Domain changes are already applying" +msgstr "" + +#: ../class/m_admin.php:125 +msgid "Apply changes" +msgstr "" + +#: ../class/m_admin.php:128 +msgid "" +"Server configuration changes are applied every 5 minutes. Do you want to do " +"it right now?" +msgstr "" + +#: ../class/m_admin.php:174 ../class/m_admin.php:224 ../class/m_admin.php:288 +#: ../class/m_admin.php:364 ../class/m_admin.php:405 ../class/m_admin.php:436 +#: ../class/m_admin.php:491 ../class/m_admin.php:657 ../class/m_admin.php:696 +#: ../class/m_admin.php:720 ../class/m_admin.php:746 +msgid "-- Only administrators can access this page! --" +msgstr "" + +#: ../class/m_admin.php:322 +msgid "" +"Invalid pattern type provided. Are you even performing a legitimate action?" +msgstr "" + +#: ../class/m_admin.php:372 +msgid "Subject, message and sender are mandatory" +msgstr "" + +#: ../class/m_admin.php:377 +msgid "Sender is syntaxically incorrect" +msgstr "" + +#: ../class/m_admin.php:448 +msgid "-- Only administrators can do that! --" +msgstr "" + +#: ../class/m_admin.php:454 +msgid "You don't seem to be allowed to delegate this domain" +msgstr "" + +#: ../class/m_admin.php:495 +msgid "Missing db_server field" +msgstr "" + +#: ../class/m_admin.php:499 ../class/m_admin.php:504 +msgid "All fields are mandatory" +msgstr "" + +#: ../class/m_admin.php:508 +msgid "Please enter a valid email address" +msgstr "" + +#: ../class/m_admin.php:514 +msgid "Login can only contains characters a-z and 0-9" +msgstr "" + +#: ../class/m_admin.php:521 +msgid "The login is too long (14 chars max)" +msgstr "" + +#: ../class/m_admin.php:526 +msgid "Login can only contains characters a-z, 0-9 and -" +msgstr "" + +#: ../class/m_admin.php:572 +msgid "This login already exists" +msgstr "" + +#: ../class/m_admin.php:589 +#, php-format +msgid "query failed: %s " +msgstr "" + +#: ../class/m_admin.php:616 +#, php-format +msgid "New account %s from %s on %s" +msgstr "" + +#: ../class/m_admin.php:621 +#, php-format +msgid "Cannot send email to %s" +msgstr "" + +#: ../class/m_admin.php:625 +#, php-format +msgid "Query failed: %s" +msgstr "" + +#: ../class/m_admin.php:898 +msgid "This account is ALREADY an administrator account" +msgstr "" + +#: ../class/m_admin.php:920 +msgid "This account is NOT an administrator account!" +msgstr "" + +#: ../class/m_admin.php:1061 +#, php-format +msgid "Domain '%s' not found." +msgstr "" + +#: ../class/m_admin.php:1080 ../class/m_admin.php:1112 +#: ../class/m_admin.php:1162 +msgid "This TLD does not exist" +msgstr "" + +#: ../class/m_admin.php:1133 +msgid "The TLD name is mandatory" +msgstr "" + +#: ../class/m_admin.php:1140 +msgid "This TLD already exist" +msgstr "" + +#: ../class/m_admin.php:1275 +msgid "Please enter a login" +msgstr "" + +#: ../class/m_admin.php:1285 +msgid "-- Program error -- The requested password policy does not exist!" +msgstr "" + +#: ../class/m_admin.php:1293 +msgid "The password length is too short according to the password policy" +msgstr "" + +#: ../class/m_admin.php:1298 +msgid "The password is too long according to the password policy" +msgstr "" + +#: ../class/m_admin.php:1308 +msgid "" +"The password policy prevents you to use your login name inside your password" +msgstr "" + +#: ../class/m_admin.php:1332 +msgid "" +"Your password contains not enough different classes of character, between " +"low-case, up-case, figures and special characters." +msgstr "" + +#: ../class/m_authip.php:338 +msgid "Object not available" +msgstr "" + +#: ../class/m_authip.php:347 +#, php-format +msgid "Can't identified class for the protocole %s" +msgstr "" + +#: ../class/m_bro.php:68 +msgid "1 column, detailed" +msgstr "" + +#: ../class/m_bro.php:68 +msgid "2 columns, short" +msgstr "" + +#: ../class/m_bro.php:68 +msgid "3 columns, short" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "tar.Z (Unix)" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "tar.bz2 (Linux)" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "tgz (Linux)" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "zip (Windows/Dos)" +msgstr "" + +#: ../class/m_bro.php:71 +msgid "Edit the newly created file" +msgstr "" + +#: ../class/m_bro.php:71 +msgid "Go back to the file manager" +msgstr "" + +#: ../class/m_bro.php:186 +msgid "This directory do not exist" +msgstr "" + +#: ../class/m_bro.php:365 ../class/m_bro.php:1040 +msgid "Cannot create the requested directory. Please check the permissions" +msgstr "" + +#: ../class/m_bro.php:371 ../class/m_bro.php:388 ../class/m_bro.php:413 +#: ../class/m_bro.php:437 ../class/m_bro.php:469 ../class/m_bro.php:479 +#: ../class/m_bro.php:509 ../class/m_bro.php:546 ../class/m_bro.php:587 +#: ../class/m_bro.php:625 ../class/m_bro.php:630 ../class/m_bro.php:721 +#: ../class/m_bro.php:868 ../class/m_bro.php:900 +msgid "File or folder name is incorrect" +msgstr "" + +#: ../class/m_bro.php:393 ../class/m_bro.php:558 +msgid "Cannot create the requested file. Please check the permissions" +msgstr "" + +#: ../class/m_bro.php:483 ../class/m_bro.php:634 +msgid "You cannot move or copy a file to the same folder" +msgstr "" + +#: ../class/m_bro.php:610 +#, php-format +msgid "" +"I cannot find a way to extract the file %s, it is an unsupported compressed " +"format" +msgstr "" + +#: ../class/m_bro.php:717 +msgid "Cannot read the requested file. Please check the permissions" +msgstr "" + +#: ../class/m_bro.php:792 +msgid "File not in authorized directory" +msgstr "" + +#: ../class/m_bro.php:895 +msgid "Cannot edit the requested file. Please check the permissions" +msgstr "" + +#: ../class/m_cron.php:40 +msgid "Daily" +msgstr "" + +#: ../class/m_cron.php:41 +msgid "Hour" +msgstr "" + +#: ../class/m_cron.php:42 +msgid "Half Hour" +msgstr "" + +#: ../class/m_cron.php:125 +msgid "URL not valid" +msgstr "" + +#: ../class/m_cron.php:133 +msgid "Email address is not valid" +msgstr "" + +#: ../class/m_cron.php:142 +msgid "You quota of cron entries is over. You cannot create more cron entries" +msgstr "" + +#: ../class/m_cron.php:151 +msgid "Identity problem" +msgstr "" + +#: ../class/m_dom.php:178 +msgid "Err: failed to prepare the zone" +msgstr "" + +#: ../class/m_dom.php:200 +msgid "Missing domain name" +msgstr "" + +#: ../class/m_dom.php:495 +msgid "The name MUST contain only letter and digits" +msgstr "" + +#: ../class/m_dom.php:515 ../class/m_dom.php:1291 +msgid "" +"The parameters for this subdomain and domain type are invalid. Please check " +"for subdomain entries incompatibility" +msgstr "" + +#: ../class/m_dom.php:629 ../class/m_dom.php:1054 ../class/m_dom.php:1119 +#: ../class/m_dom.php:1262 ../class/m_dom.php:1351 ../class/m_dom.php:1395 +#: ../class/m_dom.php:1710 +msgid "--- Program error --- No lock on the domains!" +msgstr "" + +#: ../class/m_dom.php:636 ../class/m_dom.php:1059 ../class/m_dom.php:1286 +#: ../class/m_dom.php:1420 +msgid "The domain name is syntaxically incorrect" +msgstr "" + +#: ../class/m_dom.php:642 ../class/m_dom.php:683 ../class/m_dom.php:1498 +msgid "" +"The requested domain is forbidden in this server, please contact the " +"administrator" +msgstr "" + +#: ../class/m_dom.php:646 +msgid "This domain is the server's domain! You cannot host it on your account!" +msgstr "" + +#: ../class/m_dom.php:651 ../class/m_dom.php:656 +msgid "The domain already exist" +msgstr "" + +#: ../class/m_dom.php:663 ../class/m_dom.php:1402 +msgid "" +"The last member of the domain name is incorrect or cannot be hosted in that " +"server" +msgstr "" + +#: ../class/m_dom.php:667 ../class/m_dom.php:671 +msgid "The domain cannot be found in the whois database" +msgstr "" + +#: ../class/m_dom.php:690 +msgid "Your domain quota is over, you cannot create more domain names" +msgstr "" + +#: ../class/m_dom.php:697 +msgid "An unexpected error occured when creating the domain" +msgstr "" + +#: ../class/m_dom.php:706 ../class/m_dom.php:1065 +#, php-format +msgid "Domain '%s' not found" +msgstr "" + +#: ../class/m_dom.php:820 +msgid "Could not delete default type" +msgstr "" + +#: ../class/m_dom.php:972 +msgid "The Whois database is unavailable, please try again later" +msgstr "" + +#: ../class/m_dom.php:979 ../class/m_dom.php:1406 +msgid "The domain cannot be found in the Whois database" +msgstr "" + +#: ../class/m_dom.php:1124 ../class/m_dom.php:1355 +msgid "The sub-domain does not exist" +msgstr "" + +#: ../class/m_dom.php:1155 +msgid "invalid url" +msgstr "" + +#: ../class/m_dom.php:1165 +msgid "The folder you entered is incorrect or does not exist" +msgstr "" + +#: ../class/m_dom.php:1174 ../class/m_dom.php:1182 +msgid "The ip address is invalid" +msgstr "" + +#: ../class/m_dom.php:1190 +msgid "The name you entered is incorrect" +msgstr "" + +#: ../class/m_dom.php:1198 +msgid "The TXT value you entered is incorrect" +msgstr "" + +#: ../class/m_dom.php:1203 +msgid "Invalid domain type selected, please check" +msgstr "" + +#: ../class/m_dom.php:1274 +msgid "" +"There is some forbidden characters in the sub domain (only A-Z 0-9 and - are " +"allowed)" +msgstr "" + +#: ../class/m_dom.php:1313 ../class/m_dom.php:1324 +msgid "Cannot write to the destination folder" +msgstr "" + +#: ../class/m_dom.php:1410 +msgid "" +"The DNS of this domain do not match the server's DNS. Please change your " +"domain's DNS before you install it again" +msgstr "" + +#: ../class/m_dom.php:1425 +#, php-format +msgid "The domain name %s does not exist" +msgstr "" + +#: ../class/m_dom.php:1431 +msgid "No change has been requested..." +msgstr "" + +#: ../class/m_dom.php:1439 ../class/m_dom.php:1444 +msgid "" +"There is no MX record pointing to this server, and you are asking us to host " +"the mail here. Make sure to update your MX entries or no mail will be " +"received" +msgstr "" + +#: ../class/m_dom.php:1491 ../class/m_dom.php:1515 +msgid "The IP address you entered is incorrect" +msgstr "" + +#: ../class/m_dom.php:1588 ../class/m_dom.php:1594 ../class/m_dom.php:1612 +#: ../class/m_dom.php:1618 +msgid "This domain is not installed in your account" +msgstr "" + +#: ../class/m_dom.php:1660 +msgid "The specified slave account already exists" +msgstr "" + +#: ../class/m_dom.php:1691 +msgid "--- Program error --- Lock already obtained!" +msgstr "" + +#: ../class/m_dom.php:1831 +msgid "Locally hosted" +msgstr "" + +#: ../class/m_dom.php:1832 +msgid "URL redirection" +msgstr "" + +#: ../class/m_dom.php:1833 +msgid "IPv4 redirect" +msgstr "" + +#: ../class/m_dom.php:1834 +msgid "Webmail access" +msgstr "" + +#: ../class/m_dom.php:1835 +msgid "Squirrelmail Webmail access" +msgstr "" + +#: ../class/m_dom.php:1836 +msgid "Roundcube Webmail access" +msgstr "" + +#: ../class/m_dom.php:1837 +msgid "IPv6 redirect" +msgstr "" + +#: ../class/m_dom.php:1838 +msgid "CNAME DNS entry" +msgstr "" + +#: ../class/m_dom.php:1839 +msgid "TXT DNS entry" +msgstr "" + +#: ../class/m_dom.php:1840 +msgid "MX DNS entry" +msgstr "" + +#: ../class/m_dom.php:1841 +msgid "secondary MX DNS entry" +msgstr "" + +#: ../class/m_dom.php:1842 +msgid "Default mail server" +msgstr "" + +#: ../class/m_dom.php:1843 +msgid "Default backup mail server" +msgstr "" + +#: ../class/m_dom.php:1844 +msgid "AlternC panel access" +msgstr "" + +#: ../class/m_err.php:66 ../class/m_err.php:98 +msgid "err_" +msgstr "" + +#: ../class/m_ftp.php:56 ../class/m_ftp.php:447 +msgid "FTP accounts" +msgstr "" + +#: ../class/m_ftp.php:105 +msgid "This account do not exist or is not of this account" +msgstr "" + +#: ../class/m_ftp.php:117 +msgid "Error during update" +msgstr "" + +#: ../class/m_ftp.php:151 +msgid "No FTP account found" +msgstr "" + +#: ../class/m_ftp.php:187 ../class/m_ftp.php:262 ../class/m_ftp.php:322 +msgid "This FTP account does not exist" +msgstr "" + +#: ../class/m_ftp.php:217 +#, php-format +msgid "FTP login is incorrect: too many '%s'" +msgstr "" + +#: ../class/m_ftp.php:224 +msgid "FTP login is incorrect" +msgstr "" + +#: ../class/m_ftp.php:271 ../class/m_ftp.php:351 +msgid "The chosen prefix is not allowed" +msgstr "" + +#: ../class/m_ftp.php:282 ../class/m_ftp.php:360 +msgid "This FTP account already exists" +msgstr "" + +#: ../class/m_ftp.php:290 ../class/m_ftp.php:372 +msgid "The directory cannot be created" +msgstr "" + +#: ../class/m_ftp.php:347 +msgid "Password can't be empty" +msgstr "" + +#: ../class/m_ftp.php:388 +msgid "Your FTP account quota is over. You cannot create more ftp accounts" +msgstr "" + +#: ../class/m_hta.php:60 +msgid "Protected folders" +msgstr "" + +#: ../class/m_hta.php:81 ../class/m_hta.php:291 ../class/m_hta.php:332 +#, php-format +msgid "The folder '%s' does not exist" +msgstr "" + +#: ../class/m_hta.php:89 ../class/m_hta.php:94 ../class/m_hta.php:104 +#: ../class/m_hta.php:253 ../class/m_hta.php:298 ../class/m_hta.php:347 +msgid "File already exist" +msgstr "" + +#: ../class/m_hta.php:98 +msgid "Restricted area" +msgstr "" + +#: ../class/m_hta.php:126 +msgid "No protected folder" +msgstr "" + +#: ../class/m_hta.php:208 +#, php-format +msgid "I cannot delete the file '%s/.htaccess'" +msgstr "" + +#: ../class/m_hta.php:212 +#, php-format +msgid "I cannot delete the file '%s/.htpasswd'" +msgstr "" + +#: ../class/m_hta.php:231 +msgid "Please enter a user" +msgstr "" + +#: ../class/m_hta.php:261 +#, php-format +msgid "The user '%s' already exist for this folder" +msgstr "" + +#: ../class/m_hta.php:273 +msgid "Please enter a valid username" +msgstr "" + +#: ../class/m_hta.php:402 +msgid "An incompatible .htaccess file exists in this folder" +msgstr "" + +#: ../class/m_log.php:60 +msgid "Logs" +msgstr "" + +#: ../class/m_lxc.php:133 +msgid "VM already started" +msgstr "" + +#: ../class/m_mail.php:95 +msgid "Email Addresses" +msgstr "" + +#: ../class/m_mail.php:158 ../class/m_mail.php:243 ../class/m_mail.php:328 +#: ../class/m_mail.php:455 ../class/m_mail.php:509 +msgid "The email you entered is syntaxically incorrect" +msgstr "" + +#: ../class/m_mail.php:191 +msgid "Email account password" +msgstr "" + +#: ../class/m_mail.php:281 +msgid "No email found for this query" +msgstr "" + +#: ../class/m_mail.php:340 +msgid "You cannot create email addresses: your quota is over" +msgstr "" + +#: ../class/m_mail.php:346 +msgid "This email address already exists" +msgstr "" + +#: ../class/m_mail.php:352 +msgid "An unexpected error occured when creating the email" +msgstr "" + +#: ../class/m_mail.php:406 +msgid "This email is not yours, you can't change anything on it" +msgstr "" + +#: ../class/m_mail.php:469 ../class/m_mail.php:875 +#, php-format +msgid "The email %s does not exist, it can't be deleted" +msgstr "" + +#: ../class/m_mail.php:473 +#, php-format +msgid "The email %s is already marked for deletion, it can't be deleted" +msgstr "" + +#: ../class/m_mail.php:482 +#, php-format +msgid "The email %s has been marked for deletion" +msgstr "" + +#: ../class/m_mail.php:488 +#, php-format +msgid "The email %s has been successfully deleted" +msgstr "" + +#: ../class/m_mail.php:520 +#, php-format +msgid "The email %s does not exist, it can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:524 +#, php-format +msgid "The email %s is special, it can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:528 +#, php-format +msgid "" +"Sorry, deletion of email %s is already in progress, or not marked for " +"deletion, it can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:537 +#, php-format +msgid "The email %s has been undeleted" +msgstr "" + +#: ../class/m_mail.php:540 +#, php-format +msgid "-- Program Error -- The email %s can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:621 +msgid "" +"There is forbidden characters in your email address. You can't make it a POP/" +"IMAP account, you can only use it as redirection to other emails" +msgstr "" + +#: ../class/m_mail.php:641 +msgid "" +"You set a quota smaller than the current mailbox size. Since it's not " +"allowed, we set the quota to the current mailbox size" +msgstr "" + +#: ../class/m_mail.php:826 +msgid "The slave MX account was not found" +msgstr "" + +#: ../class/m_mem.php:95 ../class/m_mem.php:101 ../class/m_mem.php:168 +#: ../class/m_mem.php:299 +msgid "User or password incorrect" +msgstr "" + +#: ../class/m_mem.php:105 ../class/m_mem.php:483 +msgid "This account is locked, contact the administrator" +msgstr "" + +#: ../class/m_mem.php:112 ../class/m_mem.php:271 +msgid "" +"This website is currently under maintenance, login is currently disabled." +msgstr "" + +#: ../class/m_mem.php:127 +msgid "Your IP isn't allowed to connect" +msgstr "" + +#: ../class/m_mem.php:243 +msgid "Missing password" +msgstr "" + +#: ../class/m_mem.php:252 +msgid "Identity lost or unknown, please login" +msgstr "" + +#: ../class/m_mem.php:258 ../class/m_mem.php:347 +msgid "Session unknown, contact the administrator" +msgstr "" + +#: ../class/m_mem.php:264 ../class/m_mem.php:352 +msgid "IP address incorrect, please contact the administrator" +msgstr "" + +#: ../class/m_mem.php:341 +msgid "Cookie incorrect, please accept the session cookie" +msgstr "" + +#: ../class/m_mem.php:388 +msgid "You are not allowed to change your password." +msgstr "" + +#: ../class/m_mem.php:392 +msgid "The old password is incorrect" +msgstr "" + +#: ../class/m_mem.php:396 ../class/m_mem.php:445 +msgid "The new passwords are differents, please retry" +msgstr "" + +#: ../class/m_mem.php:420 +msgid "You must be a system administrator to do this." +msgstr "" + +#: ../class/m_mem.php:440 +msgid "This account is locked, contact the administrator." +msgstr "" + +#: ../class/m_mem.php:448 +#, php-format +msgid "" +"Hello,\n" +"\n" +"You requested the modification of your password for your\n" +"account %s on %s\n" +"Here are your username and password to access the panel :\n" +"\n" +"--------------------------------------\n" +"\n" +"Username : %s\n" +"Password : %s\n" +"\n" +"--------------------------------------\n" +"\n" +"Note : if you didn't requested that modification, it means that\n" +"someone did it instead of you. You can choose to ignore this message.\n" +"If it happens again, please contact your server's Administrator. \n" +"\n" +"Cordially.\n" +msgstr "" + +#: ../class/m_mem.php:493 +#, php-format +msgid "" +"Hello,\n" +"\n" +"Someone (maybe you) requested an email's address modification of the " +"account\n" +"%s on %s\n" +"To confirm your request, go to this url :\n" +"\n" +"%s\n" +"\n" +"(Warning : if this address is displayed on 2 lines, don't forgot to\n" +"take it on one line).\n" +"The panel will ask you the key given when the email address\n" +"modification was requested.\n" +"\n" +"If you didn't asked for this modification, it means that someone\n" +"did it instead of you. You can choose to ignore this message. If it happens\n" +"again, please contact your server's administrator.\n" +"\n" +"Cordially.\n" +msgstr "" + +#: ../class/m_mem.php:534 +msgid "The information you entered is incorrect." +msgstr "" + +#: ../class/m_menu.php:113 +msgid "Home / Information" +msgstr "" + +#: ../class/m_menu.php:120 +msgid "Logout" +msgstr "" + +#: ../class/m_menu.php:127 +msgid "Online help" +msgstr "" + +#: ../class/m_menu.php:135 +msgid "Languages" +msgstr "" + +#: ../class/m_mysql.php:49 +msgid "" +"There are no databases in db_servers for this user. Please contact your " +"administrator." +msgstr "" + +#: ../class/m_mysql.php:110 +msgid "MySQL" +msgstr "" + +#: ../class/m_mysql.php:119 +msgid "Databases" +msgstr "" + +#: ../class/m_mysql.php:178 +msgid "Cannot connect to PhpMyAdmin" +msgstr "" + +#: ../class/m_mysql.php:219 ../class/m_mysql.php:385 +#, php-format +msgid "Database %s not found" +msgstr "" + +#: ../class/m_mysql.php:246 +msgid "Your databases quota is over. You cannot create more databases" +msgstr "" + +#: ../class/m_mysql.php:257 +msgid "Database can't have empty suffix" +msgstr "" + +#: ../class/m_mysql.php:262 ../class/m_mysql.php:380 ../class/m_mysql.php:462 +msgid "Database name can contain only letters and numbers" +msgstr "" + +#: ../class/m_mysql.php:268 +msgid "Database name cannot exceed 64 characters" +msgstr "" + +#: ../class/m_mysql.php:273 +#, php-format +msgid "Database %s already exists" +msgstr "" + +#: ../class/m_mysql.php:291 +msgid "" +"There is a problem with the special PhpMyAdmin user. Contact the " +"administrator" +msgstr "" + +#: ../class/m_mysql.php:310 +msgid "An error occured. The database could not be created" +msgstr "" + +#: ../class/m_mysql.php:328 +msgid "The database was not found. I can't delete it" +msgstr "" + +#: ../class/m_mysql.php:367 +msgid "User aren't allowed to configure their backups" +msgstr "" + +#: ../class/m_mysql.php:398 +msgid "You have to choose how many backups you want to keep" +msgstr "" + +#: ../class/m_mysql.php:402 +msgid "Directory does not exist" +msgstr "" + +#: ../class/m_mysql.php:420 ../class/m_mysql.php:465 +msgid "Database not found" +msgstr "" + +#: ../class/m_mysql.php:427 ../class/m_mysql.php:711 +msgid "The password is mandatory" +msgstr "" + +#: ../class/m_mysql.php:432 +msgid "MySQL password cannot exceed 16 characters" +msgstr "" + +#: ../class/m_mysql.php:472 +msgid "Databases rights are not correct" +msgstr "" + +#: ../class/m_mysql.php:477 +msgid "The username can contain only letters and numbers." +msgstr "" + +#: ../class/m_mysql.php:483 +msgid "Database user not found" +msgstr "" + +#: ../class/m_mysql.php:495 +msgid "Could not grant rights" +msgstr "" + +#: ../class/m_mysql.php:513 +msgid "No file specified" +msgstr "" + +#: ../class/m_mysql.php:520 ../class/m_mysql.php:524 +msgid "File not found" +msgstr "" + +#: ../class/m_mysql.php:707 +msgid "The username is mandatory" +msgstr "" + +#: ../class/m_mysql.php:715 ../class/m_mysql.php:792 +msgid "The username can contain only letters and numbers" +msgstr "" + +#: ../class/m_mysql.php:722 +msgid "MySQL username cannot exceed 16 characters" +msgstr "" + +#: ../class/m_mysql.php:727 +msgid "The database user already exists" +msgstr "" + +#: ../class/m_mysql.php:731 ../class/m_mysql.php:765 +msgid "The passwords do not match" +msgstr "" + +#: ../class/m_mysql.php:802 +msgid "The username was not found" +msgstr "" + +#: ../class/m_mysql.php:831 +msgid "This user does not exist in the MySQL/User database" +msgstr "" + +#: ../class/m_mysql.php:1105 +msgid "The directory could not be created" +msgstr "" + +#: ../class/m_piwik.php:40 +msgid "Piwik statistics" +msgstr "" + +#: ../class/m_piwik.php:45 +msgid "Piwik Users" +msgstr "" + +#: ../class/m_piwik.php:46 +msgid "Piwik Sites" +msgstr "" + +#: ../class/m_piwik.php:81 +msgid "Statistics through Piwik accounts" +msgstr "" + +#: ../class/m_piwik.php:193 ../class/m_piwik.php:316 +msgid "You are not allowed to delete the statistics of this website" +msgstr "" + +#: ../class/m_piwik.php:366 +msgid "Unable to reach the API" +msgstr "" + +#: ../class/m_piwik.php:372 +msgid "Error while decoding response from the API" +msgstr "" + +#: ../class/m_piwik.php:378 +msgid "Other format than JSON is not implemented yet" +msgstr "" + +#: ../class/m_quota.php:65 +msgid "Show my quotas" +msgstr "" + +#: ../class/m_quota.php:78 +#, php-format +msgid "%s%% of %s" +msgstr "" + +#: ../class/m_quota.php:78 ../class/m_quota.php:105 ../class/m_quota.php:196 +msgid "quota_" +msgstr "" + +#: ../class/m_quota.php:236 +msgid "Error writing the quota entry!" +msgstr "" + +#: ../class/m_quota.php:537 +msgid "B" +msgstr "" + +#: ../class/m_quota.php:537 +msgid "GB" +msgstr "" + +#: ../class/m_quota.php:537 +msgid "KB" +msgstr "" + +#: ../class/mime.php:135 +msgid "CSS Stylesheet" +msgstr "" + +#: ../class/mime.php:136 +msgid "Comma Separated Values data" +msgstr "" + +#: ../class/mime.php:137 +msgid "DIA Diagram" +msgstr "" + +#: ../class/mime.php:138 +msgid "Word Document" +msgstr "" + +#: ../class/mime.php:139 +msgid "Word Document Template" +msgstr "" + +#: ../class/mime.php:140 +msgid "Encapsulated Postscript" +msgstr "" + +#: ../class/mime.php:141 +msgid "GIF Image" +msgstr "" + +#: ../class/mime.php:142 +msgid "Macintosh Executable" +msgstr "" + +#: ../class/mime.php:143 ../class/mime.php:144 +msgid "HTML Document" +msgstr "" + +#: ../class/mime.php:145 ../class/mime.php:146 +msgid "JPEG Image" +msgstr "" + +#: ../class/mime.php:147 +msgid "Music Playlist" +msgstr "" + +#: ../class/mime.php:148 +msgid "MP3 Music File" +msgstr "" + +#: ../class/mime.php:149 +msgid "Ogg Music File" +msgstr "" + +#: ../class/mime.php:150 +msgid "Acrobat PDF" +msgstr "" + +#: ../class/mime.php:151 +msgid "PHP Source" +msgstr "" + +#: ../class/mime.php:152 +msgid "PNG Image" +msgstr "" + +#: ../class/mime.php:153 ../class/mime.php:154 +msgid "Powerpoint Slideshow" +msgstr "" + +#: ../class/mime.php:155 +msgid "Postscript Document" +msgstr "" + +#: ../class/mime.php:156 +msgid "Photoshop Image" +msgstr "" + +#: ../class/mime.php:157 +msgid "Rar Compressed Files" +msgstr "" + +#: ../class/mime.php:158 +msgid "Rich Text Document" +msgstr "" + +#: ../class/mime.php:159 +msgid "OpenOffice Spreadsheet" +msgstr "" + +#: ../class/mime.php:160 +msgid "OpenOffice Drawing" +msgstr "" + +#: ../class/mime.php:161 +msgid "OpenOffice Presentation" +msgstr "" + +#: ../class/mime.php:162 +msgid "OpenOffice Writer" +msgstr "" + +#: ../class/mime.php:163 ../class/mime.php:164 +msgid "TIFF Image" +msgstr "" + +#: ../class/mime.php:165 +msgid "Text Document" +msgstr "" + +#: ../class/mime.php:166 ../class/mime.php:167 +msgid "Virtual Card" +msgstr "" + +#: ../class/mime.php:168 +msgid "Gimp Image" +msgstr "" + +#: ../class/mime.php:169 +msgid "Excel Spreadsheet" +msgstr "" + +#: ../class/mime.php:170 +msgid "Zip Compressed Files" +msgstr "" + +#: ../class/mime.php:171 +msgid "Flash Animation" +msgstr "" + +#: ../class/mime.php:172 ../class/mime.php:173 ../class/mime.php:174 +msgid "Real Media File" +msgstr "" diff --git a/ssl/panel/locales/manual.pot b/ssl/panel/locales/manual.pot new file mode 100644 index 00000000..281f7ca3 --- /dev/null +++ b/ssl/panel/locales/manual.pot @@ -0,0 +1,710 @@ +#. Template for AlternC Translation +#. Copyright (c) 2002 the AlternC Development Team +#. +#. $Id: admin.po,v 1.4 2006/02/09 20:12:23 benjamin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: $Id: admin.po,v 1.4 2006/02/09 20:12:23 benjamin Exp $\n" +"Report-Msgid-Bugs-To: i18n@alternc.org\n" +"POT-Creation-Date: 2004-05-24 19:34+0200\n" +"PO-Revision-Date: 2002-06-16 13:50CEST\n" +"Last-Translator: Benjamin Sonntag \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Emacs 21\n" + +#. -- Only administrators can access this page !! -- +msgid "err_admin_1" +msgstr "" + +#. Account not found +msgid "err_admin_2" +msgstr "" + +#. This login already exists +msgid "err_admin_3" +msgstr "" + +#. -- I cannot create this account -- +msgid "err_admin_4" +msgstr "" + +#. Please enter a valid email address +msgid "err_admin_5" +msgstr "" + +#. All fields are mandatory +msgid "err_admin_6" +msgstr "" + +#. You can ask for your password only once a day ! +msgid "err_admin_7" +msgstr "" + +#. This account is ALREADY an administrator account +msgid "err_admin_8" +msgstr "" + +#. This account is NOT an administrator account ! +msgid "err_admin_9" +msgstr "" + +#. Login can only contains characters a-z, 0-9 and - +msgid "err_admin_10" +msgstr "" + +#. This TLD does not exist +msgid "err_admin_11" +msgstr "" + +#. This TLD already exists +msgid "err_admin_12" +msgstr "" + +#. The login is too long (16 chars max) +msgid "err_admin_13" +msgstr "" + +#. Domain names +msgid "quota_dom" +msgstr "" + +#. Domain '%s' not found. +msgid "err_dom_1" +msgstr "" + +#. The domaine '%s' does not belong to you. +msgid "err_dom_2" +msgstr "" + +#. --- Programm error --- No lock on the domains ! +msgid "err_dom_3" +msgstr "" + +#. The domain name is too long. +msgid "err_dom_4" +msgstr "" + +#. One of the domain name member is too long. +msgid "err_dom_5" +msgstr "" + +#. There is some forbidden characters in the domain name (only A-Z 0-9 and - are allowed). +msgid "err_dom_6" +msgstr "" + +#. The last member of the domain name is incorrect or cannot be hosted in that server. +msgid "err_dom_7" +msgstr "" +"The last member of the domain name is incorrect or cannot be hosted in that " +"server." + +#. The domain already exists. +msgid "err_dom_8" +msgstr "" + +#. The domain has been deleted less than 5 minutes ago, please try again later. +msgid "err_dom_9" +msgstr "" +"The domain has been deleted less than 5 minutes ago, please try again later." + +#. Your domain quota is over, you cannot create more domain names. +msgid "err_dom_10" +msgstr "" + +#. The Whois database is unavailable, please try again later. +msgid "err_dom_11" +msgstr "" + +#. The domain cannot be found in the whois database. +msgid "err_dom_12" +msgstr "" + +#. The domain has been changed less than 5 minutes ago. Please try again in a few minutes. +msgid "err_dom_13" +msgstr "" + +#. The sub-domain does not exist. +msgid "err_dom_14" +msgstr "" + +#. No change has been requested... +msgid "err_dom_15" +msgstr "" + +#. The sub-domain already exists. +msgid "err_dom_16" +msgstr "" + +#. --- Programm error --- Lock already obtained ! +msgid "err_dom_17" +msgstr "" + +#. This domain is the server's domain !!! You cannot host it on your account ! +msgid "err_dom_18" +msgstr "" + +#. The IP address you entered is incorrect. +msgid "err_dom_19" +msgstr "" + +#. The URL you entered is incorrect. +msgid "err_dom_20" +msgstr "" + +#. The folder you entered is incorrect or does not exist. +msgid "err_dom_21" +msgstr "" + +#. The requested domain is forbidden in this server, please contact the administrator +msgid "err_dom_22" +msgstr "" + +#. The DNS of this domain do not match the server's DNS. Please change your +#. domain's DNS (and eventually wait 1 day) before you install it again. +msgid "err_dom_23" +msgstr "" + +#. There is some forbidden characters in the sub domain (only A-Z 0-9 and - are allowed). +msgid "err_dom_24" +msgstr "" + +#. There is no MX record pointing to this server, and you are asking us to host the Mail here +msgid "err_dom_25" +msgstr "" + +#. - Entrez le nom du domaine que vous souhaitez héberger. Le nom de domaine +#. doit être complet, mais sans le www.
IMPORTANT : Si vous voulez +#. un hébergement réel de domaine, il faut que les DNS de votre domaine +#. pointent vers nos serveurs DNS. Contacter votre hébergeur pour plus +#. d'information.
Exemples : globenet.org / demo.com / test.eu.org etc. +#.
Plus d'info sur la gestion des domaines dans l'aide en ligne +#. HELPID_200
+msgid "hlp_add_domain" +msgstr "" + +#. Cliquez sur le lien ci-dessus. Vous pourrez ensuite accéder aux paremètres +#. du domaine dans le menu à gauche.2 liens vont apparaitre :
- un +#. premier pour modifier les paramètres d'hébergement du domaine (sous- +#. domaines, redirections, hébergement mails ...)
- un second pour gérer +#. les comptes emails du domaine (si vous souhaitez créer des boites aux +#. lettres).
Plus d'info sur la gestion des domaines dans l'aide en ligne +#. HELPID_200
+msgid "hlp_add_domain_2" +msgstr "" + +#. Le domaine a été effacé, mais les fichiers de votre site n'ont pas été +#. détruits.
Si vous souhaitez détruire les fichiers du site web, utilisez +#. le Gestionnaire de Fichier
Plus d'info sur la gestion des domaines dans +#. l'aide en ligne HELPID_200
+msgid "hlp_del_domain" +msgstr "" + +#. Cette zone vous permet de modifier les paramètres de votre domaine, ainsi +#. que des sous-domaines installés
Vous pouvez créer un nouveau sous- +#. domaine et choisir, soit de le rediriger vers votre espace disque, vers une +#. autre adresse Internet, ou vers une adresse IP (utilisateurs avancés)
+#. Plus d'info sur la gestion des domaines dans l'aide en ligne HELPID_200
+msgid "hlp_edit_domain" +msgstr "" + +#. FTP Accounts +msgid "quota_ftp" +msgstr "" + +#. No ftp account found +msgid "err_ftp_1" +msgstr "" + +#. This ftp account does not exist +msgid "err_ftp_2" +msgstr "" + +#. The chosen prefix is not allowed +msgid "err_ftp_3" +msgstr "" + +#. This ftp account already exists +msgid "err_ftp_4" +msgstr "" + +#. Your ftp account quota is over. You cannot create more ftp accounts. +msgid "err_ftp_5" +msgstr "" + +#. The directory cannot be created. +msgid "err_ftp_6" +msgstr "" + +#. Voici la liste des comptes ftp ayant accès à votre compte. Cliquez sur +#. 'Modifier' pour changer le nom d'utilisateur, le mot de passe, ou le dossier +#. racine.
Pour supprimer un compte, cochez la case correspondante et +#. cliquez sur le bouton 'Supprimer les comptes cochés'
Pour pouvoir +#. accéder à vos fichiers avec un logiciel de ftp, vous devez créer au moins un +#. compte. Chaque compte est associé à un dossier, et n'aura donc accès qu'aux +#. fichiers situés dans ce dossier ou en dessous.
Plus d'info sur le FTP +#. dans l'aide en ligne HELPID_100
+msgid "hlp_ftp_list" +msgstr "" + +#. Vous n'avez actuellement aucun Compte FTP de disponible. Cliquez sur +#. 'Création d'un compte ftp' pour en créer un.
Pour pouvoir accéder à vos +#. fichiers avec un logiciel de ftp, vous devez créer au moins un compte. +#. Chaque compte est associé à un dossier, et n'aura donc accès qu'aux fichiers +#. situés dans ce dossier ou en dessous.
Plus d'info sur le FTP dans +#. l'aide en ligne HELPID_100
+msgid "hlp_ftp_list_no" +msgstr "" + +#. Pour ajouter un compte ftp, vous devez choisir un Nom d'utilisateur, un mot +#. de passe, et un répertoire racine
Le nom d'utilisateur commence +#. toujours par votre nom de login ou le nom d'un de vos domaines.
Le +#. répertoire racine, s'il n'existe pas, sera créé automatiquement.
Note : +#. Le compte que vous créez ainsi aura accès en lecture et en écriture aux +#. fichiers situés dans le répertoire et tous ses sous-répertoires.
Plus +#. d'info sur le FTP dans l'aide en ligne HELPID_100
+msgid "hlp_ftp_add" +msgstr "" + +#. An incompatible .htaccess file exists in this folder. +msgid "err_hta_1" +msgstr "" + +#. .htaccess parsed and syntaxically correct, a .htpassword file has been created. +msgid "err_hta_2" +msgstr "" + +#. .htaccess parsed and syntaxically correct, a .htpasswd already exist. +msgid "err_hta_3" +msgstr "" + +#. No protected folder +msgid "err_hta_4" +msgstr "" + +#. I cannot delete the file '%s'/.htaccess +msgid "err_hta_5" +msgstr "" + +#. I cannot delete the file '%s'/.htpasswd +msgid "err_hta_6" +msgstr "" + +#. The file .htaccess does not exist +msgid "err_hta_7" +msgstr "" + +#. The folder '%s' does not exist +msgid "err_hta_8" +msgstr "" + +#. The file '%s' is not correct +msgid "err_hta_9" +msgstr "" + +#. The user '%s' already exist for this folder +msgid "err_hta_10" +msgstr "" + +#. Please enter a valid username +msgid "err_hta_11" +msgstr "" + +#. Email Accounts +msgid "quota_mail" +msgstr "" + +#. DB connection impossible, please try again later. +msgid "err_mail_1" +msgstr "" + +#. No email on domain '%s' +msgid "err_mail_2" +msgstr "" + +#. The email '%s' does not exist +msgid "err_mail_3" +msgstr "" + +#. Please check 'pop account' and choose a password pop, or enter some +#. redirections, or both +msgid "err_mail_4" +msgstr "" + +#. -- Server error --- Parameter is incorrect (%s) +msgid "err_mail_5" +msgstr "" + +#. The domain '%s' does not exist. +msgid "err_mail_6" +msgstr "" + +#. The email '%s' already exists. +msgid "err_mail_7" +msgstr "" + +#. Your mail account quota is over. You cannot create more email accounts. +msgid "err_mail_8" +msgstr "" + +#. The domain '%s' does not exist. +msgid "err_mail_9" +msgstr "" + +#. -- Programm error -- Mail quota does not exist +msgid "err_mail_10" +msgstr "" + +#. Please enter an Email address +msgid "err_mail_11" +msgstr "" + +#. Please enter a pop password +msgid "err_mail_12" +msgstr "" + +#. Please enter a valid email +msgid "err_mail_13" +msgstr "" + +#. One or more email redirection are invalid +msgid "err_mail_14" +msgstr "" + +#. This mail is not a pop account. It's impossible to change the password ! +msgid "err_mail_15" +msgstr "" + +#. OK +msgid "err_err_0" +msgstr "" + +#. The error message does not exist (%s) +msgid "err_err_1" +msgstr "" + +#. This is a date representation : parameters are the date as follow : +#. $d,$m,$y,$h,$i,$hh,$am +#. 1 2 3 4 5 6 7 +#. hh is the hour in 12 hours format, and am is 'am' or 'pm'. +#. eg: english : %3$d/%1$d/%2$d, at %6$d:%5$d %7$s +msgid "the %3$d-%2$d-%1$d at %4$d:%5$d" +msgstr "" + +#. User or password incorrect +msgid "err_mem_1" +msgstr "" + +#. This account is locked, contact the administrator +msgid "err_mem_2" +msgstr "" + +#. Cookie incorrect, please accept the session cookie +msgid "err_mem_3" +msgstr "" + +#. Session unknown, contact the administrator +msgid "err_mem_4" +msgstr "" + +#. IP address incorrect, please contact the administrator +msgid "err_mem_5" +msgstr "" + +#. The old password is incorrect +#. PROBLEME : il y avait 2 fois le 5, les autres messages doivent surement etre décalés (TODO) +msgid "err_mem_6" +msgstr "" + +#. The new passwords are differents, please retry +msgid "err_mem_7" +msgstr "" + +#. A password must be at least 3 characters long. +msgid "err_mem_8" +msgstr "" + +#. The information you entered is incorrect +msgid "err_mem_9" +msgstr "" + +#. You are not allowed to change your password. +msgid "err_mem_11" +msgstr "" + +#. You must be a system administrator to do this +msgid "err_mem_12" +msgstr "" + +#. Français (France) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "fr_FR" +msgstr "" + +#. Français (Canada) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "fr_CA" +msgstr "" + +#. English (United States) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "en_US" +msgstr "" + +#. English (United Kingdom) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "en_UK" +msgstr "" + +#. Deutsch (Germany) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "de_DE" +msgstr "" + +#. Español (Spania) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "es_ES" +msgstr "" + +#. Español (Venezuela) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "es_VE" +msgstr "" + +#. OK +msgid "err_quota_0" +msgstr "" + +#. Error writing the quota entry ! +msgid "err_quota_1" +msgstr "" + +#. MySQL Databases +msgid "quota_mysql" +msgstr "" + +#. MySQL Users +msgid "quota_mysql_users" +msgstr "" + +#. Disk space +msgid "quota_web" +msgstr "" + +#. Data base name can contain only digits or lowercase alphabetic characters +msgid "err_mysql_2" +msgstr "" + +#. The database does not exist, you'll get an access by creating it. +msgid "err_mysql_3" +msgstr "" + +#. This database already exists! +msgid "err_mysql_4" +msgstr "" + +#. Your backup number is incorrect. +msgid "err_mysql_5" +msgstr "" + +#. The folder is incorrect! +msgid "err_mysql_6" +msgstr "" + +#. The file name you chose does not exist or is incorrect. +msgid "err_mysql_7" +msgstr "" + +#. The password is too long (16 chars max) +msgid "err_mysql_8" +msgstr "" + +#. The file is incorrect or does not exist. +msgid "err_mysql_9" +msgstr "" + +#. Your cannot create your main database : you still have other dbs ! +msgid "err_mysql_10" +msgstr "" + +#. You have no database, click on 'Databases' to create the first one +msgid "err_mysql_11" +msgstr "" + +#. The data base name is too long (64 chars max) +msgid "err_mysql_12" +msgstr "" + +#. You cannot create more MySQL users +msgid "err_mysql_13" +msgstr "" + +#. MySQL users can only have a-z and 0-9 characters. +msgid "err_mysql_14" +msgstr "" + +#. MySQL users must be less than 16 characters long. +msgid "err_mysql_15" +msgstr "" + +#. This MySQL user already exists. +msgid "err_mysql_16" +msgstr "" + +#. Passwords do not match. +msgid "err_mysql_17" +msgstr "" + +#. The requested MySQL user does not exist. +msgid "err_mysql_18" +msgstr "" + +#. You have no MySQL users at the moment. +msgid "err_mysql_19" +msgstr "" + +#. Your MySQL backups are stored in the chosen folder from db.sql.1 to db.sql.19
your database name replaces 'db'.
WARNING: If you modify backup settings (backups, compression...) previous +#. backups may remain in the backup folder. Go to the file manager to delete +#. them. +msgid "hlp_sql_bck" +msgstr "" + +#. Web Statistics +msgid "quota_sta2" +msgstr "" + +#. You cannot create more raw statistic set. +msgid "err_sta2_1" +msgstr "" + +#. There is currently no raw statistic set. +msgid "err_sta2_2" +msgstr "" + +#. The requested raw statistic set has not been found. +msgid "err_sta2_3" +msgstr "" + +#. File or folder name is incorrect +msgid "err_bro_1" +msgstr "" + +#. You cannot move or copy a file to the same folder +msgid "err_bro_2" +msgstr "" + +#. If we manage your DNS
You can manage your mails elsewhere if you want +#. (MX field).
Write %s in this field if your mail +#. must be managed by %s
or put the IP address or name of the mail server +#. used to manage your mails.Warning : if you put nothing in this field, +#. your mails will be unavailable +msgid "help_dns_mx %s %s" +msgstr "" + +#. If we don't manage the DNS for this domain
do we manage your mails? +msgid "help_dns_mail" +msgstr "" + +#. If you want to delete the domain %s, click the button below.Warning : this +#. delete all the ftp, mails, mailing-lists ... associated with thisdomain and +#. all its subdomains! +msgid "help_domain_del %s" +msgstr "" + +#. You can create various databases
Click on 'SQL Admin' in the menu to +#. manage them
or use the table below to backup, retrieve or delete them: +msgid "help_sql_list_ok" +msgstr "" + +#. Your haven't created your main database yet, please enter a password to create it. +msgid "help_sql_list_no" +msgstr "" + +#. This is a date representation : parameters are the date as follow : +#. $d,$m,$y,$h,$i,$hh,$am +#. 1 2 3 4 5 6 7 +#. hh is the hour in 12 hours format, and am is 'am' or 'pm'. +#. eg: english : %3$d/%1$d/%2$d, at %6$d:%5$d %7$s +msgid "%3$d-%2$d-%1$d %4$d:%5$d" +msgstr "" + + +msgid "1 column, detailed" +msgstr "" + +msgid "2 columns, short" +msgstr "" + +msgid "3 columns, short" +msgstr "" + +msgid "Go back to the file manager" +msgstr "" + +msgid "Edit the newly created file" +msgstr "" + +msgid "hlp_login" +msgstr "" + +msgid "err_admin_14" +msgstr "" +"La politique de mot de passe demandée n'a pas été trouvée, Ce password " +"est refusé (c'est une erreur de programmation ...)" + +msgid "err_admin_15" +msgstr "" +"Le mot de passe est trop court selon votre politique de mot de passe, " +"merci de vérifier" + +msgid "err_admin_16" +msgstr "" +"Le mot de passe est trop long selon votre politique de mot de passe, " +"merci de vérifier" + +msgid "err_admin_17" +msgstr "" +"Le mot de passe ne peut pas être le même que le nom d'utilisateur (ou " +"quelque chose de similaire) selon votre politique de mot de passe, merci " +"de vérifier" + +msgid "err_admin_18" +msgstr "" +"Le mot de passe doit contenir des caractères de %s classes différentes " +"selon votre politique de mot de passe (il n'en contient que %s), merci de " +"vérifier" + +msgid "err_hta_12" +msgstr "Le fichier .htpasswd n'existe pas" + +msgid "err_mail_16" +msgstr "Ce compte esclave MX existe déjà" + +msgid "err_mysql_20" +msgstr "Le mot de passe est obligatoire" + +msgid "err_mysql_21" +msgstr "Le nom d'utilisateur ne peut pas être vide" + +msgid "err_bro_3" +msgstr "" +"Vous n'avez pas le droit d'écrire dans ce répertoire. Vérifiez les droits " +"d'accès !" + +# $d,$m,$y +# 1 2 3 +msgid "%3$d-%2$d-%1$d" +msgstr "%1$02d/%2$02d/%3$04d" + +msgid "AlternC's account password" +msgstr "Mots de passe des comptes AlternC" + +msgid "POP/IMAP account passwords" +msgstr "Mots de passe des comptes POP/IMAP" + +msgid "Protected folders passwords" +msgstr "Mots de passe des dossiers protégés" + diff --git a/ssl/panel/locales/messages.pot b/ssl/panel/locales/messages.pot new file mode 100644 index 00000000..13764b54 --- /dev/null +++ b/ssl/panel/locales/messages.pot @@ -0,0 +1,4969 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR AlternC Team +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: AlternC 2.0\n" +"Report-Msgid-Bugs-To: i18n@alternc.org\n" +"POT-Creation-Date: 2013-10-18 15:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../squirrelmail/alternc_changepass/change.php:39 +msgid "Can't connect to MySQL server on AlternC!" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:66 +msgid "Your new passwords are differents, pleasy try again." +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:72 +msgid "" +"Your account has not been found, please try again later or ask an " +"administrator." +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:75 +msgid "Your current password is incorrect, please try again." +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:88 +msgid "" +"Your password has been successfully changed. Don't forget to change it in " +"your mail software if you are using one (Outlook, Mozilla, Thunderbird, " +"Eudora ...)" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:111 +msgid "Changing your mail password" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:115 +msgid "Old Password:" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:120 +msgid "New Password:" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:124 +msgid "Verify New Password:" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:129 +msgid "Change my mail password" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/setup.php:21 +msgid "Change Password" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/setup.php:23 +msgid "Change the password of your email account." +msgstr "" + +#: ../admin/about.php:36 +msgid "About AlternC" +msgstr "" + +#: ../admin/about.php:37 +msgid "Hosting control panel" +msgstr "" + +#: ../admin/about.php:41 +msgid "" +"AlternC is an automatic hosting software suite. It features a PHP-based " +"administration interface and scripts that manage server configuration.
It manages, among others, email, Web, Web statistics, and mailing list " +"services. It is available in many languages. It is a free software " +"distributed under GPL license." +msgstr "" + +#: ../admin/about.php:47 +msgid "Official website: " +msgstr "" + +#: ../admin/about.php:48 +msgid "Developer website: " +msgstr "" + +#: ../admin/about.php:49 +msgid "Help: " +msgstr "" + +#: ../admin/about.php:57 +msgid "You are currently using AlternC " +msgstr "" + +#: ../admin/adm_add.php:36 ../admin/adm_db_servers.php:30 +#: ../admin/adm_deactivate.php:35 ../admin/adm_deactivate.php:52 +#: ../admin/adm_defquotas.php:35 ../admin/adm_dnsweberror.php:33 +#: ../admin/adm_doadd.php:26 ../admin/adm_dodefquotas.php:35 +#: ../admin/adm_dodel.php:33 ../admin/adm_dodel.php:52 +#: ../admin/adm_doedit.php:35 ../admin/adm_doedit.php:59 +#: ../admin/adm_domlock.php:33 ../admin/adm_doms.php:33 +#: ../admin/adm_doms_def_type.php:5 ../admin/adm_domstype.php:33 +#: ../admin/adm_domstypedoedit.php:4 ../admin/adm_domstypeedit.php:32 +#: ../admin/adm_domstyperegenerate.php:4 ../admin/adm_donosu.php:33 +#: ../admin/adm_dorenew.php:34 ../admin/adm_dorenew.php:45 +#: ../admin/adm_dosu.php:33 ../admin/adm_edit.php:36 ../admin/adm_edit.php:48 +#: ../admin/adm_email.php:30 ../admin/adm_list.php:32 ../admin/adm_list.php:58 +#: ../admin/adm_lockpanel.php:33 ../admin/adm_login.php:86 +#: ../admin/adm_login.php:93 ../admin/adm_mxaccount.php:33 +#: ../admin/adm_panel.php:33 ../admin/adm_passpolicy.php:30 +#: ../admin/adm_quotadoedit.php:33 ../admin/adm_quotaedit.php:34 +#: ../admin/adm_slavedns.php:33 ../admin/adm_tld.php:33 +#: ../admin/adm_tldadd.php:33 ../admin/adm_tlddoadd.php:33 +#: ../admin/adm_tlddoedit.php:39 ../admin/adm_tldedit.php:33 +#: ../admin/adm_update_domains.php:34 ../admin/adm_variables.php:33 +#: ../admin/dom_subdel.php:46 ../admin/dom_subdodel.php:47 +#: ../admin/dom_subdoedit.php:53 ../admin/dom_subedit.php:49 +#: ../admin/quotas_users.php:13 ../class/reset_stats_conf.php:6 +msgid "This page is restricted to authorized staff" +msgstr "" + +#: ../admin/adm_add.php:54 +msgid "New AlternC account" +msgstr "" + +#: ../admin/adm_add.php:64 ../admin/adm_edit.php:69 +#: ../admin/adm_quotaedit.php:68 ../admin/ftp_edit.php:71 +#: ../admin/ftp_list.php:72 ../admin/hta_adduser.php:54 +#: ../admin/hta_edit.php:61 ../admin/hta_edit.php:98 ../admin/index.php:89 +#: ../admin/piwik_userlist.php:79 ../admin/sql_users_add.php:59 +msgid "Username" +msgstr "" + +#: ../admin/adm_add.php:68 +msgid "Initial password" +msgstr "" + +#: ../admin/adm_add.php:72 ../admin/adm_edit.php:89 ../admin/ftp_edit.php:88 +#: ../admin/hta_adduser.php:62 ../admin/hta_edit.php:106 +#: ../admin/hta_edituser.php:63 ../admin/mail_edit.php:97 +#: ../admin/sql_users_add.php:67 ../admin/sql_users_password.php:63 +msgid "Confirm password" +msgstr "" + +#: ../admin/adm_add.php:76 +msgid "Can he change its password" +msgstr "" + +#: ../admin/adm_add.php:78 ../admin/adm_domstype.php:82 +#: ../admin/adm_domstype.php:83 ../admin/adm_domstype.php:84 +#: ../admin/adm_domstype.php:85 ../admin/adm_domstype.php:86 +#: ../admin/adm_edit.php:78 ../admin/adm_edit.php:95 +#: ../admin/adm_passpolicy.php:113 ../admin/adm_passpolicy.php:157 +#: ../admin/dom_edit.php:231 ../admin/dom_edit.php:254 +#: ../admin/dom_subdel.php:71 ../admin/mail_edit.php:90 +#: ../admin/mail_list.php:164 ../admin/sql_bck.php:94 ../class/m_bro.php:70 +msgid "No" +msgstr "" + +#: ../admin/adm_add.php:79 ../admin/adm_domstype.php:82 +#: ../admin/adm_domstype.php:83 ../admin/adm_domstype.php:84 +#: ../admin/adm_domstype.php:85 ../admin/adm_domstype.php:86 +#: ../admin/adm_edit.php:79 ../admin/adm_edit.php:96 +#: ../admin/adm_passpolicy.php:114 ../admin/adm_passpolicy.php:157 +#: ../admin/dom_edit.php:230 ../admin/dom_edit.php:253 +#: ../admin/dom_subdel.php:70 ../admin/mail_edit.php:91 +#: ../admin/mail_list.php:209 ../admin/mail_list.php:220 +#: ../admin/mail_list.php:231 ../admin/mail_list.php:249 +#: ../admin/mail_list.php:260 ../admin/mail_list.php:271 +#: ../admin/mail_list.php:282 ../admin/sql_bck.php:95 ../class/m_bro.php:70 +msgid "Yes" +msgstr "" + +#: ../admin/adm_add.php:83 ../admin/adm_edit.php:100 +msgid "Notes" +msgstr "" + +#: ../admin/adm_add.php:87 ../admin/adm_edit.php:104 +msgid "First Name" +msgstr "" + +#: ../admin/adm_add.php:87 ../admin/adm_edit.php:104 +msgid "Surname" +msgstr "" + +#: ../admin/adm_add.php:91 ../admin/adm_edit.php:108 +msgid "Email address" +msgstr "" + +#: ../admin/adm_add.php:95 ../admin/adm_dodefquotas.php:48 +#: ../admin/adm_dodefquotas.php:50 ../admin/adm_dodefquotas.php:57 +#: ../admin/adm_dodefquotas.php:59 ../admin/adm_edit.php:112 +msgid "Account type" +msgstr "" + +#: ../admin/adm_add.php:105 +msgid "Wich database server for this user ?" +msgstr "" + +#: ../admin/adm_add.php:107 +msgid "Warning: you can't change it after the creation of the user." +msgstr "" + +#: ../admin/adm_add.php:124 +#, php-format +msgid "Install the domain" +msgstr "" + +#: ../admin/adm_add.php:140 +msgid "Create this AlternC account" +msgstr "" + +#: ../admin/adm_add.php:141 ../admin/adm_deactivate.php:75 +#: ../admin/adm_domstypeedit.php:134 ../admin/adm_edit.php:124 +#: ../admin/adm_quotaedit.php:88 ../admin/adm_tldadd.php:71 +#: ../admin/adm_tldedit.php:70 ../admin/bro_pref.php:150 +#: ../admin/browseforfolder.php:146 ../admin/browseforfolder2.php:142 +#: ../admin/ftp_del.php:83 ../admin/ftp_edit.php:98 +#: ../admin/hta_adduser.php:68 ../admin/hta_dodeluser.php:65 +#: ../admin/hta_edit.php:113 ../admin/mail_edit.php:116 +#: ../admin/mail_manage_catchall.php:122 ../admin/piwik_site_dodel.php:71 +#: ../admin/piwik_user_dodel.php:69 ../admin/sql_bck.php:108 +#: ../admin/sql_users_add.php:73 ../admin/sql_users_password.php:69 +#: ../admin/sql_users_rights.php:104 +msgid "Cancel" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:31 ../admin/ip_main.php:50 +#: ../class/m_authip.php:40 +msgid "Access security" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:39 +msgid "" +"The IP and subnet you have here are allowed for ALL users and ALL usages" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:39 +msgid "Warning" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:44 +msgid "Add an IP" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:44 ../admin/ip_main.php:174 +msgid "Add my current IP" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:47 ../admin/ip_main.php:177 +msgid "Cancel edit" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:50 +msgid "" +"Enter here the IP address you want.
IPv4, IPv6 and subnet allowed" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:54 +msgid "Add a comment" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:57 ../admin/adm_doms_def_type.php:88 +#: ../admin/bro_editor.php:89 ../admin/ftp_edit.php:97 +#: ../admin/ip_main.php:135 ../admin/ip_main.php:186 +#: ../admin/mail_manage_catchall.php:121 +msgid "Save" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:64 +msgid "IP" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:64 +msgid "Informations" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:64 ../admin/adm_doms_def_type.php:48 +#: ../admin/dom_edit.php:130 ../admin/ip_main.php:146 +msgid "Type" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:82 ../admin/adm_domstype.php:74 +#: ../admin/adm_list.php:200 ../admin/adm_list.php:222 +#: ../admin/adm_list.php:251 ../admin/adm_passpolicy.php:151 +#: ../admin/adm_tld.php:80 ../admin/dom_edit.php:140 ../admin/ftp_list.php:78 +#: ../admin/ip_main.php:164 ../admin/mail_list.php:150 +msgid "Edit" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:83 ../admin/adm_doms_def_type.php:60 +#: ../admin/adm_mxaccount.php:83 ../admin/adm_slavedns.php:101 +#: ../admin/adm_slavedns.php:145 ../admin/bro_main.php:285 +#: ../admin/cron.php:54 ../admin/dom_edit.php:123 ../admin/dom_edit.php:146 +#: ../admin/ftp_del.php:82 ../admin/hta_dodeluser.php:64 +#: ../admin/ip_main.php:79 ../admin/ip_main.php:165 +#: ../admin/piwik_site_dodel.php:70 ../admin/piwik_sitelist.php:128 +#: ../admin/piwik_user_dodel.php:68 ../admin/piwik_userlist.php:87 +msgid "Delete" +msgstr "" + +#: ../admin/adm_db_servers.php:35 +msgid "List of the databases servers" +msgstr "" + +#: ../admin/adm_db_servers.php:42 +msgid "Here the list of the available databases servers." +msgstr "" + +#: ../admin/adm_db_servers.php:49 +msgid "ID" +msgstr "" + +#: ../admin/adm_db_servers.php:50 ../admin/adm_domstype.php:58 +#: ../admin/adm_domstypeedit.php:74 ../admin/ip_main.php:146 +#: ../admin/ip_main.php:181 ../admin/logs_list.php:53 +msgid "Name" +msgstr "" + +#: ../admin/adm_db_servers.php:51 ../admin/vm.php:77 +msgid "Hostname" +msgstr "" + +#: ../admin/adm_db_servers.php:52 ../admin/adm_mxaccount.php:78 +#: ../admin/adm_mxaccount.php:95 ../admin/adm_slavedns.php:140 +#: ../admin/adm_slavedns.php:158 ../admin/sql_getparam.php:70 +msgid "Login" +msgstr "" + +#: ../admin/adm_db_servers.php:53 +msgid "Client" +msgstr "" + +#: ../admin/adm_db_servers.php:54 +msgid "Users" +msgstr "" + +#: ../admin/adm_db_servers.php:71 +msgid "To add a database server, do an INSERT into the db_servers table" +msgstr "" + +#: ../admin/adm_db_servers.php:74 +msgid "" +"To update the list of the server on the PhpMyAdmin login page, launch " +"alternc.install" +msgstr "" + +#: ../admin/adm_deactivate.php:46 ../class/m_admin.php:208 +#: ../class/m_admin.php:234 ../class/m_admin.php:680 ../class/m_admin.php:704 +#: ../class/m_admin.php:728 ../class/m_admin.php:772 ../class/m_admin.php:797 +#: ../class/m_admin.php:821 ../class/m_admin.php:894 ../class/m_admin.php:916 +msgid "Account not found" +msgstr "" + +#: ../admin/adm_deactivate.php:58 +msgid "User does not exist" +msgstr "" + +#: ../admin/adm_deactivate.php:63 ../admin/adm_deactivate.php:74 +msgid "Confirm" +msgstr "" + +#: ../admin/adm_deactivate.php:67 +msgid "WARNING: experimental feature, use at your own risk" +msgstr "" + +#: ../admin/adm_deactivate.php:68 +msgid "" +"The following domains will be deactivated and redirected to the URL entered " +"in the following box. A backup of the domain configuration will be displayed " +"as a serie of SQL request that you can run to restore the current " +"configuration if you want. Click confirm if you are sure you want to " +"deactivate all this user's domains." +msgstr "" + +#: ../admin/adm_deactivate.php:73 +msgid "Redirection URL:" +msgstr "" + +#: ../admin/adm_deactivate.php:78 +msgid "Domains of user: " +msgstr "" + +#: ../admin/adm_deactivate.php:81 +msgid "Missing redirect url." +msgstr "" + +#: ../admin/adm_deactivate.php:99 +#, php-format +msgid "-- Redirecting all domains and subdomains of the user %s to %s\n" +msgstr "" + +#: ../admin/adm_defquotas.php:46 ../admin/adm_panel.php:54 +msgid "Change the default quotas" +msgstr "" + +#: ../admin/adm_defquotas.php:52 +msgid "User's quotas synchronised" +msgstr "" + +#: ../admin/adm_defquotas.php:65 +msgid "Add account type" +msgstr "" + +#: ../admin/adm_defquotas.php:83 +msgid "Delete account type" +msgstr "" + +#: ../admin/adm_defquotas.php:88 +msgid "" +"Here is the list of the quotas on the server for the new accounts. If you " +"want to change them, enter new values" +msgstr "" + +#: ../admin/adm_defquotas.php:90 +msgid "Synchronise user's quota (only to upper value)" +msgstr "" + +#: ../admin/adm_defquotas.php:102 +msgid "Accounts of type" +msgstr "" + +#: ../admin/adm_defquotas.php:104 +msgid "Default Value" +msgstr "" + +#: ../admin/adm_defquotas.php:104 ../admin/adm_list.php:159 +#: ../admin/adm_list.php:203 ../admin/adm_list.php:223 +#: ../admin/adm_list.php:253 +msgid "Quotas" +msgstr "" + +#: ../admin/adm_defquotas.php:124 +msgid "Edit the default quotas" +msgstr "" + +#: ../admin/adm_dnsweberror.php:40 +msgid "Domains and Websites having errors" +msgstr "" + +#: ../admin/adm_dnsweberror.php:50 +msgid "List of the websites having errors in the domain database." +msgstr "" + +#: ../admin/adm_dnsweberror.php:53 ../admin/adm_dnsweberror.php:83 +msgid "Uid" +msgstr "" + +#: ../admin/adm_dnsweberror.php:54 ../admin/adm_dnsweberror.php:84 +#: ../admin/adm_list.php:155 ../admin/adm_list.php:233 +#: ../admin/adm_list.php:234 ../admin/adm_list.php:235 +#: ../admin/quotas_users.php:169 +msgid "Account" +msgstr "" + +#: ../admin/adm_dnsweberror.php:55 ../admin/adm_dnsweberror.php:85 +#: ../admin/dom_add.php:57 ../class/m_dom.php:1757 +msgid "Domain name" +msgstr "" + +#: ../admin/adm_dnsweberror.php:56 +msgid "FQDN" +msgstr "" + +#: ../admin/adm_dnsweberror.php:57 ../admin/adm_variables.php:57 +msgid "Value" +msgstr "" + +#: ../admin/adm_dnsweberror.php:58 ../admin/adm_domstype.php:59 +#: ../admin/adm_domstypeedit.php:78 +msgid "Description" +msgstr "" + +#: ../admin/adm_dnsweberror.php:59 +msgid "Web Result field" +msgstr "" + +#: ../admin/adm_dnsweberror.php:80 +msgid "List of the domain names having errors in the domain database." +msgstr "" + +#: ../admin/adm_dnsweberror.php:86 +msgid "DNS Result field" +msgstr "" + +#: ../admin/adm_doadd.php:53 ../admin/adm_doedit.php:64 +#: ../admin/ftp_doedit.php:44 ../admin/hta_doadduser.php:41 +#: ../admin/hta_doedituser.php:42 ../admin/mail_doedit.php:57 +msgid "Passwords do not match" +msgstr "" + +#: ../admin/adm_doadd.php:65 +msgid "The new member has been successfully created" +msgstr "" + +#: ../admin/adm_dodefquotas.php:48 +msgid "added" +msgstr "" + +#: ../admin/adm_dodefquotas.php:50 +msgid "could not be added" +msgstr "" + +#: ../admin/adm_dodefquotas.php:57 +msgid "deleted" +msgstr "" + +#: ../admin/adm_dodefquotas.php:59 +msgid "could not be deleted" +msgstr "" + +#: ../admin/adm_dodefquotas.php:66 +#, php-format +msgid "Deleting quota %s" +msgstr "" + +#: ../admin/adm_dodefquotas.php:72 +msgid "WARNING: Confirm the deletion of the quota" +msgstr "" + +#: ../admin/adm_dodefquotas.php:75 +msgid "Yes, delete this default quota" +msgstr "" + +#: ../admin/adm_dodefquotas.php:76 +msgid "No, don't delete this default quota" +msgstr "" + +#: ../admin/adm_dodefquotas.php:94 +msgid "Default quotas successfully changed" +msgstr "" + +#: ../admin/adm_dodefquotas.php:96 +msgid "Default quotas could not be set." +msgstr "" + +#: ../admin/adm_dodel.php:56 +#, php-format +msgid "Member '%s' does not exist" +msgstr "" + +#: ../admin/adm_dodel.php:58 +#, php-format +msgid "Member %s successfully deleted" +msgstr "" + +#: ../admin/adm_dodel.php:65 +msgid "Please check the accounts you want to delete" +msgstr "" + +#: ../admin/adm_dodel.php:73 +#, php-format +msgid "Deleting users" +msgstr "" + +#: ../admin/adm_dodel.php:77 +msgid "WARNING : Confirm the deletion of the users" +msgstr "" + +#: ../admin/adm_dodel.php:87 +msgid "Yes, delete those accounts" +msgstr "" + +#: ../admin/adm_dodel.php:88 +msgid "No, don't delete those accounts" +msgstr "" + +#: ../admin/adm_doedit.php:77 +msgid "The member has been successfully edited" +msgstr "" + +#: ../admin/adm_doms.php:40 ../admin/adm_panel.php:53 +msgid "Manage installed domains" +msgstr "" + +#: ../admin/adm_doms.php:59 +msgid "" +"Here is the list of the domains installed on this server. You can remove a " +"domain if it does not exist or does not point to our server anymore. You can " +"also set the 'Lock' flag on a domain so that the user will not be able to " +"change any DNS parameter or delete this domain from his account." +msgstr "" + +#: ../admin/adm_doms.php:62 +msgid "" +"The domain OK column are green when the domain exists in the worldwide " +"registry and has a proper NS,MX and IP depending on its configuration. It is " +"red if we have serious doubts about its NS, MX or IP configuration. Contact " +"the user of this domain or a system administrator." +msgstr "" + +#: ../admin/adm_doms.php:65 +msgid "If you want to force the check of NS, MX, IP on domains, click the link" +msgstr "" + +#: ../admin/adm_doms.php:65 +msgid "Show domain list with refreshed checked NS, MX, IP information" +msgstr "" + +#: ../admin/adm_doms.php:69 ../admin/adm_mxaccount.php:78 +#: ../admin/adm_slavedns.php:95 ../admin/adm_slavedns.php:140 +msgid "Action" +msgstr "" + +#: ../admin/adm_doms.php:69 ../admin/adm_doms.php:85 ../admin/adm_list.php:196 +#: ../admin/adm_list.php:221 ../admin/adm_list.php:250 +msgid "Connect as" +msgstr "" + +#: ../admin/adm_doms.php:69 +msgid "Creator" +msgstr "" + +#: ../admin/adm_doms.php:69 +msgid "Domain" +msgstr "" + +#: ../admin/adm_doms.php:69 +msgid "OK?" +msgstr "" + +#: ../admin/adm_doms.php:69 ../admin/dom_edit.php:130 +msgid "Status" +msgstr "" + +#: ../admin/adm_doms.php:76 +msgid "Locked Domain" +msgstr "" + +#: ../admin/adm_doms.php:79 +msgid "Lock" +msgstr "" + +#: ../admin/adm_doms.php:79 +msgid "Unlock" +msgstr "" + +#: ../admin/adm_doms_def_type.php:12 ../admin/adm_panel.php:66 +msgid "Manage defaults domains type" +msgstr "" + +#: ../admin/adm_doms_def_type.php:14 ../admin/adm_domstype.php:42 +msgid "" +"If you don't know what this page is about, don't touch anything, and read " +"AlternC documentation about domain types" +msgstr "" + +#: ../admin/adm_doms_def_type.php:15 +msgid "" +"The Type column contains a type of available VirtualHost config on The " +"server." +msgstr "" + +#: ../admin/adm_doms_def_type.php:16 +msgid "" +"The Setting column contains the variables to be expanded in the defaults " +"configuration. Available values are: " +msgstr "" + +#: ../admin/adm_doms_def_type.php:18 +#, php-format +msgid "%%DOMAIN%% : the Domain name" +msgstr "" + +#: ../admin/adm_doms_def_type.php:19 +#, php-format +msgid "%%TARGETDOM%%: The destination domain" +msgstr "" + +#: ../admin/adm_doms_def_type.php:20 +#, php-format +msgid "%%SUB%% : The subdomain name" +msgstr "" + +#: ../admin/adm_doms_def_type.php:21 +#, php-format +msgid "%%DOMAINDIR%%: the domain directory on the file system" +msgstr "" + +#: ../admin/adm_doms_def_type.php:38 +msgid "There was an error during the record." +msgstr "" + +#: ../admin/adm_doms_def_type.php:40 ../admin/cron.php:14 +msgid "Save done." +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +msgid "Activation" +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +msgid "Concerned" +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +msgid "Sub" +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +msgid "settings" +msgstr "" + +#: ../admin/adm_domstype.php:40 ../admin/adm_panel.php:67 +msgid "Manage domains type" +msgstr "" + +#: ../admin/adm_domstype.php:52 +msgid "Here is the list of domain types." +msgstr "" + +#: ../admin/adm_domstype.php:54 +msgid "Create a domain type" +msgstr "" + +#: ../admin/adm_domstype.php:60 +msgid "Target" +msgstr "" + +#: ../admin/adm_domstype.php:61 ../admin/adm_domstypeedit.php:92 +msgid "Entry" +msgstr "" + +#: ../admin/adm_domstype.php:62 +msgid "Compatible with" +msgstr "" + +#: ../admin/adm_domstype.php:62 ../admin/adm_domstypeedit.php:96 +msgid "Enter comma-separated name of other types" +msgstr "" + +#: ../admin/adm_domstype.php:63 +msgid "Enabled?" +msgstr "" + +#: ../admin/adm_domstype.php:64 +msgid "Only DNS?" +msgstr "" + +#: ../admin/adm_domstype.php:65 +msgid "Need to be DNS?" +msgstr "" + +#: ../admin/adm_domstype.php:66 +msgid "Advanced?" +msgstr "" + +#: ../admin/adm_domstype.php:67 ../admin/adm_domstypeedit.php:123 +msgid "Create tmp directory ?" +msgstr "" + +#: ../admin/adm_domstype.php:68 +msgid "create www directory ?" +msgstr "" + +#: ../admin/adm_domstype.php:75 +msgid "Regenerate" +msgstr "" + +#: ../admin/adm_domstypeedit.php:60 +msgid "Edit a domain type" +msgstr "" + +#: ../admin/adm_domstypeedit.php:82 +msgid "Target type" +msgstr "" + +#: ../admin/adm_domstypeedit.php:96 +msgid "Compatibility" +msgstr "" + +#: ../admin/adm_domstypeedit.php:100 ../admin/dom_edit.php:170 +#: ../admin/ftp_list.php:72 ../admin/ftp_list.php:82 +#: ../admin/mail_list.php:125 ../admin/mail_list.php:152 +msgid "Enabled" +msgstr "" + +#: ../admin/adm_domstypeedit.php:110 +msgid "Do only a DNS entry" +msgstr "" + +#: ../admin/adm_domstypeedit.php:114 +msgid "Domain must have our DNS" +msgstr "" + +#: ../admin/adm_domstypeedit.php:118 +msgid "Is it an advanced option?" +msgstr "" + +#: ../admin/adm_domstypeedit.php:128 +msgid "Create target directory ?" +msgstr "" + +#: ../admin/adm_domstypeedit.php:133 +msgid "Change this domain type" +msgstr "" + +#: ../admin/adm_donosu.php:45 +msgid "This account is now a normal account" +msgstr "" + +#: ../admin/adm_dorenew.php:53 +msgid "The member has been successfully renewed" +msgstr "" + +#: ../admin/adm_dosu.php:45 +msgid "This account is now an administrator account" +msgstr "" + +#: ../admin/adm_edit.php:57 +msgid "Member Edition" +msgstr "" + +#: ../admin/adm_edit.php:73 +msgid "Account Enabled?" +msgstr "" + +#: ../admin/adm_edit.php:76 +msgid "You cannot disable your own account." +msgstr "" + +#: ../admin/adm_edit.php:85 ../admin/adm_mxaccount.php:78 +#: ../admin/adm_mxaccount.php:95 ../admin/adm_slavedns.php:140 +#: ../admin/adm_slavedns.php:158 ../admin/cron.php:39 ../admin/ftp_edit.php:84 +#: ../admin/ftp_edit.php:92 ../admin/hta_adduser.php:58 +#: ../admin/hta_edit.php:102 ../admin/index.php:90 ../admin/mem_param.php:58 +#: ../admin/sql_getparam.php:74 ../admin/sql_users_add.php:63 +#: ../admin/sql_users_list.php:48 ../admin/sql_users_password.php:59 +msgid "Password" +msgstr "" + +#: ../admin/adm_edit.php:93 +msgid "Password change allowed?" +msgstr "" + +#: ../admin/adm_edit.php:116 +msgid "Reset quotas to default?" +msgstr "" + +#: ../admin/adm_edit.php:119 +msgid "Period" +msgstr "" + +#: ../admin/adm_edit.php:123 +msgid "Edit this account" +msgstr "" + +#: ../admin/adm_edit.php:137 +msgid "Renew for" +msgstr "" + +#: ../admin/adm_edit.php:138 +msgid "period(s)" +msgstr "" + +#: ../admin/adm_edit.php:141 +msgid "Renew" +msgstr "" + +#: ../admin/adm_edit.php:153 +msgid "This account is a super-admin account" +msgstr "" + +#: ../admin/adm_edit.php:157 +msgid "" +"There is only one administrator account, you cannot turn this account back " +"to normal" +msgstr "" + +#: ../admin/adm_edit.php:160 +msgid "Turn this account back to normal" +msgstr "" + +#: ../admin/adm_edit.php:163 +msgid "Make this account a super admin one" +msgstr "" + +#: ../admin/adm_edit.php:170 +#, php-format +msgid "Account created by %s" +msgstr "" + +#: ../admin/adm_email.php:43 ../admin/adm_panel.php:56 +msgid "Send an email to all members" +msgstr "" + +#: ../admin/adm_email.php:48 +msgid "The email was successfully sent" +msgstr "" + +#: ../admin/adm_email.php:50 +msgid "There was an error" +msgstr "" + +#: ../admin/adm_email.php:63 +msgid "From" +msgstr "" + +#: ../admin/adm_email.php:67 +msgid "Subject" +msgstr "" + +#: ../admin/adm_email.php:71 ../admin/mem_param.php:59 +msgid "Mail" +msgstr "" + +#: ../admin/adm_email.php:75 +msgid "Send" +msgstr "" + +#: ../admin/adm_list.php:70 +msgid "AlternC account list" +msgstr "" + +#: ../admin/adm_list.php:77 +msgid "Minimal view" +msgstr "" + +#: ../admin/adm_list.php:81 +msgid "Complete view" +msgstr "" + +#: ../admin/adm_list.php:87 +msgid "Filters" +msgstr "" + +#: ../admin/adm_list.php:90 +msgid "Search for a Login" +msgstr "" + +#: ../admin/adm_list.php:91 +msgid "Search for a Domain" +msgstr "" + +#: ../admin/adm_list.php:92 ../admin/piwik_sitelist.php:170 +msgid "submit" +msgstr "" + +#: ../admin/adm_list.php:100 +msgid "List all AlternC accounts" +msgstr "" + +#: ../admin/adm_list.php:110 +msgid "Or only the accounts of:" +msgstr "" + +#: ../admin/adm_list.php:115 +msgid "List only my accounts" +msgstr "" + +#: ../admin/adm_list.php:129 +#, php-format +msgid "%s accounts" +msgstr "" + +#: ../admin/adm_list.php:129 +msgid "Here is the list of hosted AlternC accounts" +msgstr "" + +#: ../admin/adm_list.php:132 +msgid "Create a new AlternC account" +msgstr "" + +#: ../admin/adm_list.php:136 +msgid "No account defined for now" +msgstr "" + +#: ../admin/adm_list.php:149 ../admin/adm_list.php:227 +#: ../admin/adm_list.php:264 ../admin/ftp_list.php:101 +msgid "Delete checked accounts" +msgstr "" + +#: ../admin/adm_list.php:156 +msgid "Manager" +msgstr "" + +#: ../admin/adm_list.php:157 +msgid "Created by" +msgstr "" + +#: ../admin/adm_list.php:158 +msgid "Created on" +msgstr "" + +#: ../admin/adm_list.php:160 +msgid "Last login" +msgstr "" + +#: ../admin/adm_list.php:161 +msgid "Last ip" +msgstr "" + +#: ../admin/adm_list.php:162 +msgid "Fails" +msgstr "" + +#: ../admin/adm_list.php:163 ../admin/main.php:87 +msgid "Expiry" +msgstr "" + +#: ../admin/adm_list.php:181 +msgid "Send an email" +msgstr "" + +#: ../admin/adm_list.php:183 ../admin/mail_list.php:167 +#, php-format +msgid "%3$d-%2$d-%1$d" +msgstr "" + +#: ../admin/adm_list.php:192 +msgid "DB:" +msgstr "" + +#: ../admin/adm_list.php:207 ../admin/dom_edit.php:171 +msgid "Disable" +msgstr "" + +#: ../admin/adm_list.php:221 ../admin/adm_list.php:250 +msgid "C" +msgstr "" + +#: ../admin/adm_list.php:222 ../admin/adm_list.php:251 +msgid "E" +msgstr "" + +#: ../admin/adm_list.php:223 ../admin/adm_list.php:253 +msgid "Q" +msgstr "" + +#: ../admin/adm_list.php:255 +msgid "himself" +msgstr "" + +#: ../admin/adm_list.php:257 +#, php-format +msgid "Creator: %s" +msgstr "" + +#: ../admin/adm_login.php:49 ../admin/adm_login.php:56 +msgid "Your authentication information are incorrect" +msgstr "" + +#: ../admin/adm_login.php:62 +msgid "Your IP is incorrect." +msgstr "" + +#: ../admin/adm_login.php:118 +msgid "Member login" +msgstr "" + +#: ../admin/adm_mxaccount.php:47 ../admin/adm_slavedns.php:51 +msgid "The requested account has been deleted. It is now denied." +msgstr "" + +#: ../admin/adm_mxaccount.php:53 ../admin/adm_slavedns.php:57 +msgid "The requested account address has been created. It is now allowed." +msgstr "" + +#: ../admin/adm_mxaccount.php:60 ../admin/adm_panel.php:64 +msgid "Manage allowed accounts for secondary mx" +msgstr "" + +#: ../admin/adm_mxaccount.php:74 +msgid "" +"Here is the list of the allowed accounts for secondary mx management. You " +"can configure the alternc-secondarymx package on your secondary mx server " +"and give him the login/pass that will grant him access to your server's mx-" +"hosted domain list. " +msgstr "" + +#: ../admin/adm_mxaccount.php:92 +msgid "" +"If you want to allow a new server to access your mx-hosted domain list, give " +"him an account." +msgstr "" + +#: ../admin/adm_mxaccount.php:101 ../admin/adm_slavedns.php:163 +msgid "Add this account to the allowed list" +msgstr "" + +#: ../admin/adm_panel.php:40 ../class/m_admin.php:98 +msgid "Admin Control Panel" +msgstr "" + +#: ../admin/adm_panel.php:51 ../admin/adm_tld.php:56 +#: ../admin/adm_tldadd.php:46 ../admin/adm_tldedit.php:52 +msgid "Manage allowed domains (TLD)" +msgstr "" + +#: ../admin/adm_panel.php:52 +msgid "Password Policies" +msgstr "" + +#: ../admin/adm_panel.php:55 +msgid "Manage IP whitelist" +msgstr "" + +#: ../admin/adm_panel.php:60 +msgid "Advanced features" +msgstr "" + +#: ../admin/adm_panel.php:63 +msgid "Manage slave DNS" +msgstr "" + +#: ../admin/adm_panel.php:65 ../admin/adm_variables.php:47 +msgid "Configure AlternC variables" +msgstr "" + +#: ../admin/adm_panel.php:68 +msgid "DNS and website having errors" +msgstr "" + +#: ../admin/adm_panel.php:69 +msgid "Manage databases servers" +msgstr "" + +#: ../admin/adm_panel.php:70 +msgid "Account creation statistics" +msgstr "" + +#: ../admin/adm_panel.php:95 +msgid "Click here to unlock the panel and allow user to login." +msgstr "" + +#: ../admin/adm_panel.php:97 +msgid "Are you sure you want to kick everyone?" +msgstr "" + +#: ../admin/adm_panel.php:97 +msgid "Click here to lock the panel and force logout of all the user." +msgstr "" + +#: ../admin/adm_passpolicy.php:49 +msgid "Manage Password Policy" +msgstr "" + +#: ../admin/adm_passpolicy.php:63 ../admin/adm_passpolicy.php:78 +msgid "Policy not found" +msgstr "" + +#: ../admin/adm_passpolicy.php:67 +msgid "Policy changed" +msgstr "" + +#: ../admin/adm_passpolicy.php:71 +msgid "Cannot edit the policy, an error occurred" +msgstr "" + +#: ../admin/adm_passpolicy.php:82 +msgid "Please choose which policy you want to apply to this password kind:" +msgstr "" + +#: ../admin/adm_passpolicy.php:90 +msgid "Minimum Password Size:" +msgstr "" + +#: ../admin/adm_passpolicy.php:97 +msgid "Maximum Password Size:" +msgstr "" + +#: ../admin/adm_passpolicy.php:104 +msgid "In how many classes of characters must be the password (at least):" +msgstr "" + +#: ../admin/adm_passpolicy.php:111 +msgid "Do we allow the password to be like the login?" +msgstr "" + +#: ../admin/adm_passpolicy.php:117 +msgid "Apply this password policy" +msgstr "" + +#: ../admin/adm_passpolicy.php:118 +msgid "Cancel and go back to the policy list" +msgstr "" + +#: ../admin/adm_passpolicy.php:121 +msgid "" +"The classes of characters are :
1. Low-case letters (a-z)
2. " +"Upper-case letters (A-Z)
3. Figures (0-9)
4. Ascii symbols (!\"#$" +"%&'()*+,-./:;<=>?@[\\]^_`)
5. Non-Ascii symbols (accents...)" +msgstr "" + +#: ../admin/adm_passpolicy.php:134 +msgid "" +"Here is the list of the password policies for each place a password may be " +"needed in AlternC's services. For each of those password kind, you can " +"choose which policy will be applied to passwords. A policy is a minimum and " +"maximum password size, and how many classes of characters must appear in the " +"password. You can also forbid (or not) to use the login or part of it as a " +"password." +msgstr "" + +#: ../admin/adm_passpolicy.php:138 +msgid "Password Kind" +msgstr "" + +#: ../admin/adm_passpolicy.php:138 +msgid "Password Policy" +msgstr "" + +#: ../admin/adm_passpolicy.php:140 +msgid "Min Size" +msgstr "" + +#: ../admin/adm_passpolicy.php:141 +msgid "Max Size" +msgstr "" + +#: ../admin/adm_passpolicy.php:142 +msgid "Complexity" +msgstr "" + +#: ../admin/adm_passpolicy.php:143 +msgid "Allow Password=Login?" +msgstr "" + +#: ../admin/adm_quotadoedit.php:52 +msgid "The quotas has been successfully edited" +msgstr "" + +#: ../admin/adm_quotaedit.php:55 +msgid "Editing the quotas of a member" +msgstr "" + +#: ../admin/adm_quotaedit.php:69 ../admin/quota_show.php:46 +msgid "Quota" +msgstr "" + +#: ../admin/adm_quotaedit.php:69 ../admin/quota_show.php:46 +#: ../admin/quotas_oneuser.php:87 ../admin/quotas_users.php:154 +#: ../admin/quotas_users.php:178 +msgid "Total" +msgstr "" + +#: ../admin/adm_quotaedit.php:69 ../admin/quota_show.php:46 +msgid "Used" +msgstr "" + +#: ../admin/adm_quotaedit.php:87 +msgid "Edit the quotas" +msgstr "" + +#: ../admin/adm_slavedns.php:65 +msgid "" +"The requested ip address has been deleted. It will be denied in one hour." +msgstr "" + +#: ../admin/adm_slavedns.php:71 +msgid "" +"The requested ip address has been added to the list. It will be allowed in " +"one hour." +msgstr "" + +#: ../admin/adm_slavedns.php:83 +msgid "Manage allowed ip for slave zone transfers" +msgstr "" + +#: ../admin/adm_slavedns.php:91 +msgid "" +"Here is the list of the allowed ip or ip class for slave dns zone transfer " +"requests (AXFR). You must add the ip address of all the slave DNS you have " +"so that those slaves will be allowed to transfer the zone files. There is " +"also some defaults ip from DNS checks made by some third-party technical " +"offices such as afnic (for .fr domains)" +msgstr "" + +#: ../admin/adm_slavedns.php:95 ../admin/adm_slavedns.php:114 +msgid "IP Address" +msgstr "" + +#: ../admin/adm_slavedns.php:110 +msgid "" +"If you want to allow an ip address or class to connect to your dns server, " +"enter it here. Choose 32 as a prefix for single ip address." +msgstr "" + +#: ../admin/adm_slavedns.php:114 +msgid "Prefix" +msgstr "" + +#: ../admin/adm_slavedns.php:120 +msgid "Add this ip to the slave list" +msgstr "" + +#: ../admin/adm_slavedns.php:129 +msgid "Manage allowed accounts for slave zone transfers" +msgstr "" + +#: ../admin/adm_slavedns.php:137 +msgid "" +"Here is the list of the allowed accounts for slave dns synchronization. You " +"can configure the alternc-slavedns package on your slave server and give him " +"the login/pass that will grant him access to your server's domain list. " +msgstr "" + +#: ../admin/adm_slavedns.php:154 +msgid "" +"If you want to allow a new server to access your domain list, give him an " +"account." +msgstr "" + +#: ../admin/adm_slavedns.php:194 +msgid "Need open DNS Slave servers?" +msgstr "" + +#: ../admin/adm_slavedns.php:196 +msgid "We offer free of charge DNS servers for alternc users." +msgstr "" + +#: ../admin/adm_slavedns.php:197 +msgid "How does it work?" +msgstr "" + +#: ../admin/adm_slavedns.php:199 +#, php-format +msgid "" +"Give access to the alternc.net servers. Follow the " +"instructions on this page. They will help " +"you to configure this page and configure your alternc.net account." +msgstr "" + +#: ../admin/adm_slavedns.php:200 +#, php-format +msgid "" +"Subscribe to alternc.net. Go to the alternc.net site to " +"use the DNS servers provided for free by the AlternC association and enter " +"the required informations for each server you want to connect to the service." +msgstr "" + +#: ../admin/adm_slavedns.php:203 +msgid "" +"The alternc.net servers will take care of transfering and distributing to " +"the world your domains zones." +msgstr "" + +#: ../admin/adm_tld.php:47 +msgid "Some TLD cannot be deleted..." +msgstr "" + +#: ../admin/adm_tld.php:50 +msgid "The requested TLD has been deleted" +msgstr "" + +#: ../admin/adm_tld.php:68 +msgid "" +"Here is the list of the TLD allowed on this server. Each TLD can be allowed " +"or denied after some checks (whois, ns, domain exists...)" +msgstr "" + +#: ../admin/adm_tld.php:70 ../admin/adm_tld.php:91 ../admin/adm_tldadd.php:56 +#: ../admin/adm_tldadd.php:70 +msgid "Add a new TLD" +msgstr "" + +#: ../admin/adm_tld.php:73 ../admin/adm_tldadd.php:66 +#: ../admin/adm_tldedit.php:65 +msgid "Allowed Mode" +msgstr "" + +#: ../admin/adm_tld.php:73 ../admin/adm_tldadd.php:65 +#: ../admin/adm_tldedit.php:64 +msgid "TLD" +msgstr "" + +#: ../admin/adm_tld.php:87 +msgid "Delete the checked TLD" +msgstr "" + +#: ../admin/adm_tldadd.php:58 +msgid "" +"Enter the new TLD (without the first dot) and choose what check should be " +"done." +msgstr "" + +#: ../admin/adm_tldadd.php:59 +msgid "" +"Warning : only some final tld are known in the whois function of AlternC, " +"please check m_dom.php accordingly." +msgstr "" + +#: ../admin/adm_tlddoadd.php:49 +msgid "The TLD has been successfully added" +msgstr "" + +#: ../admin/adm_tlddoedit.php:48 +msgid "The TLD has been successfully edited" +msgstr "" + +#: ../admin/adm_tldedit.php:60 +msgid "Edit a TLD" +msgstr "" + +#: ../admin/adm_tldedit.php:69 +msgid "Edit this TLD" +msgstr "" + +#: ../admin/adm_update_domains.php:40 +msgid "Missing INOTIFY_UPDATE_DOMAIN var in /etc/alternc/local.sh . Fix it!" +msgstr "" + +#: ../admin/adm_variables.php:52 +msgid "Here are the internal AlternC variables that are currently being used." +msgstr "" + +#: ../admin/adm_variables.php:57 +msgid "Comment" +msgstr "" + +#: ../admin/adm_variables.php:57 +msgid "Names" +msgstr "" + +#: ../admin/adm_variables.php:69 +msgid "Save variables" +msgstr "" + +#: ../admin/bro_editor.php:54 ../admin/bro_editor.php:63 +#: ../admin/bro_main.php:355 ../admin/bro_main.php:395 +#, php-format +msgid "%3$d-%2$d-%1$d %4$d:%5$d" +msgstr "" + +#: ../admin/bro_editor.php:54 ../admin/bro_editor.php:63 +#, php-format +msgid "Your file %s has been saved" +msgstr "" + +#: ../admin/bro_editor.php:74 +msgid "File editing" +msgstr "" + +#: ../admin/bro_editor.php:80 +msgid "This file is empty" +msgstr "" + +#: ../admin/bro_editor.php:90 +msgid "Save & Quit" +msgstr "" + +#: ../admin/bro_editor.php:91 +msgid "Quit" +msgstr "" + +#: ../admin/bro_main.php:91 +#, php-format +msgid "Deleting files and/or directories" +msgstr "" + +#: ../admin/bro_main.php:96 +msgid "WARNING: Confirm the deletion of this files" +msgstr "" + +#: ../admin/bro_main.php:105 +msgid "Yes, delete those files/folders" +msgstr "" + +#: ../admin/bro_main.php:106 +msgid "No, don't delete those files/folders" +msgstr "" + +#: ../admin/bro_main.php:144 +msgid "extracting..." +msgstr "" + +#: ../admin/bro_main.php:148 +msgid "failed" +msgstr "" + +#: ../admin/bro_main.php:151 +msgid "done" +msgstr "" + +#: ../admin/bro_main.php:156 ../class/m_bro.php:76 +msgid "File browser" +msgstr "" + +#: ../admin/bro_main.php:163 +msgid "Path" +msgstr "" + +#: ../admin/bro_main.php:185 +msgid "Send one file:" +msgstr "" + +#: ../admin/bro_main.php:189 +msgid "Send this file" +msgstr "" + +#: ../admin/bro_main.php:190 +#, php-format +msgid "Warning: max size: %s" +msgstr "" + +#: ../admin/bro_main.php:197 +msgid "New file or folder:" +msgstr "" + +#: ../admin/bro_main.php:202 ../admin/piwik_sitelist.php:86 +#: ../admin/piwik_userlist.php:44 ../admin/piwik_userlist.php:56 +msgid "Create" +msgstr "" + +#: ../admin/bro_main.php:204 ../admin/bro_main.php:244 +msgid "File" +msgstr "" + +#: ../admin/bro_main.php:205 ../admin/bro_main.php:397 +#: ../admin/ftp_edit.php:75 ../admin/ftp_list.php:72 ../admin/hta_add.php:55 +#: ../admin/hta_adduser.php:50 ../admin/hta_edit.php:94 +#: ../admin/hta_edituser.php:51 ../admin/hta_list.php:68 +msgid "Folder" +msgstr "" + +#: ../admin/bro_main.php:222 ../admin/bro_main.php:228 +#: ../admin/bro_main.php:286 +msgid "Rename" +msgstr "" + +#: ../admin/bro_main.php:238 ../admin/bro_main.php:244 +#: ../admin/bro_main.php:287 +msgid "Permissions" +msgstr "" + +#: ../admin/bro_main.php:258 +msgid "write" +msgstr "" + +#: ../admin/bro_main.php:266 +msgid "Change permissions" +msgstr "" + +#: ../admin/bro_main.php:289 +msgid "Copy" +msgstr "" + +#: ../admin/bro_main.php:290 +msgid "Move" +msgstr "" + +#: ../admin/bro_main.php:291 +msgid "To" +msgstr "" + +#: ../admin/bro_main.php:302 +msgid "Please select a destination folder" +msgstr "" + +#: ../admin/bro_main.php:328 +msgid "Filename" +msgstr "" + +#: ../admin/bro_main.php:329 ../admin/logs_list.php:53 +#: ../admin/sql_list.php:54 +msgid "Size" +msgstr "" + +#: ../admin/bro_main.php:330 +msgid "Last modification" +msgstr "" + +#: ../admin/bro_main.php:332 +msgid "File Type" +msgstr "" + +#: ../admin/bro_main.php:361 ../admin/bro_main.php:542 +#: ../admin/dom_edit.php:121 +msgid "View" +msgstr "" + +#: ../admin/bro_main.php:368 +msgid "Extract" +msgstr "" + +#: ../admin/bro_main.php:374 ../admin/bro_main.php:376 +msgid "Restore SQL" +msgstr "" + +#: ../admin/bro_main.php:376 +msgid "In which database to you want to restore this dump?" +msgstr "" + +#: ../admin/bro_main.php:381 +msgid "Restore it" +msgstr "" + +#: ../admin/bro_main.php:422 ../admin/bro_main.php:450 +#: ../admin/bro_main.php:485 ../admin/bro_main.php:513 +msgid "V" +msgstr "" + +#: ../admin/bro_main.php:568 +msgid "No files in this folder" +msgstr "" + +#: ../admin/bro_main.php:578 +msgid "(slow)" +msgstr "" + +#: ../admin/bro_main.php:578 +msgid "Show size of directories" +msgstr "" + +#: ../admin/bro_main.php:582 +msgid "Edit this folder's protection" +msgstr "" + +#: ../admin/bro_main.php:585 ../admin/hta_add.php:62 +msgid "Protect this folder" +msgstr "" + +#: ../admin/bro_main.php:587 +msgid "with a login and a password" +msgstr "" + +#: ../admin/bro_main.php:590 +msgid "Download this folder" +msgstr "" + +#: ../admin/bro_main.php:592 +#, php-format +msgid "as a %s file" +msgstr "" + +#: ../admin/bro_main.php:599 +msgid "Edit the ftp account" +msgstr "" + +#: ../admin/bro_main.php:600 +msgid "that exists in this folder" +msgstr "" + +#: ../admin/bro_main.php:606 +msgid "Create an ftp account in this folder" +msgstr "" + +#: ../admin/bro_main.php:615 +msgid "Configure the file editor" +msgstr "" + +#: ../admin/bro_pref.php:49 +msgid "Your preferences have been updated." +msgstr "" + +#: ../admin/bro_pref.php:59 +msgid "File browser preferences" +msgstr "" + +#: ../admin/bro_pref.php:66 +msgid "Horizontal window size" +msgstr "" + +#: ../admin/bro_pref.php:74 +msgid "Vertical window size" +msgstr "" + +#: ../admin/bro_pref.php:82 +msgid "File editor font name" +msgstr "" + +#: ../admin/bro_pref.php:90 +msgid "File editor font size" +msgstr "" + +#: ../admin/bro_pref.php:98 +msgid "File list view" +msgstr "" + +#: ../admin/bro_pref.php:106 +msgid "Downloading file format" +msgstr "" + +#: ../admin/bro_pref.php:114 +msgid "What to do after creating a file" +msgstr "" + +#: ../admin/bro_pref.php:122 +msgid "Show icons?" +msgstr "" + +#: ../admin/bro_pref.php:130 +msgid "Show file types?" +msgstr "" + +#: ../admin/bro_pref.php:138 +msgid "Remember last visited directory?" +msgstr "" + +#: ../admin/bro_pref.php:149 +msgid "Change my settings" +msgstr "" + +#: ../admin/browseforfolder.php:125 ../admin/browseforfolder2.php:120 +msgid "Searching for a folder" +msgstr "" + +#: ../admin/browseforfolder.php:131 ../admin/browseforfolder2.php:126 +msgid "Error, cannot find this folder" +msgstr "" + +#: ../admin/browseforfolder.php:133 ../admin/browseforfolder2.php:128 +msgid "Back to the root folder" +msgstr "" + +#: ../admin/browseforfolder.php:145 ../admin/browseforfolder2.php:141 +msgid "Select" +msgstr "" + +#: ../admin/cron.php:21 ../class/m_cron.php:72 ../class/m_cron.php:181 +msgid "Scheduled tasks" +msgstr "" + +#: ../admin/cron.php:36 +msgid "URL" +msgstr "" + +#: ../admin/cron.php:37 +msgid "Schedule" +msgstr "" + +#: ../admin/cron.php:38 ../admin/hta_edituser.php:55 +#: ../admin/sql_users_list.php:48 +msgid "User" +msgstr "" + +#: ../admin/cron.php:40 +msgid "Email report" +msgstr "" + +#: ../admin/cron.php:57 +msgid "Called URL" +msgstr "" + +#: ../admin/cron.php:60 +msgid "Period:" +msgstr "" + +#: ../admin/cron.php:72 +msgid "Next execution: " +msgstr "" + +#: ../admin/cron.php:75 +msgid "HTTP user (optional)" +msgstr "" + +#: ../admin/cron.php:76 +msgid "HTTP password (optional)" +msgstr "" + +#: ../admin/cron.php:77 +msgid "Mail address (optional)" +msgstr "" + +#: ../admin/cron.php:81 +msgid "Apply the modifications" +msgstr "" + +#: ../admin/dom_add.php:45 +msgid "Domain hosting" +msgstr "" + +#: ../admin/dom_add.php:49 +msgid "Contact your administrator for more information." +msgstr "" + +#: ../admin/dom_add.php:49 +msgid "You cannot add any new domain, your quota is over." +msgstr "" + +#: ../admin/dom_add.php:57 +msgid "Advanced import" +msgstr "" + +#: ../admin/dom_add.php:60 +msgid "host my dns here" +msgstr "" + +#: ../admin/dom_add.php:68 +msgid "" +"Do you want to point this domain to another domain already installed in your " +"account?" +msgstr "" + +#: ../admin/dom_add.php:71 +msgid "No: This domain will have its own folder." +msgstr "" + +#: ../admin/dom_add.php:73 +msgid "Yes, redirect this new domain to this one:" +msgstr "" + +#: ../admin/dom_add.php:74 +msgid "-- Choose a domain --" +msgstr "" + +#: ../admin/dom_add.php:87 +msgid "Add this domain" +msgstr "" + +#: ../admin/dom_add.php:91 +msgid "" +"If you don't want to host in our server the DNS of your domain, don't check " +"the box 'host my dns here'. If you don't know what it mean, leave it checked." +msgstr "" + +#: ../admin/dom_add.php:96 ../admin/dom_doadd.php:60 +msgid "Whois result on the domain" +msgstr "" + +#: ../admin/dom_dnsdump.php:9 +msgid "Error: no domain" +msgstr "" + +#: ../admin/dom_doadd.php:52 ../class/m_dom.php:104 +msgid "Add a domain" +msgstr "" + +#: ../admin/dom_doadd.php:54 +#, php-format +msgid "Your new domain %s has been successfully installed" +msgstr "" + +#: ../admin/dom_doadd.php:55 ../admin/dom_dodel.php:56 +#: ../admin/dom_dodel.php:86 ../admin/dom_editdns.php:62 +#: ../admin/dom_import.php:87 ../admin/dom_subdodel.php:79 +#: ../admin/hta_doedituser.php:62 +msgid "Click here to continue" +msgstr "" + +#: ../admin/dom_dodel.php:54 +msgid "Deletion have been successfully cancelled" +msgstr "" + +#: ../admin/dom_dodel.php:64 ../admin/dom_dodel.php:67 +#, php-format +msgid "Confirm the deletion of domain %s" +msgstr "" + +#: ../admin/dom_dodel.php:67 ../admin/sql_del.php:75 +#: ../admin/sql_users_del.php:61 +msgid "WARNING" +msgstr "" + +#: ../admin/dom_dodel.php:69 +msgid "This will delete the related sub-domains too." +msgstr "" + +#: ../admin/dom_dodel.php:74 +msgid "Yes, delete this domain name" +msgstr "" + +#: ../admin/dom_dodel.php:75 +msgid "No, don't delete this domain name" +msgstr "" + +#: ../admin/dom_dodel.php:81 +#, php-format +msgid "Domain %s deleted" +msgstr "" + +#: ../admin/dom_dodel.php:85 +#, php-format +msgid "The domain %s has been successfully deleted." +msgstr "" + +#: ../admin/dom_edit.inc.php:40 +msgid "Edit a subdomain:" +msgstr "" + +#: ../admin/dom_edit.inc.php:42 +msgid "Create a subdomain:" +msgstr "" + +#: ../admin/dom_edit.inc.php:63 +msgid "Show advanced options" +msgstr "" + +#: ../admin/dom_edit.inc.php:64 +msgid "Hide advanced options" +msgstr "" + +#: ../admin/dom_edit.inc.php:88 +msgid "(enter an URL here)" +msgstr "" + +#: ../admin/dom_edit.inc.php:92 +msgid "(enter an IPv4 address, for example 192.168.1.2)" +msgstr "" + +#: ../admin/dom_edit.inc.php:96 +msgid "(enter an IPv6 address, for example 2001:0910::0)" +msgstr "" + +#: ../admin/dom_edit.inc.php:100 +msgid "(enter a TXT content for this domain)" +msgstr "" + +#: ../admin/dom_edit.inc.php:104 +msgid "(enter a domain name or subdomain)" +msgstr "" + +#: ../admin/dom_edit.inc.php:114 +msgid "Edit this subdomain" +msgstr "" + +#: ../admin/dom_edit.inc.php:116 +msgid "Add this subdomain" +msgstr "" + +#: ../admin/dom_edit.inc.php:135 +msgid "Missing value for this sub-domain" +msgstr "" + +#: ../admin/dom_edit.inc.php:141 +msgid "Please select a type for this sub-domain" +msgstr "" + +#: ../admin/dom_edit.php:80 +msgid "" +"Are you sure you want to do this? This will DELETE ALL the mailboxes, " +"messages and aliases on this domain ?" +msgstr "" + +#: ../admin/dom_edit.php:91 +#, php-format +msgid "Manage %s" +msgstr "" + +#: ../admin/dom_edit.php:96 +msgid "This domain have some DNS change pending. Please wait." +msgstr "" + +#: ../admin/dom_edit.php:99 +#, php-format +msgid "You requested deletion of domain %s." +msgstr "" + +#: ../admin/dom_edit.php:117 +msgid "Edit subdomains" +msgstr "" + +#: ../admin/dom_edit.php:118 +msgid "Add subdomains" +msgstr "" + +#: ../admin/dom_edit.php:119 ../class/m_mem.php:63 +msgid "Settings" +msgstr "" + +#: ../admin/dom_edit.php:128 +#, php-format +msgid "Editing subdomains of %s" +msgstr "" + +#: ../admin/dom_edit.php:130 +msgid "Subdomain" +msgstr "" + +#: ../admin/dom_edit.php:153 +msgid "ERROR, please check your server setup" +msgstr "" + +#: ../admin/dom_edit.php:160 ../admin/ftp_list.php:94 +msgid "Directory not found" +msgstr "" + +#: ../admin/dom_edit.php:174 +msgid "Activation pending" +msgstr "" + +#: ../admin/dom_edit.php:177 ../admin/ftp_list.php:84 +#: ../admin/mail_list.php:144 ../admin/mail_list.php:154 +msgid "Disabled" +msgstr "" + +#: ../admin/dom_edit.php:178 +msgid "Enable" +msgstr "" + +#: ../admin/dom_edit.php:181 +msgid "Desactivation pending" +msgstr "" + +#: ../admin/dom_edit.php:189 +msgid "Update pending" +msgstr "" + +#: ../admin/dom_edit.php:192 +msgid "Deletion pending" +msgstr "" + +#: ../admin/dom_edit.php:206 +#, php-format +msgid "Add a subdomains to %s" +msgstr "" + +#: ../admin/dom_edit.php:223 +msgid "DNS & Email parameters" +msgstr "" + +#: ../admin/dom_edit.php:228 +msgid "Manage the DNS on the server ?" +msgstr "" + +#: ../admin/dom_edit.php:239 +msgid "Define TTL for the zone records" +msgstr "" + +#: ../admin/dom_edit.php:241 +msgid "" +"Warning: a low TTL can be problematic. It is recommended not to use a lower " +"TTL than 3600 seconds." +msgstr "" + +#: ../admin/dom_edit.php:241 +msgid "seconds" +msgstr "" + +#: ../admin/dom_edit.php:250 +msgid "Manage the Emails Addresses of this domain on the server?" +msgstr "" + +#: ../admin/dom_edit.php:258 +msgid "" +"Warning: If you set this to 'no', all your email accounts and aliases on " +"this domain will be immediately deleted." +msgstr "" + +#: ../admin/dom_edit.php:259 +msgid "Submit the changes" +msgstr "" + +#: ../admin/dom_edit.php:267 +msgid "" +"Here is the actual DNS zone running on the AlternC server. If you just made " +"some changes, you have to wait for it." +msgstr "" + +#: ../admin/dom_edit.php:271 +msgid "Click here to view the dump" +msgstr "" + +#: ../admin/dom_edit.php:279 +msgid "Domain removal" +msgstr "" + +#: ../admin/dom_edit.php:280 +#, php-format +msgid "" +"If you want to destroy the domain %s, click on the button below. Warning: " +"this also deletes all FTP accounts, email, mailing lists associated with the " +"domain and subdomains." +msgstr "" + +#: ../admin/dom_edit.php:283 +#, php-format +msgid "Delete %s from this server" +msgstr "" + +#: ../admin/dom_editdns.php:52 +#, php-format +msgid "Editing domain %s" +msgstr "" + +#: ../admin/dom_editdns.php:57 +#, php-format +msgid "The domain %s has been changed." +msgstr "" + +#: ../admin/dom_editdns.php:60 ../admin/dom_subdodel.php:75 +msgid "The modifications will take effect at %time. Server time is %now." +msgstr "" + +#: ../admin/dom_import.php:43 +msgid "Import a DNS zone" +msgstr "" + +#: ../admin/dom_import.php:55 +msgid "The domain field seems to be empty" +msgstr "" + +#: ../admin/dom_import.php:57 +msgid "" +"Here is my proposition. Modify your zone until my proposition seems good to " +"you" +msgstr "" + +#: ../admin/dom_import.php:59 +#, php-format +msgid "Working on %s" +msgstr "" + +#: ../admin/dom_import.php:61 +msgid "Generated entry" +msgstr "" + +#: ../admin/dom_import.php:61 +msgid "Result" +msgstr "" + +#: ../admin/dom_import.php:61 +msgid "Zone" +msgstr "" + +#: ../admin/dom_import.php:74 +msgid "ERROR" +msgstr "" + +#: ../admin/dom_import.php:74 ../admin/mem_cm.php:56 +msgid "OK" +msgstr "" + +#: ../admin/dom_import.php:96 +msgid "Enter the domain name you want to import" +msgstr "" + +#: ../admin/dom_import.php:104 +msgid "Do you want to detect the redirection?" +msgstr "" + +#: ../admin/dom_import.php:115 +msgid "Paste your existing DNS zone here." +msgstr "" + +#: ../admin/dom_import.php:117 +msgid "If you don't know what it is, don't submit this form." +msgstr "" + +#: ../admin/dom_import.php:122 +msgid "Do you want to import the zone as it?" +msgstr "" + +#: ../admin/dom_import.php:126 +msgid "Submit" +msgstr "" + +#: ../admin/dom_subdel.php:51 +#, php-format +msgid "Deleting subdomain %s" +msgstr "" + +#: ../admin/dom_subdel.php:67 +msgid "WARNING : Confirm the deletion of the subdomain" +msgstr "" + +#: ../admin/dom_subdodel.php:64 +#, php-format +msgid "Deleting the subdomain %s:" +msgstr "" + +#: ../admin/dom_subdoedit.php:72 ../admin/dom_substatus.php:29 +msgid "The modifications will take effect at %time. Server time is %now." +msgstr "" + +#: ../admin/dom_subedit.php:56 +msgid "Editing subdomain" +msgstr "" + +#: ../admin/ftp_del.php:60 +#, php-format +msgid "The ftp account %s has been successfully deleted" +msgstr "" + +#: ../admin/ftp_del.php:68 +msgid "Confirm the FTP accounts deletion" +msgstr "" + +#: ../admin/ftp_del.php:71 +msgid "Do you really want to delete those accounts?" +msgstr "" + +#: ../admin/ftp_doedit.php:46 ../admin/ftp_edit.php:44 +#: ../admin/ftp_edit.php:51 +msgid "Create a FTP account" +msgstr "" + +#: ../admin/ftp_doedit.php:52 +msgid "Error: neither a creation nor an edition" +msgstr "" + +#: ../admin/ftp_doedit.php:72 +msgid "The ftp account has been successfully saved" +msgstr "" + +#: ../admin/ftp_edit.php:43 +msgid "Neither a creation nor a edition" +msgstr "" + +#: ../admin/ftp_edit.php:53 +msgid "Editing a FTP account" +msgstr "" + +#: ../admin/ftp_edit.php:79 +msgid "" +"This is the root folder for this FTP user. i.e. this FTP user can access to " +"this forlder and all its sub-folders." +msgstr "" + +#: ../admin/ftp_edit.php:93 +msgid "Click here if you want to edit password" +msgstr "" + +#: ../admin/ftp_edit.php:114 +msgid "Password do not match" +msgstr "" + +#: ../admin/ftp_edit.php:120 ../class/m_admin.php:1279 ../class/m_hta.php:235 +msgid "Please enter a password" +msgstr "" + +#: ../admin/ftp_list.php:45 ../class/m_ftp.php:76 +msgid "FTP accounts list" +msgstr "" + +#: ../admin/ftp_list.php:57 ../class/m_ftp.php:67 +msgid "Create a new ftp account" +msgstr "" + +#: ../admin/ftp_list.php:80 +msgid "Are you sure you want to change his status?" +msgstr "" + +#: ../admin/ftp_list.php:107 +msgid "FTP configuration information" +msgstr "" + +#: ../admin/ftp_list.php:109 +msgid "" +"Here are some configuration information you will need to configure your FTP " +"application." +msgstr "" + +#: ../admin/ftp_list.php:112 +msgid "Server:" +msgstr "" + +#: ../admin/ftp_list.php:113 +msgid "FTP mode for data transfer:" +msgstr "" + +#: ../admin/ftp_list.php:113 +msgid "passive" +msgstr "" + +#: ../admin/ftp_list.php:114 +msgid "User/password:" +msgstr "" + +#: ../admin/ftp_list.php:114 +msgid "" +"the one you specified when you created the account. You can edit them in the " +"panel." +msgstr "" + +#: ../admin/head.php:32 +msgid "AlternC Control Panel" +msgstr "" + +#: ../admin/head.php:59 +msgid "" +"Administrator session. you may return to your " +"account or cancel this feature." +msgstr "" + +#: ../admin/head.php:60 +msgid "You can also apply changes." +msgstr "" + +#: ../admin/head.php:65 +msgid "Panel is locked! No one can login!" +msgstr "" + +#: ../admin/hta_add.php:39 ../admin/hta_list.php:49 ../admin/hta_list.php:87 +msgid "Protect a folder" +msgstr "" + +#: ../admin/hta_add.php:43 +msgid "" +"Enter the name of the folder you want to protect. It must already exists." +msgstr "" + +#: ../admin/hta_adduser.php:40 +#, php-format +msgid "Adding a username in %s" +msgstr "" + +#: ../admin/hta_adduser.php:67 ../admin/hta_edit.php:112 +msgid "Add this user" +msgstr "" + +#: ../admin/hta_del.php:42 +#, php-format +msgid "The protected folder %s has been successfully unprotected" +msgstr "" + +#: ../admin/hta_dodeluser.php:49 +msgid "Authorized user deletion confirm" +msgstr "" + +#: ../admin/hta_dodeluser.php:52 +msgid "Do you really want to delete those users ?" +msgstr "" + +#: ../admin/hta_doedituser.php:52 +#, php-format +msgid "Change the user %s in the protected folder %s" +msgstr "" + +#: ../admin/hta_doedituser.php:60 +#, php-format +msgid "The password of the user %s has been successfully changed" +msgstr "" + +#: ../admin/hta_edit.php:39 +msgid "No folder selected!" +msgstr "" + +#: ../admin/hta_edit.php:48 +#, php-format +msgid "List of authorized user in folder %s" +msgstr "" + +#: ../admin/hta_edit.php:53 +#, php-format +msgid "No authorized user in %s" +msgstr "" + +#: ../admin/hta_edit.php:68 ../admin/sql_users_password.php:38 +msgid "Change this user's password" +msgstr "" + +#: ../admin/hta_edit.php:78 ../admin/sql_users_list.php:70 +msgid "Delete the checked users" +msgstr "" + +#: ../admin/hta_edit.php:83 +msgid "Show this folder's content in the File Browser" +msgstr "" + +#: ../admin/hta_edit.php:89 +msgid "Adding an authorized user" +msgstr "" + +#: ../admin/hta_edituser.php:40 +#, php-format +msgid "Editing user %s in the protected folder %s" +msgstr "" + +#: ../admin/hta_edituser.php:59 ../admin/mem_param.php:83 +#: ../admin/mem_param.php:84 +msgid "New password" +msgstr "" + +#: ../admin/hta_edituser.php:68 +msgid "Change the password" +msgstr "" + +#: ../admin/hta_list.php:40 +msgid "Protected folders list" +msgstr "" + +#: ../admin/hta_list.php:60 +msgid "" +"You can set passwords to protect some of your folders.
This will create ." +"htaccess and .htpasswd files that restrict access to these directory and to " +"any sub-elements." +msgstr "" + +#: ../admin/hta_list.php:77 +msgid "Edit login and passwords" +msgstr "" + +#: ../admin/hta_list.php:86 +msgid "Unprotect the checked folders" +msgstr "" + +#: ../admin/index.php:67 +msgid "Web Hosting Control Panel" +msgstr "" + +#: ../admin/index.php:83 +msgid "" +"To connect to the hosting control panel, enter your AlternC's login and " +"password in the following form and click 'Enter'" +msgstr "" + +#: ../admin/index.php:84 +msgid "You are attemping to connect without IP restriction." +msgstr "" + +#: ../admin/index.php:88 +msgid "AlternC access" +msgstr "" + +#: ../admin/index.php:91 +msgid "Enter" +msgstr "" + +#: ../admin/index.php:111 +msgid "" +"To read your mail in a browser, click here to go to your server's Webmail" +msgstr "" + +#: ../admin/index.php:123 +msgid "You must accept the session cookie to log-in" +msgstr "" + +#: ../admin/index.php:152 +msgid "Need a login and a password" +msgstr "" + +#: ../admin/ip_main.php:58 +msgid "" +"Here you can add rules to restrict access to AlternC's services, filtered by " +"IP. First, add trusted IPs in the 'Known IP and networks' list. Then, add " +"rules to grant access on services to the chosen IPs from this list." +msgstr "" + +#: ../admin/ip_main.php:60 +msgid "Enabled rules" +msgstr "" + +#: ../admin/ip_main.php:64 +msgid "Authorised IP address or network" +msgstr "" + +#: ../admin/ip_main.php:65 ../admin/ip_main.php:95 +msgid "Access type" +msgstr "" + +#: ../admin/ip_main.php:76 +msgid "for" +msgstr "" + +#: ../admin/ip_main.php:86 +msgid "Add a new rule" +msgstr "" + +#: ../admin/ip_main.php:89 +msgid "" +"You need to have some 'Known IP and networks' defined below to define a new " +"rule." +msgstr "" + +#: ../admin/ip_main.php:119 +msgid "Authorized IP address or network" +msgstr "" + +#: ../admin/ip_main.php:144 +msgid "Known IP and networks" +msgstr "" + +#: ../admin/ip_main.php:146 +msgid "IP or network" +msgstr "" + +#: ../admin/ip_main.php:172 +msgid "Add an IP or a networks" +msgstr "" + +#: ../admin/ip_main.php:181 +msgid "IP or network. IPv4, IPv6 and subnet allowed" +msgstr "" + +#: ../admin/ip_main.php:214 +msgid "Please select an access type" +msgstr "" + +#: ../admin/logs_list.php:35 +msgid "Logs Listing" +msgstr "" + +#: ../admin/logs_list.php:43 +msgid "You have no web logs to list at the moment." +msgstr "" + +#: ../admin/logs_list.php:49 +msgid "" +"Here are web logs of your account.
You can download them to do specific " +"extract and statistics." +msgstr "" + +#: ../admin/logs_list.php:53 +msgid "Creation Date" +msgstr "" + +#: ../admin/logs_list.php:53 +msgid "Download link" +msgstr "" + +#: ../admin/logs_list.php:65 +msgid "Download" +msgstr "" + +#: ../admin/mail_del.php:54 +msgid "Deleting mail accounts" +msgstr "" + +#: ../admin/mail_del.php:57 +msgid "Please confirm the deletion of the following mail accounts:" +msgstr "" + +#: ../admin/mail_del.php:74 +msgid "Confirm the deletion" +msgstr "" + +#: ../admin/mail_del.php:74 +msgid "Don't delete anything and go back to the email list" +msgstr "" + +#: ../admin/mail_del.php:78 +msgid "" +"Warning: Deleting an email address will destroy all the messages it " +"contains! You will NOT be able to get it back!" +msgstr "" + +#: ../admin/mail_doedit.php:120 +msgid "Your email has been edited successfully" +msgstr "" + +#: ../admin/mail_edit.php:53 +#, php-format +msgid "Editing the email %s" +msgstr "" + +#: ../admin/mail_edit.php:67 +msgid "Is this email enabled?" +msgstr "" + +#: ../admin/mail_edit.php:69 +msgid "" +"You can enable or disable this email anytime. This will bounce any mail " +"received on this address, but will not delete the stored email, or the " +"redirections or password." +msgstr "" + +#: ../admin/mail_edit.php:73 +msgid "No (email disabled)" +msgstr "" + +#: ../admin/mail_edit.php:74 +msgid "Yes (email enabled)" +msgstr "" + +#: ../admin/mail_edit.php:78 +msgid "Is it a POP/IMAP account?" +msgstr "" + +#: ../admin/mail_edit.php:79 +msgid "" +"POP/IMAP accounts are receiving emails in the server. To read those emails, " +"you can use a Webmail, or a mail client such as Thunderbird. If you don't " +"use POP/IMAP, you can configure your email to be a redirection to other " +"existing emails. The maximum size is in megabytes, use 0 to make it infinite." +msgstr "" + +#: ../admin/mail_edit.php:82 +#, php-format +msgid "This mailbox is currently using %1$s / %2$s" +msgstr "" + +#: ../admin/mail_edit.php:85 +msgid "" +"This mailbox is pending deletion. You can recover its mails by setting it to " +"'Yes' NOW!" +msgstr "" + +#: ../admin/mail_edit.php:95 +msgid "Click here to edit the existing password" +msgstr "" + +#: ../admin/mail_edit.php:96 +msgid "Enter a POP/IMAP password" +msgstr "" + +#: ../admin/mail_edit.php:98 ../class/m_quota.php:537 +msgid "MB" +msgstr "" + +#: ../admin/mail_edit.php:98 +msgid "Maximum allowed size of this Mailbox" +msgstr "" + +#: ../admin/mail_edit.php:103 +msgid "" +"WARNING: turning POP/IMAP off will DELETE the stored messages in this email " +"address." +msgstr "" + +#: ../admin/mail_edit.php:105 +msgid "Is it a redirection to other email addresses?" +msgstr "" + +#: ../admin/mail_edit.php:107 +msgid "" +"If you want to send emails received on this address to other addresses, even " +"outside this server, enter those recipients here." +msgstr "" + +#: ../admin/mail_edit.php:107 +msgid "one recipient per line" +msgstr "" + +#: ../admin/mail_edit.php:115 +msgid "Change this email address" +msgstr "" + +#: ../admin/mail_list.php:72 +msgid "Create a new mail account" +msgstr "" + +#: ../admin/mail_list.php:76 +msgid "Can't have empty mail." +msgstr "" + +#: ../admin/mail_list.php:76 +msgid "Create this email address" +msgstr "" + +#: ../admin/mail_list.php:78 +msgid "Manage Catch-all for this domain" +msgstr "" + +#: ../admin/mail_list.php:92 +#, php-format +msgid "Email addresses of the domain %s" +msgstr "" + +#: ../admin/mail_list.php:96 +msgid "No mails for this domain." +msgstr "" + +#: ../admin/mail_list.php:106 +msgid "Search" +msgstr "" + +#: ../admin/mail_list.php:111 +msgid "Show system emails" +msgstr "" + +#: ../admin/mail_list.php:118 +msgid "Items per page:" +msgstr "" + +#: ../admin/mail_list.php:125 +msgid "Address" +msgstr "" + +#: ../admin/mail_list.php:125 +msgid "Last login time" +msgstr "" + +#: ../admin/mail_list.php:125 +msgid "Other recipients" +msgstr "" + +#: ../admin/mail_list.php:125 +msgid "Pop/Imap" +msgstr "" + +#: ../admin/mail_list.php:136 +msgid "Deleting..." +msgstr "" + +#: ../admin/mail_list.php:141 +msgid "" +"This email will be deleted soon. You may still be able to undelete it by " +"clicking here" +msgstr "" + +#: ../admin/mail_list.php:141 +msgid "Undelete" +msgstr "" + +#: ../admin/mail_list.php:167 ../admin/main.php:34 +msgid "Never" +msgstr "" + +#: ../admin/mail_list.php:178 +msgid "Delete the checked email addresses" +msgstr "" + +#: ../admin/mail_list.php:186 +msgid "Mails configuration information" +msgstr "" + +#: ../admin/mail_list.php:188 +msgid "" +"Here are some configuration information you will need to configure your mail " +"application." +msgstr "" + +#: ../admin/mail_list.php:195 +msgid "Outgoing mail (SMTP)" +msgstr "" + +#: ../admin/mail_list.php:196 +msgid "Incoming mail" +msgstr "" + +#: ../admin/mail_list.php:201 ../admin/mail_list.php:242 +msgid "Which protocol shall you use?" +msgstr "" + +#: ../admin/mail_list.php:203 +msgid "Submission" +msgstr "" + +#: ../admin/mail_list.php:206 ../admin/mail_list.php:217 +#: ../admin/mail_list.php:228 ../admin/mail_list.php:247 +#: ../admin/mail_list.php:258 ../admin/mail_list.php:269 +#: ../admin/mail_list.php:280 +msgid "Server name: " +msgstr "" + +#: ../admin/mail_list.php:207 ../admin/mail_list.php:218 +#: ../admin/mail_list.php:229 +msgid "" +"The mail address you want to access (example : myuser@example.tld)" +msgstr "" + +#: ../admin/mail_list.php:207 ../admin/mail_list.php:218 +#: ../admin/mail_list.php:229 +msgid "Username: " +msgstr "" + +#: ../admin/mail_list.php:208 ../admin/mail_list.php:219 +#: ../admin/mail_list.php:230 ../admin/mail_list.php:248 +#: ../admin/mail_list.php:259 ../admin/mail_list.php:270 +#: ../admin/mail_list.php:281 +msgid "Port: " +msgstr "" + +#: ../admin/mail_list.php:209 ../admin/mail_list.php:220 +#: ../admin/mail_list.php:231 ../admin/mail_list.php:249 +#: ../admin/mail_list.php:260 ../admin/mail_list.php:271 +#: ../admin/mail_list.php:282 +msgid "Authentication: " +msgstr "" + +#: ../admin/mail_list.php:210 ../admin/mail_list.php:221 +#: ../admin/mail_list.php:232 ../admin/mail_list.php:250 +#: ../admin/mail_list.php:261 ../admin/mail_list.php:272 +#: ../admin/mail_list.php:283 +msgid "Authentication method: " +msgstr "" + +#: ../admin/mail_list.php:210 ../admin/mail_list.php:250 +#: ../admin/mail_list.php:261 ../admin/mail_list.php:272 +#: ../admin/mail_list.php:283 +msgid "Normal password" +msgstr "" + +#: ../admin/mail_list.php:211 ../admin/mail_list.php:222 +#: ../admin/mail_list.php:233 ../admin/mail_list.php:251 +#: ../admin/mail_list.php:262 ../admin/mail_list.php:273 +#: ../admin/mail_list.php:284 +msgid "Connection security:" +msgstr "" + +#: ../admin/mail_list.php:214 +msgid "SMTP" +msgstr "" + +#: ../admin/mail_list.php:221 ../admin/mail_list.php:232 +msgid "Normal Password" +msgstr "" + +#: ../admin/mail_list.php:225 +msgid "SMTPS" +msgstr "" + +#: ../admin/mail_list.php:244 +msgid "IMAP" +msgstr "" + +#: ../admin/mail_list.php:255 +msgid "IMAPS" +msgstr "" + +#: ../admin/mail_list.php:266 +msgid "POP3" +msgstr "" + +#: ../admin/mail_list.php:277 +msgid "POP3S" +msgstr "" + +#: ../admin/mail_manage_catchall.php:38 +msgid "Problem with the domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:47 +msgid "Catchall successfully deleted" +msgstr "" + +#: ../admin/mail_manage_catchall.php:50 ../admin/mail_manage_catchall.php:53 +msgid "Catchall successfully updated" +msgstr "" + +#: ../admin/mail_manage_catchall.php:56 +msgid "Unknown target type" +msgstr "" + +#: ../admin/mail_manage_catchall.php:63 +#, php-format +msgid "Manage catch-all configuration of %s" +msgstr "" + +#: ../admin/mail_manage_catchall.php:72 +msgid "" +"You can choose what to do with emails sent to unexisting address of this " +"domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:80 +msgid "No catch-all" +msgstr "" + +#: ../admin/mail_manage_catchall.php:84 +msgid "No catch-all for this domain." +msgstr "" + +#: ../admin/mail_manage_catchall.php:88 +msgid "Redirect to same address on a different domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:92 +#, php-format +msgid "" +"Mails sent to john.doe@%s will be redirect to john.doe@anotherdomain.tld" +msgstr "" + +#: ../admin/mail_manage_catchall.php:95 +msgid "Enter the 'target' domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:96 +msgid "example.tld" +msgstr "" + +#: ../admin/mail_manage_catchall.php:98 +msgid "Or choose one of your own" +msgstr "" + +#: ../admin/mail_manage_catchall.php:106 +msgid "Redirect to a specific email" +msgstr "" + +#: ../admin/mail_manage_catchall.php:110 +#, php-format +msgid "" +"Mails sent to an unexisting email on '@%s' will be redirect to user@example." +"tld." +msgstr "" + +#: ../admin/mail_manage_catchall.php:113 +msgid "john.doe@example.tld" +msgstr "" + +#: ../admin/mailautoconfig_outlook.php:16 +msgid "Missing POST of the mail address" +msgstr "" + +#: ../admin/mailautoconfig_thunderbird.php:9 +msgid "Error: Missing GET of emailaddress" +msgstr "" + +#: ../admin/mailautoconfig_thunderbird.php:12 +msgid "Error: Empty $emailDomain" +msgstr "" + +#: ../admin/main.php:31 +msgid "Last Login: " +msgstr "" + +#: ../admin/main.php:36 +#, php-format +msgid "the %3$d-%2$d-%1$d at %4$d:%5$02d" +msgstr "" + +#: ../admin/main.php:37 +#, php-format +msgid "from: %1$s " +msgstr "" + +#: ../admin/main.php:42 +#, php-format +msgid "%1$d login failed since last login" +msgstr "" + +#: ../admin/main.php:85 +msgid "Expired or about to expire accounts" +msgstr "" + +#: ../admin/main.php:87 +msgid "Last name, surname" +msgstr "" + +#: ../admin/main.php:87 +msgid "uid" +msgstr "" + +#: ../admin/main.php:103 +msgid "" +"You are using the AlternC Panel. You can contact the AlternC community for " +"information or feedback by joining the mailing-list" +msgstr "" + +#: ../admin/mem_admin.php:40 +msgid "Your administrator preferences has been successfully changed." +msgstr "" + +#: ../admin/mem_admin.php:46 ../admin/mem_param.php:116 +msgid "Admin preferences" +msgstr "" + +#: ../admin/mem_chgmail.php:44 ../admin/mem_cm.php:42 ../admin/mem_cm.php:53 +#: ../admin/mem_cm2.php:47 ../admin/mem_param.php:92 +msgid "Change the email of the account" +msgstr "" + +#: ../admin/mem_chgmail.php:51 +#, php-format +msgid "help_mem_chgmail %s" +msgstr "" + +#: ../admin/mem_cm.php:54 +msgid "" +"Enter the key you got when you requested the mailbox change, then click the " +"OK button." +msgstr "" + +#: ../admin/mem_cm.php:55 +msgid "Key" +msgstr "" + +#: ../admin/mem_cm2.php:55 +msgid "The mailbox has been successfully changed." +msgstr "" + +#: ../admin/mem_logout.php:41 ../admin/mem_logout.php:49 +msgid "Disconnected" +msgstr "" + +#: ../admin/mem_logout.php:51 +msgid "You have been logged out of your administration desktop." +msgstr "" + +#: ../admin/mem_logout.php:52 +msgid "Click here to log in" +msgstr "" + +#: ../admin/mem_param.php:43 +msgid "Your help setting has been updated." +msgstr "" + +#: ../admin/mem_param.php:47 +msgid "Settings of your account" +msgstr "" + +#: ../admin/mem_param.php:60 ../class/m_mem.php:579 +msgid "Help" +msgstr "" + +#: ../admin/mem_param.php:63 +msgid "Administrator" +msgstr "" + +#: ../admin/mem_param.php:69 ../admin/mem_passwd.php:50 +#: ../admin/sql_users_list.php:59 +msgid "Password change" +msgstr "" + +#: ../admin/mem_param.php:73 +msgid "You cannot change your password" +msgstr "" + +#: ../admin/mem_param.php:78 +msgid "help_chg_passwd" +msgstr "" + +#: ../admin/mem_param.php:82 +msgid "Old password" +msgstr "" + +#: ../admin/mem_param.php:85 +msgid "Change my password" +msgstr "" + +#: ../admin/mem_param.php:95 +msgid "help_chg_mail" +msgstr "" + +#: ../admin/mem_param.php:96 +msgid "Current mailbox" +msgstr "" + +#: ../admin/mem_param.php:97 +msgid "New mailbox" +msgstr "" + +#: ../admin/mem_param.php:98 +msgid "Change my email address" +msgstr "" + +#: ../admin/mem_param.php:103 +msgid "Online help settings" +msgstr "" + +#: ../admin/mem_param.php:106 +msgid "help_help_settings" +msgstr "" + +#: ../admin/mem_param.php:107 +msgid "Do you want to see the help texts and links on each page?" +msgstr "" + +#: ../admin/mem_param.php:108 +msgid "Change these settings" +msgstr "" + +#: ../admin/mem_param.php:119 +msgid "Members list view" +msgstr "" + +#: ../admin/mem_param.php:120 +msgid "Large view" +msgstr "" + +#: ../admin/mem_param.php:121 +msgid "Short view" +msgstr "" + +#: ../admin/mem_param.php:123 +msgid "Change my admin preferences" +msgstr "" + +#: ../admin/mem_passwd.php:44 +msgid "Your password has been successfully changed." +msgstr "" + +#: ../admin/menu.php:37 +#, php-format +msgid "Welcome %s" +msgstr "" + +#: ../admin/menu.php:105 +msgid "About" +msgstr "" + +#: ../admin/nowebmail.php:28 +msgid "" +"There is currently no webmail configured. If you need one, contact your " +"server administrator" +msgstr "" + +#: ../admin/piwik_addaccount.php:34 +msgid "You cannot add any new Piwik account, your quota is over." +msgstr "" + +#: ../admin/piwik_addaccount.php:44 +msgid "Error : missing arguments." +msgstr "" + +#: ../admin/piwik_addaccount.php:50 +#, php-format +msgid "Creation of Piwik account \"%s\"" +msgstr "" + +#: ../admin/piwik_addaccount.php:67 +msgid "Successfully added piwik user" +msgstr "" + +#: ../admin/piwik_addsites.php:44 +msgid "Error while adding website.
" +msgstr "" + +#: ../admin/piwik_addsites.php:46 +msgid "Website added Successfully" +msgstr "" + +#: ../admin/piwik_site_dodel.php:39 +msgid "Missing site parameters" +msgstr "" + +#: ../admin/piwik_site_dodel.php:50 +msgid "Site successfully deleted" +msgstr "" + +#: ../admin/piwik_site_dodel.php:61 +msgid "Piwik site deletion confirm" +msgstr "" + +#: ../admin/piwik_site_dodel.php:64 +msgid "Do you really want to delete this Piwik website ?" +msgstr "" + +#: ../admin/piwik_sitelist.php:48 +msgid "You don't own this piwik site!" +msgstr "" + +#: ../admin/piwik_sitelist.php:56 +msgid "You dont own user" +msgstr "" + +#: ../admin/piwik_sitelist.php:83 ../admin/piwik_userlist.php:53 +msgid "Add a new website" +msgstr "" + +#: ../admin/piwik_sitelist.php:85 ../admin/piwik_userlist.php:55 +msgid "URL of the website" +msgstr "" + +#: ../admin/piwik_sitelist.php:106 +msgid "Existing Piwik monitored websites" +msgstr "" + +#: ../admin/piwik_sitelist.php:114 +msgid "No existing Piwik websites" +msgstr "" + +#: ../admin/piwik_sitelist.php:120 +msgid "Site name" +msgstr "" + +#: ../admin/piwik_sitelist.php:120 +msgid "Site url" +msgstr "" + +#: ../admin/piwik_sitelist.php:147 +msgid "Credentials management" +msgstr "" + +#: ../admin/piwik_user_dodel.php:39 +msgid "Missing login parameters" +msgstr "" + +#: ../admin/piwik_user_dodel.php:59 +msgid "Piwik accounts deletion confirm" +msgstr "" + +#: ../admin/piwik_user_dodel.php:62 +#, php-format +msgid "Do you really want to delete the Piwik account %s ?" +msgstr "" + +#: ../admin/piwik_useradmin.php:42 +msgid "No piwik user specified" +msgstr "" + +#: ../admin/piwik_useradmin.php:52 +msgid "You don't own this piwik website" +msgstr "" + +#: ../admin/piwik_useradmin.php:60 +msgid "You don't own this piwik user" +msgstr "" + +#: ../admin/piwik_useradmin.php:71 +msgid "success" +msgstr "" + +#: ../admin/piwik_useradmin.php:75 +msgid "This right does not exist" +msgstr "" + +#: ../admin/piwik_useradmin.php:105 +msgid "Rights for user" +msgstr "" + +#: ../admin/piwik_useradmin.php:128 +msgid "Add rights to user" +msgstr "" + +#: ../admin/piwik_useradmin.php:139 +msgid "admin" +msgstr "" + +#: ../admin/piwik_useradmin.php:139 +msgid "noacces" +msgstr "" + +#: ../admin/piwik_useradmin.php:139 +msgid "view" +msgstr "" + +#: ../admin/piwik_userlist.php:41 +msgid "Create a new piwik account" +msgstr "" + +#: ../admin/piwik_userlist.php:66 +msgid "Existing Piwik accounts" +msgstr "" + +#: ../admin/piwik_userlist.php:74 +msgid "No existing Piwik users" +msgstr "" + +#: ../admin/piwik_userlist.php:79 ../admin/piwik_userlist.php:89 +msgid "Connect" +msgstr "" + +#: ../admin/quota_show.php:34 +msgid "Account's quotas" +msgstr "" + +#: ../admin/quota_show.php:40 +msgid "No quotas for this account, or quotas currently unavailable!" +msgstr "" + +#: ../admin/quotas_oneuser.php:14 +#, php-format +msgid "%s account" +msgstr "" + +#: ../admin/quotas_oneuser.php:25 ../class/m_quota.php:60 +msgid "quota_web" +msgstr "" + +#: ../admin/quotas_oneuser.php:36 ../admin/quotas_users.php:132 +#: ../class/m_dom.php:93 +msgid "Domains" +msgstr "" + +#: ../admin/quotas_oneuser.php:37 +msgid "Emails" +msgstr "" + +#: ../admin/quotas_oneuser.php:38 ../admin/quotas_oneuser.php:121 +#: ../admin/quotas_oneuser.php:167 ../admin/quotas_users.php:128 +#: ../admin/quotas_users.php:169 +msgid "Space" +msgstr "" + +#: ../admin/quotas_oneuser.php:112 +msgid "Databases:" +msgstr "" + +#: ../admin/quotas_oneuser.php:120 ../admin/quotas_users.php:177 +msgid "DB" +msgstr "" + +#: ../admin/quotas_oneuser.php:158 +msgid "Mailman lists:" +msgstr "" + +#: ../admin/quotas_oneuser.php:166 ../admin/quotas_users.php:173 +#: ../admin/quotas_users.php:176 +msgid "Lists" +msgstr "" + +#: ../admin/quotas_users.php:20 +msgid "Quotas status" +msgstr "" + +#: ../admin/quotas_users.php:29 +msgid "" +"This page shows the space and service count of your AlternC server and each " +"AlternC accounts." +msgstr "" + +#: ../admin/quotas_users.php:30 +#, php-format +msgid "Administration -> Manage the Alternc accounts" +msgstr "" + +#: ../admin/quotas_users.php:30 +#, php-format +msgid "If you want to manage them, go to" +msgstr "" + +#: ../admin/quotas_users.php:33 +#, php-format +msgid "% of the total." +msgstr "" + +#: ../admin/quotas_users.php:33 +msgid "MB." +msgstr "" + +#: ../admin/quotas_users.php:33 +#, php-format +msgid "Sizes are shown as %s" +msgstr "" + +#: ../admin/quotas_users.php:36 +msgid "Global" +msgstr "" + +#: ../admin/quotas_users.php:36 +msgid "Server-side view:" +msgstr "" + +#: ../admin/quotas_users.php:37 +msgid "Detailed view:" +msgstr "" + +#: ../admin/quotas_users.php:38 +msgid "In MB" +msgstr "" + +#: ../admin/quotas_users.php:39 +msgid "Percentage" +msgstr "" + +#: ../admin/quotas_users.php:40 +msgid "Graphical" +msgstr "" + +#: ../admin/quotas_users.php:43 +msgid "Show the domain names" +msgstr "" + +#: ../admin/quotas_users.php:45 +msgid "Hide the domain names" +msgstr "" + +#: ../admin/quotas_users.php:48 +msgid "All accounts" +msgstr "" + +#: ../admin/quotas_users.php:128 ../admin/quotas_users.php:169 +msgid "Count" +msgstr "" + +#: ../admin/quotas_users.php:137 ../class/m_mail.php:177 +msgid "Email addresses" +msgstr "" + +#: ../admin/quotas_users.php:143 +msgid "Mailman lists" +msgstr "" + +#: ../admin/quotas_users.php:149 ../admin/sql_del.php:72 +#: ../admin/sql_dorestore.php:40 ../admin/sql_getparam.php:44 +#: ../admin/sql_list.php:37 ../admin/sql_restore.php:44 +#: ../class/m_mysql.php:990 +msgid "MySQL Databases" +msgstr "" + +#: ../admin/quotas_users.php:171 +msgid "Dom" +msgstr "" + +#: ../admin/quotas_users.php:172 ../admin/quotas_users.php:175 +msgid "Mails" +msgstr "" + +#: ../admin/quotas_users.php:174 +msgid "Web" +msgstr "" + +#: ../admin/sql_bck.php:34 +msgid "MySQL Databases - Configure backups" +msgstr "" + +#: ../admin/sql_bck.php:40 ../admin/sql_dobck.php:34 +msgid "" +"You aren't allowed to access this page. Contact your administrator if you " +"want to." +msgstr "" + +#: ../admin/sql_bck.php:65 +#, php-format +msgid "Manage the SQL backup for database %s" +msgstr "" + +#: ../admin/sql_bck.php:70 +msgid "Do MySQL backup?" +msgstr "" + +#: ../admin/sql_bck.php:73 +msgid "No backup" +msgstr "" + +#: ../admin/sql_bck.php:74 +msgid "Weekly backup" +msgstr "" + +#: ../admin/sql_bck.php:75 +msgid "Daily backup" +msgstr "" + +#: ../admin/sql_bck.php:79 +msgid "How many backups should be kept?" +msgstr "" + +#: ../admin/sql_bck.php:91 +msgid "Compress the backups? (gzip)" +msgstr "" + +#: ../admin/sql_bck.php:100 +msgid "In which folder do you want to store the backups?" +msgstr "" + +#: ../admin/sql_bck.php:107 +msgid "Change the MySQL backup parameters" +msgstr "" + +#: ../admin/sql_bck.php:116 ../admin/sql_dorestore.php:50 +#: ../admin/sql_restore.php:53 +msgid "You currently have no database defined" +msgstr "" + +#: ../admin/sql_del.php:51 +#, php-format +msgid "The database %s has been successfully deleted" +msgstr "" + +#: ../admin/sql_del.php:66 +msgid "Please check which databases you want to delete" +msgstr "" + +#: ../admin/sql_del.php:75 +msgid "Confirm the deletion of the following SQL databases" +msgstr "" + +#: ../admin/sql_del.php:76 +msgid "This will delete all the tables currently in those db." +msgstr "" + +#: ../admin/sql_del.php:90 +msgid "No, don't delete the database" +msgstr "" + +#: ../admin/sql_del.php:90 +msgid "Yes, delete the database" +msgstr "" + +#: ../admin/sql_doadd.php:37 +msgid "Can't create a database: your quota is over" +msgstr "" + +#: ../admin/sql_dobck.php:56 +msgid "Your backup parameters has been successfully changed." +msgstr "" + +#: ../admin/sql_dorestore.php:56 +msgid "Restore a SQL backup" +msgstr "" + +#: ../admin/sql_dorestore.php:63 +msgid "" +"Your database has been restored, check out the previous text for error " +"messages." +msgstr "" + +#: ../admin/sql_getparam.php:53 +msgid "Your current connection settings are" +msgstr "" + +#: ../admin/sql_getparam.php:59 +msgid "Mysql Server" +msgstr "" + +#: ../admin/sql_getparam.php:63 ../admin/sql_list.php:54 +msgid "Database" +msgstr "" + +#: ../admin/sql_getparam.php:79 +msgid "Web interface PhpMyAdmin" +msgstr "" + +#: ../admin/sql_getparam.php:91 +msgid "" +"You changed the MySQL User base configuration. Please refer to your " +"configuration" +msgstr "" + +#: ../admin/sql_getparam.php:94 +msgid "Back to the MySQL database list" +msgstr "" + +#: ../admin/sql_list.php:45 +msgid "You have no sql user at the moment." +msgstr "" + +#: ../admin/sql_list.php:54 ../admin/sql_list.php:65 +msgid "Backup" +msgstr "" + +#: ../admin/sql_list.php:54 ../admin/sql_list.php:67 +msgid "Restore" +msgstr "" + +#: ../admin/sql_list.php:54 ../admin/sql_list.php:68 +msgid "Show Settings" +msgstr "" + +#: ../admin/sql_list.php:77 +msgid "Delete the checked databases" +msgstr "" + +#: ../admin/sql_list.php:90 +msgid "Create a new MySQL database" +msgstr "" + +#: ../admin/sql_list.php:96 +msgid "MySQL Database" +msgstr "" + +#: ../admin/sql_list.php:103 +msgid "Can't have empty MySQL suffix" +msgstr "" + +#: ../admin/sql_list.php:103 +msgid "Create this new MySQL database." +msgstr "" + +#: ../admin/sql_pma_sso.php:46 +msgid "SQL Admin" +msgstr "" + +#: ../admin/sql_restore.php:58 +#, php-format +msgid "Restore a MySQL backup for database %s" +msgstr "" + +#: ../admin/sql_restore.php:61 +msgid "" +"Warning: Write the complete path and the filename.
For example if your " +"backups are in the directory /Backups,
write /Backups/file.sql.gz " +"(where file.sql.gz is the filename)." +msgstr "" + +#: ../admin/sql_restore.php:66 +msgid "" +"Please enter the path and the filename containing SQL data to be restored." +msgstr "" + +#: ../admin/sql_restore.php:67 +msgid "Restore my database" +msgstr "" + +#: ../admin/sql_restore.php:67 +msgid "Tip: you can restore a file directly in the File Browser" +msgstr "" + +#: ../admin/sql_restore.php:72 +msgid "Please the complete path of the filename" +msgstr "" + +#: ../admin/sql_restore.php:81 +msgid "Note: If the filename ends with .gz, it will be uncompressed before." +msgstr "" + +#: ../admin/sql_users_add.php:41 ../admin/sql_users_list.php:79 +msgid "Create a new MySQL user" +msgstr "" + +#: ../admin/sql_users_add.php:72 +msgid "Create this new MySQL user" +msgstr "" + +#: ../admin/sql_users_del.php:47 +#, php-format +msgid "The user %s has been successfully deleted" +msgstr "" + +#: ../admin/sql_users_del.php:58 +msgid "MySQL users" +msgstr "" + +#: ../admin/sql_users_del.php:61 +msgid "Confirm the deletion of the following MySQL users" +msgstr "" + +#: ../admin/sql_users_del.php:76 +msgid "No, don't delete the MySQL user" +msgstr "" + +#: ../admin/sql_users_del.php:76 +msgid "Yes, delete the MySQL user" +msgstr "" + +#: ../admin/sql_users_dorights.php:54 +msgid "The rights has been successfully applied to the user" +msgstr "" + +#: ../admin/sql_users_list.php:37 ../class/m_mysql.php:124 +msgid "MySQL Users" +msgstr "" + +#: ../admin/sql_users_list.php:48 +msgid "Rights" +msgstr "" + +#: ../admin/sql_users_list.php:58 +msgid "Manage the rights" +msgstr "" + +#: ../admin/sql_users_password.php:68 +msgid "Change user password" +msgstr "" + +#: ../admin/sql_users_rights.php:38 +#, php-format +msgid "MySQL Rights for %s" +msgstr "" + +#: ../admin/sql_users_rights.php:89 +msgid "Reverse selection" +msgstr "" + +#: ../admin/sql_users_rights.php:103 +msgid "Apply" +msgstr "" + +#: ../admin/stats_members.php:32 +msgid "" +"Image_Graph not installed. use 'aptitude install php-pear' then 'pear " +"install --alldeps Image_Graph-devel' to see the graph." +msgstr "" + +#: ../admin/stats_members.php:41 +msgid "Account creation per month" +msgstr "" + +#: ../admin/stats_members.php:54 +msgid "before the month" +msgstr "" + +#: ../admin/stats_members.php:56 +msgid "during the month" +msgstr "" + +#: ../admin/vm.php:52 ../class/m_lxc.php:60 +msgid "Console access" +msgstr "" + +#: ../admin/vm.php:69 +msgid "You can start a virtual machine." +msgstr "" + +#: ../admin/vm.php:72 +msgid "Click here to start a virtual machine." +msgstr "" + +#: ../admin/vm.php:78 +msgid "Start time" +msgstr "" + +#: ../admin/vm.php:79 +msgid "SSH Fingerprint" +msgstr "" + +#: ../admin/vm.php:80 +msgid "Useful command" +msgstr "" + +#: ../admin/vm.php:86 +msgid "You can stop your virtual machine." +msgstr "" + +#: ../admin/vm.php:89 +msgid "Click here to stop your running virtual machine." +msgstr "" + +#: ../admin/vm.php:99 +msgid "Tips" +msgstr "" + +#: ../admin/vm.php:104 +msgid "Available softwares" +msgstr "" + +#: ../admin/vm.php:105 +msgid "Remotely start/stop a VM" +msgstr "" + +#: ../admin/vm.php:110 +msgid "" +"You can script the launch the console access in command line by using this " +"url:" +msgstr "" + +#: ../admin/vm.php:112 +msgid "You can halt the vm by using:" +msgstr "" + +#: ../admin/vm.php:114 +msgid "" +"And you can see existing vm information (if the vm is running) by using:" +msgstr "" + +#: ../admin/vm.php:116 +msgid "" +"Warning: if you do not use HTTPS, your password will be transfered without " +"any protection" +msgstr "" + +#: ../admin/vm.php:120 +msgid "To access a remote console with SSH, you can use Putty." +msgstr "" + +#: ../admin/vm.php:122 +msgid "To transfer files, you can use Filezilla in SFTP mode." +msgstr "" + +#: ../class/functions.php:281 +msgid "Bytes" +msgstr "" + +#: ../class/functions.php:283 +msgid "Byte" +msgstr "" + +#: ../class/functions.php:288 +msgid "Kb" +msgstr "" + +#: ../class/functions.php:292 +msgid "Mb" +msgstr "" + +#: ../class/functions.php:296 +msgid "Gb" +msgstr "" + +#: ../class/functions.php:298 +msgid "Tb" +msgstr "" + +#: ../class/functions.php:389 +msgid "year" +msgstr "" + +#: ../class/functions.php:389 +msgid "years" +msgstr "" + +#: ../class/functions.php:391 +msgid "month" +msgstr "" + +#: ../class/functions.php:391 +msgid "months" +msgstr "" + +#: ../class/functions.php:414 +msgid "Not managed" +msgstr "" + +#: ../class/functions.php:541 ../class/functions.php:543 +msgid "Previous Page" +msgstr "" + +#: ../class/functions.php:597 ../class/functions.php:599 +msgid "Next Page" +msgstr "" + +#: ../class/functions.php:621 +msgid "Clic here to generate a password" +msgstr "" + +#: ../class/functions.php:656 ../class/functions.php:657 +msgid "Choose a folder..." +msgstr "" + +#: ../class/m_action.php:156 +msgid "Error setting actions" +msgstr "" + +#: ../class/m_action.php:168 +msgid "Error selecting old actions" +msgstr "" + +#: ../class/m_action.php:181 +msgid "Error purging old actions" +msgstr "" + +#: ../class/m_admin.php:60 +msgid "This TLD is forbidden" +msgstr "" + +#: ../class/m_admin.php:61 +msgid "primary DNS is checked in WHOIS db" +msgstr "" + +#: ../class/m_admin.php:62 +msgid "primary & secondary DNS are checked in WHOIS db" +msgstr "" + +#: ../class/m_admin.php:63 +msgid "Domain must exist, but don't do any DNS check" +msgstr "" + +#: ../class/m_admin.php:64 +msgid "Domain can be installed, no check at all" +msgstr "" + +#: ../class/m_admin.php:65 +msgid "Domain can be installed, force NO DNS hosting" +msgstr "" + +#: ../class/m_admin.php:75 +msgid "Administration" +msgstr "" + +#: ../class/m_admin.php:83 +msgid "Manage AlternC accounts" +msgstr "" + +#: ../class/m_admin.php:88 +msgid "User Quotas" +msgstr "" + +#: ../class/m_admin.php:104 ../class/m_mysql.php:130 +msgid "PhpMyAdmin" +msgstr "" + +#: ../class/m_admin.php:111 +msgid "Switch debug Off" +msgstr "" + +#: ../class/m_admin.php:111 +msgid "Switch debug On" +msgstr "" + +#: ../class/m_admin.php:118 +msgid "Applying..." +msgstr "" + +#: ../class/m_admin.php:119 +msgid "Domain changes are already applying" +msgstr "" + +#: ../class/m_admin.php:125 +msgid "Apply changes" +msgstr "" + +#: ../class/m_admin.php:128 +msgid "" +"Server configuration changes are applied every 5 minutes. Do you want to do " +"it right now?" +msgstr "" + +#: ../class/m_admin.php:174 ../class/m_admin.php:224 ../class/m_admin.php:288 +#: ../class/m_admin.php:364 ../class/m_admin.php:405 ../class/m_admin.php:436 +#: ../class/m_admin.php:491 ../class/m_admin.php:657 ../class/m_admin.php:696 +#: ../class/m_admin.php:720 ../class/m_admin.php:746 +msgid "-- Only administrators can access this page! --" +msgstr "" + +#: ../class/m_admin.php:322 +msgid "" +"Invalid pattern type provided. Are you even performing a legitimate action?" +msgstr "" + +#: ../class/m_admin.php:372 +msgid "Subject, message and sender are mandatory" +msgstr "" + +#: ../class/m_admin.php:377 +msgid "Sender is syntaxically incorrect" +msgstr "" + +#: ../class/m_admin.php:448 +msgid "-- Only administrators can do that! --" +msgstr "" + +#: ../class/m_admin.php:454 +msgid "You don't seem to be allowed to delegate this domain" +msgstr "" + +#: ../class/m_admin.php:495 +msgid "Missing db_server field" +msgstr "" + +#: ../class/m_admin.php:499 ../class/m_admin.php:504 +msgid "All fields are mandatory" +msgstr "" + +#: ../class/m_admin.php:508 +msgid "Please enter a valid email address" +msgstr "" + +#: ../class/m_admin.php:514 +msgid "Login can only contains characters a-z and 0-9" +msgstr "" + +#: ../class/m_admin.php:521 +msgid "The login is too long (14 chars max)" +msgstr "" + +#: ../class/m_admin.php:526 +msgid "Login can only contains characters a-z, 0-9 and -" +msgstr "" + +#: ../class/m_admin.php:572 +msgid "This login already exists" +msgstr "" + +#: ../class/m_admin.php:589 +#, php-format +msgid "query failed: %s " +msgstr "" + +#: ../class/m_admin.php:616 +#, php-format +msgid "New account %s from %s on %s" +msgstr "" + +#: ../class/m_admin.php:621 +#, php-format +msgid "Cannot send email to %s" +msgstr "" + +#: ../class/m_admin.php:625 +#, php-format +msgid "Query failed: %s" +msgstr "" + +#: ../class/m_admin.php:898 +msgid "This account is ALREADY an administrator account" +msgstr "" + +#: ../class/m_admin.php:920 +msgid "This account is NOT an administrator account!" +msgstr "" + +#: ../class/m_admin.php:1061 +#, php-format +msgid "Domain '%s' not found." +msgstr "" + +#: ../class/m_admin.php:1080 ../class/m_admin.php:1112 +#: ../class/m_admin.php:1162 +msgid "This TLD does not exist" +msgstr "" + +#: ../class/m_admin.php:1133 +msgid "The TLD name is mandatory" +msgstr "" + +#: ../class/m_admin.php:1140 +msgid "This TLD already exist" +msgstr "" + +#: ../class/m_admin.php:1275 +msgid "Please enter a login" +msgstr "" + +#: ../class/m_admin.php:1285 +msgid "-- Program error -- The requested password policy does not exist!" +msgstr "" + +#: ../class/m_admin.php:1293 +msgid "The password length is too short according to the password policy" +msgstr "" + +#: ../class/m_admin.php:1298 +msgid "The password is too long according to the password policy" +msgstr "" + +#: ../class/m_admin.php:1308 +msgid "" +"The password policy prevents you to use your login name inside your password" +msgstr "" + +#: ../class/m_admin.php:1332 +msgid "" +"Your password contains not enough different classes of character, between " +"low-case, up-case, figures and special characters." +msgstr "" + +#: ../class/m_authip.php:338 +msgid "Object not available" +msgstr "" + +#: ../class/m_authip.php:347 +#, php-format +msgid "Can't identified class for the protocole %s" +msgstr "" + +#: ../class/m_bro.php:68 +msgid "1 column, detailed" +msgstr "" + +#: ../class/m_bro.php:68 +msgid "2 columns, short" +msgstr "" + +#: ../class/m_bro.php:68 +msgid "3 columns, short" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "tar.Z (Unix)" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "tar.bz2 (Linux)" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "tgz (Linux)" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "zip (Windows/Dos)" +msgstr "" + +#: ../class/m_bro.php:71 +msgid "Edit the newly created file" +msgstr "" + +#: ../class/m_bro.php:71 +msgid "Go back to the file manager" +msgstr "" + +#: ../class/m_bro.php:186 +msgid "This directory do not exist" +msgstr "" + +#: ../class/m_bro.php:365 ../class/m_bro.php:1040 +msgid "Cannot create the requested directory. Please check the permissions" +msgstr "" + +#: ../class/m_bro.php:371 ../class/m_bro.php:388 ../class/m_bro.php:413 +#: ../class/m_bro.php:437 ../class/m_bro.php:469 ../class/m_bro.php:479 +#: ../class/m_bro.php:509 ../class/m_bro.php:546 ../class/m_bro.php:587 +#: ../class/m_bro.php:625 ../class/m_bro.php:630 ../class/m_bro.php:721 +#: ../class/m_bro.php:868 ../class/m_bro.php:900 +msgid "File or folder name is incorrect" +msgstr "" + +#: ../class/m_bro.php:393 ../class/m_bro.php:558 +msgid "Cannot create the requested file. Please check the permissions" +msgstr "" + +#: ../class/m_bro.php:483 ../class/m_bro.php:634 +msgid "You cannot move or copy a file to the same folder" +msgstr "" + +#: ../class/m_bro.php:610 +#, php-format +msgid "" +"I cannot find a way to extract the file %s, it is an unsupported compressed " +"format" +msgstr "" + +#: ../class/m_bro.php:717 +msgid "Cannot read the requested file. Please check the permissions" +msgstr "" + +#: ../class/m_bro.php:792 +msgid "File not in authorized directory" +msgstr "" + +#: ../class/m_bro.php:895 +msgid "Cannot edit the requested file. Please check the permissions" +msgstr "" + +#: ../class/m_cron.php:40 +msgid "Daily" +msgstr "" + +#: ../class/m_cron.php:41 +msgid "Hour" +msgstr "" + +#: ../class/m_cron.php:42 +msgid "Half Hour" +msgstr "" + +#: ../class/m_cron.php:125 +msgid "URL not valid" +msgstr "" + +#: ../class/m_cron.php:133 +msgid "Email address is not valid" +msgstr "" + +#: ../class/m_cron.php:142 +msgid "You quota of cron entries is over. You cannot create more cron entries" +msgstr "" + +#: ../class/m_cron.php:151 +msgid "Identity problem" +msgstr "" + +#: ../class/m_dom.php:178 +msgid "Err: failed to prepare the zone" +msgstr "" + +#: ../class/m_dom.php:200 +msgid "Missing domain name" +msgstr "" + +#: ../class/m_dom.php:495 +msgid "The name MUST contain only letter and digits" +msgstr "" + +#: ../class/m_dom.php:515 ../class/m_dom.php:1291 +msgid "" +"The parameters for this subdomain and domain type are invalid. Please check " +"for subdomain entries incompatibility" +msgstr "" + +#: ../class/m_dom.php:629 ../class/m_dom.php:1054 ../class/m_dom.php:1119 +#: ../class/m_dom.php:1262 ../class/m_dom.php:1351 ../class/m_dom.php:1395 +#: ../class/m_dom.php:1710 +msgid "--- Program error --- No lock on the domains!" +msgstr "" + +#: ../class/m_dom.php:636 ../class/m_dom.php:1059 ../class/m_dom.php:1286 +#: ../class/m_dom.php:1420 +msgid "The domain name is syntaxically incorrect" +msgstr "" + +#: ../class/m_dom.php:642 ../class/m_dom.php:683 ../class/m_dom.php:1498 +msgid "" +"The requested domain is forbidden in this server, please contact the " +"administrator" +msgstr "" + +#: ../class/m_dom.php:646 +msgid "This domain is the server's domain! You cannot host it on your account!" +msgstr "" + +#: ../class/m_dom.php:651 ../class/m_dom.php:656 +msgid "The domain already exist" +msgstr "" + +#: ../class/m_dom.php:663 ../class/m_dom.php:1402 +msgid "" +"The last member of the domain name is incorrect or cannot be hosted in that " +"server" +msgstr "" + +#: ../class/m_dom.php:667 ../class/m_dom.php:671 +msgid "The domain cannot be found in the whois database" +msgstr "" + +#: ../class/m_dom.php:690 +msgid "Your domain quota is over, you cannot create more domain names" +msgstr "" + +#: ../class/m_dom.php:697 +msgid "An unexpected error occured when creating the domain" +msgstr "" + +#: ../class/m_dom.php:706 ../class/m_dom.php:1065 +#, php-format +msgid "Domain '%s' not found" +msgstr "" + +#: ../class/m_dom.php:820 +msgid "Could not delete default type" +msgstr "" + +#: ../class/m_dom.php:972 +msgid "The Whois database is unavailable, please try again later" +msgstr "" + +#: ../class/m_dom.php:979 ../class/m_dom.php:1406 +msgid "The domain cannot be found in the Whois database" +msgstr "" + +#: ../class/m_dom.php:1124 ../class/m_dom.php:1355 +msgid "The sub-domain does not exist" +msgstr "" + +#: ../class/m_dom.php:1155 +msgid "invalid url" +msgstr "" + +#: ../class/m_dom.php:1165 +msgid "The folder you entered is incorrect or does not exist" +msgstr "" + +#: ../class/m_dom.php:1174 ../class/m_dom.php:1182 +msgid "The ip address is invalid" +msgstr "" + +#: ../class/m_dom.php:1190 +msgid "The name you entered is incorrect" +msgstr "" + +#: ../class/m_dom.php:1198 +msgid "The TXT value you entered is incorrect" +msgstr "" + +#: ../class/m_dom.php:1203 +msgid "Invalid domain type selected, please check" +msgstr "" + +#: ../class/m_dom.php:1274 +msgid "" +"There is some forbidden characters in the sub domain (only A-Z 0-9 and - are " +"allowed)" +msgstr "" + +#: ../class/m_dom.php:1313 ../class/m_dom.php:1324 +msgid "Cannot write to the destination folder" +msgstr "" + +#: ../class/m_dom.php:1410 +msgid "" +"The DNS of this domain do not match the server's DNS. Please change your " +"domain's DNS before you install it again" +msgstr "" + +#: ../class/m_dom.php:1425 +#, php-format +msgid "The domain name %s does not exist" +msgstr "" + +#: ../class/m_dom.php:1431 +msgid "No change has been requested..." +msgstr "" + +#: ../class/m_dom.php:1439 ../class/m_dom.php:1444 +msgid "" +"There is no MX record pointing to this server, and you are asking us to host " +"the mail here. Make sure to update your MX entries or no mail will be " +"received" +msgstr "" + +#: ../class/m_dom.php:1491 ../class/m_dom.php:1515 +msgid "The IP address you entered is incorrect" +msgstr "" + +#: ../class/m_dom.php:1588 ../class/m_dom.php:1594 ../class/m_dom.php:1612 +#: ../class/m_dom.php:1618 +msgid "This domain is not installed in your account" +msgstr "" + +#: ../class/m_dom.php:1660 +msgid "The specified slave account already exists" +msgstr "" + +#: ../class/m_dom.php:1691 +msgid "--- Program error --- Lock already obtained!" +msgstr "" + +#: ../class/m_dom.php:1831 +msgid "Locally hosted" +msgstr "" + +#: ../class/m_dom.php:1832 +msgid "URL redirection" +msgstr "" + +#: ../class/m_dom.php:1833 +msgid "IPv4 redirect" +msgstr "" + +#: ../class/m_dom.php:1834 +msgid "Webmail access" +msgstr "" + +#: ../class/m_dom.php:1835 +msgid "Squirrelmail Webmail access" +msgstr "" + +#: ../class/m_dom.php:1836 +msgid "Roundcube Webmail access" +msgstr "" + +#: ../class/m_dom.php:1837 +msgid "IPv6 redirect" +msgstr "" + +#: ../class/m_dom.php:1838 +msgid "CNAME DNS entry" +msgstr "" + +#: ../class/m_dom.php:1839 +msgid "TXT DNS entry" +msgstr "" + +#: ../class/m_dom.php:1840 +msgid "MX DNS entry" +msgstr "" + +#: ../class/m_dom.php:1841 +msgid "secondary MX DNS entry" +msgstr "" + +#: ../class/m_dom.php:1842 +msgid "Default mail server" +msgstr "" + +#: ../class/m_dom.php:1843 +msgid "Default backup mail server" +msgstr "" + +#: ../class/m_dom.php:1844 +msgid "AlternC panel access" +msgstr "" + +#: ../class/m_err.php:66 ../class/m_err.php:98 +msgid "err_" +msgstr "" + +#: ../class/m_ftp.php:56 ../class/m_ftp.php:447 +msgid "FTP accounts" +msgstr "" + +#: ../class/m_ftp.php:105 +msgid "This account do not exist or is not of this account" +msgstr "" + +#: ../class/m_ftp.php:117 +msgid "Error during update" +msgstr "" + +#: ../class/m_ftp.php:151 +msgid "No FTP account found" +msgstr "" + +#: ../class/m_ftp.php:187 ../class/m_ftp.php:262 ../class/m_ftp.php:322 +msgid "This FTP account does not exist" +msgstr "" + +#: ../class/m_ftp.php:217 +#, php-format +msgid "FTP login is incorrect: too many '%s'" +msgstr "" + +#: ../class/m_ftp.php:224 +msgid "FTP login is incorrect" +msgstr "" + +#: ../class/m_ftp.php:271 ../class/m_ftp.php:351 +msgid "The chosen prefix is not allowed" +msgstr "" + +#: ../class/m_ftp.php:282 ../class/m_ftp.php:360 +msgid "This FTP account already exists" +msgstr "" + +#: ../class/m_ftp.php:290 ../class/m_ftp.php:372 +msgid "The directory cannot be created" +msgstr "" + +#: ../class/m_ftp.php:347 +msgid "Password can't be empty" +msgstr "" + +#: ../class/m_ftp.php:388 +msgid "Your FTP account quota is over. You cannot create more ftp accounts" +msgstr "" + +#: ../class/m_hta.php:60 +msgid "Protected folders" +msgstr "" + +#: ../class/m_hta.php:81 ../class/m_hta.php:291 ../class/m_hta.php:332 +#, php-format +msgid "The folder '%s' does not exist" +msgstr "" + +#: ../class/m_hta.php:89 ../class/m_hta.php:94 ../class/m_hta.php:104 +#: ../class/m_hta.php:253 ../class/m_hta.php:298 ../class/m_hta.php:347 +msgid "File already exist" +msgstr "" + +#: ../class/m_hta.php:98 +msgid "Restricted area" +msgstr "" + +#: ../class/m_hta.php:126 +msgid "No protected folder" +msgstr "" + +#: ../class/m_hta.php:208 +#, php-format +msgid "I cannot delete the file '%s/.htaccess'" +msgstr "" + +#: ../class/m_hta.php:212 +#, php-format +msgid "I cannot delete the file '%s/.htpasswd'" +msgstr "" + +#: ../class/m_hta.php:231 +msgid "Please enter a user" +msgstr "" + +#: ../class/m_hta.php:261 +#, php-format +msgid "The user '%s' already exist for this folder" +msgstr "" + +#: ../class/m_hta.php:273 +msgid "Please enter a valid username" +msgstr "" + +#: ../class/m_hta.php:402 +msgid "An incompatible .htaccess file exists in this folder" +msgstr "" + +#: ../class/m_log.php:60 +msgid "Logs" +msgstr "" + +#: ../class/m_lxc.php:133 +msgid "VM already started" +msgstr "" + +#: ../class/m_mail.php:95 +msgid "Email Addresses" +msgstr "" + +#: ../class/m_mail.php:158 ../class/m_mail.php:243 ../class/m_mail.php:328 +#: ../class/m_mail.php:455 ../class/m_mail.php:509 +msgid "The email you entered is syntaxically incorrect" +msgstr "" + +#: ../class/m_mail.php:191 +msgid "Email account password" +msgstr "" + +#: ../class/m_mail.php:281 +msgid "No email found for this query" +msgstr "" + +#: ../class/m_mail.php:340 +msgid "You cannot create email addresses: your quota is over" +msgstr "" + +#: ../class/m_mail.php:346 +msgid "This email address already exists" +msgstr "" + +#: ../class/m_mail.php:352 +msgid "An unexpected error occured when creating the email" +msgstr "" + +#: ../class/m_mail.php:406 +msgid "This email is not yours, you can't change anything on it" +msgstr "" + +#: ../class/m_mail.php:469 ../class/m_mail.php:875 +#, php-format +msgid "The email %s does not exist, it can't be deleted" +msgstr "" + +#: ../class/m_mail.php:473 +#, php-format +msgid "The email %s is already marked for deletion, it can't be deleted" +msgstr "" + +#: ../class/m_mail.php:482 +#, php-format +msgid "The email %s has been marked for deletion" +msgstr "" + +#: ../class/m_mail.php:488 +#, php-format +msgid "The email %s has been successfully deleted" +msgstr "" + +#: ../class/m_mail.php:520 +#, php-format +msgid "The email %s does not exist, it can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:524 +#, php-format +msgid "The email %s is special, it can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:528 +#, php-format +msgid "" +"Sorry, deletion of email %s is already in progress, or not marked for " +"deletion, it can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:537 +#, php-format +msgid "The email %s has been undeleted" +msgstr "" + +#: ../class/m_mail.php:540 +#, php-format +msgid "-- Program Error -- The email %s can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:621 +msgid "" +"There is forbidden characters in your email address. You can't make it a POP/" +"IMAP account, you can only use it as redirection to other emails" +msgstr "" + +#: ../class/m_mail.php:641 +msgid "" +"You set a quota smaller than the current mailbox size. Since it's not " +"allowed, we set the quota to the current mailbox size" +msgstr "" + +#: ../class/m_mail.php:826 +msgid "The slave MX account was not found" +msgstr "" + +#: ../class/m_mem.php:95 ../class/m_mem.php:101 ../class/m_mem.php:168 +#: ../class/m_mem.php:299 +msgid "User or password incorrect" +msgstr "" + +#: ../class/m_mem.php:105 ../class/m_mem.php:483 +msgid "This account is locked, contact the administrator" +msgstr "" + +#: ../class/m_mem.php:112 ../class/m_mem.php:271 +msgid "" +"This website is currently under maintenance, login is currently disabled." +msgstr "" + +#: ../class/m_mem.php:127 +msgid "Your IP isn't allowed to connect" +msgstr "" + +#: ../class/m_mem.php:243 +msgid "Missing password" +msgstr "" + +#: ../class/m_mem.php:252 +msgid "Identity lost or unknown, please login" +msgstr "" + +#: ../class/m_mem.php:258 ../class/m_mem.php:347 +msgid "Session unknown, contact the administrator" +msgstr "" + +#: ../class/m_mem.php:264 ../class/m_mem.php:352 +msgid "IP address incorrect, please contact the administrator" +msgstr "" + +#: ../class/m_mem.php:341 +msgid "Cookie incorrect, please accept the session cookie" +msgstr "" + +#: ../class/m_mem.php:388 +msgid "You are not allowed to change your password." +msgstr "" + +#: ../class/m_mem.php:392 +msgid "The old password is incorrect" +msgstr "" + +#: ../class/m_mem.php:396 ../class/m_mem.php:445 +msgid "The new passwords are differents, please retry" +msgstr "" + +#: ../class/m_mem.php:420 +msgid "You must be a system administrator to do this." +msgstr "" + +#: ../class/m_mem.php:440 +msgid "This account is locked, contact the administrator." +msgstr "" + +#: ../class/m_mem.php:448 +#, php-format +msgid "" +"Hello,\n" +"\n" +"You requested the modification of your password for your\n" +"account %s on %s\n" +"Here are your username and password to access the panel :\n" +"\n" +"--------------------------------------\n" +"\n" +"Username : %s\n" +"Password : %s\n" +"\n" +"--------------------------------------\n" +"\n" +"Note : if you didn't requested that modification, it means that\n" +"someone did it instead of you. You can choose to ignore this message.\n" +"If it happens again, please contact your server's Administrator. \n" +"\n" +"Cordially.\n" +msgstr "" + +#: ../class/m_mem.php:493 +#, php-format +msgid "" +"Hello,\n" +"\n" +"Someone (maybe you) requested an email's address modification of the " +"account\n" +"%s on %s\n" +"To confirm your request, go to this url :\n" +"\n" +"%s\n" +"\n" +"(Warning : if this address is displayed on 2 lines, don't forgot to\n" +"take it on one line).\n" +"The panel will ask you the key given when the email address\n" +"modification was requested.\n" +"\n" +"If you didn't asked for this modification, it means that someone\n" +"did it instead of you. You can choose to ignore this message. If it happens\n" +"again, please contact your server's administrator.\n" +"\n" +"Cordially.\n" +msgstr "" + +#: ../class/m_mem.php:534 +msgid "The information you entered is incorrect." +msgstr "" + +#: ../class/m_menu.php:113 +msgid "Home / Information" +msgstr "" + +#: ../class/m_menu.php:120 +msgid "Logout" +msgstr "" + +#: ../class/m_menu.php:127 +msgid "Online help" +msgstr "" + +#: ../class/m_menu.php:135 +msgid "Languages" +msgstr "" + +#: ../class/m_mysql.php:49 +msgid "" +"There are no databases in db_servers for this user. Please contact your " +"administrator." +msgstr "" + +#: ../class/m_mysql.php:110 +msgid "MySQL" +msgstr "" + +#: ../class/m_mysql.php:119 +msgid "Databases" +msgstr "" + +#: ../class/m_mysql.php:178 +msgid "Cannot connect to PhpMyAdmin" +msgstr "" + +#: ../class/m_mysql.php:219 ../class/m_mysql.php:385 +#, php-format +msgid "Database %s not found" +msgstr "" + +#: ../class/m_mysql.php:246 +msgid "Your databases quota is over. You cannot create more databases" +msgstr "" + +#: ../class/m_mysql.php:257 +msgid "Database can't have empty suffix" +msgstr "" + +#: ../class/m_mysql.php:262 ../class/m_mysql.php:380 ../class/m_mysql.php:462 +msgid "Database name can contain only letters and numbers" +msgstr "" + +#: ../class/m_mysql.php:268 +msgid "Database name cannot exceed 64 characters" +msgstr "" + +#: ../class/m_mysql.php:273 +#, php-format +msgid "Database %s already exists" +msgstr "" + +#: ../class/m_mysql.php:291 +msgid "" +"There is a problem with the special PhpMyAdmin user. Contact the " +"administrator" +msgstr "" + +#: ../class/m_mysql.php:310 +msgid "An error occured. The database could not be created" +msgstr "" + +#: ../class/m_mysql.php:328 +msgid "The database was not found. I can't delete it" +msgstr "" + +#: ../class/m_mysql.php:367 +msgid "User aren't allowed to configure their backups" +msgstr "" + +#: ../class/m_mysql.php:398 +msgid "You have to choose how many backups you want to keep" +msgstr "" + +#: ../class/m_mysql.php:402 +msgid "Directory does not exist" +msgstr "" + +#: ../class/m_mysql.php:420 ../class/m_mysql.php:465 +msgid "Database not found" +msgstr "" + +#: ../class/m_mysql.php:427 ../class/m_mysql.php:711 +msgid "The password is mandatory" +msgstr "" + +#: ../class/m_mysql.php:432 +msgid "MySQL password cannot exceed 16 characters" +msgstr "" + +#: ../class/m_mysql.php:472 +msgid "Databases rights are not correct" +msgstr "" + +#: ../class/m_mysql.php:477 +msgid "The username can contain only letters and numbers." +msgstr "" + +#: ../class/m_mysql.php:483 +msgid "Database user not found" +msgstr "" + +#: ../class/m_mysql.php:495 +msgid "Could not grant rights" +msgstr "" + +#: ../class/m_mysql.php:513 +msgid "No file specified" +msgstr "" + +#: ../class/m_mysql.php:520 ../class/m_mysql.php:524 +msgid "File not found" +msgstr "" + +#: ../class/m_mysql.php:707 +msgid "The username is mandatory" +msgstr "" + +#: ../class/m_mysql.php:715 ../class/m_mysql.php:792 +msgid "The username can contain only letters and numbers" +msgstr "" + +#: ../class/m_mysql.php:722 +msgid "MySQL username cannot exceed 16 characters" +msgstr "" + +#: ../class/m_mysql.php:727 +msgid "The database user already exists" +msgstr "" + +#: ../class/m_mysql.php:731 ../class/m_mysql.php:765 +msgid "The passwords do not match" +msgstr "" + +#: ../class/m_mysql.php:802 +msgid "The username was not found" +msgstr "" + +#: ../class/m_mysql.php:831 +msgid "This user does not exist in the MySQL/User database" +msgstr "" + +#: ../class/m_mysql.php:1105 +msgid "The directory could not be created" +msgstr "" + +#: ../class/m_piwik.php:40 +msgid "Piwik statistics" +msgstr "" + +#: ../class/m_piwik.php:45 +msgid "Piwik Users" +msgstr "" + +#: ../class/m_piwik.php:46 +msgid "Piwik Sites" +msgstr "" + +#: ../class/m_piwik.php:81 +msgid "Statistics through Piwik accounts" +msgstr "" + +#: ../class/m_piwik.php:193 ../class/m_piwik.php:316 +msgid "You are not allowed to delete the statistics of this website" +msgstr "" + +#: ../class/m_piwik.php:366 +msgid "Unable to reach the API" +msgstr "" + +#: ../class/m_piwik.php:372 +msgid "Error while decoding response from the API" +msgstr "" + +#: ../class/m_piwik.php:378 +msgid "Other format than JSON is not implemented yet" +msgstr "" + +#: ../class/m_quota.php:65 +msgid "Show my quotas" +msgstr "" + +#: ../class/m_quota.php:78 +#, php-format +msgid "%s%% of %s" +msgstr "" + +#: ../class/m_quota.php:78 ../class/m_quota.php:105 ../class/m_quota.php:196 +msgid "quota_" +msgstr "" + +#: ../class/m_quota.php:236 +msgid "Error writing the quota entry!" +msgstr "" + +#: ../class/m_quota.php:537 +msgid "B" +msgstr "" + +#: ../class/m_quota.php:537 +msgid "GB" +msgstr "" + +#: ../class/m_quota.php:537 +msgid "KB" +msgstr "" + +#: ../class/mime.php:135 +msgid "CSS Stylesheet" +msgstr "" + +#: ../class/mime.php:136 +msgid "Comma Separated Values data" +msgstr "" + +#: ../class/mime.php:137 +msgid "DIA Diagram" +msgstr "" + +#: ../class/mime.php:138 +msgid "Word Document" +msgstr "" + +#: ../class/mime.php:139 +msgid "Word Document Template" +msgstr "" + +#: ../class/mime.php:140 +msgid "Encapsulated Postscript" +msgstr "" + +#: ../class/mime.php:141 +msgid "GIF Image" +msgstr "" + +#: ../class/mime.php:142 +msgid "Macintosh Executable" +msgstr "" + +#: ../class/mime.php:143 ../class/mime.php:144 +msgid "HTML Document" +msgstr "" + +#: ../class/mime.php:145 ../class/mime.php:146 +msgid "JPEG Image" +msgstr "" + +#: ../class/mime.php:147 +msgid "Music Playlist" +msgstr "" + +#: ../class/mime.php:148 +msgid "MP3 Music File" +msgstr "" + +#: ../class/mime.php:149 +msgid "Ogg Music File" +msgstr "" + +#: ../class/mime.php:150 +msgid "Acrobat PDF" +msgstr "" + +#: ../class/mime.php:151 +msgid "PHP Source" +msgstr "" + +#: ../class/mime.php:152 +msgid "PNG Image" +msgstr "" + +#: ../class/mime.php:153 ../class/mime.php:154 +msgid "Powerpoint Slideshow" +msgstr "" + +#: ../class/mime.php:155 +msgid "Postscript Document" +msgstr "" + +#: ../class/mime.php:156 +msgid "Photoshop Image" +msgstr "" + +#: ../class/mime.php:157 +msgid "Rar Compressed Files" +msgstr "" + +#: ../class/mime.php:158 +msgid "Rich Text Document" +msgstr "" + +#: ../class/mime.php:159 +msgid "OpenOffice Spreadsheet" +msgstr "" + +#: ../class/mime.php:160 +msgid "OpenOffice Drawing" +msgstr "" + +#: ../class/mime.php:161 +msgid "OpenOffice Presentation" +msgstr "" + +#: ../class/mime.php:162 +msgid "OpenOffice Writer" +msgstr "" + +#: ../class/mime.php:163 ../class/mime.php:164 +msgid "TIFF Image" +msgstr "" + +#: ../class/mime.php:165 +msgid "Text Document" +msgstr "" + +#: ../class/mime.php:166 ../class/mime.php:167 +msgid "Virtual Card" +msgstr "" + +#: ../class/mime.php:168 +msgid "Gimp Image" +msgstr "" + +#: ../class/mime.php:169 +msgid "Excel Spreadsheet" +msgstr "" + +#: ../class/mime.php:170 +msgid "Zip Compressed Files" +msgstr "" + +#: ../class/mime.php:171 +msgid "Flash Animation" +msgstr "" + +#: ../class/mime.php:172 ../class/mime.php:173 ../class/mime.php:174 +msgid "Real Media File" +msgstr "" diff --git a/ssl/panel/locales/nl_NL/LC_MESSAGES/alternc.mo b/ssl/panel/locales/nl_NL/LC_MESSAGES/alternc.mo new file mode 100644 index 0000000000000000000000000000000000000000..7cb3e7ce67686a3e348e0d1deb27326d84b2437a GIT binary patch literal 89312 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

^UQ$~(Fs!=DaM~U#p)AMdgK|$ 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 PXCsf^o!+{81fc&5f8|vJ literal 0 HcmV?d00001 diff --git a/ssl/panel/locales/nl_NL/LC_MESSAGES/messages.po b/ssl/panel/locales/nl_NL/LC_MESSAGES/messages.po new file mode 100644 index 00000000..51301302 --- /dev/null +++ b/ssl/panel/locales/nl_NL/LC_MESSAGES/messages.po @@ -0,0 +1,4969 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR AlternC Team +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Report-Msgid-Bugs-To: i18n@alternc.org\n" +"POT-Creation-Date: 2013-10-18 15:42+0200\n" +"PO-Revision-Date: 2012-10-17 09:52+0200\n" +"Last-Translator: Benjamin Sonntag \n" +"Language-Team: Dutch \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bits\n" +"X-Generator: Emacs 21\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#: ../../squirrelmail/alternc_changepass/change.php:39 +msgid "Can't connect to MySQL server on AlternC!" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:66 +msgid "Your new passwords are differents, pleasy try again." +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:72 +msgid "" +"Your account has not been found, please try again later or ask an " +"administrator." +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:75 +msgid "Your current password is incorrect, please try again." +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:88 +msgid "" +"Your password has been successfully changed. Don't forget to change it in " +"your mail software if you are using one (Outlook, Mozilla, Thunderbird, " +"Eudora ...)" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:111 +msgid "Changing your mail password" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:115 +msgid "Old Password:" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:120 +msgid "New Password:" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:124 +msgid "Verify New Password:" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:129 +msgid "Change my mail password" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/setup.php:21 +msgid "Change Password" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/setup.php:23 +msgid "Change the password of your email account." +msgstr "" + +#: ../admin/about.php:36 +msgid "About AlternC" +msgstr "" + +#: ../admin/about.php:37 +msgid "Hosting control panel" +msgstr "" + +#: ../admin/about.php:41 +msgid "" +"AlternC is an automatic hosting software suite. It features a PHP-based " +"administration interface and scripts that manage server configuration.
It manages, among others, email, Web, Web statistics, and mailing list " +"services. It is available in many languages. It is a free software " +"distributed under GPL license." +msgstr "" + +#: ../admin/about.php:47 +msgid "Official website: " +msgstr "" + +#: ../admin/about.php:48 +msgid "Developer website: " +msgstr "" + +#: ../admin/about.php:49 +msgid "Help: " +msgstr "" + +#: ../admin/about.php:57 +msgid "You are currently using AlternC " +msgstr "" + +#: ../admin/adm_add.php:36 ../admin/adm_db_servers.php:30 +#: ../admin/adm_deactivate.php:35 ../admin/adm_deactivate.php:52 +#: ../admin/adm_defquotas.php:35 ../admin/adm_dnsweberror.php:33 +#: ../admin/adm_doadd.php:26 ../admin/adm_dodefquotas.php:35 +#: ../admin/adm_dodel.php:33 ../admin/adm_dodel.php:52 +#: ../admin/adm_doedit.php:35 ../admin/adm_doedit.php:59 +#: ../admin/adm_domlock.php:33 ../admin/adm_doms.php:33 +#: ../admin/adm_doms_def_type.php:5 ../admin/adm_domstype.php:33 +#: ../admin/adm_domstypedoedit.php:4 ../admin/adm_domstypeedit.php:32 +#: ../admin/adm_domstyperegenerate.php:4 ../admin/adm_donosu.php:33 +#: ../admin/adm_dorenew.php:34 ../admin/adm_dorenew.php:45 +#: ../admin/adm_dosu.php:33 ../admin/adm_edit.php:36 ../admin/adm_edit.php:48 +#: ../admin/adm_email.php:30 ../admin/adm_list.php:32 ../admin/adm_list.php:58 +#: ../admin/adm_lockpanel.php:33 ../admin/adm_login.php:86 +#: ../admin/adm_login.php:93 ../admin/adm_mxaccount.php:33 +#: ../admin/adm_panel.php:33 ../admin/adm_passpolicy.php:30 +#: ../admin/adm_quotadoedit.php:33 ../admin/adm_quotaedit.php:34 +#: ../admin/adm_slavedns.php:33 ../admin/adm_tld.php:33 +#: ../admin/adm_tldadd.php:33 ../admin/adm_tlddoadd.php:33 +#: ../admin/adm_tlddoedit.php:39 ../admin/adm_tldedit.php:33 +#: ../admin/adm_update_domains.php:34 ../admin/adm_variables.php:33 +#: ../admin/dom_subdel.php:46 ../admin/dom_subdodel.php:47 +#: ../admin/dom_subdoedit.php:53 ../admin/dom_subedit.php:49 +#: ../admin/quotas_users.php:13 ../class/reset_stats_conf.php:6 +msgid "This page is restricted to authorized staff" +msgstr "" + +#: ../admin/adm_add.php:54 +msgid "New AlternC account" +msgstr "" + +#: ../admin/adm_add.php:64 ../admin/adm_edit.php:69 +#: ../admin/adm_quotaedit.php:68 ../admin/ftp_edit.php:71 +#: ../admin/ftp_list.php:72 ../admin/hta_adduser.php:54 +#: ../admin/hta_edit.php:61 ../admin/hta_edit.php:98 ../admin/index.php:89 +#: ../admin/piwik_userlist.php:79 ../admin/sql_users_add.php:59 +msgid "Username" +msgstr "" + +#: ../admin/adm_add.php:68 +msgid "Initial password" +msgstr "" + +#: ../admin/adm_add.php:72 ../admin/adm_edit.php:89 ../admin/ftp_edit.php:88 +#: ../admin/hta_adduser.php:62 ../admin/hta_edit.php:106 +#: ../admin/hta_edituser.php:63 ../admin/mail_edit.php:97 +#: ../admin/sql_users_add.php:67 ../admin/sql_users_password.php:63 +msgid "Confirm password" +msgstr "" + +#: ../admin/adm_add.php:76 +msgid "Can he change its password" +msgstr "" + +#: ../admin/adm_add.php:78 ../admin/adm_domstype.php:82 +#: ../admin/adm_domstype.php:83 ../admin/adm_domstype.php:84 +#: ../admin/adm_domstype.php:85 ../admin/adm_domstype.php:86 +#: ../admin/adm_edit.php:78 ../admin/adm_edit.php:95 +#: ../admin/adm_passpolicy.php:113 ../admin/adm_passpolicy.php:157 +#: ../admin/dom_edit.php:231 ../admin/dom_edit.php:254 +#: ../admin/dom_subdel.php:71 ../admin/mail_edit.php:90 +#: ../admin/mail_list.php:164 ../admin/sql_bck.php:94 ../class/m_bro.php:70 +msgid "No" +msgstr "" + +#: ../admin/adm_add.php:79 ../admin/adm_domstype.php:82 +#: ../admin/adm_domstype.php:83 ../admin/adm_domstype.php:84 +#: ../admin/adm_domstype.php:85 ../admin/adm_domstype.php:86 +#: ../admin/adm_edit.php:79 ../admin/adm_edit.php:96 +#: ../admin/adm_passpolicy.php:114 ../admin/adm_passpolicy.php:157 +#: ../admin/dom_edit.php:230 ../admin/dom_edit.php:253 +#: ../admin/dom_subdel.php:70 ../admin/mail_edit.php:91 +#: ../admin/mail_list.php:209 ../admin/mail_list.php:220 +#: ../admin/mail_list.php:231 ../admin/mail_list.php:249 +#: ../admin/mail_list.php:260 ../admin/mail_list.php:271 +#: ../admin/mail_list.php:282 ../admin/sql_bck.php:95 ../class/m_bro.php:70 +msgid "Yes" +msgstr "" + +#: ../admin/adm_add.php:83 ../admin/adm_edit.php:100 +msgid "Notes" +msgstr "" + +#: ../admin/adm_add.php:87 ../admin/adm_edit.php:104 +msgid "First Name" +msgstr "" + +#: ../admin/adm_add.php:87 ../admin/adm_edit.php:104 +msgid "Surname" +msgstr "" + +#: ../admin/adm_add.php:91 ../admin/adm_edit.php:108 +msgid "Email address" +msgstr "" + +#: ../admin/adm_add.php:95 ../admin/adm_dodefquotas.php:48 +#: ../admin/adm_dodefquotas.php:50 ../admin/adm_dodefquotas.php:57 +#: ../admin/adm_dodefquotas.php:59 ../admin/adm_edit.php:112 +msgid "Account type" +msgstr "" + +#: ../admin/adm_add.php:105 +msgid "Wich database server for this user ?" +msgstr "" + +#: ../admin/adm_add.php:107 +msgid "Warning: you can't change it after the creation of the user." +msgstr "" + +#: ../admin/adm_add.php:124 +#, php-format +msgid "Install the domain" +msgstr "" + +#: ../admin/adm_add.php:140 +msgid "Create this AlternC account" +msgstr "" + +#: ../admin/adm_add.php:141 ../admin/adm_deactivate.php:75 +#: ../admin/adm_domstypeedit.php:134 ../admin/adm_edit.php:124 +#: ../admin/adm_quotaedit.php:88 ../admin/adm_tldadd.php:71 +#: ../admin/adm_tldedit.php:70 ../admin/bro_pref.php:150 +#: ../admin/browseforfolder.php:146 ../admin/browseforfolder2.php:142 +#: ../admin/ftp_del.php:83 ../admin/ftp_edit.php:98 +#: ../admin/hta_adduser.php:68 ../admin/hta_dodeluser.php:65 +#: ../admin/hta_edit.php:113 ../admin/mail_edit.php:116 +#: ../admin/mail_manage_catchall.php:122 ../admin/piwik_site_dodel.php:71 +#: ../admin/piwik_user_dodel.php:69 ../admin/sql_bck.php:108 +#: ../admin/sql_users_add.php:73 ../admin/sql_users_password.php:69 +#: ../admin/sql_users_rights.php:104 +msgid "Cancel" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:31 ../admin/ip_main.php:50 +#: ../class/m_authip.php:40 +msgid "Access security" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:39 +msgid "" +"The IP and subnet you have here are allowed for ALL users and ALL usages" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:39 +msgid "Warning" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:44 +msgid "Add an IP" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:44 ../admin/ip_main.php:174 +msgid "Add my current IP" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:47 ../admin/ip_main.php:177 +msgid "Cancel edit" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:50 +msgid "" +"Enter here the IP address you want.
IPv4, IPv6 and subnet allowed" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:54 +msgid "Add a comment" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:57 ../admin/adm_doms_def_type.php:88 +#: ../admin/bro_editor.php:89 ../admin/ftp_edit.php:97 +#: ../admin/ip_main.php:135 ../admin/ip_main.php:186 +#: ../admin/mail_manage_catchall.php:121 +msgid "Save" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:64 +msgid "IP" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:64 +msgid "Informations" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:64 ../admin/adm_doms_def_type.php:48 +#: ../admin/dom_edit.php:130 ../admin/ip_main.php:146 +msgid "Type" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:82 ../admin/adm_domstype.php:74 +#: ../admin/adm_list.php:200 ../admin/adm_list.php:222 +#: ../admin/adm_list.php:251 ../admin/adm_passpolicy.php:151 +#: ../admin/adm_tld.php:80 ../admin/dom_edit.php:140 ../admin/ftp_list.php:78 +#: ../admin/ip_main.php:164 ../admin/mail_list.php:150 +msgid "Edit" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:83 ../admin/adm_doms_def_type.php:60 +#: ../admin/adm_mxaccount.php:83 ../admin/adm_slavedns.php:101 +#: ../admin/adm_slavedns.php:145 ../admin/bro_main.php:285 +#: ../admin/cron.php:54 ../admin/dom_edit.php:123 ../admin/dom_edit.php:146 +#: ../admin/ftp_del.php:82 ../admin/hta_dodeluser.php:64 +#: ../admin/ip_main.php:79 ../admin/ip_main.php:165 +#: ../admin/piwik_site_dodel.php:70 ../admin/piwik_sitelist.php:128 +#: ../admin/piwik_user_dodel.php:68 ../admin/piwik_userlist.php:87 +msgid "Delete" +msgstr "" + +#: ../admin/adm_db_servers.php:35 +msgid "List of the databases servers" +msgstr "" + +#: ../admin/adm_db_servers.php:42 +msgid "Here the list of the available databases servers." +msgstr "" + +#: ../admin/adm_db_servers.php:49 +msgid "ID" +msgstr "" + +#: ../admin/adm_db_servers.php:50 ../admin/adm_domstype.php:58 +#: ../admin/adm_domstypeedit.php:74 ../admin/ip_main.php:146 +#: ../admin/ip_main.php:181 ../admin/logs_list.php:53 +msgid "Name" +msgstr "" + +#: ../admin/adm_db_servers.php:51 ../admin/vm.php:77 +msgid "Hostname" +msgstr "" + +#: ../admin/adm_db_servers.php:52 ../admin/adm_mxaccount.php:78 +#: ../admin/adm_mxaccount.php:95 ../admin/adm_slavedns.php:140 +#: ../admin/adm_slavedns.php:158 ../admin/sql_getparam.php:70 +msgid "Login" +msgstr "" + +#: ../admin/adm_db_servers.php:53 +msgid "Client" +msgstr "" + +#: ../admin/adm_db_servers.php:54 +msgid "Users" +msgstr "" + +#: ../admin/adm_db_servers.php:71 +msgid "To add a database server, do an INSERT into the db_servers table" +msgstr "" + +#: ../admin/adm_db_servers.php:74 +msgid "" +"To update the list of the server on the PhpMyAdmin login page, launch " +"alternc.install" +msgstr "" + +#: ../admin/adm_deactivate.php:46 ../class/m_admin.php:208 +#: ../class/m_admin.php:234 ../class/m_admin.php:680 ../class/m_admin.php:704 +#: ../class/m_admin.php:728 ../class/m_admin.php:772 ../class/m_admin.php:797 +#: ../class/m_admin.php:821 ../class/m_admin.php:894 ../class/m_admin.php:916 +msgid "Account not found" +msgstr "" + +#: ../admin/adm_deactivate.php:58 +msgid "User does not exist" +msgstr "" + +#: ../admin/adm_deactivate.php:63 ../admin/adm_deactivate.php:74 +msgid "Confirm" +msgstr "" + +#: ../admin/adm_deactivate.php:67 +msgid "WARNING: experimental feature, use at your own risk" +msgstr "" + +#: ../admin/adm_deactivate.php:68 +msgid "" +"The following domains will be deactivated and redirected to the URL entered " +"in the following box. A backup of the domain configuration will be displayed " +"as a serie of SQL request that you can run to restore the current " +"configuration if you want. Click confirm if you are sure you want to " +"deactivate all this user's domains." +msgstr "" + +#: ../admin/adm_deactivate.php:73 +msgid "Redirection URL:" +msgstr "" + +#: ../admin/adm_deactivate.php:78 +msgid "Domains of user: " +msgstr "" + +#: ../admin/adm_deactivate.php:81 +msgid "Missing redirect url." +msgstr "" + +#: ../admin/adm_deactivate.php:99 +#, php-format +msgid "-- Redirecting all domains and subdomains of the user %s to %s\n" +msgstr "" + +#: ../admin/adm_defquotas.php:46 ../admin/adm_panel.php:54 +msgid "Change the default quotas" +msgstr "" + +#: ../admin/adm_defquotas.php:52 +msgid "User's quotas synchronised" +msgstr "" + +#: ../admin/adm_defquotas.php:65 +msgid "Add account type" +msgstr "" + +#: ../admin/adm_defquotas.php:83 +msgid "Delete account type" +msgstr "" + +#: ../admin/adm_defquotas.php:88 +msgid "" +"Here is the list of the quotas on the server for the new accounts. If you " +"want to change them, enter new values" +msgstr "" + +#: ../admin/adm_defquotas.php:90 +msgid "Synchronise user's quota (only to upper value)" +msgstr "" + +#: ../admin/adm_defquotas.php:102 +msgid "Accounts of type" +msgstr "" + +#: ../admin/adm_defquotas.php:104 +msgid "Default Value" +msgstr "" + +#: ../admin/adm_defquotas.php:104 ../admin/adm_list.php:159 +#: ../admin/adm_list.php:203 ../admin/adm_list.php:223 +#: ../admin/adm_list.php:253 +msgid "Quotas" +msgstr "" + +#: ../admin/adm_defquotas.php:124 +msgid "Edit the default quotas" +msgstr "" + +#: ../admin/adm_dnsweberror.php:40 +msgid "Domains and Websites having errors" +msgstr "" + +#: ../admin/adm_dnsweberror.php:50 +msgid "List of the websites having errors in the domain database." +msgstr "" + +#: ../admin/adm_dnsweberror.php:53 ../admin/adm_dnsweberror.php:83 +msgid "Uid" +msgstr "" + +#: ../admin/adm_dnsweberror.php:54 ../admin/adm_dnsweberror.php:84 +#: ../admin/adm_list.php:155 ../admin/adm_list.php:233 +#: ../admin/adm_list.php:234 ../admin/adm_list.php:235 +#: ../admin/quotas_users.php:169 +msgid "Account" +msgstr "" + +#: ../admin/adm_dnsweberror.php:55 ../admin/adm_dnsweberror.php:85 +#: ../admin/dom_add.php:57 ../class/m_dom.php:1757 +msgid "Domain name" +msgstr "" + +#: ../admin/adm_dnsweberror.php:56 +msgid "FQDN" +msgstr "" + +#: ../admin/adm_dnsweberror.php:57 ../admin/adm_variables.php:57 +msgid "Value" +msgstr "" + +#: ../admin/adm_dnsweberror.php:58 ../admin/adm_domstype.php:59 +#: ../admin/adm_domstypeedit.php:78 +msgid "Description" +msgstr "" + +#: ../admin/adm_dnsweberror.php:59 +msgid "Web Result field" +msgstr "" + +#: ../admin/adm_dnsweberror.php:80 +msgid "List of the domain names having errors in the domain database." +msgstr "" + +#: ../admin/adm_dnsweberror.php:86 +msgid "DNS Result field" +msgstr "" + +#: ../admin/adm_doadd.php:53 ../admin/adm_doedit.php:64 +#: ../admin/ftp_doedit.php:44 ../admin/hta_doadduser.php:41 +#: ../admin/hta_doedituser.php:42 ../admin/mail_doedit.php:57 +msgid "Passwords do not match" +msgstr "" + +#: ../admin/adm_doadd.php:65 +msgid "The new member has been successfully created" +msgstr "" + +#: ../admin/adm_dodefquotas.php:48 +msgid "added" +msgstr "" + +#: ../admin/adm_dodefquotas.php:50 +msgid "could not be added" +msgstr "" + +#: ../admin/adm_dodefquotas.php:57 +msgid "deleted" +msgstr "" + +#: ../admin/adm_dodefquotas.php:59 +msgid "could not be deleted" +msgstr "" + +#: ../admin/adm_dodefquotas.php:66 +#, php-format +msgid "Deleting quota %s" +msgstr "" + +#: ../admin/adm_dodefquotas.php:72 +msgid "WARNING: Confirm the deletion of the quota" +msgstr "" + +#: ../admin/adm_dodefquotas.php:75 +msgid "Yes, delete this default quota" +msgstr "" + +#: ../admin/adm_dodefquotas.php:76 +msgid "No, don't delete this default quota" +msgstr "" + +#: ../admin/adm_dodefquotas.php:94 +msgid "Default quotas successfully changed" +msgstr "" + +#: ../admin/adm_dodefquotas.php:96 +msgid "Default quotas could not be set." +msgstr "" + +#: ../admin/adm_dodel.php:56 +#, php-format +msgid "Member '%s' does not exist" +msgstr "" + +#: ../admin/adm_dodel.php:58 +#, php-format +msgid "Member %s successfully deleted" +msgstr "" + +#: ../admin/adm_dodel.php:65 +msgid "Please check the accounts you want to delete" +msgstr "" + +#: ../admin/adm_dodel.php:73 +#, php-format +msgid "Deleting users" +msgstr "" + +#: ../admin/adm_dodel.php:77 +msgid "WARNING : Confirm the deletion of the users" +msgstr "" + +#: ../admin/adm_dodel.php:87 +msgid "Yes, delete those accounts" +msgstr "" + +#: ../admin/adm_dodel.php:88 +msgid "No, don't delete those accounts" +msgstr "" + +#: ../admin/adm_doedit.php:77 +msgid "The member has been successfully edited" +msgstr "" + +#: ../admin/adm_doms.php:40 ../admin/adm_panel.php:53 +msgid "Manage installed domains" +msgstr "" + +#: ../admin/adm_doms.php:59 +msgid "" +"Here is the list of the domains installed on this server. You can remove a " +"domain if it does not exist or does not point to our server anymore. You can " +"also set the 'Lock' flag on a domain so that the user will not be able to " +"change any DNS parameter or delete this domain from his account." +msgstr "" + +#: ../admin/adm_doms.php:62 +msgid "" +"The domain OK column are green when the domain exists in the worldwide " +"registry and has a proper NS,MX and IP depending on its configuration. It is " +"red if we have serious doubts about its NS, MX or IP configuration. Contact " +"the user of this domain or a system administrator." +msgstr "" + +#: ../admin/adm_doms.php:65 +msgid "If you want to force the check of NS, MX, IP on domains, click the link" +msgstr "" + +#: ../admin/adm_doms.php:65 +msgid "Show domain list with refreshed checked NS, MX, IP information" +msgstr "" + +#: ../admin/adm_doms.php:69 ../admin/adm_mxaccount.php:78 +#: ../admin/adm_slavedns.php:95 ../admin/adm_slavedns.php:140 +msgid "Action" +msgstr "" + +#: ../admin/adm_doms.php:69 ../admin/adm_doms.php:85 ../admin/adm_list.php:196 +#: ../admin/adm_list.php:221 ../admin/adm_list.php:250 +msgid "Connect as" +msgstr "" + +#: ../admin/adm_doms.php:69 +msgid "Creator" +msgstr "" + +#: ../admin/adm_doms.php:69 +msgid "Domain" +msgstr "" + +#: ../admin/adm_doms.php:69 +msgid "OK?" +msgstr "" + +#: ../admin/adm_doms.php:69 ../admin/dom_edit.php:130 +msgid "Status" +msgstr "" + +#: ../admin/adm_doms.php:76 +msgid "Locked Domain" +msgstr "" + +#: ../admin/adm_doms.php:79 +msgid "Lock" +msgstr "" + +#: ../admin/adm_doms.php:79 +msgid "Unlock" +msgstr "" + +#: ../admin/adm_doms_def_type.php:12 ../admin/adm_panel.php:66 +msgid "Manage defaults domains type" +msgstr "" + +#: ../admin/adm_doms_def_type.php:14 ../admin/adm_domstype.php:42 +msgid "" +"If you don't know what this page is about, don't touch anything, and read " +"AlternC documentation about domain types" +msgstr "" + +#: ../admin/adm_doms_def_type.php:15 +msgid "" +"The Type column contains a type of available VirtualHost config on The " +"server." +msgstr "" + +#: ../admin/adm_doms_def_type.php:16 +msgid "" +"The Setting column contains the variables to be expanded in the defaults " +"configuration. Available values are: " +msgstr "" + +#: ../admin/adm_doms_def_type.php:18 +#, php-format +msgid "%%DOMAIN%% : the Domain name" +msgstr "" + +#: ../admin/adm_doms_def_type.php:19 +#, php-format +msgid "%%TARGETDOM%%: The destination domain" +msgstr "" + +#: ../admin/adm_doms_def_type.php:20 +#, php-format +msgid "%%SUB%% : The subdomain name" +msgstr "" + +#: ../admin/adm_doms_def_type.php:21 +#, php-format +msgid "%%DOMAINDIR%%: the domain directory on the file system" +msgstr "" + +#: ../admin/adm_doms_def_type.php:38 +msgid "There was an error during the record." +msgstr "" + +#: ../admin/adm_doms_def_type.php:40 ../admin/cron.php:14 +msgid "Save done." +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +msgid "Activation" +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +msgid "Concerned" +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +msgid "Sub" +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +msgid "settings" +msgstr "" + +#: ../admin/adm_domstype.php:40 ../admin/adm_panel.php:67 +msgid "Manage domains type" +msgstr "" + +#: ../admin/adm_domstype.php:52 +msgid "Here is the list of domain types." +msgstr "" + +#: ../admin/adm_domstype.php:54 +msgid "Create a domain type" +msgstr "" + +#: ../admin/adm_domstype.php:60 +msgid "Target" +msgstr "" + +#: ../admin/adm_domstype.php:61 ../admin/adm_domstypeedit.php:92 +msgid "Entry" +msgstr "" + +#: ../admin/adm_domstype.php:62 +msgid "Compatible with" +msgstr "" + +#: ../admin/adm_domstype.php:62 ../admin/adm_domstypeedit.php:96 +msgid "Enter comma-separated name of other types" +msgstr "" + +#: ../admin/adm_domstype.php:63 +msgid "Enabled?" +msgstr "" + +#: ../admin/adm_domstype.php:64 +msgid "Only DNS?" +msgstr "" + +#: ../admin/adm_domstype.php:65 +msgid "Need to be DNS?" +msgstr "" + +#: ../admin/adm_domstype.php:66 +msgid "Advanced?" +msgstr "" + +#: ../admin/adm_domstype.php:67 ../admin/adm_domstypeedit.php:123 +msgid "Create tmp directory ?" +msgstr "" + +#: ../admin/adm_domstype.php:68 +msgid "create www directory ?" +msgstr "" + +#: ../admin/adm_domstype.php:75 +msgid "Regenerate" +msgstr "" + +#: ../admin/adm_domstypeedit.php:60 +msgid "Edit a domain type" +msgstr "" + +#: ../admin/adm_domstypeedit.php:82 +msgid "Target type" +msgstr "" + +#: ../admin/adm_domstypeedit.php:96 +msgid "Compatibility" +msgstr "" + +#: ../admin/adm_domstypeedit.php:100 ../admin/dom_edit.php:170 +#: ../admin/ftp_list.php:72 ../admin/ftp_list.php:82 +#: ../admin/mail_list.php:125 ../admin/mail_list.php:152 +msgid "Enabled" +msgstr "" + +#: ../admin/adm_domstypeedit.php:110 +msgid "Do only a DNS entry" +msgstr "" + +#: ../admin/adm_domstypeedit.php:114 +msgid "Domain must have our DNS" +msgstr "" + +#: ../admin/adm_domstypeedit.php:118 +msgid "Is it an advanced option?" +msgstr "" + +#: ../admin/adm_domstypeedit.php:128 +msgid "Create target directory ?" +msgstr "" + +#: ../admin/adm_domstypeedit.php:133 +msgid "Change this domain type" +msgstr "" + +#: ../admin/adm_donosu.php:45 +msgid "This account is now a normal account" +msgstr "" + +#: ../admin/adm_dorenew.php:53 +msgid "The member has been successfully renewed" +msgstr "" + +#: ../admin/adm_dosu.php:45 +msgid "This account is now an administrator account" +msgstr "" + +#: ../admin/adm_edit.php:57 +msgid "Member Edition" +msgstr "" + +#: ../admin/adm_edit.php:73 +msgid "Account Enabled?" +msgstr "" + +#: ../admin/adm_edit.php:76 +msgid "You cannot disable your own account." +msgstr "" + +#: ../admin/adm_edit.php:85 ../admin/adm_mxaccount.php:78 +#: ../admin/adm_mxaccount.php:95 ../admin/adm_slavedns.php:140 +#: ../admin/adm_slavedns.php:158 ../admin/cron.php:39 ../admin/ftp_edit.php:84 +#: ../admin/ftp_edit.php:92 ../admin/hta_adduser.php:58 +#: ../admin/hta_edit.php:102 ../admin/index.php:90 ../admin/mem_param.php:58 +#: ../admin/sql_getparam.php:74 ../admin/sql_users_add.php:63 +#: ../admin/sql_users_list.php:48 ../admin/sql_users_password.php:59 +msgid "Password" +msgstr "" + +#: ../admin/adm_edit.php:93 +msgid "Password change allowed?" +msgstr "" + +#: ../admin/adm_edit.php:116 +msgid "Reset quotas to default?" +msgstr "" + +#: ../admin/adm_edit.php:119 +msgid "Period" +msgstr "" + +#: ../admin/adm_edit.php:123 +msgid "Edit this account" +msgstr "" + +#: ../admin/adm_edit.php:137 +msgid "Renew for" +msgstr "" + +#: ../admin/adm_edit.php:138 +msgid "period(s)" +msgstr "" + +#: ../admin/adm_edit.php:141 +msgid "Renew" +msgstr "" + +#: ../admin/adm_edit.php:153 +msgid "This account is a super-admin account" +msgstr "" + +#: ../admin/adm_edit.php:157 +msgid "" +"There is only one administrator account, you cannot turn this account back " +"to normal" +msgstr "" + +#: ../admin/adm_edit.php:160 +msgid "Turn this account back to normal" +msgstr "" + +#: ../admin/adm_edit.php:163 +msgid "Make this account a super admin one" +msgstr "" + +#: ../admin/adm_edit.php:170 +#, php-format +msgid "Account created by %s" +msgstr "" + +#: ../admin/adm_email.php:43 ../admin/adm_panel.php:56 +msgid "Send an email to all members" +msgstr "" + +#: ../admin/adm_email.php:48 +msgid "The email was successfully sent" +msgstr "" + +#: ../admin/adm_email.php:50 +msgid "There was an error" +msgstr "" + +#: ../admin/adm_email.php:63 +msgid "From" +msgstr "" + +#: ../admin/adm_email.php:67 +msgid "Subject" +msgstr "" + +#: ../admin/adm_email.php:71 ../admin/mem_param.php:59 +msgid "Mail" +msgstr "" + +#: ../admin/adm_email.php:75 +msgid "Send" +msgstr "" + +#: ../admin/adm_list.php:70 +msgid "AlternC account list" +msgstr "" + +#: ../admin/adm_list.php:77 +msgid "Minimal view" +msgstr "" + +#: ../admin/adm_list.php:81 +msgid "Complete view" +msgstr "" + +#: ../admin/adm_list.php:87 +msgid "Filters" +msgstr "" + +#: ../admin/adm_list.php:90 +msgid "Search for a Login" +msgstr "" + +#: ../admin/adm_list.php:91 +msgid "Search for a Domain" +msgstr "" + +#: ../admin/adm_list.php:92 ../admin/piwik_sitelist.php:170 +msgid "submit" +msgstr "" + +#: ../admin/adm_list.php:100 +msgid "List all AlternC accounts" +msgstr "" + +#: ../admin/adm_list.php:110 +msgid "Or only the accounts of:" +msgstr "" + +#: ../admin/adm_list.php:115 +msgid "List only my accounts" +msgstr "" + +#: ../admin/adm_list.php:129 +#, php-format +msgid "%s accounts" +msgstr "" + +#: ../admin/adm_list.php:129 +msgid "Here is the list of hosted AlternC accounts" +msgstr "" + +#: ../admin/adm_list.php:132 +msgid "Create a new AlternC account" +msgstr "" + +#: ../admin/adm_list.php:136 +msgid "No account defined for now" +msgstr "" + +#: ../admin/adm_list.php:149 ../admin/adm_list.php:227 +#: ../admin/adm_list.php:264 ../admin/ftp_list.php:101 +msgid "Delete checked accounts" +msgstr "" + +#: ../admin/adm_list.php:156 +msgid "Manager" +msgstr "" + +#: ../admin/adm_list.php:157 +msgid "Created by" +msgstr "" + +#: ../admin/adm_list.php:158 +msgid "Created on" +msgstr "" + +#: ../admin/adm_list.php:160 +msgid "Last login" +msgstr "" + +#: ../admin/adm_list.php:161 +msgid "Last ip" +msgstr "" + +#: ../admin/adm_list.php:162 +msgid "Fails" +msgstr "" + +#: ../admin/adm_list.php:163 ../admin/main.php:87 +msgid "Expiry" +msgstr "" + +#: ../admin/adm_list.php:181 +msgid "Send an email" +msgstr "" + +#: ../admin/adm_list.php:183 ../admin/mail_list.php:167 +#, php-format +msgid "%3$d-%2$d-%1$d" +msgstr "" + +#: ../admin/adm_list.php:192 +msgid "DB:" +msgstr "" + +#: ../admin/adm_list.php:207 ../admin/dom_edit.php:171 +msgid "Disable" +msgstr "" + +#: ../admin/adm_list.php:221 ../admin/adm_list.php:250 +msgid "C" +msgstr "" + +#: ../admin/adm_list.php:222 ../admin/adm_list.php:251 +msgid "E" +msgstr "" + +#: ../admin/adm_list.php:223 ../admin/adm_list.php:253 +msgid "Q" +msgstr "" + +#: ../admin/adm_list.php:255 +msgid "himself" +msgstr "" + +#: ../admin/adm_list.php:257 +#, php-format +msgid "Creator: %s" +msgstr "" + +#: ../admin/adm_login.php:49 ../admin/adm_login.php:56 +msgid "Your authentication information are incorrect" +msgstr "" + +#: ../admin/adm_login.php:62 +msgid "Your IP is incorrect." +msgstr "" + +#: ../admin/adm_login.php:118 +msgid "Member login" +msgstr "" + +#: ../admin/adm_mxaccount.php:47 ../admin/adm_slavedns.php:51 +msgid "The requested account has been deleted. It is now denied." +msgstr "" + +#: ../admin/adm_mxaccount.php:53 ../admin/adm_slavedns.php:57 +msgid "The requested account address has been created. It is now allowed." +msgstr "" + +#: ../admin/adm_mxaccount.php:60 ../admin/adm_panel.php:64 +msgid "Manage allowed accounts for secondary mx" +msgstr "" + +#: ../admin/adm_mxaccount.php:74 +msgid "" +"Here is the list of the allowed accounts for secondary mx management. You " +"can configure the alternc-secondarymx package on your secondary mx server " +"and give him the login/pass that will grant him access to your server's mx-" +"hosted domain list. " +msgstr "" + +#: ../admin/adm_mxaccount.php:92 +msgid "" +"If you want to allow a new server to access your mx-hosted domain list, give " +"him an account." +msgstr "" + +#: ../admin/adm_mxaccount.php:101 ../admin/adm_slavedns.php:163 +msgid "Add this account to the allowed list" +msgstr "" + +#: ../admin/adm_panel.php:40 ../class/m_admin.php:98 +msgid "Admin Control Panel" +msgstr "" + +#: ../admin/adm_panel.php:51 ../admin/adm_tld.php:56 +#: ../admin/adm_tldadd.php:46 ../admin/adm_tldedit.php:52 +msgid "Manage allowed domains (TLD)" +msgstr "" + +#: ../admin/adm_panel.php:52 +msgid "Password Policies" +msgstr "" + +#: ../admin/adm_panel.php:55 +msgid "Manage IP whitelist" +msgstr "" + +#: ../admin/adm_panel.php:60 +msgid "Advanced features" +msgstr "" + +#: ../admin/adm_panel.php:63 +msgid "Manage slave DNS" +msgstr "" + +#: ../admin/adm_panel.php:65 ../admin/adm_variables.php:47 +msgid "Configure AlternC variables" +msgstr "" + +#: ../admin/adm_panel.php:68 +msgid "DNS and website having errors" +msgstr "" + +#: ../admin/adm_panel.php:69 +msgid "Manage databases servers" +msgstr "" + +#: ../admin/adm_panel.php:70 +msgid "Account creation statistics" +msgstr "" + +#: ../admin/adm_panel.php:95 +msgid "Click here to unlock the panel and allow user to login." +msgstr "" + +#: ../admin/adm_panel.php:97 +msgid "Are you sure you want to kick everyone?" +msgstr "" + +#: ../admin/adm_panel.php:97 +msgid "Click here to lock the panel and force logout of all the user." +msgstr "" + +#: ../admin/adm_passpolicy.php:49 +msgid "Manage Password Policy" +msgstr "" + +#: ../admin/adm_passpolicy.php:63 ../admin/adm_passpolicy.php:78 +msgid "Policy not found" +msgstr "" + +#: ../admin/adm_passpolicy.php:67 +msgid "Policy changed" +msgstr "" + +#: ../admin/adm_passpolicy.php:71 +msgid "Cannot edit the policy, an error occurred" +msgstr "" + +#: ../admin/adm_passpolicy.php:82 +msgid "Please choose which policy you want to apply to this password kind:" +msgstr "" + +#: ../admin/adm_passpolicy.php:90 +msgid "Minimum Password Size:" +msgstr "" + +#: ../admin/adm_passpolicy.php:97 +msgid "Maximum Password Size:" +msgstr "" + +#: ../admin/adm_passpolicy.php:104 +msgid "In how many classes of characters must be the password (at least):" +msgstr "" + +#: ../admin/adm_passpolicy.php:111 +msgid "Do we allow the password to be like the login?" +msgstr "" + +#: ../admin/adm_passpolicy.php:117 +msgid "Apply this password policy" +msgstr "" + +#: ../admin/adm_passpolicy.php:118 +msgid "Cancel and go back to the policy list" +msgstr "" + +#: ../admin/adm_passpolicy.php:121 +msgid "" +"The classes of characters are :
1. Low-case letters (a-z)
2. " +"Upper-case letters (A-Z)
3. Figures (0-9)
4. Ascii symbols (!\"#$" +"%&'()*+,-./:;<=>?@[\\]^_`)
5. Non-Ascii symbols (accents...)" +msgstr "" + +#: ../admin/adm_passpolicy.php:134 +msgid "" +"Here is the list of the password policies for each place a password may be " +"needed in AlternC's services. For each of those password kind, you can " +"choose which policy will be applied to passwords. A policy is a minimum and " +"maximum password size, and how many classes of characters must appear in the " +"password. You can also forbid (or not) to use the login or part of it as a " +"password." +msgstr "" + +#: ../admin/adm_passpolicy.php:138 +msgid "Password Kind" +msgstr "" + +#: ../admin/adm_passpolicy.php:138 +msgid "Password Policy" +msgstr "" + +#: ../admin/adm_passpolicy.php:140 +msgid "Min Size" +msgstr "" + +#: ../admin/adm_passpolicy.php:141 +msgid "Max Size" +msgstr "" + +#: ../admin/adm_passpolicy.php:142 +msgid "Complexity" +msgstr "" + +#: ../admin/adm_passpolicy.php:143 +msgid "Allow Password=Login?" +msgstr "" + +#: ../admin/adm_quotadoedit.php:52 +msgid "The quotas has been successfully edited" +msgstr "" + +#: ../admin/adm_quotaedit.php:55 +msgid "Editing the quotas of a member" +msgstr "" + +#: ../admin/adm_quotaedit.php:69 ../admin/quota_show.php:46 +msgid "Quota" +msgstr "" + +#: ../admin/adm_quotaedit.php:69 ../admin/quota_show.php:46 +#: ../admin/quotas_oneuser.php:87 ../admin/quotas_users.php:154 +#: ../admin/quotas_users.php:178 +msgid "Total" +msgstr "" + +#: ../admin/adm_quotaedit.php:69 ../admin/quota_show.php:46 +msgid "Used" +msgstr "" + +#: ../admin/adm_quotaedit.php:87 +msgid "Edit the quotas" +msgstr "" + +#: ../admin/adm_slavedns.php:65 +msgid "" +"The requested ip address has been deleted. It will be denied in one hour." +msgstr "" + +#: ../admin/adm_slavedns.php:71 +msgid "" +"The requested ip address has been added to the list. It will be allowed in " +"one hour." +msgstr "" + +#: ../admin/adm_slavedns.php:83 +msgid "Manage allowed ip for slave zone transfers" +msgstr "" + +#: ../admin/adm_slavedns.php:91 +msgid "" +"Here is the list of the allowed ip or ip class for slave dns zone transfer " +"requests (AXFR). You must add the ip address of all the slave DNS you have " +"so that those slaves will be allowed to transfer the zone files. There is " +"also some defaults ip from DNS checks made by some third-party technical " +"offices such as afnic (for .fr domains)" +msgstr "" + +#: ../admin/adm_slavedns.php:95 ../admin/adm_slavedns.php:114 +msgid "IP Address" +msgstr "" + +#: ../admin/adm_slavedns.php:110 +msgid "" +"If you want to allow an ip address or class to connect to your dns server, " +"enter it here. Choose 32 as a prefix for single ip address." +msgstr "" + +#: ../admin/adm_slavedns.php:114 +msgid "Prefix" +msgstr "" + +#: ../admin/adm_slavedns.php:120 +msgid "Add this ip to the slave list" +msgstr "" + +#: ../admin/adm_slavedns.php:129 +msgid "Manage allowed accounts for slave zone transfers" +msgstr "" + +#: ../admin/adm_slavedns.php:137 +msgid "" +"Here is the list of the allowed accounts for slave dns synchronization. You " +"can configure the alternc-slavedns package on your slave server and give him " +"the login/pass that will grant him access to your server's domain list. " +msgstr "" + +#: ../admin/adm_slavedns.php:154 +msgid "" +"If you want to allow a new server to access your domain list, give him an " +"account." +msgstr "" + +#: ../admin/adm_slavedns.php:194 +msgid "Need open DNS Slave servers?" +msgstr "" + +#: ../admin/adm_slavedns.php:196 +msgid "We offer free of charge DNS servers for alternc users." +msgstr "" + +#: ../admin/adm_slavedns.php:197 +msgid "How does it work?" +msgstr "" + +#: ../admin/adm_slavedns.php:199 +#, php-format +msgid "" +"Give access to the alternc.net servers. Follow the " +"instructions on this page. They will help " +"you to configure this page and configure your alternc.net account." +msgstr "" + +#: ../admin/adm_slavedns.php:200 +#, php-format +msgid "" +"Subscribe to alternc.net. Go to the alternc.net site to " +"use the DNS servers provided for free by the AlternC association and enter " +"the required informations for each server you want to connect to the service." +msgstr "" + +#: ../admin/adm_slavedns.php:203 +msgid "" +"The alternc.net servers will take care of transfering and distributing to " +"the world your domains zones." +msgstr "" + +#: ../admin/adm_tld.php:47 +msgid "Some TLD cannot be deleted..." +msgstr "" + +#: ../admin/adm_tld.php:50 +msgid "The requested TLD has been deleted" +msgstr "" + +#: ../admin/adm_tld.php:68 +msgid "" +"Here is the list of the TLD allowed on this server. Each TLD can be allowed " +"or denied after some checks (whois, ns, domain exists...)" +msgstr "" + +#: ../admin/adm_tld.php:70 ../admin/adm_tld.php:91 ../admin/adm_tldadd.php:56 +#: ../admin/adm_tldadd.php:70 +msgid "Add a new TLD" +msgstr "" + +#: ../admin/adm_tld.php:73 ../admin/adm_tldadd.php:66 +#: ../admin/adm_tldedit.php:65 +msgid "Allowed Mode" +msgstr "" + +#: ../admin/adm_tld.php:73 ../admin/adm_tldadd.php:65 +#: ../admin/adm_tldedit.php:64 +msgid "TLD" +msgstr "" + +#: ../admin/adm_tld.php:87 +msgid "Delete the checked TLD" +msgstr "" + +#: ../admin/adm_tldadd.php:58 +msgid "" +"Enter the new TLD (without the first dot) and choose what check should be " +"done." +msgstr "" + +#: ../admin/adm_tldadd.php:59 +msgid "" +"Warning : only some final tld are known in the whois function of AlternC, " +"please check m_dom.php accordingly." +msgstr "" + +#: ../admin/adm_tlddoadd.php:49 +msgid "The TLD has been successfully added" +msgstr "" + +#: ../admin/adm_tlddoedit.php:48 +msgid "The TLD has been successfully edited" +msgstr "" + +#: ../admin/adm_tldedit.php:60 +msgid "Edit a TLD" +msgstr "" + +#: ../admin/adm_tldedit.php:69 +msgid "Edit this TLD" +msgstr "" + +#: ../admin/adm_update_domains.php:40 +msgid "Missing INOTIFY_UPDATE_DOMAIN var in /etc/alternc/local.sh . Fix it!" +msgstr "" + +#: ../admin/adm_variables.php:52 +msgid "Here are the internal AlternC variables that are currently being used." +msgstr "" + +#: ../admin/adm_variables.php:57 +msgid "Comment" +msgstr "" + +#: ../admin/adm_variables.php:57 +msgid "Names" +msgstr "" + +#: ../admin/adm_variables.php:69 +msgid "Save variables" +msgstr "" + +#: ../admin/bro_editor.php:54 ../admin/bro_editor.php:63 +#: ../admin/bro_main.php:355 ../admin/bro_main.php:395 +#, php-format +msgid "%3$d-%2$d-%1$d %4$d:%5$d" +msgstr "" + +#: ../admin/bro_editor.php:54 ../admin/bro_editor.php:63 +#, php-format +msgid "Your file %s has been saved" +msgstr "" + +#: ../admin/bro_editor.php:74 +msgid "File editing" +msgstr "" + +#: ../admin/bro_editor.php:80 +msgid "This file is empty" +msgstr "" + +#: ../admin/bro_editor.php:90 +msgid "Save & Quit" +msgstr "" + +#: ../admin/bro_editor.php:91 +msgid "Quit" +msgstr "" + +#: ../admin/bro_main.php:91 +#, php-format +msgid "Deleting files and/or directories" +msgstr "" + +#: ../admin/bro_main.php:96 +msgid "WARNING: Confirm the deletion of this files" +msgstr "" + +#: ../admin/bro_main.php:105 +msgid "Yes, delete those files/folders" +msgstr "" + +#: ../admin/bro_main.php:106 +msgid "No, don't delete those files/folders" +msgstr "" + +#: ../admin/bro_main.php:144 +msgid "extracting..." +msgstr "" + +#: ../admin/bro_main.php:148 +msgid "failed" +msgstr "" + +#: ../admin/bro_main.php:151 +msgid "done" +msgstr "" + +#: ../admin/bro_main.php:156 ../class/m_bro.php:76 +msgid "File browser" +msgstr "" + +#: ../admin/bro_main.php:163 +msgid "Path" +msgstr "" + +#: ../admin/bro_main.php:185 +msgid "Send one file:" +msgstr "" + +#: ../admin/bro_main.php:189 +msgid "Send this file" +msgstr "" + +#: ../admin/bro_main.php:190 +#, php-format +msgid "Warning: max size: %s" +msgstr "" + +#: ../admin/bro_main.php:197 +msgid "New file or folder:" +msgstr "" + +#: ../admin/bro_main.php:202 ../admin/piwik_sitelist.php:86 +#: ../admin/piwik_userlist.php:44 ../admin/piwik_userlist.php:56 +msgid "Create" +msgstr "" + +#: ../admin/bro_main.php:204 ../admin/bro_main.php:244 +msgid "File" +msgstr "" + +#: ../admin/bro_main.php:205 ../admin/bro_main.php:397 +#: ../admin/ftp_edit.php:75 ../admin/ftp_list.php:72 ../admin/hta_add.php:55 +#: ../admin/hta_adduser.php:50 ../admin/hta_edit.php:94 +#: ../admin/hta_edituser.php:51 ../admin/hta_list.php:68 +msgid "Folder" +msgstr "" + +#: ../admin/bro_main.php:222 ../admin/bro_main.php:228 +#: ../admin/bro_main.php:286 +msgid "Rename" +msgstr "" + +#: ../admin/bro_main.php:238 ../admin/bro_main.php:244 +#: ../admin/bro_main.php:287 +msgid "Permissions" +msgstr "" + +#: ../admin/bro_main.php:258 +msgid "write" +msgstr "" + +#: ../admin/bro_main.php:266 +msgid "Change permissions" +msgstr "" + +#: ../admin/bro_main.php:289 +msgid "Copy" +msgstr "" + +#: ../admin/bro_main.php:290 +msgid "Move" +msgstr "" + +#: ../admin/bro_main.php:291 +msgid "To" +msgstr "" + +#: ../admin/bro_main.php:302 +msgid "Please select a destination folder" +msgstr "" + +#: ../admin/bro_main.php:328 +msgid "Filename" +msgstr "" + +#: ../admin/bro_main.php:329 ../admin/logs_list.php:53 +#: ../admin/sql_list.php:54 +msgid "Size" +msgstr "" + +#: ../admin/bro_main.php:330 +msgid "Last modification" +msgstr "" + +#: ../admin/bro_main.php:332 +msgid "File Type" +msgstr "" + +#: ../admin/bro_main.php:361 ../admin/bro_main.php:542 +#: ../admin/dom_edit.php:121 +msgid "View" +msgstr "" + +#: ../admin/bro_main.php:368 +msgid "Extract" +msgstr "" + +#: ../admin/bro_main.php:374 ../admin/bro_main.php:376 +msgid "Restore SQL" +msgstr "" + +#: ../admin/bro_main.php:376 +msgid "In which database to you want to restore this dump?" +msgstr "" + +#: ../admin/bro_main.php:381 +msgid "Restore it" +msgstr "" + +#: ../admin/bro_main.php:422 ../admin/bro_main.php:450 +#: ../admin/bro_main.php:485 ../admin/bro_main.php:513 +msgid "V" +msgstr "" + +#: ../admin/bro_main.php:568 +msgid "No files in this folder" +msgstr "" + +#: ../admin/bro_main.php:578 +msgid "(slow)" +msgstr "" + +#: ../admin/bro_main.php:578 +msgid "Show size of directories" +msgstr "" + +#: ../admin/bro_main.php:582 +msgid "Edit this folder's protection" +msgstr "" + +#: ../admin/bro_main.php:585 ../admin/hta_add.php:62 +msgid "Protect this folder" +msgstr "" + +#: ../admin/bro_main.php:587 +msgid "with a login and a password" +msgstr "" + +#: ../admin/bro_main.php:590 +msgid "Download this folder" +msgstr "" + +#: ../admin/bro_main.php:592 +#, php-format +msgid "as a %s file" +msgstr "" + +#: ../admin/bro_main.php:599 +msgid "Edit the ftp account" +msgstr "" + +#: ../admin/bro_main.php:600 +msgid "that exists in this folder" +msgstr "" + +#: ../admin/bro_main.php:606 +msgid "Create an ftp account in this folder" +msgstr "" + +#: ../admin/bro_main.php:615 +msgid "Configure the file editor" +msgstr "" + +#: ../admin/bro_pref.php:49 +msgid "Your preferences have been updated." +msgstr "" + +#: ../admin/bro_pref.php:59 +msgid "File browser preferences" +msgstr "" + +#: ../admin/bro_pref.php:66 +msgid "Horizontal window size" +msgstr "" + +#: ../admin/bro_pref.php:74 +msgid "Vertical window size" +msgstr "" + +#: ../admin/bro_pref.php:82 +msgid "File editor font name" +msgstr "" + +#: ../admin/bro_pref.php:90 +msgid "File editor font size" +msgstr "" + +#: ../admin/bro_pref.php:98 +msgid "File list view" +msgstr "" + +#: ../admin/bro_pref.php:106 +msgid "Downloading file format" +msgstr "" + +#: ../admin/bro_pref.php:114 +msgid "What to do after creating a file" +msgstr "" + +#: ../admin/bro_pref.php:122 +msgid "Show icons?" +msgstr "" + +#: ../admin/bro_pref.php:130 +msgid "Show file types?" +msgstr "" + +#: ../admin/bro_pref.php:138 +msgid "Remember last visited directory?" +msgstr "" + +#: ../admin/bro_pref.php:149 +msgid "Change my settings" +msgstr "" + +#: ../admin/browseforfolder.php:125 ../admin/browseforfolder2.php:120 +msgid "Searching for a folder" +msgstr "" + +#: ../admin/browseforfolder.php:131 ../admin/browseforfolder2.php:126 +msgid "Error, cannot find this folder" +msgstr "" + +#: ../admin/browseforfolder.php:133 ../admin/browseforfolder2.php:128 +msgid "Back to the root folder" +msgstr "" + +#: ../admin/browseforfolder.php:145 ../admin/browseforfolder2.php:141 +msgid "Select" +msgstr "" + +#: ../admin/cron.php:21 ../class/m_cron.php:72 ../class/m_cron.php:181 +msgid "Scheduled tasks" +msgstr "" + +#: ../admin/cron.php:36 +msgid "URL" +msgstr "" + +#: ../admin/cron.php:37 +msgid "Schedule" +msgstr "" + +#: ../admin/cron.php:38 ../admin/hta_edituser.php:55 +#: ../admin/sql_users_list.php:48 +msgid "User" +msgstr "" + +#: ../admin/cron.php:40 +msgid "Email report" +msgstr "" + +#: ../admin/cron.php:57 +msgid "Called URL" +msgstr "" + +#: ../admin/cron.php:60 +msgid "Period:" +msgstr "" + +#: ../admin/cron.php:72 +msgid "Next execution: " +msgstr "" + +#: ../admin/cron.php:75 +msgid "HTTP user (optional)" +msgstr "" + +#: ../admin/cron.php:76 +msgid "HTTP password (optional)" +msgstr "" + +#: ../admin/cron.php:77 +msgid "Mail address (optional)" +msgstr "" + +#: ../admin/cron.php:81 +msgid "Apply the modifications" +msgstr "" + +#: ../admin/dom_add.php:45 +msgid "Domain hosting" +msgstr "" + +#: ../admin/dom_add.php:49 +msgid "Contact your administrator for more information." +msgstr "" + +#: ../admin/dom_add.php:49 +msgid "You cannot add any new domain, your quota is over." +msgstr "" + +#: ../admin/dom_add.php:57 +msgid "Advanced import" +msgstr "" + +#: ../admin/dom_add.php:60 +msgid "host my dns here" +msgstr "" + +#: ../admin/dom_add.php:68 +msgid "" +"Do you want to point this domain to another domain already installed in your " +"account?" +msgstr "" + +#: ../admin/dom_add.php:71 +msgid "No: This domain will have its own folder." +msgstr "" + +#: ../admin/dom_add.php:73 +msgid "Yes, redirect this new domain to this one:" +msgstr "" + +#: ../admin/dom_add.php:74 +msgid "-- Choose a domain --" +msgstr "" + +#: ../admin/dom_add.php:87 +msgid "Add this domain" +msgstr "" + +#: ../admin/dom_add.php:91 +msgid "" +"If you don't want to host in our server the DNS of your domain, don't check " +"the box 'host my dns here'. If you don't know what it mean, leave it checked." +msgstr "" + +#: ../admin/dom_add.php:96 ../admin/dom_doadd.php:60 +msgid "Whois result on the domain" +msgstr "" + +#: ../admin/dom_dnsdump.php:9 +msgid "Error: no domain" +msgstr "" + +#: ../admin/dom_doadd.php:52 ../class/m_dom.php:104 +msgid "Add a domain" +msgstr "" + +#: ../admin/dom_doadd.php:54 +#, php-format +msgid "Your new domain %s has been successfully installed" +msgstr "" + +#: ../admin/dom_doadd.php:55 ../admin/dom_dodel.php:56 +#: ../admin/dom_dodel.php:86 ../admin/dom_editdns.php:62 +#: ../admin/dom_import.php:87 ../admin/dom_subdodel.php:79 +#: ../admin/hta_doedituser.php:62 +msgid "Click here to continue" +msgstr "" + +#: ../admin/dom_dodel.php:54 +msgid "Deletion have been successfully cancelled" +msgstr "" + +#: ../admin/dom_dodel.php:64 ../admin/dom_dodel.php:67 +#, php-format +msgid "Confirm the deletion of domain %s" +msgstr "" + +#: ../admin/dom_dodel.php:67 ../admin/sql_del.php:75 +#: ../admin/sql_users_del.php:61 +msgid "WARNING" +msgstr "" + +#: ../admin/dom_dodel.php:69 +msgid "This will delete the related sub-domains too." +msgstr "" + +#: ../admin/dom_dodel.php:74 +msgid "Yes, delete this domain name" +msgstr "" + +#: ../admin/dom_dodel.php:75 +msgid "No, don't delete this domain name" +msgstr "" + +#: ../admin/dom_dodel.php:81 +#, php-format +msgid "Domain %s deleted" +msgstr "" + +#: ../admin/dom_dodel.php:85 +#, php-format +msgid "The domain %s has been successfully deleted." +msgstr "" + +#: ../admin/dom_edit.inc.php:40 +msgid "Edit a subdomain:" +msgstr "" + +#: ../admin/dom_edit.inc.php:42 +msgid "Create a subdomain:" +msgstr "" + +#: ../admin/dom_edit.inc.php:63 +msgid "Show advanced options" +msgstr "" + +#: ../admin/dom_edit.inc.php:64 +msgid "Hide advanced options" +msgstr "" + +#: ../admin/dom_edit.inc.php:88 +msgid "(enter an URL here)" +msgstr "" + +#: ../admin/dom_edit.inc.php:92 +msgid "(enter an IPv4 address, for example 192.168.1.2)" +msgstr "" + +#: ../admin/dom_edit.inc.php:96 +msgid "(enter an IPv6 address, for example 2001:0910::0)" +msgstr "" + +#: ../admin/dom_edit.inc.php:100 +msgid "(enter a TXT content for this domain)" +msgstr "" + +#: ../admin/dom_edit.inc.php:104 +msgid "(enter a domain name or subdomain)" +msgstr "" + +#: ../admin/dom_edit.inc.php:114 +msgid "Edit this subdomain" +msgstr "" + +#: ../admin/dom_edit.inc.php:116 +msgid "Add this subdomain" +msgstr "" + +#: ../admin/dom_edit.inc.php:135 +msgid "Missing value for this sub-domain" +msgstr "" + +#: ../admin/dom_edit.inc.php:141 +msgid "Please select a type for this sub-domain" +msgstr "" + +#: ../admin/dom_edit.php:80 +msgid "" +"Are you sure you want to do this? This will DELETE ALL the mailboxes, " +"messages and aliases on this domain ?" +msgstr "" + +#: ../admin/dom_edit.php:91 +#, php-format +msgid "Manage %s" +msgstr "" + +#: ../admin/dom_edit.php:96 +msgid "This domain have some DNS change pending. Please wait." +msgstr "" + +#: ../admin/dom_edit.php:99 +#, php-format +msgid "You requested deletion of domain %s." +msgstr "" + +#: ../admin/dom_edit.php:117 +msgid "Edit subdomains" +msgstr "" + +#: ../admin/dom_edit.php:118 +msgid "Add subdomains" +msgstr "" + +#: ../admin/dom_edit.php:119 ../class/m_mem.php:63 +msgid "Settings" +msgstr "" + +#: ../admin/dom_edit.php:128 +#, php-format +msgid "Editing subdomains of %s" +msgstr "" + +#: ../admin/dom_edit.php:130 +msgid "Subdomain" +msgstr "" + +#: ../admin/dom_edit.php:153 +msgid "ERROR, please check your server setup" +msgstr "" + +#: ../admin/dom_edit.php:160 ../admin/ftp_list.php:94 +msgid "Directory not found" +msgstr "" + +#: ../admin/dom_edit.php:174 +msgid "Activation pending" +msgstr "" + +#: ../admin/dom_edit.php:177 ../admin/ftp_list.php:84 +#: ../admin/mail_list.php:144 ../admin/mail_list.php:154 +msgid "Disabled" +msgstr "" + +#: ../admin/dom_edit.php:178 +msgid "Enable" +msgstr "" + +#: ../admin/dom_edit.php:181 +msgid "Desactivation pending" +msgstr "" + +#: ../admin/dom_edit.php:189 +msgid "Update pending" +msgstr "" + +#: ../admin/dom_edit.php:192 +msgid "Deletion pending" +msgstr "" + +#: ../admin/dom_edit.php:206 +#, php-format +msgid "Add a subdomains to %s" +msgstr "" + +#: ../admin/dom_edit.php:223 +msgid "DNS & Email parameters" +msgstr "" + +#: ../admin/dom_edit.php:228 +msgid "Manage the DNS on the server ?" +msgstr "" + +#: ../admin/dom_edit.php:239 +msgid "Define TTL for the zone records" +msgstr "" + +#: ../admin/dom_edit.php:241 +msgid "" +"Warning: a low TTL can be problematic. It is recommended not to use a lower " +"TTL than 3600 seconds." +msgstr "" + +#: ../admin/dom_edit.php:241 +msgid "seconds" +msgstr "" + +#: ../admin/dom_edit.php:250 +msgid "Manage the Emails Addresses of this domain on the server?" +msgstr "" + +#: ../admin/dom_edit.php:258 +msgid "" +"Warning: If you set this to 'no', all your email accounts and aliases on " +"this domain will be immediately deleted." +msgstr "" + +#: ../admin/dom_edit.php:259 +msgid "Submit the changes" +msgstr "" + +#: ../admin/dom_edit.php:267 +msgid "" +"Here is the actual DNS zone running on the AlternC server. If you just made " +"some changes, you have to wait for it." +msgstr "" + +#: ../admin/dom_edit.php:271 +msgid "Click here to view the dump" +msgstr "" + +#: ../admin/dom_edit.php:279 +msgid "Domain removal" +msgstr "" + +#: ../admin/dom_edit.php:280 +#, php-format +msgid "" +"If you want to destroy the domain %s, click on the button below. Warning: " +"this also deletes all FTP accounts, email, mailing lists associated with the " +"domain and subdomains." +msgstr "" + +#: ../admin/dom_edit.php:283 +#, php-format +msgid "Delete %s from this server" +msgstr "" + +#: ../admin/dom_editdns.php:52 +#, php-format +msgid "Editing domain %s" +msgstr "" + +#: ../admin/dom_editdns.php:57 +#, php-format +msgid "The domain %s has been changed." +msgstr "" + +#: ../admin/dom_editdns.php:60 ../admin/dom_subdodel.php:75 +msgid "The modifications will take effect at %time. Server time is %now." +msgstr "" + +#: ../admin/dom_import.php:43 +msgid "Import a DNS zone" +msgstr "" + +#: ../admin/dom_import.php:55 +msgid "The domain field seems to be empty" +msgstr "" + +#: ../admin/dom_import.php:57 +msgid "" +"Here is my proposition. Modify your zone until my proposition seems good to " +"you" +msgstr "" + +#: ../admin/dom_import.php:59 +#, php-format +msgid "Working on %s" +msgstr "" + +#: ../admin/dom_import.php:61 +msgid "Generated entry" +msgstr "" + +#: ../admin/dom_import.php:61 +msgid "Result" +msgstr "" + +#: ../admin/dom_import.php:61 +msgid "Zone" +msgstr "" + +#: ../admin/dom_import.php:74 +msgid "ERROR" +msgstr "" + +#: ../admin/dom_import.php:74 ../admin/mem_cm.php:56 +msgid "OK" +msgstr "" + +#: ../admin/dom_import.php:96 +msgid "Enter the domain name you want to import" +msgstr "" + +#: ../admin/dom_import.php:104 +msgid "Do you want to detect the redirection?" +msgstr "" + +#: ../admin/dom_import.php:115 +msgid "Paste your existing DNS zone here." +msgstr "" + +#: ../admin/dom_import.php:117 +msgid "If you don't know what it is, don't submit this form." +msgstr "" + +#: ../admin/dom_import.php:122 +msgid "Do you want to import the zone as it?" +msgstr "" + +#: ../admin/dom_import.php:126 +msgid "Submit" +msgstr "" + +#: ../admin/dom_subdel.php:51 +#, php-format +msgid "Deleting subdomain %s" +msgstr "" + +#: ../admin/dom_subdel.php:67 +msgid "WARNING : Confirm the deletion of the subdomain" +msgstr "" + +#: ../admin/dom_subdodel.php:64 +#, php-format +msgid "Deleting the subdomain %s:" +msgstr "" + +#: ../admin/dom_subdoedit.php:72 ../admin/dom_substatus.php:29 +msgid "The modifications will take effect at %time. Server time is %now." +msgstr "" + +#: ../admin/dom_subedit.php:56 +msgid "Editing subdomain" +msgstr "" + +#: ../admin/ftp_del.php:60 +#, php-format +msgid "The ftp account %s has been successfully deleted" +msgstr "" + +#: ../admin/ftp_del.php:68 +msgid "Confirm the FTP accounts deletion" +msgstr "" + +#: ../admin/ftp_del.php:71 +msgid "Do you really want to delete those accounts?" +msgstr "" + +#: ../admin/ftp_doedit.php:46 ../admin/ftp_edit.php:44 +#: ../admin/ftp_edit.php:51 +msgid "Create a FTP account" +msgstr "" + +#: ../admin/ftp_doedit.php:52 +msgid "Error: neither a creation nor an edition" +msgstr "" + +#: ../admin/ftp_doedit.php:72 +msgid "The ftp account has been successfully saved" +msgstr "" + +#: ../admin/ftp_edit.php:43 +msgid "Neither a creation nor a edition" +msgstr "" + +#: ../admin/ftp_edit.php:53 +msgid "Editing a FTP account" +msgstr "" + +#: ../admin/ftp_edit.php:79 +msgid "" +"This is the root folder for this FTP user. i.e. this FTP user can access to " +"this forlder and all its sub-folders." +msgstr "" + +#: ../admin/ftp_edit.php:93 +msgid "Click here if you want to edit password" +msgstr "" + +#: ../admin/ftp_edit.php:114 +msgid "Password do not match" +msgstr "" + +#: ../admin/ftp_edit.php:120 ../class/m_admin.php:1279 ../class/m_hta.php:235 +msgid "Please enter a password" +msgstr "" + +#: ../admin/ftp_list.php:45 ../class/m_ftp.php:76 +msgid "FTP accounts list" +msgstr "" + +#: ../admin/ftp_list.php:57 ../class/m_ftp.php:67 +msgid "Create a new ftp account" +msgstr "" + +#: ../admin/ftp_list.php:80 +msgid "Are you sure you want to change his status?" +msgstr "" + +#: ../admin/ftp_list.php:107 +msgid "FTP configuration information" +msgstr "" + +#: ../admin/ftp_list.php:109 +msgid "" +"Here are some configuration information you will need to configure your FTP " +"application." +msgstr "" + +#: ../admin/ftp_list.php:112 +msgid "Server:" +msgstr "" + +#: ../admin/ftp_list.php:113 +msgid "FTP mode for data transfer:" +msgstr "" + +#: ../admin/ftp_list.php:113 +msgid "passive" +msgstr "" + +#: ../admin/ftp_list.php:114 +msgid "User/password:" +msgstr "" + +#: ../admin/ftp_list.php:114 +msgid "" +"the one you specified when you created the account. You can edit them in the " +"panel." +msgstr "" + +#: ../admin/head.php:32 +msgid "AlternC Control Panel" +msgstr "" + +#: ../admin/head.php:59 +msgid "" +"Administrator session. you may return to your " +"account or cancel this feature." +msgstr "" + +#: ../admin/head.php:60 +msgid "You can also apply changes." +msgstr "" + +#: ../admin/head.php:65 +msgid "Panel is locked! No one can login!" +msgstr "" + +#: ../admin/hta_add.php:39 ../admin/hta_list.php:49 ../admin/hta_list.php:87 +msgid "Protect a folder" +msgstr "" + +#: ../admin/hta_add.php:43 +msgid "" +"Enter the name of the folder you want to protect. It must already exists." +msgstr "" + +#: ../admin/hta_adduser.php:40 +#, php-format +msgid "Adding a username in %s" +msgstr "" + +#: ../admin/hta_adduser.php:67 ../admin/hta_edit.php:112 +msgid "Add this user" +msgstr "" + +#: ../admin/hta_del.php:42 +#, php-format +msgid "The protected folder %s has been successfully unprotected" +msgstr "" + +#: ../admin/hta_dodeluser.php:49 +msgid "Authorized user deletion confirm" +msgstr "" + +#: ../admin/hta_dodeluser.php:52 +msgid "Do you really want to delete those users ?" +msgstr "" + +#: ../admin/hta_doedituser.php:52 +#, php-format +msgid "Change the user %s in the protected folder %s" +msgstr "" + +#: ../admin/hta_doedituser.php:60 +#, php-format +msgid "The password of the user %s has been successfully changed" +msgstr "" + +#: ../admin/hta_edit.php:39 +msgid "No folder selected!" +msgstr "" + +#: ../admin/hta_edit.php:48 +#, php-format +msgid "List of authorized user in folder %s" +msgstr "" + +#: ../admin/hta_edit.php:53 +#, php-format +msgid "No authorized user in %s" +msgstr "" + +#: ../admin/hta_edit.php:68 ../admin/sql_users_password.php:38 +msgid "Change this user's password" +msgstr "" + +#: ../admin/hta_edit.php:78 ../admin/sql_users_list.php:70 +msgid "Delete the checked users" +msgstr "" + +#: ../admin/hta_edit.php:83 +msgid "Show this folder's content in the File Browser" +msgstr "" + +#: ../admin/hta_edit.php:89 +msgid "Adding an authorized user" +msgstr "" + +#: ../admin/hta_edituser.php:40 +#, php-format +msgid "Editing user %s in the protected folder %s" +msgstr "" + +#: ../admin/hta_edituser.php:59 ../admin/mem_param.php:83 +#: ../admin/mem_param.php:84 +msgid "New password" +msgstr "" + +#: ../admin/hta_edituser.php:68 +msgid "Change the password" +msgstr "" + +#: ../admin/hta_list.php:40 +msgid "Protected folders list" +msgstr "" + +#: ../admin/hta_list.php:60 +msgid "" +"You can set passwords to protect some of your folders.
This will create ." +"htaccess and .htpasswd files that restrict access to these directory and to " +"any sub-elements." +msgstr "" + +#: ../admin/hta_list.php:77 +msgid "Edit login and passwords" +msgstr "" + +#: ../admin/hta_list.php:86 +msgid "Unprotect the checked folders" +msgstr "" + +#: ../admin/index.php:67 +msgid "Web Hosting Control Panel" +msgstr "" + +#: ../admin/index.php:83 +msgid "" +"To connect to the hosting control panel, enter your AlternC's login and " +"password in the following form and click 'Enter'" +msgstr "" + +#: ../admin/index.php:84 +msgid "You are attemping to connect without IP restriction." +msgstr "" + +#: ../admin/index.php:88 +msgid "AlternC access" +msgstr "" + +#: ../admin/index.php:91 +msgid "Enter" +msgstr "" + +#: ../admin/index.php:111 +msgid "" +"To read your mail in a browser, click here to go to your server's Webmail" +msgstr "" + +#: ../admin/index.php:123 +msgid "You must accept the session cookie to log-in" +msgstr "" + +#: ../admin/index.php:152 +msgid "Need a login and a password" +msgstr "" + +#: ../admin/ip_main.php:58 +msgid "" +"Here you can add rules to restrict access to AlternC's services, filtered by " +"IP. First, add trusted IPs in the 'Known IP and networks' list. Then, add " +"rules to grant access on services to the chosen IPs from this list." +msgstr "" + +#: ../admin/ip_main.php:60 +msgid "Enabled rules" +msgstr "" + +#: ../admin/ip_main.php:64 +msgid "Authorised IP address or network" +msgstr "" + +#: ../admin/ip_main.php:65 ../admin/ip_main.php:95 +msgid "Access type" +msgstr "" + +#: ../admin/ip_main.php:76 +msgid "for" +msgstr "" + +#: ../admin/ip_main.php:86 +msgid "Add a new rule" +msgstr "" + +#: ../admin/ip_main.php:89 +msgid "" +"You need to have some 'Known IP and networks' defined below to define a new " +"rule." +msgstr "" + +#: ../admin/ip_main.php:119 +msgid "Authorized IP address or network" +msgstr "" + +#: ../admin/ip_main.php:144 +msgid "Known IP and networks" +msgstr "" + +#: ../admin/ip_main.php:146 +msgid "IP or network" +msgstr "" + +#: ../admin/ip_main.php:172 +msgid "Add an IP or a networks" +msgstr "" + +#: ../admin/ip_main.php:181 +msgid "IP or network. IPv4, IPv6 and subnet allowed" +msgstr "" + +#: ../admin/ip_main.php:214 +msgid "Please select an access type" +msgstr "" + +#: ../admin/logs_list.php:35 +msgid "Logs Listing" +msgstr "" + +#: ../admin/logs_list.php:43 +msgid "You have no web logs to list at the moment." +msgstr "" + +#: ../admin/logs_list.php:49 +msgid "" +"Here are web logs of your account.
You can download them to do specific " +"extract and statistics." +msgstr "" + +#: ../admin/logs_list.php:53 +msgid "Creation Date" +msgstr "" + +#: ../admin/logs_list.php:53 +msgid "Download link" +msgstr "" + +#: ../admin/logs_list.php:65 +msgid "Download" +msgstr "" + +#: ../admin/mail_del.php:54 +msgid "Deleting mail accounts" +msgstr "" + +#: ../admin/mail_del.php:57 +msgid "Please confirm the deletion of the following mail accounts:" +msgstr "" + +#: ../admin/mail_del.php:74 +msgid "Confirm the deletion" +msgstr "" + +#: ../admin/mail_del.php:74 +msgid "Don't delete anything and go back to the email list" +msgstr "" + +#: ../admin/mail_del.php:78 +msgid "" +"Warning: Deleting an email address will destroy all the messages it " +"contains! You will NOT be able to get it back!" +msgstr "" + +#: ../admin/mail_doedit.php:120 +msgid "Your email has been edited successfully" +msgstr "" + +#: ../admin/mail_edit.php:53 +#, php-format +msgid "Editing the email %s" +msgstr "" + +#: ../admin/mail_edit.php:67 +msgid "Is this email enabled?" +msgstr "" + +#: ../admin/mail_edit.php:69 +msgid "" +"You can enable or disable this email anytime. This will bounce any mail " +"received on this address, but will not delete the stored email, or the " +"redirections or password." +msgstr "" + +#: ../admin/mail_edit.php:73 +msgid "No (email disabled)" +msgstr "" + +#: ../admin/mail_edit.php:74 +msgid "Yes (email enabled)" +msgstr "" + +#: ../admin/mail_edit.php:78 +msgid "Is it a POP/IMAP account?" +msgstr "" + +#: ../admin/mail_edit.php:79 +msgid "" +"POP/IMAP accounts are receiving emails in the server. To read those emails, " +"you can use a Webmail, or a mail client such as Thunderbird. If you don't " +"use POP/IMAP, you can configure your email to be a redirection to other " +"existing emails. The maximum size is in megabytes, use 0 to make it infinite." +msgstr "" + +#: ../admin/mail_edit.php:82 +#, php-format +msgid "This mailbox is currently using %1$s / %2$s" +msgstr "" + +#: ../admin/mail_edit.php:85 +msgid "" +"This mailbox is pending deletion. You can recover its mails by setting it to " +"'Yes' NOW!" +msgstr "" + +#: ../admin/mail_edit.php:95 +msgid "Click here to edit the existing password" +msgstr "" + +#: ../admin/mail_edit.php:96 +msgid "Enter a POP/IMAP password" +msgstr "" + +#: ../admin/mail_edit.php:98 ../class/m_quota.php:537 +msgid "MB" +msgstr "" + +#: ../admin/mail_edit.php:98 +msgid "Maximum allowed size of this Mailbox" +msgstr "" + +#: ../admin/mail_edit.php:103 +msgid "" +"WARNING: turning POP/IMAP off will DELETE the stored messages in this email " +"address." +msgstr "" + +#: ../admin/mail_edit.php:105 +msgid "Is it a redirection to other email addresses?" +msgstr "" + +#: ../admin/mail_edit.php:107 +msgid "" +"If you want to send emails received on this address to other addresses, even " +"outside this server, enter those recipients here." +msgstr "" + +#: ../admin/mail_edit.php:107 +msgid "one recipient per line" +msgstr "" + +#: ../admin/mail_edit.php:115 +msgid "Change this email address" +msgstr "" + +#: ../admin/mail_list.php:72 +msgid "Create a new mail account" +msgstr "" + +#: ../admin/mail_list.php:76 +msgid "Can't have empty mail." +msgstr "" + +#: ../admin/mail_list.php:76 +msgid "Create this email address" +msgstr "" + +#: ../admin/mail_list.php:78 +msgid "Manage Catch-all for this domain" +msgstr "" + +#: ../admin/mail_list.php:92 +#, php-format +msgid "Email addresses of the domain %s" +msgstr "" + +#: ../admin/mail_list.php:96 +msgid "No mails for this domain." +msgstr "" + +#: ../admin/mail_list.php:106 +msgid "Search" +msgstr "" + +#: ../admin/mail_list.php:111 +msgid "Show system emails" +msgstr "" + +#: ../admin/mail_list.php:118 +msgid "Items per page:" +msgstr "" + +#: ../admin/mail_list.php:125 +msgid "Address" +msgstr "" + +#: ../admin/mail_list.php:125 +msgid "Last login time" +msgstr "" + +#: ../admin/mail_list.php:125 +msgid "Other recipients" +msgstr "" + +#: ../admin/mail_list.php:125 +msgid "Pop/Imap" +msgstr "" + +#: ../admin/mail_list.php:136 +msgid "Deleting..." +msgstr "" + +#: ../admin/mail_list.php:141 +msgid "" +"This email will be deleted soon. You may still be able to undelete it by " +"clicking here" +msgstr "" + +#: ../admin/mail_list.php:141 +msgid "Undelete" +msgstr "" + +#: ../admin/mail_list.php:167 ../admin/main.php:34 +msgid "Never" +msgstr "" + +#: ../admin/mail_list.php:178 +msgid "Delete the checked email addresses" +msgstr "" + +#: ../admin/mail_list.php:186 +msgid "Mails configuration information" +msgstr "" + +#: ../admin/mail_list.php:188 +msgid "" +"Here are some configuration information you will need to configure your mail " +"application." +msgstr "" + +#: ../admin/mail_list.php:195 +msgid "Outgoing mail (SMTP)" +msgstr "" + +#: ../admin/mail_list.php:196 +msgid "Incoming mail" +msgstr "" + +#: ../admin/mail_list.php:201 ../admin/mail_list.php:242 +msgid "Which protocol shall you use?" +msgstr "" + +#: ../admin/mail_list.php:203 +msgid "Submission" +msgstr "" + +#: ../admin/mail_list.php:206 ../admin/mail_list.php:217 +#: ../admin/mail_list.php:228 ../admin/mail_list.php:247 +#: ../admin/mail_list.php:258 ../admin/mail_list.php:269 +#: ../admin/mail_list.php:280 +msgid "Server name: " +msgstr "" + +#: ../admin/mail_list.php:207 ../admin/mail_list.php:218 +#: ../admin/mail_list.php:229 +msgid "" +"The mail address you want to access (example : myuser@example.tld)" +msgstr "" + +#: ../admin/mail_list.php:207 ../admin/mail_list.php:218 +#: ../admin/mail_list.php:229 +msgid "Username: " +msgstr "" + +#: ../admin/mail_list.php:208 ../admin/mail_list.php:219 +#: ../admin/mail_list.php:230 ../admin/mail_list.php:248 +#: ../admin/mail_list.php:259 ../admin/mail_list.php:270 +#: ../admin/mail_list.php:281 +msgid "Port: " +msgstr "" + +#: ../admin/mail_list.php:209 ../admin/mail_list.php:220 +#: ../admin/mail_list.php:231 ../admin/mail_list.php:249 +#: ../admin/mail_list.php:260 ../admin/mail_list.php:271 +#: ../admin/mail_list.php:282 +msgid "Authentication: " +msgstr "" + +#: ../admin/mail_list.php:210 ../admin/mail_list.php:221 +#: ../admin/mail_list.php:232 ../admin/mail_list.php:250 +#: ../admin/mail_list.php:261 ../admin/mail_list.php:272 +#: ../admin/mail_list.php:283 +msgid "Authentication method: " +msgstr "" + +#: ../admin/mail_list.php:210 ../admin/mail_list.php:250 +#: ../admin/mail_list.php:261 ../admin/mail_list.php:272 +#: ../admin/mail_list.php:283 +msgid "Normal password" +msgstr "" + +#: ../admin/mail_list.php:211 ../admin/mail_list.php:222 +#: ../admin/mail_list.php:233 ../admin/mail_list.php:251 +#: ../admin/mail_list.php:262 ../admin/mail_list.php:273 +#: ../admin/mail_list.php:284 +msgid "Connection security:" +msgstr "" + +#: ../admin/mail_list.php:214 +msgid "SMTP" +msgstr "" + +#: ../admin/mail_list.php:221 ../admin/mail_list.php:232 +msgid "Normal Password" +msgstr "" + +#: ../admin/mail_list.php:225 +msgid "SMTPS" +msgstr "" + +#: ../admin/mail_list.php:244 +msgid "IMAP" +msgstr "" + +#: ../admin/mail_list.php:255 +msgid "IMAPS" +msgstr "" + +#: ../admin/mail_list.php:266 +msgid "POP3" +msgstr "" + +#: ../admin/mail_list.php:277 +msgid "POP3S" +msgstr "" + +#: ../admin/mail_manage_catchall.php:38 +msgid "Problem with the domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:47 +msgid "Catchall successfully deleted" +msgstr "" + +#: ../admin/mail_manage_catchall.php:50 ../admin/mail_manage_catchall.php:53 +msgid "Catchall successfully updated" +msgstr "" + +#: ../admin/mail_manage_catchall.php:56 +msgid "Unknown target type" +msgstr "" + +#: ../admin/mail_manage_catchall.php:63 +#, php-format +msgid "Manage catch-all configuration of %s" +msgstr "" + +#: ../admin/mail_manage_catchall.php:72 +msgid "" +"You can choose what to do with emails sent to unexisting address of this " +"domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:80 +msgid "No catch-all" +msgstr "" + +#: ../admin/mail_manage_catchall.php:84 +msgid "No catch-all for this domain." +msgstr "" + +#: ../admin/mail_manage_catchall.php:88 +msgid "Redirect to same address on a different domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:92 +#, php-format +msgid "" +"Mails sent to john.doe@%s will be redirect to john.doe@anotherdomain.tld" +msgstr "" + +#: ../admin/mail_manage_catchall.php:95 +msgid "Enter the 'target' domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:96 +msgid "example.tld" +msgstr "" + +#: ../admin/mail_manage_catchall.php:98 +msgid "Or choose one of your own" +msgstr "" + +#: ../admin/mail_manage_catchall.php:106 +msgid "Redirect to a specific email" +msgstr "" + +#: ../admin/mail_manage_catchall.php:110 +#, php-format +msgid "" +"Mails sent to an unexisting email on '@%s' will be redirect to user@example." +"tld." +msgstr "" + +#: ../admin/mail_manage_catchall.php:113 +msgid "john.doe@example.tld" +msgstr "" + +#: ../admin/mailautoconfig_outlook.php:16 +msgid "Missing POST of the mail address" +msgstr "" + +#: ../admin/mailautoconfig_thunderbird.php:9 +msgid "Error: Missing GET of emailaddress" +msgstr "" + +#: ../admin/mailautoconfig_thunderbird.php:12 +msgid "Error: Empty $emailDomain" +msgstr "" + +#: ../admin/main.php:31 +msgid "Last Login: " +msgstr "" + +#: ../admin/main.php:36 +#, php-format +msgid "the %3$d-%2$d-%1$d at %4$d:%5$02d" +msgstr "" + +#: ../admin/main.php:37 +#, php-format +msgid "from: %1$s " +msgstr "" + +#: ../admin/main.php:42 +#, php-format +msgid "%1$d login failed since last login" +msgstr "" + +#: ../admin/main.php:85 +msgid "Expired or about to expire accounts" +msgstr "" + +#: ../admin/main.php:87 +msgid "Last name, surname" +msgstr "" + +#: ../admin/main.php:87 +msgid "uid" +msgstr "" + +#: ../admin/main.php:103 +msgid "" +"You are using the AlternC Panel. You can contact the AlternC community for " +"information or feedback by joining the mailing-list" +msgstr "" + +#: ../admin/mem_admin.php:40 +msgid "Your administrator preferences has been successfully changed." +msgstr "" + +#: ../admin/mem_admin.php:46 ../admin/mem_param.php:116 +msgid "Admin preferences" +msgstr "" + +#: ../admin/mem_chgmail.php:44 ../admin/mem_cm.php:42 ../admin/mem_cm.php:53 +#: ../admin/mem_cm2.php:47 ../admin/mem_param.php:92 +msgid "Change the email of the account" +msgstr "" + +#: ../admin/mem_chgmail.php:51 +#, php-format +msgid "help_mem_chgmail %s" +msgstr "" + +#: ../admin/mem_cm.php:54 +msgid "" +"Enter the key you got when you requested the mailbox change, then click the " +"OK button." +msgstr "" + +#: ../admin/mem_cm.php:55 +msgid "Key" +msgstr "" + +#: ../admin/mem_cm2.php:55 +msgid "The mailbox has been successfully changed." +msgstr "" + +#: ../admin/mem_logout.php:41 ../admin/mem_logout.php:49 +msgid "Disconnected" +msgstr "" + +#: ../admin/mem_logout.php:51 +msgid "You have been logged out of your administration desktop." +msgstr "" + +#: ../admin/mem_logout.php:52 +msgid "Click here to log in" +msgstr "" + +#: ../admin/mem_param.php:43 +msgid "Your help setting has been updated." +msgstr "" + +#: ../admin/mem_param.php:47 +msgid "Settings of your account" +msgstr "" + +#: ../admin/mem_param.php:60 ../class/m_mem.php:579 +msgid "Help" +msgstr "" + +#: ../admin/mem_param.php:63 +msgid "Administrator" +msgstr "" + +#: ../admin/mem_param.php:69 ../admin/mem_passwd.php:50 +#: ../admin/sql_users_list.php:59 +msgid "Password change" +msgstr "" + +#: ../admin/mem_param.php:73 +msgid "You cannot change your password" +msgstr "" + +#: ../admin/mem_param.php:78 +msgid "help_chg_passwd" +msgstr "" + +#: ../admin/mem_param.php:82 +msgid "Old password" +msgstr "" + +#: ../admin/mem_param.php:85 +msgid "Change my password" +msgstr "" + +#: ../admin/mem_param.php:95 +msgid "help_chg_mail" +msgstr "" + +#: ../admin/mem_param.php:96 +msgid "Current mailbox" +msgstr "" + +#: ../admin/mem_param.php:97 +msgid "New mailbox" +msgstr "" + +#: ../admin/mem_param.php:98 +msgid "Change my email address" +msgstr "" + +#: ../admin/mem_param.php:103 +msgid "Online help settings" +msgstr "" + +#: ../admin/mem_param.php:106 +msgid "help_help_settings" +msgstr "" + +#: ../admin/mem_param.php:107 +msgid "Do you want to see the help texts and links on each page?" +msgstr "" + +#: ../admin/mem_param.php:108 +msgid "Change these settings" +msgstr "" + +#: ../admin/mem_param.php:119 +msgid "Members list view" +msgstr "" + +#: ../admin/mem_param.php:120 +msgid "Large view" +msgstr "" + +#: ../admin/mem_param.php:121 +msgid "Short view" +msgstr "" + +#: ../admin/mem_param.php:123 +msgid "Change my admin preferences" +msgstr "" + +#: ../admin/mem_passwd.php:44 +msgid "Your password has been successfully changed." +msgstr "" + +#: ../admin/menu.php:37 +#, php-format +msgid "Welcome %s" +msgstr "" + +#: ../admin/menu.php:105 +msgid "About" +msgstr "" + +#: ../admin/nowebmail.php:28 +msgid "" +"There is currently no webmail configured. If you need one, contact your " +"server administrator" +msgstr "" + +#: ../admin/piwik_addaccount.php:34 +msgid "You cannot add any new Piwik account, your quota is over." +msgstr "" + +#: ../admin/piwik_addaccount.php:44 +msgid "Error : missing arguments." +msgstr "" + +#: ../admin/piwik_addaccount.php:50 +#, php-format +msgid "Creation of Piwik account \"%s\"" +msgstr "" + +#: ../admin/piwik_addaccount.php:67 +msgid "Successfully added piwik user" +msgstr "" + +#: ../admin/piwik_addsites.php:44 +msgid "Error while adding website.
" +msgstr "" + +#: ../admin/piwik_addsites.php:46 +msgid "Website added Successfully" +msgstr "" + +#: ../admin/piwik_site_dodel.php:39 +msgid "Missing site parameters" +msgstr "" + +#: ../admin/piwik_site_dodel.php:50 +msgid "Site successfully deleted" +msgstr "" + +#: ../admin/piwik_site_dodel.php:61 +msgid "Piwik site deletion confirm" +msgstr "" + +#: ../admin/piwik_site_dodel.php:64 +msgid "Do you really want to delete this Piwik website ?" +msgstr "" + +#: ../admin/piwik_sitelist.php:48 +msgid "You don't own this piwik site!" +msgstr "" + +#: ../admin/piwik_sitelist.php:56 +msgid "You dont own user" +msgstr "" + +#: ../admin/piwik_sitelist.php:83 ../admin/piwik_userlist.php:53 +msgid "Add a new website" +msgstr "" + +#: ../admin/piwik_sitelist.php:85 ../admin/piwik_userlist.php:55 +msgid "URL of the website" +msgstr "" + +#: ../admin/piwik_sitelist.php:106 +msgid "Existing Piwik monitored websites" +msgstr "" + +#: ../admin/piwik_sitelist.php:114 +msgid "No existing Piwik websites" +msgstr "" + +#: ../admin/piwik_sitelist.php:120 +msgid "Site name" +msgstr "" + +#: ../admin/piwik_sitelist.php:120 +msgid "Site url" +msgstr "" + +#: ../admin/piwik_sitelist.php:147 +msgid "Credentials management" +msgstr "" + +#: ../admin/piwik_user_dodel.php:39 +msgid "Missing login parameters" +msgstr "" + +#: ../admin/piwik_user_dodel.php:59 +msgid "Piwik accounts deletion confirm" +msgstr "" + +#: ../admin/piwik_user_dodel.php:62 +#, php-format +msgid "Do you really want to delete the Piwik account %s ?" +msgstr "" + +#: ../admin/piwik_useradmin.php:42 +msgid "No piwik user specified" +msgstr "" + +#: ../admin/piwik_useradmin.php:52 +msgid "You don't own this piwik website" +msgstr "" + +#: ../admin/piwik_useradmin.php:60 +msgid "You don't own this piwik user" +msgstr "" + +#: ../admin/piwik_useradmin.php:71 +msgid "success" +msgstr "" + +#: ../admin/piwik_useradmin.php:75 +msgid "This right does not exist" +msgstr "" + +#: ../admin/piwik_useradmin.php:105 +msgid "Rights for user" +msgstr "" + +#: ../admin/piwik_useradmin.php:128 +msgid "Add rights to user" +msgstr "" + +#: ../admin/piwik_useradmin.php:139 +msgid "admin" +msgstr "" + +#: ../admin/piwik_useradmin.php:139 +msgid "noacces" +msgstr "" + +#: ../admin/piwik_useradmin.php:139 +msgid "view" +msgstr "" + +#: ../admin/piwik_userlist.php:41 +msgid "Create a new piwik account" +msgstr "" + +#: ../admin/piwik_userlist.php:66 +msgid "Existing Piwik accounts" +msgstr "" + +#: ../admin/piwik_userlist.php:74 +msgid "No existing Piwik users" +msgstr "" + +#: ../admin/piwik_userlist.php:79 ../admin/piwik_userlist.php:89 +msgid "Connect" +msgstr "" + +#: ../admin/quota_show.php:34 +msgid "Account's quotas" +msgstr "" + +#: ../admin/quota_show.php:40 +msgid "No quotas for this account, or quotas currently unavailable!" +msgstr "" + +#: ../admin/quotas_oneuser.php:14 +#, php-format +msgid "%s account" +msgstr "" + +#: ../admin/quotas_oneuser.php:25 ../class/m_quota.php:60 +msgid "quota_web" +msgstr "" + +#: ../admin/quotas_oneuser.php:36 ../admin/quotas_users.php:132 +#: ../class/m_dom.php:93 +msgid "Domains" +msgstr "" + +#: ../admin/quotas_oneuser.php:37 +msgid "Emails" +msgstr "" + +#: ../admin/quotas_oneuser.php:38 ../admin/quotas_oneuser.php:121 +#: ../admin/quotas_oneuser.php:167 ../admin/quotas_users.php:128 +#: ../admin/quotas_users.php:169 +msgid "Space" +msgstr "" + +#: ../admin/quotas_oneuser.php:112 +msgid "Databases:" +msgstr "" + +#: ../admin/quotas_oneuser.php:120 ../admin/quotas_users.php:177 +msgid "DB" +msgstr "" + +#: ../admin/quotas_oneuser.php:158 +msgid "Mailman lists:" +msgstr "" + +#: ../admin/quotas_oneuser.php:166 ../admin/quotas_users.php:173 +#: ../admin/quotas_users.php:176 +msgid "Lists" +msgstr "" + +#: ../admin/quotas_users.php:20 +msgid "Quotas status" +msgstr "" + +#: ../admin/quotas_users.php:29 +msgid "" +"This page shows the space and service count of your AlternC server and each " +"AlternC accounts." +msgstr "" + +#: ../admin/quotas_users.php:30 +#, php-format +msgid "Administration -> Manage the Alternc accounts" +msgstr "" + +#: ../admin/quotas_users.php:30 +#, php-format +msgid "If you want to manage them, go to" +msgstr "" + +#: ../admin/quotas_users.php:33 +#, php-format +msgid "% of the total." +msgstr "" + +#: ../admin/quotas_users.php:33 +msgid "MB." +msgstr "" + +#: ../admin/quotas_users.php:33 +#, php-format +msgid "Sizes are shown as %s" +msgstr "" + +#: ../admin/quotas_users.php:36 +msgid "Global" +msgstr "" + +#: ../admin/quotas_users.php:36 +msgid "Server-side view:" +msgstr "" + +#: ../admin/quotas_users.php:37 +msgid "Detailed view:" +msgstr "" + +#: ../admin/quotas_users.php:38 +msgid "In MB" +msgstr "" + +#: ../admin/quotas_users.php:39 +msgid "Percentage" +msgstr "" + +#: ../admin/quotas_users.php:40 +msgid "Graphical" +msgstr "" + +#: ../admin/quotas_users.php:43 +msgid "Show the domain names" +msgstr "" + +#: ../admin/quotas_users.php:45 +msgid "Hide the domain names" +msgstr "" + +#: ../admin/quotas_users.php:48 +msgid "All accounts" +msgstr "" + +#: ../admin/quotas_users.php:128 ../admin/quotas_users.php:169 +msgid "Count" +msgstr "" + +#: ../admin/quotas_users.php:137 ../class/m_mail.php:177 +msgid "Email addresses" +msgstr "" + +#: ../admin/quotas_users.php:143 +msgid "Mailman lists" +msgstr "" + +#: ../admin/quotas_users.php:149 ../admin/sql_del.php:72 +#: ../admin/sql_dorestore.php:40 ../admin/sql_getparam.php:44 +#: ../admin/sql_list.php:37 ../admin/sql_restore.php:44 +#: ../class/m_mysql.php:990 +msgid "MySQL Databases" +msgstr "" + +#: ../admin/quotas_users.php:171 +msgid "Dom" +msgstr "" + +#: ../admin/quotas_users.php:172 ../admin/quotas_users.php:175 +msgid "Mails" +msgstr "" + +#: ../admin/quotas_users.php:174 +msgid "Web" +msgstr "" + +#: ../admin/sql_bck.php:34 +msgid "MySQL Databases - Configure backups" +msgstr "" + +#: ../admin/sql_bck.php:40 ../admin/sql_dobck.php:34 +msgid "" +"You aren't allowed to access this page. Contact your administrator if you " +"want to." +msgstr "" + +#: ../admin/sql_bck.php:65 +#, php-format +msgid "Manage the SQL backup for database %s" +msgstr "" + +#: ../admin/sql_bck.php:70 +msgid "Do MySQL backup?" +msgstr "" + +#: ../admin/sql_bck.php:73 +msgid "No backup" +msgstr "" + +#: ../admin/sql_bck.php:74 +msgid "Weekly backup" +msgstr "" + +#: ../admin/sql_bck.php:75 +msgid "Daily backup" +msgstr "" + +#: ../admin/sql_bck.php:79 +msgid "How many backups should be kept?" +msgstr "" + +#: ../admin/sql_bck.php:91 +msgid "Compress the backups? (gzip)" +msgstr "" + +#: ../admin/sql_bck.php:100 +msgid "In which folder do you want to store the backups?" +msgstr "" + +#: ../admin/sql_bck.php:107 +msgid "Change the MySQL backup parameters" +msgstr "" + +#: ../admin/sql_bck.php:116 ../admin/sql_dorestore.php:50 +#: ../admin/sql_restore.php:53 +msgid "You currently have no database defined" +msgstr "" + +#: ../admin/sql_del.php:51 +#, php-format +msgid "The database %s has been successfully deleted" +msgstr "" + +#: ../admin/sql_del.php:66 +msgid "Please check which databases you want to delete" +msgstr "" + +#: ../admin/sql_del.php:75 +msgid "Confirm the deletion of the following SQL databases" +msgstr "" + +#: ../admin/sql_del.php:76 +msgid "This will delete all the tables currently in those db." +msgstr "" + +#: ../admin/sql_del.php:90 +msgid "No, don't delete the database" +msgstr "" + +#: ../admin/sql_del.php:90 +msgid "Yes, delete the database" +msgstr "" + +#: ../admin/sql_doadd.php:37 +msgid "Can't create a database: your quota is over" +msgstr "" + +#: ../admin/sql_dobck.php:56 +msgid "Your backup parameters has been successfully changed." +msgstr "" + +#: ../admin/sql_dorestore.php:56 +msgid "Restore a SQL backup" +msgstr "" + +#: ../admin/sql_dorestore.php:63 +msgid "" +"Your database has been restored, check out the previous text for error " +"messages." +msgstr "" + +#: ../admin/sql_getparam.php:53 +msgid "Your current connection settings are" +msgstr "" + +#: ../admin/sql_getparam.php:59 +msgid "Mysql Server" +msgstr "" + +#: ../admin/sql_getparam.php:63 ../admin/sql_list.php:54 +msgid "Database" +msgstr "" + +#: ../admin/sql_getparam.php:79 +msgid "Web interface PhpMyAdmin" +msgstr "" + +#: ../admin/sql_getparam.php:91 +msgid "" +"You changed the MySQL User base configuration. Please refer to your " +"configuration" +msgstr "" + +#: ../admin/sql_getparam.php:94 +msgid "Back to the MySQL database list" +msgstr "" + +#: ../admin/sql_list.php:45 +msgid "You have no sql user at the moment." +msgstr "" + +#: ../admin/sql_list.php:54 ../admin/sql_list.php:65 +msgid "Backup" +msgstr "" + +#: ../admin/sql_list.php:54 ../admin/sql_list.php:67 +msgid "Restore" +msgstr "" + +#: ../admin/sql_list.php:54 ../admin/sql_list.php:68 +msgid "Show Settings" +msgstr "" + +#: ../admin/sql_list.php:77 +msgid "Delete the checked databases" +msgstr "" + +#: ../admin/sql_list.php:90 +msgid "Create a new MySQL database" +msgstr "" + +#: ../admin/sql_list.php:96 +msgid "MySQL Database" +msgstr "" + +#: ../admin/sql_list.php:103 +msgid "Can't have empty MySQL suffix" +msgstr "" + +#: ../admin/sql_list.php:103 +msgid "Create this new MySQL database." +msgstr "" + +#: ../admin/sql_pma_sso.php:46 +msgid "SQL Admin" +msgstr "" + +#: ../admin/sql_restore.php:58 +#, php-format +msgid "Restore a MySQL backup for database %s" +msgstr "" + +#: ../admin/sql_restore.php:61 +msgid "" +"Warning: Write the complete path and the filename.
For example if your " +"backups are in the directory /Backups,
write /Backups/file.sql.gz " +"(where file.sql.gz is the filename)." +msgstr "" + +#: ../admin/sql_restore.php:66 +msgid "" +"Please enter the path and the filename containing SQL data to be restored." +msgstr "" + +#: ../admin/sql_restore.php:67 +msgid "Restore my database" +msgstr "" + +#: ../admin/sql_restore.php:67 +msgid "Tip: you can restore a file directly in the File Browser" +msgstr "" + +#: ../admin/sql_restore.php:72 +msgid "Please the complete path of the filename" +msgstr "" + +#: ../admin/sql_restore.php:81 +msgid "Note: If the filename ends with .gz, it will be uncompressed before." +msgstr "" + +#: ../admin/sql_users_add.php:41 ../admin/sql_users_list.php:79 +msgid "Create a new MySQL user" +msgstr "" + +#: ../admin/sql_users_add.php:72 +msgid "Create this new MySQL user" +msgstr "" + +#: ../admin/sql_users_del.php:47 +#, php-format +msgid "The user %s has been successfully deleted" +msgstr "" + +#: ../admin/sql_users_del.php:58 +msgid "MySQL users" +msgstr "" + +#: ../admin/sql_users_del.php:61 +msgid "Confirm the deletion of the following MySQL users" +msgstr "" + +#: ../admin/sql_users_del.php:76 +msgid "No, don't delete the MySQL user" +msgstr "" + +#: ../admin/sql_users_del.php:76 +msgid "Yes, delete the MySQL user" +msgstr "" + +#: ../admin/sql_users_dorights.php:54 +msgid "The rights has been successfully applied to the user" +msgstr "" + +#: ../admin/sql_users_list.php:37 ../class/m_mysql.php:124 +msgid "MySQL Users" +msgstr "" + +#: ../admin/sql_users_list.php:48 +msgid "Rights" +msgstr "" + +#: ../admin/sql_users_list.php:58 +msgid "Manage the rights" +msgstr "" + +#: ../admin/sql_users_password.php:68 +msgid "Change user password" +msgstr "" + +#: ../admin/sql_users_rights.php:38 +#, php-format +msgid "MySQL Rights for %s" +msgstr "" + +#: ../admin/sql_users_rights.php:89 +msgid "Reverse selection" +msgstr "" + +#: ../admin/sql_users_rights.php:103 +msgid "Apply" +msgstr "" + +#: ../admin/stats_members.php:32 +msgid "" +"Image_Graph not installed. use 'aptitude install php-pear' then 'pear " +"install --alldeps Image_Graph-devel' to see the graph." +msgstr "" + +#: ../admin/stats_members.php:41 +msgid "Account creation per month" +msgstr "" + +#: ../admin/stats_members.php:54 +msgid "before the month" +msgstr "" + +#: ../admin/stats_members.php:56 +msgid "during the month" +msgstr "" + +#: ../admin/vm.php:52 ../class/m_lxc.php:60 +msgid "Console access" +msgstr "" + +#: ../admin/vm.php:69 +msgid "You can start a virtual machine." +msgstr "" + +#: ../admin/vm.php:72 +msgid "Click here to start a virtual machine." +msgstr "" + +#: ../admin/vm.php:78 +msgid "Start time" +msgstr "" + +#: ../admin/vm.php:79 +msgid "SSH Fingerprint" +msgstr "" + +#: ../admin/vm.php:80 +msgid "Useful command" +msgstr "" + +#: ../admin/vm.php:86 +msgid "You can stop your virtual machine." +msgstr "" + +#: ../admin/vm.php:89 +msgid "Click here to stop your running virtual machine." +msgstr "" + +#: ../admin/vm.php:99 +msgid "Tips" +msgstr "" + +#: ../admin/vm.php:104 +msgid "Available softwares" +msgstr "" + +#: ../admin/vm.php:105 +msgid "Remotely start/stop a VM" +msgstr "" + +#: ../admin/vm.php:110 +msgid "" +"You can script the launch the console access in command line by using this " +"url:" +msgstr "" + +#: ../admin/vm.php:112 +msgid "You can halt the vm by using:" +msgstr "" + +#: ../admin/vm.php:114 +msgid "" +"And you can see existing vm information (if the vm is running) by using:" +msgstr "" + +#: ../admin/vm.php:116 +msgid "" +"Warning: if you do not use HTTPS, your password will be transfered without " +"any protection" +msgstr "" + +#: ../admin/vm.php:120 +msgid "To access a remote console with SSH, you can use Putty." +msgstr "" + +#: ../admin/vm.php:122 +msgid "To transfer files, you can use Filezilla in SFTP mode." +msgstr "" + +#: ../class/functions.php:281 +msgid "Bytes" +msgstr "" + +#: ../class/functions.php:283 +msgid "Byte" +msgstr "" + +#: ../class/functions.php:288 +msgid "Kb" +msgstr "" + +#: ../class/functions.php:292 +msgid "Mb" +msgstr "" + +#: ../class/functions.php:296 +msgid "Gb" +msgstr "" + +#: ../class/functions.php:298 +msgid "Tb" +msgstr "" + +#: ../class/functions.php:389 +msgid "year" +msgstr "" + +#: ../class/functions.php:389 +msgid "years" +msgstr "" + +#: ../class/functions.php:391 +msgid "month" +msgstr "" + +#: ../class/functions.php:391 +msgid "months" +msgstr "" + +#: ../class/functions.php:414 +msgid "Not managed" +msgstr "" + +#: ../class/functions.php:541 ../class/functions.php:543 +msgid "Previous Page" +msgstr "" + +#: ../class/functions.php:597 ../class/functions.php:599 +msgid "Next Page" +msgstr "" + +#: ../class/functions.php:621 +msgid "Clic here to generate a password" +msgstr "" + +#: ../class/functions.php:656 ../class/functions.php:657 +msgid "Choose a folder..." +msgstr "" + +#: ../class/m_action.php:156 +msgid "Error setting actions" +msgstr "" + +#: ../class/m_action.php:168 +msgid "Error selecting old actions" +msgstr "" + +#: ../class/m_action.php:181 +msgid "Error purging old actions" +msgstr "" + +#: ../class/m_admin.php:60 +msgid "This TLD is forbidden" +msgstr "" + +#: ../class/m_admin.php:61 +msgid "primary DNS is checked in WHOIS db" +msgstr "" + +#: ../class/m_admin.php:62 +msgid "primary & secondary DNS are checked in WHOIS db" +msgstr "" + +#: ../class/m_admin.php:63 +msgid "Domain must exist, but don't do any DNS check" +msgstr "" + +#: ../class/m_admin.php:64 +msgid "Domain can be installed, no check at all" +msgstr "" + +#: ../class/m_admin.php:65 +msgid "Domain can be installed, force NO DNS hosting" +msgstr "" + +#: ../class/m_admin.php:75 +msgid "Administration" +msgstr "" + +#: ../class/m_admin.php:83 +msgid "Manage AlternC accounts" +msgstr "" + +#: ../class/m_admin.php:88 +msgid "User Quotas" +msgstr "" + +#: ../class/m_admin.php:104 ../class/m_mysql.php:130 +msgid "PhpMyAdmin" +msgstr "" + +#: ../class/m_admin.php:111 +msgid "Switch debug Off" +msgstr "" + +#: ../class/m_admin.php:111 +msgid "Switch debug On" +msgstr "" + +#: ../class/m_admin.php:118 +msgid "Applying..." +msgstr "" + +#: ../class/m_admin.php:119 +msgid "Domain changes are already applying" +msgstr "" + +#: ../class/m_admin.php:125 +msgid "Apply changes" +msgstr "" + +#: ../class/m_admin.php:128 +msgid "" +"Server configuration changes are applied every 5 minutes. Do you want to do " +"it right now?" +msgstr "" + +#: ../class/m_admin.php:174 ../class/m_admin.php:224 ../class/m_admin.php:288 +#: ../class/m_admin.php:364 ../class/m_admin.php:405 ../class/m_admin.php:436 +#: ../class/m_admin.php:491 ../class/m_admin.php:657 ../class/m_admin.php:696 +#: ../class/m_admin.php:720 ../class/m_admin.php:746 +msgid "-- Only administrators can access this page! --" +msgstr "" + +#: ../class/m_admin.php:322 +msgid "" +"Invalid pattern type provided. Are you even performing a legitimate action?" +msgstr "" + +#: ../class/m_admin.php:372 +msgid "Subject, message and sender are mandatory" +msgstr "" + +#: ../class/m_admin.php:377 +msgid "Sender is syntaxically incorrect" +msgstr "" + +#: ../class/m_admin.php:448 +msgid "-- Only administrators can do that! --" +msgstr "" + +#: ../class/m_admin.php:454 +msgid "You don't seem to be allowed to delegate this domain" +msgstr "" + +#: ../class/m_admin.php:495 +msgid "Missing db_server field" +msgstr "" + +#: ../class/m_admin.php:499 ../class/m_admin.php:504 +msgid "All fields are mandatory" +msgstr "" + +#: ../class/m_admin.php:508 +msgid "Please enter a valid email address" +msgstr "" + +#: ../class/m_admin.php:514 +msgid "Login can only contains characters a-z and 0-9" +msgstr "" + +#: ../class/m_admin.php:521 +msgid "The login is too long (14 chars max)" +msgstr "" + +#: ../class/m_admin.php:526 +msgid "Login can only contains characters a-z, 0-9 and -" +msgstr "" + +#: ../class/m_admin.php:572 +msgid "This login already exists" +msgstr "" + +#: ../class/m_admin.php:589 +#, php-format +msgid "query failed: %s " +msgstr "" + +#: ../class/m_admin.php:616 +#, php-format +msgid "New account %s from %s on %s" +msgstr "" + +#: ../class/m_admin.php:621 +#, php-format +msgid "Cannot send email to %s" +msgstr "" + +#: ../class/m_admin.php:625 +#, php-format +msgid "Query failed: %s" +msgstr "" + +#: ../class/m_admin.php:898 +msgid "This account is ALREADY an administrator account" +msgstr "" + +#: ../class/m_admin.php:920 +msgid "This account is NOT an administrator account!" +msgstr "" + +#: ../class/m_admin.php:1061 +#, php-format +msgid "Domain '%s' not found." +msgstr "" + +#: ../class/m_admin.php:1080 ../class/m_admin.php:1112 +#: ../class/m_admin.php:1162 +msgid "This TLD does not exist" +msgstr "" + +#: ../class/m_admin.php:1133 +msgid "The TLD name is mandatory" +msgstr "" + +#: ../class/m_admin.php:1140 +msgid "This TLD already exist" +msgstr "" + +#: ../class/m_admin.php:1275 +msgid "Please enter a login" +msgstr "" + +#: ../class/m_admin.php:1285 +msgid "-- Program error -- The requested password policy does not exist!" +msgstr "" + +#: ../class/m_admin.php:1293 +msgid "The password length is too short according to the password policy" +msgstr "" + +#: ../class/m_admin.php:1298 +msgid "The password is too long according to the password policy" +msgstr "" + +#: ../class/m_admin.php:1308 +msgid "" +"The password policy prevents you to use your login name inside your password" +msgstr "" + +#: ../class/m_admin.php:1332 +msgid "" +"Your password contains not enough different classes of character, between " +"low-case, up-case, figures and special characters." +msgstr "" + +#: ../class/m_authip.php:338 +msgid "Object not available" +msgstr "" + +#: ../class/m_authip.php:347 +#, php-format +msgid "Can't identified class for the protocole %s" +msgstr "" + +#: ../class/m_bro.php:68 +msgid "1 column, detailed" +msgstr "" + +#: ../class/m_bro.php:68 +msgid "2 columns, short" +msgstr "" + +#: ../class/m_bro.php:68 +msgid "3 columns, short" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "tar.Z (Unix)" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "tar.bz2 (Linux)" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "tgz (Linux)" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "zip (Windows/Dos)" +msgstr "" + +#: ../class/m_bro.php:71 +msgid "Edit the newly created file" +msgstr "" + +#: ../class/m_bro.php:71 +msgid "Go back to the file manager" +msgstr "" + +#: ../class/m_bro.php:186 +msgid "This directory do not exist" +msgstr "" + +#: ../class/m_bro.php:365 ../class/m_bro.php:1040 +msgid "Cannot create the requested directory. Please check the permissions" +msgstr "" + +#: ../class/m_bro.php:371 ../class/m_bro.php:388 ../class/m_bro.php:413 +#: ../class/m_bro.php:437 ../class/m_bro.php:469 ../class/m_bro.php:479 +#: ../class/m_bro.php:509 ../class/m_bro.php:546 ../class/m_bro.php:587 +#: ../class/m_bro.php:625 ../class/m_bro.php:630 ../class/m_bro.php:721 +#: ../class/m_bro.php:868 ../class/m_bro.php:900 +msgid "File or folder name is incorrect" +msgstr "" + +#: ../class/m_bro.php:393 ../class/m_bro.php:558 +msgid "Cannot create the requested file. Please check the permissions" +msgstr "" + +#: ../class/m_bro.php:483 ../class/m_bro.php:634 +msgid "You cannot move or copy a file to the same folder" +msgstr "" + +#: ../class/m_bro.php:610 +#, php-format +msgid "" +"I cannot find a way to extract the file %s, it is an unsupported compressed " +"format" +msgstr "" + +#: ../class/m_bro.php:717 +msgid "Cannot read the requested file. Please check the permissions" +msgstr "" + +#: ../class/m_bro.php:792 +msgid "File not in authorized directory" +msgstr "" + +#: ../class/m_bro.php:895 +msgid "Cannot edit the requested file. Please check the permissions" +msgstr "" + +#: ../class/m_cron.php:40 +msgid "Daily" +msgstr "" + +#: ../class/m_cron.php:41 +msgid "Hour" +msgstr "" + +#: ../class/m_cron.php:42 +msgid "Half Hour" +msgstr "" + +#: ../class/m_cron.php:125 +msgid "URL not valid" +msgstr "" + +#: ../class/m_cron.php:133 +msgid "Email address is not valid" +msgstr "" + +#: ../class/m_cron.php:142 +msgid "You quota of cron entries is over. You cannot create more cron entries" +msgstr "" + +#: ../class/m_cron.php:151 +msgid "Identity problem" +msgstr "" + +#: ../class/m_dom.php:178 +msgid "Err: failed to prepare the zone" +msgstr "" + +#: ../class/m_dom.php:200 +msgid "Missing domain name" +msgstr "" + +#: ../class/m_dom.php:495 +msgid "The name MUST contain only letter and digits" +msgstr "" + +#: ../class/m_dom.php:515 ../class/m_dom.php:1291 +msgid "" +"The parameters for this subdomain and domain type are invalid. Please check " +"for subdomain entries incompatibility" +msgstr "" + +#: ../class/m_dom.php:629 ../class/m_dom.php:1054 ../class/m_dom.php:1119 +#: ../class/m_dom.php:1262 ../class/m_dom.php:1351 ../class/m_dom.php:1395 +#: ../class/m_dom.php:1710 +msgid "--- Program error --- No lock on the domains!" +msgstr "" + +#: ../class/m_dom.php:636 ../class/m_dom.php:1059 ../class/m_dom.php:1286 +#: ../class/m_dom.php:1420 +msgid "The domain name is syntaxically incorrect" +msgstr "" + +#: ../class/m_dom.php:642 ../class/m_dom.php:683 ../class/m_dom.php:1498 +msgid "" +"The requested domain is forbidden in this server, please contact the " +"administrator" +msgstr "" + +#: ../class/m_dom.php:646 +msgid "This domain is the server's domain! You cannot host it on your account!" +msgstr "" + +#: ../class/m_dom.php:651 ../class/m_dom.php:656 +msgid "The domain already exist" +msgstr "" + +#: ../class/m_dom.php:663 ../class/m_dom.php:1402 +msgid "" +"The last member of the domain name is incorrect or cannot be hosted in that " +"server" +msgstr "" + +#: ../class/m_dom.php:667 ../class/m_dom.php:671 +msgid "The domain cannot be found in the whois database" +msgstr "" + +#: ../class/m_dom.php:690 +msgid "Your domain quota is over, you cannot create more domain names" +msgstr "" + +#: ../class/m_dom.php:697 +msgid "An unexpected error occured when creating the domain" +msgstr "" + +#: ../class/m_dom.php:706 ../class/m_dom.php:1065 +#, php-format +msgid "Domain '%s' not found" +msgstr "" + +#: ../class/m_dom.php:820 +msgid "Could not delete default type" +msgstr "" + +#: ../class/m_dom.php:972 +msgid "The Whois database is unavailable, please try again later" +msgstr "" + +#: ../class/m_dom.php:979 ../class/m_dom.php:1406 +msgid "The domain cannot be found in the Whois database" +msgstr "" + +#: ../class/m_dom.php:1124 ../class/m_dom.php:1355 +msgid "The sub-domain does not exist" +msgstr "" + +#: ../class/m_dom.php:1155 +msgid "invalid url" +msgstr "" + +#: ../class/m_dom.php:1165 +msgid "The folder you entered is incorrect or does not exist" +msgstr "" + +#: ../class/m_dom.php:1174 ../class/m_dom.php:1182 +msgid "The ip address is invalid" +msgstr "" + +#: ../class/m_dom.php:1190 +msgid "The name you entered is incorrect" +msgstr "" + +#: ../class/m_dom.php:1198 +msgid "The TXT value you entered is incorrect" +msgstr "" + +#: ../class/m_dom.php:1203 +msgid "Invalid domain type selected, please check" +msgstr "" + +#: ../class/m_dom.php:1274 +msgid "" +"There is some forbidden characters in the sub domain (only A-Z 0-9 and - are " +"allowed)" +msgstr "" + +#: ../class/m_dom.php:1313 ../class/m_dom.php:1324 +msgid "Cannot write to the destination folder" +msgstr "" + +#: ../class/m_dom.php:1410 +msgid "" +"The DNS of this domain do not match the server's DNS. Please change your " +"domain's DNS before you install it again" +msgstr "" + +#: ../class/m_dom.php:1425 +#, php-format +msgid "The domain name %s does not exist" +msgstr "" + +#: ../class/m_dom.php:1431 +msgid "No change has been requested..." +msgstr "" + +#: ../class/m_dom.php:1439 ../class/m_dom.php:1444 +msgid "" +"There is no MX record pointing to this server, and you are asking us to host " +"the mail here. Make sure to update your MX entries or no mail will be " +"received" +msgstr "" + +#: ../class/m_dom.php:1491 ../class/m_dom.php:1515 +msgid "The IP address you entered is incorrect" +msgstr "" + +#: ../class/m_dom.php:1588 ../class/m_dom.php:1594 ../class/m_dom.php:1612 +#: ../class/m_dom.php:1618 +msgid "This domain is not installed in your account" +msgstr "" + +#: ../class/m_dom.php:1660 +msgid "The specified slave account already exists" +msgstr "" + +#: ../class/m_dom.php:1691 +msgid "--- Program error --- Lock already obtained!" +msgstr "" + +#: ../class/m_dom.php:1831 +msgid "Locally hosted" +msgstr "" + +#: ../class/m_dom.php:1832 +msgid "URL redirection" +msgstr "" + +#: ../class/m_dom.php:1833 +msgid "IPv4 redirect" +msgstr "" + +#: ../class/m_dom.php:1834 +msgid "Webmail access" +msgstr "" + +#: ../class/m_dom.php:1835 +msgid "Squirrelmail Webmail access" +msgstr "" + +#: ../class/m_dom.php:1836 +msgid "Roundcube Webmail access" +msgstr "" + +#: ../class/m_dom.php:1837 +msgid "IPv6 redirect" +msgstr "" + +#: ../class/m_dom.php:1838 +msgid "CNAME DNS entry" +msgstr "" + +#: ../class/m_dom.php:1839 +msgid "TXT DNS entry" +msgstr "" + +#: ../class/m_dom.php:1840 +msgid "MX DNS entry" +msgstr "" + +#: ../class/m_dom.php:1841 +msgid "secondary MX DNS entry" +msgstr "" + +#: ../class/m_dom.php:1842 +msgid "Default mail server" +msgstr "" + +#: ../class/m_dom.php:1843 +msgid "Default backup mail server" +msgstr "" + +#: ../class/m_dom.php:1844 +msgid "AlternC panel access" +msgstr "" + +#: ../class/m_err.php:66 ../class/m_err.php:98 +msgid "err_" +msgstr "" + +#: ../class/m_ftp.php:56 ../class/m_ftp.php:447 +msgid "FTP accounts" +msgstr "" + +#: ../class/m_ftp.php:105 +msgid "This account do not exist or is not of this account" +msgstr "" + +#: ../class/m_ftp.php:117 +msgid "Error during update" +msgstr "" + +#: ../class/m_ftp.php:151 +msgid "No FTP account found" +msgstr "" + +#: ../class/m_ftp.php:187 ../class/m_ftp.php:262 ../class/m_ftp.php:322 +msgid "This FTP account does not exist" +msgstr "" + +#: ../class/m_ftp.php:217 +#, php-format +msgid "FTP login is incorrect: too many '%s'" +msgstr "" + +#: ../class/m_ftp.php:224 +msgid "FTP login is incorrect" +msgstr "" + +#: ../class/m_ftp.php:271 ../class/m_ftp.php:351 +msgid "The chosen prefix is not allowed" +msgstr "" + +#: ../class/m_ftp.php:282 ../class/m_ftp.php:360 +msgid "This FTP account already exists" +msgstr "" + +#: ../class/m_ftp.php:290 ../class/m_ftp.php:372 +msgid "The directory cannot be created" +msgstr "" + +#: ../class/m_ftp.php:347 +msgid "Password can't be empty" +msgstr "" + +#: ../class/m_ftp.php:388 +msgid "Your FTP account quota is over. You cannot create more ftp accounts" +msgstr "" + +#: ../class/m_hta.php:60 +msgid "Protected folders" +msgstr "" + +#: ../class/m_hta.php:81 ../class/m_hta.php:291 ../class/m_hta.php:332 +#, php-format +msgid "The folder '%s' does not exist" +msgstr "" + +#: ../class/m_hta.php:89 ../class/m_hta.php:94 ../class/m_hta.php:104 +#: ../class/m_hta.php:253 ../class/m_hta.php:298 ../class/m_hta.php:347 +msgid "File already exist" +msgstr "" + +#: ../class/m_hta.php:98 +msgid "Restricted area" +msgstr "" + +#: ../class/m_hta.php:126 +msgid "No protected folder" +msgstr "" + +#: ../class/m_hta.php:208 +#, php-format +msgid "I cannot delete the file '%s/.htaccess'" +msgstr "" + +#: ../class/m_hta.php:212 +#, php-format +msgid "I cannot delete the file '%s/.htpasswd'" +msgstr "" + +#: ../class/m_hta.php:231 +msgid "Please enter a user" +msgstr "" + +#: ../class/m_hta.php:261 +#, php-format +msgid "The user '%s' already exist for this folder" +msgstr "" + +#: ../class/m_hta.php:273 +msgid "Please enter a valid username" +msgstr "" + +#: ../class/m_hta.php:402 +msgid "An incompatible .htaccess file exists in this folder" +msgstr "" + +#: ../class/m_log.php:60 +msgid "Logs" +msgstr "" + +#: ../class/m_lxc.php:133 +msgid "VM already started" +msgstr "" + +#: ../class/m_mail.php:95 +msgid "Email Addresses" +msgstr "" + +#: ../class/m_mail.php:158 ../class/m_mail.php:243 ../class/m_mail.php:328 +#: ../class/m_mail.php:455 ../class/m_mail.php:509 +msgid "The email you entered is syntaxically incorrect" +msgstr "" + +#: ../class/m_mail.php:191 +msgid "Email account password" +msgstr "" + +#: ../class/m_mail.php:281 +msgid "No email found for this query" +msgstr "" + +#: ../class/m_mail.php:340 +msgid "You cannot create email addresses: your quota is over" +msgstr "" + +#: ../class/m_mail.php:346 +msgid "This email address already exists" +msgstr "" + +#: ../class/m_mail.php:352 +msgid "An unexpected error occured when creating the email" +msgstr "" + +#: ../class/m_mail.php:406 +msgid "This email is not yours, you can't change anything on it" +msgstr "" + +#: ../class/m_mail.php:469 ../class/m_mail.php:875 +#, php-format +msgid "The email %s does not exist, it can't be deleted" +msgstr "" + +#: ../class/m_mail.php:473 +#, php-format +msgid "The email %s is already marked for deletion, it can't be deleted" +msgstr "" + +#: ../class/m_mail.php:482 +#, php-format +msgid "The email %s has been marked for deletion" +msgstr "" + +#: ../class/m_mail.php:488 +#, php-format +msgid "The email %s has been successfully deleted" +msgstr "" + +#: ../class/m_mail.php:520 +#, php-format +msgid "The email %s does not exist, it can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:524 +#, php-format +msgid "The email %s is special, it can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:528 +#, php-format +msgid "" +"Sorry, deletion of email %s is already in progress, or not marked for " +"deletion, it can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:537 +#, php-format +msgid "The email %s has been undeleted" +msgstr "" + +#: ../class/m_mail.php:540 +#, php-format +msgid "-- Program Error -- The email %s can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:621 +msgid "" +"There is forbidden characters in your email address. You can't make it a POP/" +"IMAP account, you can only use it as redirection to other emails" +msgstr "" + +#: ../class/m_mail.php:641 +msgid "" +"You set a quota smaller than the current mailbox size. Since it's not " +"allowed, we set the quota to the current mailbox size" +msgstr "" + +#: ../class/m_mail.php:826 +msgid "The slave MX account was not found" +msgstr "" + +#: ../class/m_mem.php:95 ../class/m_mem.php:101 ../class/m_mem.php:168 +#: ../class/m_mem.php:299 +msgid "User or password incorrect" +msgstr "" + +#: ../class/m_mem.php:105 ../class/m_mem.php:483 +msgid "This account is locked, contact the administrator" +msgstr "" + +#: ../class/m_mem.php:112 ../class/m_mem.php:271 +msgid "" +"This website is currently under maintenance, login is currently disabled." +msgstr "" + +#: ../class/m_mem.php:127 +msgid "Your IP isn't allowed to connect" +msgstr "" + +#: ../class/m_mem.php:243 +msgid "Missing password" +msgstr "" + +#: ../class/m_mem.php:252 +msgid "Identity lost or unknown, please login" +msgstr "" + +#: ../class/m_mem.php:258 ../class/m_mem.php:347 +msgid "Session unknown, contact the administrator" +msgstr "" + +#: ../class/m_mem.php:264 ../class/m_mem.php:352 +msgid "IP address incorrect, please contact the administrator" +msgstr "" + +#: ../class/m_mem.php:341 +msgid "Cookie incorrect, please accept the session cookie" +msgstr "" + +#: ../class/m_mem.php:388 +msgid "You are not allowed to change your password." +msgstr "" + +#: ../class/m_mem.php:392 +msgid "The old password is incorrect" +msgstr "" + +#: ../class/m_mem.php:396 ../class/m_mem.php:445 +msgid "The new passwords are differents, please retry" +msgstr "" + +#: ../class/m_mem.php:420 +msgid "You must be a system administrator to do this." +msgstr "" + +#: ../class/m_mem.php:440 +msgid "This account is locked, contact the administrator." +msgstr "" + +#: ../class/m_mem.php:448 +#, php-format +msgid "" +"Hello,\n" +"\n" +"You requested the modification of your password for your\n" +"account %s on %s\n" +"Here are your username and password to access the panel :\n" +"\n" +"--------------------------------------\n" +"\n" +"Username : %s\n" +"Password : %s\n" +"\n" +"--------------------------------------\n" +"\n" +"Note : if you didn't requested that modification, it means that\n" +"someone did it instead of you. You can choose to ignore this message.\n" +"If it happens again, please contact your server's Administrator. \n" +"\n" +"Cordially.\n" +msgstr "" + +#: ../class/m_mem.php:493 +#, php-format +msgid "" +"Hello,\n" +"\n" +"Someone (maybe you) requested an email's address modification of the " +"account\n" +"%s on %s\n" +"To confirm your request, go to this url :\n" +"\n" +"%s\n" +"\n" +"(Warning : if this address is displayed on 2 lines, don't forgot to\n" +"take it on one line).\n" +"The panel will ask you the key given when the email address\n" +"modification was requested.\n" +"\n" +"If you didn't asked for this modification, it means that someone\n" +"did it instead of you. You can choose to ignore this message. If it happens\n" +"again, please contact your server's administrator.\n" +"\n" +"Cordially.\n" +msgstr "" + +#: ../class/m_mem.php:534 +msgid "The information you entered is incorrect." +msgstr "" + +#: ../class/m_menu.php:113 +msgid "Home / Information" +msgstr "" + +#: ../class/m_menu.php:120 +msgid "Logout" +msgstr "" + +#: ../class/m_menu.php:127 +msgid "Online help" +msgstr "" + +#: ../class/m_menu.php:135 +msgid "Languages" +msgstr "" + +#: ../class/m_mysql.php:49 +msgid "" +"There are no databases in db_servers for this user. Please contact your " +"administrator." +msgstr "" + +#: ../class/m_mysql.php:110 +msgid "MySQL" +msgstr "" + +#: ../class/m_mysql.php:119 +msgid "Databases" +msgstr "" + +#: ../class/m_mysql.php:178 +msgid "Cannot connect to PhpMyAdmin" +msgstr "" + +#: ../class/m_mysql.php:219 ../class/m_mysql.php:385 +#, php-format +msgid "Database %s not found" +msgstr "" + +#: ../class/m_mysql.php:246 +msgid "Your databases quota is over. You cannot create more databases" +msgstr "" + +#: ../class/m_mysql.php:257 +msgid "Database can't have empty suffix" +msgstr "" + +#: ../class/m_mysql.php:262 ../class/m_mysql.php:380 ../class/m_mysql.php:462 +msgid "Database name can contain only letters and numbers" +msgstr "" + +#: ../class/m_mysql.php:268 +msgid "Database name cannot exceed 64 characters" +msgstr "" + +#: ../class/m_mysql.php:273 +#, php-format +msgid "Database %s already exists" +msgstr "" + +#: ../class/m_mysql.php:291 +msgid "" +"There is a problem with the special PhpMyAdmin user. Contact the " +"administrator" +msgstr "" + +#: ../class/m_mysql.php:310 +msgid "An error occured. The database could not be created" +msgstr "" + +#: ../class/m_mysql.php:328 +msgid "The database was not found. I can't delete it" +msgstr "" + +#: ../class/m_mysql.php:367 +msgid "User aren't allowed to configure their backups" +msgstr "" + +#: ../class/m_mysql.php:398 +msgid "You have to choose how many backups you want to keep" +msgstr "" + +#: ../class/m_mysql.php:402 +msgid "Directory does not exist" +msgstr "" + +#: ../class/m_mysql.php:420 ../class/m_mysql.php:465 +msgid "Database not found" +msgstr "" + +#: ../class/m_mysql.php:427 ../class/m_mysql.php:711 +msgid "The password is mandatory" +msgstr "" + +#: ../class/m_mysql.php:432 +msgid "MySQL password cannot exceed 16 characters" +msgstr "" + +#: ../class/m_mysql.php:472 +msgid "Databases rights are not correct" +msgstr "" + +#: ../class/m_mysql.php:477 +msgid "The username can contain only letters and numbers." +msgstr "" + +#: ../class/m_mysql.php:483 +msgid "Database user not found" +msgstr "" + +#: ../class/m_mysql.php:495 +msgid "Could not grant rights" +msgstr "" + +#: ../class/m_mysql.php:513 +msgid "No file specified" +msgstr "" + +#: ../class/m_mysql.php:520 ../class/m_mysql.php:524 +msgid "File not found" +msgstr "" + +#: ../class/m_mysql.php:707 +msgid "The username is mandatory" +msgstr "" + +#: ../class/m_mysql.php:715 ../class/m_mysql.php:792 +msgid "The username can contain only letters and numbers" +msgstr "" + +#: ../class/m_mysql.php:722 +msgid "MySQL username cannot exceed 16 characters" +msgstr "" + +#: ../class/m_mysql.php:727 +msgid "The database user already exists" +msgstr "" + +#: ../class/m_mysql.php:731 ../class/m_mysql.php:765 +msgid "The passwords do not match" +msgstr "" + +#: ../class/m_mysql.php:802 +msgid "The username was not found" +msgstr "" + +#: ../class/m_mysql.php:831 +msgid "This user does not exist in the MySQL/User database" +msgstr "" + +#: ../class/m_mysql.php:1105 +msgid "The directory could not be created" +msgstr "" + +#: ../class/m_piwik.php:40 +msgid "Piwik statistics" +msgstr "" + +#: ../class/m_piwik.php:45 +msgid "Piwik Users" +msgstr "" + +#: ../class/m_piwik.php:46 +msgid "Piwik Sites" +msgstr "" + +#: ../class/m_piwik.php:81 +msgid "Statistics through Piwik accounts" +msgstr "" + +#: ../class/m_piwik.php:193 ../class/m_piwik.php:316 +msgid "You are not allowed to delete the statistics of this website" +msgstr "" + +#: ../class/m_piwik.php:366 +msgid "Unable to reach the API" +msgstr "" + +#: ../class/m_piwik.php:372 +msgid "Error while decoding response from the API" +msgstr "" + +#: ../class/m_piwik.php:378 +msgid "Other format than JSON is not implemented yet" +msgstr "" + +#: ../class/m_quota.php:65 +msgid "Show my quotas" +msgstr "" + +#: ../class/m_quota.php:78 +#, php-format +msgid "%s%% of %s" +msgstr "" + +#: ../class/m_quota.php:78 ../class/m_quota.php:105 ../class/m_quota.php:196 +msgid "quota_" +msgstr "" + +#: ../class/m_quota.php:236 +msgid "Error writing the quota entry!" +msgstr "" + +#: ../class/m_quota.php:537 +msgid "B" +msgstr "" + +#: ../class/m_quota.php:537 +msgid "GB" +msgstr "" + +#: ../class/m_quota.php:537 +msgid "KB" +msgstr "" + +#: ../class/mime.php:135 +msgid "CSS Stylesheet" +msgstr "" + +#: ../class/mime.php:136 +msgid "Comma Separated Values data" +msgstr "" + +#: ../class/mime.php:137 +msgid "DIA Diagram" +msgstr "" + +#: ../class/mime.php:138 +msgid "Word Document" +msgstr "" + +#: ../class/mime.php:139 +msgid "Word Document Template" +msgstr "" + +#: ../class/mime.php:140 +msgid "Encapsulated Postscript" +msgstr "" + +#: ../class/mime.php:141 +msgid "GIF Image" +msgstr "" + +#: ../class/mime.php:142 +msgid "Macintosh Executable" +msgstr "" + +#: ../class/mime.php:143 ../class/mime.php:144 +msgid "HTML Document" +msgstr "" + +#: ../class/mime.php:145 ../class/mime.php:146 +msgid "JPEG Image" +msgstr "" + +#: ../class/mime.php:147 +msgid "Music Playlist" +msgstr "" + +#: ../class/mime.php:148 +msgid "MP3 Music File" +msgstr "" + +#: ../class/mime.php:149 +msgid "Ogg Music File" +msgstr "" + +#: ../class/mime.php:150 +msgid "Acrobat PDF" +msgstr "" + +#: ../class/mime.php:151 +msgid "PHP Source" +msgstr "" + +#: ../class/mime.php:152 +msgid "PNG Image" +msgstr "" + +#: ../class/mime.php:153 ../class/mime.php:154 +msgid "Powerpoint Slideshow" +msgstr "" + +#: ../class/mime.php:155 +msgid "Postscript Document" +msgstr "" + +#: ../class/mime.php:156 +msgid "Photoshop Image" +msgstr "" + +#: ../class/mime.php:157 +msgid "Rar Compressed Files" +msgstr "" + +#: ../class/mime.php:158 +msgid "Rich Text Document" +msgstr "" + +#: ../class/mime.php:159 +msgid "OpenOffice Spreadsheet" +msgstr "" + +#: ../class/mime.php:160 +msgid "OpenOffice Drawing" +msgstr "" + +#: ../class/mime.php:161 +msgid "OpenOffice Presentation" +msgstr "" + +#: ../class/mime.php:162 +msgid "OpenOffice Writer" +msgstr "" + +#: ../class/mime.php:163 ../class/mime.php:164 +msgid "TIFF Image" +msgstr "" + +#: ../class/mime.php:165 +msgid "Text Document" +msgstr "" + +#: ../class/mime.php:166 ../class/mime.php:167 +msgid "Virtual Card" +msgstr "" + +#: ../class/mime.php:168 +msgid "Gimp Image" +msgstr "" + +#: ../class/mime.php:169 +msgid "Excel Spreadsheet" +msgstr "" + +#: ../class/mime.php:170 +msgid "Zip Compressed Files" +msgstr "" + +#: ../class/mime.php:171 +msgid "Flash Animation" +msgstr "" + +#: ../class/mime.php:172 ../class/mime.php:173 ../class/mime.php:174 +msgid "Real Media File" +msgstr "" diff --git a/ssl/panel/locales/pt_BR/LC_MESSAGES/alternc.mo b/ssl/panel/locales/pt_BR/LC_MESSAGES/alternc.mo new file mode 100644 index 0000000000000000000000000000000000000000..50e40d643050511e256b4f6280f1ea551b15bc63 GIT binary patch literal 12940 zcmchdd5|2{eaG9JMqnn$ZB>^@jz0*HrNxS68Ab1(vw1hu=zWae7I2ZgLcs%&J z$G50$;D>m=AN(Nr45;zXgPQ*X z@O1DmLGAZb@HFsn7C9R{3#@=wfj4N{#5W} zQ0KUaKidCF@crOM@H}ukC^~0B?Q<`vdA|kfyx#_o1z!SB0$%}_gZ~CXa&QKnqVqyf z<8AmCn7D5C#VQ1mPV#lMxH=(-%#dON^7!J9zw z=N0fl@V~%e@V-+Vf9FBb^Af1_egqx^z7C!bz5(idXF!DbJ^)Idn?ap#H@FnM%Rhe| zlz#jG6rDc-MbCeOI`7+{_B#Qh4g=2wb>6cKVYp!of5Q2YNWsPq00_+tn?7iApa`Do+l9R@|; z22gr10g4|p9zOvhn&69|AJjDxmh+0g4YbQ1bbb?|&H7dQXG0t9g$v`u9Hq zb^d<=WtXSHJng#*)Vy&}`c?;J=l6j+=fmJA_zh6!{||5kJeI-Y_XbdQxeGiR3_-1* zfI9bQK+*j_@0u)_e10}C-f!gl{ zP;|ZsUI6~1e}4iGdOnXoI`{RUtlu zcq{lma6hPZZv!>{0q_^WN5JF3mq79DRZwy`7G=;mF9fdutDyYiZcy{?1}_1h2Se}; zQ2e@K*q!%w@Eo3>0+)h+0!ps`3W}e{;50=4*&s&gi#X4GR99y)^Mg{MBcb z1M6p}`JU1~N2}4qJAFP)`wg0Ora`-nrq2PI?EBYgYiQTg^m&lBjh4_xX&Y(M#|^Yk z(N3VPrCmy!py{)T7Sd$rSJLKa`s|@eN4`KCqe)NYvyP%I{CwPZd>H&J?XsQ$C;IOX zf%njUv*(>`NcQwFZ9DB~+Of0|+Mzx-(21%AE!tArXK4CF4uU(t$7m>u8^#Nx${^2<>tE&FQrNYT+9G?x)>K%W3D)PN#jI)}-lkj)UM)@OauWv@g-N z(9WQhpRIiPHJa>EpNnaS*>CR8Y5x1o;KyjE(7r;$RR*)P+iAOLC)4!#fP>&yJ>CVL zNjp-{ONY;oOg)=UQZp4M^*Ay`lGb8V4~v%T50+khepFeyQhyj6ET2nSGp51dMwku+ z!={$i+l_REiQ<-BAz10ViWR1q$?{fk@xqSLS}kj*EmOg@yTRUM#DmP>fV{66cR%Od=n^3$;idG)BvK%UM)5zF4N%`6cwN5oyYo+D^cGnr-eUhxETFvfh?PyDi z23CW0uwC&^g$#q8~RYUs$M_))aNI_9#%qzFX>nGkN) z>*c_itdO3RkBv6=6z_!rE6ilOg(T8t`fI{;pINtM+^tcLmh$@VP@B!A^(+(#?u#g& z!d4|7WD=~8688sL=-hg?{6-Ywo;Na0>Av&2>c?VIJu`VKbye@RUzbf~kJ#!Kk!FRa z5jQ3=!t(Y1L9^GVEmU0Vc>6Ziw`8zKooFyTi?Y@LOp0JomKCv?n}N@c;W(Fe9p`}o zW@%gvHcX6_bQgUOPD3~7{Q6@i^K4EIqxS*Zi>EL$oF9`lDt1TjK3IdmYgy@ZhLpWU zvfnQ+H8-!5VaMZDuuJrtHqhM)=Wi8gj0S>rMX1+?-k4g}n1XJW?;~ zv@mAt^*F<9oL9~Iur?$48Lyq4aXIRnCNh;NvAW3ciI#T-te(jdJakI)!nNvIRIAm2 z;JPeN_RBBS&0La3*&Jbk<87Rhmk_&A-nkH7a1Lp@9GKjPqsSgjN)7GStGErcktRCn z>G+e`UbD>3$FoLhVcp!as_ENjPs;XI?5K4k4hc2&IGmM-c1y)kHQ1OkB!Layabj7b zw4|}Xo8dpTrFWIgK(jet$H#9{$lIh)IAVfLlA(2m?yHr#?Ub^&Tf{XO64_9r!*~7l zX55=BM#3wC&EX#H+qEbxrD!)1hF#pCxQvnfJJNN`LPAJ%pnNIPEk|9T@O)m~`+9ua zCVx8Xw!}@(4nB;T=EUrm!*}`rwb_phkFJ7I=Hb!gJ_r#UoOR(qtqJ6Q@yuc9M)# zr}wXrHq0gUy4*oKt@-GPgeGI$B;H|bidbSa3?tjhLb=J~TGCA76fupJfqsltCA|j0 z2chr=UBm4#iWy<|lw&Sb)8z>-JFKw#`=G*gu-t+OUpU{it&I!cru4!6ErRW_bEqy8 zn@x&DX+e}gG`hTRH3O_pZjYUAho&q4U>x(Xf6N78qj`m~%a3!kV0;E+65~y4Uo$RN zyN-mkLf>WM<8l(-nMe=hUTxfs@C?Ctd$Qr9i;KzyT{hVYm=jE(rkXnw7EFxOetiq0 zh)DYGW8`)HpiazLWVwX?0qta6c4wA0R5yQh!uhu)&+AbEUi8$Cop z`-I=aZWq+Dlzar2w;;{*$;JxnvWa0*yB1p2?>OZ+6mL>xJ$2~AX=pp^JMzf{5m1m6+b7hSi z?$w5?dtt5|v=70;j4Np7Nh8ennF~nZ2nCV8E87S$+fq46a&}#}b>p~+COhLb1{oh} z2!U=lp{lYms-VXb9FWDY9sTNc=7t={pS<{{_Dihg= znQ66}#mL}bXeZaISw20O+mVCAOUAZNRMzT#!}=BOlB5YMhlVe%3=dU?SDE4AkxMSS zXlUio5CbdQ5vb@m#JGz`E?Ife5T7MV0xJ`Fm=+j#mXDYoyxCfUOL^zp;RW~5U!7LkoGh_F*eKB;g3>u4bk}AHJm8dan)->AKp#oT(&V<2c`_zc>Na1dZ3HV{xl@;YRyctIM z{O@&N7*~CY6azy`N%;S$J&A@}+llqGb`i=?VIJ(vYV%LCa{?decEu>ZLXLCI@2EzF zC`Cxn#b2k2K7EXppb#Kdz{aacjH z;uZQWMPJwLhAg`uHnX*(!`KA}lh|DF;S4LVLT-J`rV6~Da!fiSjuE<(DKZeZ?sZww zj3a!UtjCnQ^e!C51R+~RNOCQSfI4d~SWV%DdmUGe-nGg_G1|#6*^4k8y0cqR%NWTY zb2M)@v(+X>>3V9VY>n4Hp>1xIE_%AZN$;>oIft;E(y^Yh!)m2mfM12@(spc*Bc+%1 z-R_Phawg^Vxg$`KuFTd6BudRXX|}%@N`&i)h3*ig8#2oan2jStXW}H6N5gUk3`{Pl zy6X;0-rX-IxPuTR-KiL+U=&UbDUR7n29{ebB2II)sx?5{a-sh6U$sFZM zl!l=wX@&=q=q=Hd_GHf;7sFv|vMF0|b2Eu1F3n>}s&4(;6d^bN%qm!sOsCcnC^RQ~ z=MPlsJqt%%d$ys5P?q5O z!lk(39J+HF<E5d(w?3UstpBtt6h^Vvo`RQV zvy>GbzYUejQda7^^p-N|*CMl;e4+exMML}*Ms*v@qmZ7Ss3V`C${cpj1w(mF$D8+s z96!cZ@2tqJR@qX&H_FVoG1QFe85hcAKR(kjzsuIX5}xA7;zc|g9z6L}0~IVvmtif( zmdP;3MQVBBh*V7%dAa|Nw;_ea{8D+_hAZiLzh@H$d>%zBlpC{+;!2ru;IXQKwQDY_ zD)0qc+gvGhd(}mfn;ijEY6dGw9;f+3h{H?BkI&!nodZ<%P>%d(ROcHHliXz!KBqt= zHGW{UW?W{>D)P1F50ZxPD*|;t&Zu(VB)1$1Zo71r6un=CDEG<29Qd-I-Hqxp%cJu8 zQIDTnk|x~gFrBJj`DXqZR9_`Q?~C}26i4Q2ELN{Nc|%7J^<#l83F-!}oJT29I{#z{ z)3Zr_Op$9=Fx_gMr*t?h({T9Tn>ejknk^@+L9ycbf&o1V%)6OGHDINlJg?t&7A`vK z5s!rle?Jv(i zt7_lYPVVAzTQ7nBjF1xC@C~|jH&L&-4nL8I_*sn|F Rq$@BUVzy1zd&c(-|6iw4QXc>S literal 0 HcmV?d00001 diff --git a/ssl/panel/locales/pt_BR/LC_MESSAGES/manual.po b/ssl/panel/locales/pt_BR/LC_MESSAGES/manual.po new file mode 100644 index 00000000..281f7ca3 --- /dev/null +++ b/ssl/panel/locales/pt_BR/LC_MESSAGES/manual.po @@ -0,0 +1,710 @@ +#. Template for AlternC Translation +#. Copyright (c) 2002 the AlternC Development Team +#. +#. $Id: admin.po,v 1.4 2006/02/09 20:12:23 benjamin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: $Id: admin.po,v 1.4 2006/02/09 20:12:23 benjamin Exp $\n" +"Report-Msgid-Bugs-To: i18n@alternc.org\n" +"POT-Creation-Date: 2004-05-24 19:34+0200\n" +"PO-Revision-Date: 2002-06-16 13:50CEST\n" +"Last-Translator: Benjamin Sonntag \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Emacs 21\n" + +#. -- Only administrators can access this page !! -- +msgid "err_admin_1" +msgstr "" + +#. Account not found +msgid "err_admin_2" +msgstr "" + +#. This login already exists +msgid "err_admin_3" +msgstr "" + +#. -- I cannot create this account -- +msgid "err_admin_4" +msgstr "" + +#. Please enter a valid email address +msgid "err_admin_5" +msgstr "" + +#. All fields are mandatory +msgid "err_admin_6" +msgstr "" + +#. You can ask for your password only once a day ! +msgid "err_admin_7" +msgstr "" + +#. This account is ALREADY an administrator account +msgid "err_admin_8" +msgstr "" + +#. This account is NOT an administrator account ! +msgid "err_admin_9" +msgstr "" + +#. Login can only contains characters a-z, 0-9 and - +msgid "err_admin_10" +msgstr "" + +#. This TLD does not exist +msgid "err_admin_11" +msgstr "" + +#. This TLD already exists +msgid "err_admin_12" +msgstr "" + +#. The login is too long (16 chars max) +msgid "err_admin_13" +msgstr "" + +#. Domain names +msgid "quota_dom" +msgstr "" + +#. Domain '%s' not found. +msgid "err_dom_1" +msgstr "" + +#. The domaine '%s' does not belong to you. +msgid "err_dom_2" +msgstr "" + +#. --- Programm error --- No lock on the domains ! +msgid "err_dom_3" +msgstr "" + +#. The domain name is too long. +msgid "err_dom_4" +msgstr "" + +#. One of the domain name member is too long. +msgid "err_dom_5" +msgstr "" + +#. There is some forbidden characters in the domain name (only A-Z 0-9 and - are allowed). +msgid "err_dom_6" +msgstr "" + +#. The last member of the domain name is incorrect or cannot be hosted in that server. +msgid "err_dom_7" +msgstr "" +"The last member of the domain name is incorrect or cannot be hosted in that " +"server." + +#. The domain already exists. +msgid "err_dom_8" +msgstr "" + +#. The domain has been deleted less than 5 minutes ago, please try again later. +msgid "err_dom_9" +msgstr "" +"The domain has been deleted less than 5 minutes ago, please try again later." + +#. Your domain quota is over, you cannot create more domain names. +msgid "err_dom_10" +msgstr "" + +#. The Whois database is unavailable, please try again later. +msgid "err_dom_11" +msgstr "" + +#. The domain cannot be found in the whois database. +msgid "err_dom_12" +msgstr "" + +#. The domain has been changed less than 5 minutes ago. Please try again in a few minutes. +msgid "err_dom_13" +msgstr "" + +#. The sub-domain does not exist. +msgid "err_dom_14" +msgstr "" + +#. No change has been requested... +msgid "err_dom_15" +msgstr "" + +#. The sub-domain already exists. +msgid "err_dom_16" +msgstr "" + +#. --- Programm error --- Lock already obtained ! +msgid "err_dom_17" +msgstr "" + +#. This domain is the server's domain !!! You cannot host it on your account ! +msgid "err_dom_18" +msgstr "" + +#. The IP address you entered is incorrect. +msgid "err_dom_19" +msgstr "" + +#. The URL you entered is incorrect. +msgid "err_dom_20" +msgstr "" + +#. The folder you entered is incorrect or does not exist. +msgid "err_dom_21" +msgstr "" + +#. The requested domain is forbidden in this server, please contact the administrator +msgid "err_dom_22" +msgstr "" + +#. The DNS of this domain do not match the server's DNS. Please change your +#. domain's DNS (and eventually wait 1 day) before you install it again. +msgid "err_dom_23" +msgstr "" + +#. There is some forbidden characters in the sub domain (only A-Z 0-9 and - are allowed). +msgid "err_dom_24" +msgstr "" + +#. There is no MX record pointing to this server, and you are asking us to host the Mail here +msgid "err_dom_25" +msgstr "" + +#. - Entrez le nom du domaine que vous souhaitez héberger. Le nom de domaine +#. doit être complet, mais sans le www.
IMPORTANT : Si vous voulez +#. un hébergement réel de domaine, il faut que les DNS de votre domaine +#. pointent vers nos serveurs DNS. Contacter votre hébergeur pour plus +#. d'information.
Exemples : globenet.org / demo.com / test.eu.org etc. +#.
Plus d'info sur la gestion des domaines dans l'aide en ligne +#. HELPID_200
+msgid "hlp_add_domain" +msgstr "" + +#. Cliquez sur le lien ci-dessus. Vous pourrez ensuite accéder aux paremètres +#. du domaine dans le menu à gauche.2 liens vont apparaitre :
- un +#. premier pour modifier les paramètres d'hébergement du domaine (sous- +#. domaines, redirections, hébergement mails ...)
- un second pour gérer +#. les comptes emails du domaine (si vous souhaitez créer des boites aux +#. lettres).
Plus d'info sur la gestion des domaines dans l'aide en ligne +#. HELPID_200
+msgid "hlp_add_domain_2" +msgstr "" + +#. Le domaine a été effacé, mais les fichiers de votre site n'ont pas été +#. détruits.
Si vous souhaitez détruire les fichiers du site web, utilisez +#. le Gestionnaire de Fichier
Plus d'info sur la gestion des domaines dans +#. l'aide en ligne HELPID_200
+msgid "hlp_del_domain" +msgstr "" + +#. Cette zone vous permet de modifier les paramètres de votre domaine, ainsi +#. que des sous-domaines installés
Vous pouvez créer un nouveau sous- +#. domaine et choisir, soit de le rediriger vers votre espace disque, vers une +#. autre adresse Internet, ou vers une adresse IP (utilisateurs avancés)
+#. Plus d'info sur la gestion des domaines dans l'aide en ligne HELPID_200
+msgid "hlp_edit_domain" +msgstr "" + +#. FTP Accounts +msgid "quota_ftp" +msgstr "" + +#. No ftp account found +msgid "err_ftp_1" +msgstr "" + +#. This ftp account does not exist +msgid "err_ftp_2" +msgstr "" + +#. The chosen prefix is not allowed +msgid "err_ftp_3" +msgstr "" + +#. This ftp account already exists +msgid "err_ftp_4" +msgstr "" + +#. Your ftp account quota is over. You cannot create more ftp accounts. +msgid "err_ftp_5" +msgstr "" + +#. The directory cannot be created. +msgid "err_ftp_6" +msgstr "" + +#. Voici la liste des comptes ftp ayant accès à votre compte. Cliquez sur +#. 'Modifier' pour changer le nom d'utilisateur, le mot de passe, ou le dossier +#. racine.
Pour supprimer un compte, cochez la case correspondante et +#. cliquez sur le bouton 'Supprimer les comptes cochés'
Pour pouvoir +#. accéder à vos fichiers avec un logiciel de ftp, vous devez créer au moins un +#. compte. Chaque compte est associé à un dossier, et n'aura donc accès qu'aux +#. fichiers situés dans ce dossier ou en dessous.
Plus d'info sur le FTP +#. dans l'aide en ligne HELPID_100
+msgid "hlp_ftp_list" +msgstr "" + +#. Vous n'avez actuellement aucun Compte FTP de disponible. Cliquez sur +#. 'Création d'un compte ftp' pour en créer un.
Pour pouvoir accéder à vos +#. fichiers avec un logiciel de ftp, vous devez créer au moins un compte. +#. Chaque compte est associé à un dossier, et n'aura donc accès qu'aux fichiers +#. situés dans ce dossier ou en dessous.
Plus d'info sur le FTP dans +#. l'aide en ligne HELPID_100
+msgid "hlp_ftp_list_no" +msgstr "" + +#. Pour ajouter un compte ftp, vous devez choisir un Nom d'utilisateur, un mot +#. de passe, et un répertoire racine
Le nom d'utilisateur commence +#. toujours par votre nom de login ou le nom d'un de vos domaines.
Le +#. répertoire racine, s'il n'existe pas, sera créé automatiquement.
Note : +#. Le compte que vous créez ainsi aura accès en lecture et en écriture aux +#. fichiers situés dans le répertoire et tous ses sous-répertoires.
Plus +#. d'info sur le FTP dans l'aide en ligne HELPID_100
+msgid "hlp_ftp_add" +msgstr "" + +#. An incompatible .htaccess file exists in this folder. +msgid "err_hta_1" +msgstr "" + +#. .htaccess parsed and syntaxically correct, a .htpassword file has been created. +msgid "err_hta_2" +msgstr "" + +#. .htaccess parsed and syntaxically correct, a .htpasswd already exist. +msgid "err_hta_3" +msgstr "" + +#. No protected folder +msgid "err_hta_4" +msgstr "" + +#. I cannot delete the file '%s'/.htaccess +msgid "err_hta_5" +msgstr "" + +#. I cannot delete the file '%s'/.htpasswd +msgid "err_hta_6" +msgstr "" + +#. The file .htaccess does not exist +msgid "err_hta_7" +msgstr "" + +#. The folder '%s' does not exist +msgid "err_hta_8" +msgstr "" + +#. The file '%s' is not correct +msgid "err_hta_9" +msgstr "" + +#. The user '%s' already exist for this folder +msgid "err_hta_10" +msgstr "" + +#. Please enter a valid username +msgid "err_hta_11" +msgstr "" + +#. Email Accounts +msgid "quota_mail" +msgstr "" + +#. DB connection impossible, please try again later. +msgid "err_mail_1" +msgstr "" + +#. No email on domain '%s' +msgid "err_mail_2" +msgstr "" + +#. The email '%s' does not exist +msgid "err_mail_3" +msgstr "" + +#. Please check 'pop account' and choose a password pop, or enter some +#. redirections, or both +msgid "err_mail_4" +msgstr "" + +#. -- Server error --- Parameter is incorrect (%s) +msgid "err_mail_5" +msgstr "" + +#. The domain '%s' does not exist. +msgid "err_mail_6" +msgstr "" + +#. The email '%s' already exists. +msgid "err_mail_7" +msgstr "" + +#. Your mail account quota is over. You cannot create more email accounts. +msgid "err_mail_8" +msgstr "" + +#. The domain '%s' does not exist. +msgid "err_mail_9" +msgstr "" + +#. -- Programm error -- Mail quota does not exist +msgid "err_mail_10" +msgstr "" + +#. Please enter an Email address +msgid "err_mail_11" +msgstr "" + +#. Please enter a pop password +msgid "err_mail_12" +msgstr "" + +#. Please enter a valid email +msgid "err_mail_13" +msgstr "" + +#. One or more email redirection are invalid +msgid "err_mail_14" +msgstr "" + +#. This mail is not a pop account. It's impossible to change the password ! +msgid "err_mail_15" +msgstr "" + +#. OK +msgid "err_err_0" +msgstr "" + +#. The error message does not exist (%s) +msgid "err_err_1" +msgstr "" + +#. This is a date representation : parameters are the date as follow : +#. $d,$m,$y,$h,$i,$hh,$am +#. 1 2 3 4 5 6 7 +#. hh is the hour in 12 hours format, and am is 'am' or 'pm'. +#. eg: english : %3$d/%1$d/%2$d, at %6$d:%5$d %7$s +msgid "the %3$d-%2$d-%1$d at %4$d:%5$d" +msgstr "" + +#. User or password incorrect +msgid "err_mem_1" +msgstr "" + +#. This account is locked, contact the administrator +msgid "err_mem_2" +msgstr "" + +#. Cookie incorrect, please accept the session cookie +msgid "err_mem_3" +msgstr "" + +#. Session unknown, contact the administrator +msgid "err_mem_4" +msgstr "" + +#. IP address incorrect, please contact the administrator +msgid "err_mem_5" +msgstr "" + +#. The old password is incorrect +#. PROBLEME : il y avait 2 fois le 5, les autres messages doivent surement etre décalés (TODO) +msgid "err_mem_6" +msgstr "" + +#. The new passwords are differents, please retry +msgid "err_mem_7" +msgstr "" + +#. A password must be at least 3 characters long. +msgid "err_mem_8" +msgstr "" + +#. The information you entered is incorrect +msgid "err_mem_9" +msgstr "" + +#. You are not allowed to change your password. +msgid "err_mem_11" +msgstr "" + +#. You must be a system administrator to do this +msgid "err_mem_12" +msgstr "" + +#. Français (France) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "fr_FR" +msgstr "" + +#. Français (Canada) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "fr_CA" +msgstr "" + +#. English (United States) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "en_US" +msgstr "" + +#. English (United Kingdom) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "en_UK" +msgstr "" + +#. Deutsch (Germany) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "de_DE" +msgstr "" + +#. Español (Spania) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "es_ES" +msgstr "" + +#. Español (Venezuela) +#. Please do NOT translate those strings to each language. Use the original language instead +msgid "es_VE" +msgstr "" + +#. OK +msgid "err_quota_0" +msgstr "" + +#. Error writing the quota entry ! +msgid "err_quota_1" +msgstr "" + +#. MySQL Databases +msgid "quota_mysql" +msgstr "" + +#. MySQL Users +msgid "quota_mysql_users" +msgstr "" + +#. Disk space +msgid "quota_web" +msgstr "" + +#. Data base name can contain only digits or lowercase alphabetic characters +msgid "err_mysql_2" +msgstr "" + +#. The database does not exist, you'll get an access by creating it. +msgid "err_mysql_3" +msgstr "" + +#. This database already exists! +msgid "err_mysql_4" +msgstr "" + +#. Your backup number is incorrect. +msgid "err_mysql_5" +msgstr "" + +#. The folder is incorrect! +msgid "err_mysql_6" +msgstr "" + +#. The file name you chose does not exist or is incorrect. +msgid "err_mysql_7" +msgstr "" + +#. The password is too long (16 chars max) +msgid "err_mysql_8" +msgstr "" + +#. The file is incorrect or does not exist. +msgid "err_mysql_9" +msgstr "" + +#. Your cannot create your main database : you still have other dbs ! +msgid "err_mysql_10" +msgstr "" + +#. You have no database, click on 'Databases' to create the first one +msgid "err_mysql_11" +msgstr "" + +#. The data base name is too long (64 chars max) +msgid "err_mysql_12" +msgstr "" + +#. You cannot create more MySQL users +msgid "err_mysql_13" +msgstr "" + +#. MySQL users can only have a-z and 0-9 characters. +msgid "err_mysql_14" +msgstr "" + +#. MySQL users must be less than 16 characters long. +msgid "err_mysql_15" +msgstr "" + +#. This MySQL user already exists. +msgid "err_mysql_16" +msgstr "" + +#. Passwords do not match. +msgid "err_mysql_17" +msgstr "" + +#. The requested MySQL user does not exist. +msgid "err_mysql_18" +msgstr "" + +#. You have no MySQL users at the moment. +msgid "err_mysql_19" +msgstr "" + +#. Your MySQL backups are stored in the chosen folder from db.sql.1 to db.sql.19
your database name replaces 'db'.
WARNING: If you modify backup settings (backups, compression...) previous +#. backups may remain in the backup folder. Go to the file manager to delete +#. them. +msgid "hlp_sql_bck" +msgstr "" + +#. Web Statistics +msgid "quota_sta2" +msgstr "" + +#. You cannot create more raw statistic set. +msgid "err_sta2_1" +msgstr "" + +#. There is currently no raw statistic set. +msgid "err_sta2_2" +msgstr "" + +#. The requested raw statistic set has not been found. +msgid "err_sta2_3" +msgstr "" + +#. File or folder name is incorrect +msgid "err_bro_1" +msgstr "" + +#. You cannot move or copy a file to the same folder +msgid "err_bro_2" +msgstr "" + +#. If we manage your DNS
You can manage your mails elsewhere if you want +#. (MX field).
Write %s in this field if your mail +#. must be managed by %s
or put the IP address or name of the mail server +#. used to manage your mails.Warning : if you put nothing in this field, +#. your mails will be unavailable +msgid "help_dns_mx %s %s" +msgstr "" + +#. If we don't manage the DNS for this domain
do we manage your mails? +msgid "help_dns_mail" +msgstr "" + +#. If you want to delete the domain %s, click the button below.Warning : this +#. delete all the ftp, mails, mailing-lists ... associated with thisdomain and +#. all its subdomains! +msgid "help_domain_del %s" +msgstr "" + +#. You can create various databases
Click on 'SQL Admin' in the menu to +#. manage them
or use the table below to backup, retrieve or delete them: +msgid "help_sql_list_ok" +msgstr "" + +#. Your haven't created your main database yet, please enter a password to create it. +msgid "help_sql_list_no" +msgstr "" + +#. This is a date representation : parameters are the date as follow : +#. $d,$m,$y,$h,$i,$hh,$am +#. 1 2 3 4 5 6 7 +#. hh is the hour in 12 hours format, and am is 'am' or 'pm'. +#. eg: english : %3$d/%1$d/%2$d, at %6$d:%5$d %7$s +msgid "%3$d-%2$d-%1$d %4$d:%5$d" +msgstr "" + + +msgid "1 column, detailed" +msgstr "" + +msgid "2 columns, short" +msgstr "" + +msgid "3 columns, short" +msgstr "" + +msgid "Go back to the file manager" +msgstr "" + +msgid "Edit the newly created file" +msgstr "" + +msgid "hlp_login" +msgstr "" + +msgid "err_admin_14" +msgstr "" +"La politique de mot de passe demandée n'a pas été trouvée, Ce password " +"est refusé (c'est une erreur de programmation ...)" + +msgid "err_admin_15" +msgstr "" +"Le mot de passe est trop court selon votre politique de mot de passe, " +"merci de vérifier" + +msgid "err_admin_16" +msgstr "" +"Le mot de passe est trop long selon votre politique de mot de passe, " +"merci de vérifier" + +msgid "err_admin_17" +msgstr "" +"Le mot de passe ne peut pas être le même que le nom d'utilisateur (ou " +"quelque chose de similaire) selon votre politique de mot de passe, merci " +"de vérifier" + +msgid "err_admin_18" +msgstr "" +"Le mot de passe doit contenir des caractères de %s classes différentes " +"selon votre politique de mot de passe (il n'en contient que %s), merci de " +"vérifier" + +msgid "err_hta_12" +msgstr "Le fichier .htpasswd n'existe pas" + +msgid "err_mail_16" +msgstr "Ce compte esclave MX existe déjà" + +msgid "err_mysql_20" +msgstr "Le mot de passe est obligatoire" + +msgid "err_mysql_21" +msgstr "Le nom d'utilisateur ne peut pas être vide" + +msgid "err_bro_3" +msgstr "" +"Vous n'avez pas le droit d'écrire dans ce répertoire. Vérifiez les droits " +"d'accès !" + +# $d,$m,$y +# 1 2 3 +msgid "%3$d-%2$d-%1$d" +msgstr "%1$02d/%2$02d/%3$04d" + +msgid "AlternC's account password" +msgstr "Mots de passe des comptes AlternC" + +msgid "POP/IMAP account passwords" +msgstr "Mots de passe des comptes POP/IMAP" + +msgid "Protected folders passwords" +msgstr "Mots de passe des dossiers protégés" + diff --git a/ssl/panel/locales/pt_BR/LC_MESSAGES/messages.po b/ssl/panel/locales/pt_BR/LC_MESSAGES/messages.po new file mode 100644 index 00000000..9c8b5880 --- /dev/null +++ b/ssl/panel/locales/pt_BR/LC_MESSAGES/messages.po @@ -0,0 +1,6271 @@ +# Portugese AlternC Translation +# Copyright (c) 2007 the AlternC Development Team +# +# $Id: admin.po,v 1.2 2003/06/09 14:36:08 root Exp $ +msgid "" +msgstr "" +"Project-Id-Version: $Id: admin.po,v 1.2 2003/06/09 14:36:08 root Exp $\n" +"Report-Msgid-Bugs-To: i18n@alternc.org\n" +"POT-Creation-Date: 2013-10-18 15:42+0200\n" +"PO-Revision-Date: 2007-10-25 23:50-0400\n" +"Last-Translator: Benjamin Sonntag \n" +"Language-Team: English \n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Emacs 21\n" + +#: ../../squirrelmail/alternc_changepass/change.php:39 +msgid "Can't connect to MySQL server on AlternC!" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:66 +msgid "Your new passwords are differents, pleasy try again." +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:72 +msgid "" +"Your account has not been found, please try again later or ask an " +"administrator." +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:75 +msgid "Your current password is incorrect, please try again." +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:88 +msgid "" +"Your password has been successfully changed. Don't forget to change it in " +"your mail software if you are using one (Outlook, Mozilla, Thunderbird, " +"Eudora ...)" +msgstr "" + +#: ../../squirrelmail/alternc_changepass/change.php:111 +#, fuzzy +msgid "Changing your mail password" +msgstr "Mudança da senha SQL" + +#: ../../squirrelmail/alternc_changepass/change.php:115 +#, fuzzy +msgid "Old Password:" +msgstr "Senha POP" + +#: ../../squirrelmail/alternc_changepass/change.php:120 +#, fuzzy +msgid "New Password:" +msgstr "New password" + +#: ../../squirrelmail/alternc_changepass/change.php:124 +#, fuzzy +msgid "Verify New Password:" +msgstr "New password" + +#: ../../squirrelmail/alternc_changepass/change.php:129 +#, fuzzy +msgid "Change my mail password" +msgstr "Mudança da senha SQL" + +#: ../../squirrelmail/alternc_changepass/setup.php:21 +#, fuzzy +msgid "Change Password" +msgstr "Mudança da senha SQL" + +#: ../../squirrelmail/alternc_changepass/setup.php:23 +#, fuzzy +msgid "Change the password of your email account." +msgstr "Mudar o email da sua conta" + +#: ../admin/about.php:36 +msgid "About AlternC" +msgstr "" + +#: ../admin/about.php:37 +#, fuzzy +msgid "Hosting control panel" +msgstr "Painel de controle do Administrador" + +#: ../admin/about.php:41 +msgid "" +"AlternC is an automatic hosting software suite. It features a PHP-based " +"administration interface and scripts that manage server configuration.
It manages, among others, email, Web, Web statistics, and mailing list " +"services. It is available in many languages. It is a free software " +"distributed under GPL license." +msgstr "" + +#: ../admin/about.php:47 +msgid "Official website: " +msgstr "" + +#: ../admin/about.php:48 +msgid "Developer website: " +msgstr "" + +#: ../admin/about.php:49 +#, fuzzy +msgid "Help: " +msgstr "Ajuda" + +#: ../admin/about.php:57 +#, fuzzy +msgid "You are currently using AlternC " +msgstr "Aqui seus parâmetros atuaís" + +#: ../admin/adm_add.php:36 ../admin/adm_db_servers.php:30 +#: ../admin/adm_deactivate.php:35 ../admin/adm_deactivate.php:52 +#: ../admin/adm_defquotas.php:35 ../admin/adm_dnsweberror.php:33 +#: ../admin/adm_doadd.php:26 ../admin/adm_dodefquotas.php:35 +#: ../admin/adm_dodel.php:33 ../admin/adm_dodel.php:52 +#: ../admin/adm_doedit.php:35 ../admin/adm_doedit.php:59 +#: ../admin/adm_domlock.php:33 ../admin/adm_doms.php:33 +#: ../admin/adm_doms_def_type.php:5 ../admin/adm_domstype.php:33 +#: ../admin/adm_domstypedoedit.php:4 ../admin/adm_domstypeedit.php:32 +#: ../admin/adm_domstyperegenerate.php:4 ../admin/adm_donosu.php:33 +#: ../admin/adm_dorenew.php:34 ../admin/adm_dorenew.php:45 +#: ../admin/adm_dosu.php:33 ../admin/adm_edit.php:36 ../admin/adm_edit.php:48 +#: ../admin/adm_email.php:30 ../admin/adm_list.php:32 ../admin/adm_list.php:58 +#: ../admin/adm_lockpanel.php:33 ../admin/adm_login.php:86 +#: ../admin/adm_login.php:93 ../admin/adm_mxaccount.php:33 +#: ../admin/adm_panel.php:33 ../admin/adm_passpolicy.php:30 +#: ../admin/adm_quotadoedit.php:33 ../admin/adm_quotaedit.php:34 +#: ../admin/adm_slavedns.php:33 ../admin/adm_tld.php:33 +#: ../admin/adm_tldadd.php:33 ../admin/adm_tlddoadd.php:33 +#: ../admin/adm_tlddoedit.php:39 ../admin/adm_tldedit.php:33 +#: ../admin/adm_update_domains.php:34 ../admin/adm_variables.php:33 +#: ../admin/dom_subdel.php:46 ../admin/dom_subdodel.php:47 +#: ../admin/dom_subdoedit.php:53 ../admin/dom_subedit.php:49 +#: ../admin/quotas_users.php:13 ../class/reset_stats_conf.php:6 +msgid "This page is restricted to authorized staff" +msgstr "Esta página é restringida à equipe de funcionários autorizada" + +#: ../admin/adm_add.php:54 +#, fuzzy +msgid "New AlternC account" +msgstr "Deletar as contas selecionadas" + +#: ../admin/adm_add.php:64 ../admin/adm_edit.php:69 +#: ../admin/adm_quotaedit.php:68 ../admin/ftp_edit.php:71 +#: ../admin/ftp_list.php:72 ../admin/hta_adduser.php:54 +#: ../admin/hta_edit.php:61 ../admin/hta_edit.php:98 ../admin/index.php:89 +#: ../admin/piwik_userlist.php:79 ../admin/sql_users_add.php:59 +#, fuzzy +msgid "Username" +msgstr "Nome de usúario" + +#: ../admin/adm_add.php:68 +msgid "Initial password" +msgstr "Senha inicial" + +#: ../admin/adm_add.php:72 ../admin/adm_edit.php:89 ../admin/ftp_edit.php:88 +#: ../admin/hta_adduser.php:62 ../admin/hta_edit.php:106 +#: ../admin/hta_edituser.php:63 ../admin/mail_edit.php:97 +#: ../admin/sql_users_add.php:67 ../admin/sql_users_password.php:63 +#, fuzzy +msgid "Confirm password" +msgstr "Senha inicial" + +#: ../admin/adm_add.php:76 +msgid "Can he change its password" +msgstr "Pode mudar a senha" + +#: ../admin/adm_add.php:78 ../admin/adm_domstype.php:82 +#: ../admin/adm_domstype.php:83 ../admin/adm_domstype.php:84 +#: ../admin/adm_domstype.php:85 ../admin/adm_domstype.php:86 +#: ../admin/adm_edit.php:78 ../admin/adm_edit.php:95 +#: ../admin/adm_passpolicy.php:113 ../admin/adm_passpolicy.php:157 +#: ../admin/dom_edit.php:231 ../admin/dom_edit.php:254 +#: ../admin/dom_subdel.php:71 ../admin/mail_edit.php:90 +#: ../admin/mail_list.php:164 ../admin/sql_bck.php:94 ../class/m_bro.php:70 +msgid "No" +msgstr "Não" + +#: ../admin/adm_add.php:79 ../admin/adm_domstype.php:82 +#: ../admin/adm_domstype.php:83 ../admin/adm_domstype.php:84 +#: ../admin/adm_domstype.php:85 ../admin/adm_domstype.php:86 +#: ../admin/adm_edit.php:79 ../admin/adm_edit.php:96 +#: ../admin/adm_passpolicy.php:114 ../admin/adm_passpolicy.php:157 +#: ../admin/dom_edit.php:230 ../admin/dom_edit.php:253 +#: ../admin/dom_subdel.php:70 ../admin/mail_edit.php:91 +#: ../admin/mail_list.php:209 ../admin/mail_list.php:220 +#: ../admin/mail_list.php:231 ../admin/mail_list.php:249 +#: ../admin/mail_list.php:260 ../admin/mail_list.php:271 +#: ../admin/mail_list.php:282 ../admin/sql_bck.php:95 ../class/m_bro.php:70 +msgid "Yes" +msgstr "Sim" + +#: ../admin/adm_add.php:83 ../admin/adm_edit.php:100 +msgid "Notes" +msgstr "" + +#: ../admin/adm_add.php:87 ../admin/adm_edit.php:104 +msgid "First Name" +msgstr "Nome" + +#: ../admin/adm_add.php:87 ../admin/adm_edit.php:104 +msgid "Surname" +msgstr "Sobrenome" + +#: ../admin/adm_add.php:91 ../admin/adm_edit.php:108 +msgid "Email address" +msgstr "Endereço email" + +#: ../admin/adm_add.php:95 ../admin/adm_dodefquotas.php:48 +#: ../admin/adm_dodefquotas.php:50 ../admin/adm_dodefquotas.php:57 +#: ../admin/adm_dodefquotas.php:59 ../admin/adm_edit.php:112 +#, fuzzy +msgid "Account type" +msgstr "Conta Permitiu ?" + +#: ../admin/adm_add.php:105 +msgid "Wich database server for this user ?" +msgstr "" + +#: ../admin/adm_add.php:107 +msgid "Warning: you can't change it after the creation of the user." +msgstr "" + +#: ../admin/adm_add.php:124 +#, fuzzy, php-format +msgid "Install the domain" +msgstr "Controla domínios permitidos (TLD)" + +#: ../admin/adm_add.php:140 +#, fuzzy +msgid "Create this AlternC account" +msgstr "Criar está nova conta FTP." + +#: ../admin/adm_add.php:141 ../admin/adm_deactivate.php:75 +#: ../admin/adm_domstypeedit.php:134 ../admin/adm_edit.php:124 +#: ../admin/adm_quotaedit.php:88 ../admin/adm_tldadd.php:71 +#: ../admin/adm_tldedit.php:70 ../admin/bro_pref.php:150 +#: ../admin/browseforfolder.php:146 ../admin/browseforfolder2.php:142 +#: ../admin/ftp_del.php:83 ../admin/ftp_edit.php:98 +#: ../admin/hta_adduser.php:68 ../admin/hta_dodeluser.php:65 +#: ../admin/hta_edit.php:113 ../admin/mail_edit.php:116 +#: ../admin/mail_manage_catchall.php:122 ../admin/piwik_site_dodel.php:71 +#: ../admin/piwik_user_dodel.php:69 ../admin/sql_bck.php:108 +#: ../admin/sql_users_add.php:73 ../admin/sql_users_password.php:69 +#: ../admin/sql_users_rights.php:104 +msgid "Cancel" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:31 ../admin/ip_main.php:50 +#: ../class/m_authip.php:40 +msgid "Access security" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:39 +msgid "" +"The IP and subnet you have here are allowed for ALL users and ALL usages" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:39 +msgid "Warning" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:44 +#, fuzzy +msgid "Add an IP" +msgstr "Adicionar um novo TLD" + +#: ../admin/adm_authip_whitelist.php:44 ../admin/ip_main.php:174 +msgid "Add my current IP" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:47 ../admin/ip_main.php:177 +msgid "Cancel edit" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:50 +msgid "" +"Enter here the IP address you want.
IPv4, IPv6 and subnet allowed" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:54 +#, fuzzy +msgid "Add a comment" +msgstr "Adiçionar um domínio" + +#: ../admin/adm_authip_whitelist.php:57 ../admin/adm_doms_def_type.php:88 +#: ../admin/bro_editor.php:89 ../admin/ftp_edit.php:97 +#: ../admin/ip_main.php:135 ../admin/ip_main.php:186 +#: ../admin/mail_manage_catchall.php:121 +msgid "Save" +msgstr "Salvar" + +#: ../admin/adm_authip_whitelist.php:64 +msgid "IP" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:64 +msgid "Informations" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:64 ../admin/adm_doms_def_type.php:48 +#: ../admin/dom_edit.php:130 ../admin/ip_main.php:146 +msgid "Type" +msgstr "" + +#: ../admin/adm_authip_whitelist.php:82 ../admin/adm_domstype.php:74 +#: ../admin/adm_list.php:200 ../admin/adm_list.php:222 +#: ../admin/adm_list.php:251 ../admin/adm_passpolicy.php:151 +#: ../admin/adm_tld.php:80 ../admin/dom_edit.php:140 ../admin/ftp_list.php:78 +#: ../admin/ip_main.php:164 ../admin/mail_list.php:150 +msgid "Edit" +msgstr "Editar" + +#: ../admin/adm_authip_whitelist.php:83 ../admin/adm_doms_def_type.php:60 +#: ../admin/adm_mxaccount.php:83 ../admin/adm_slavedns.php:101 +#: ../admin/adm_slavedns.php:145 ../admin/bro_main.php:285 +#: ../admin/cron.php:54 ../admin/dom_edit.php:123 ../admin/dom_edit.php:146 +#: ../admin/ftp_del.php:82 ../admin/hta_dodeluser.php:64 +#: ../admin/ip_main.php:79 ../admin/ip_main.php:165 +#: ../admin/piwik_site_dodel.php:70 ../admin/piwik_sitelist.php:128 +#: ../admin/piwik_user_dodel.php:68 ../admin/piwik_userlist.php:87 +msgid "Delete" +msgstr "Suprimir" + +#: ../admin/adm_db_servers.php:35 +msgid "List of the databases servers" +msgstr "" + +#: ../admin/adm_db_servers.php:42 +#, fuzzy +msgid "Here the list of the available databases servers." +msgstr "Aqui está a lista de membros hospedados" + +#: ../admin/adm_db_servers.php:49 +msgid "ID" +msgstr "" + +#: ../admin/adm_db_servers.php:50 ../admin/adm_domstype.php:58 +#: ../admin/adm_domstypeedit.php:74 ../admin/ip_main.php:146 +#: ../admin/ip_main.php:181 ../admin/logs_list.php:53 +#, fuzzy +msgid "Name" +msgstr "Membro novo" + +#: ../admin/adm_db_servers.php:51 ../admin/vm.php:77 +#, fuzzy +msgid "Hostname" +msgstr "Nome de usúario" + +#: ../admin/adm_db_servers.php:52 ../admin/adm_mxaccount.php:78 +#: ../admin/adm_mxaccount.php:95 ../admin/adm_slavedns.php:140 +#: ../admin/adm_slavedns.php:158 ../admin/sql_getparam.php:70 +msgid "Login" +msgstr "" + +#: ../admin/adm_db_servers.php:53 +msgid "Client" +msgstr "" + +#: ../admin/adm_db_servers.php:54 +#, fuzzy +msgid "Users" +msgstr "Usado(s)" + +#: ../admin/adm_db_servers.php:71 +msgid "To add a database server, do an INSERT into the db_servers table" +msgstr "" + +#: ../admin/adm_db_servers.php:74 +msgid "" +"To update the list of the server on the PhpMyAdmin login page, launch " +"alternc.install" +msgstr "" + +#: ../admin/adm_deactivate.php:46 ../class/m_admin.php:208 +#: ../class/m_admin.php:234 ../class/m_admin.php:680 ../class/m_admin.php:704 +#: ../class/m_admin.php:728 ../class/m_admin.php:772 ../class/m_admin.php:797 +#: ../class/m_admin.php:821 ../class/m_admin.php:894 ../class/m_admin.php:916 +#, fuzzy +msgid "Account not found" +msgstr "Conta Permitiu ?" + +#: ../admin/adm_deactivate.php:58 +#, fuzzy +msgid "User does not exist" +msgstr "Membro '%s' não existe" + +#: ../admin/adm_deactivate.php:63 ../admin/adm_deactivate.php:74 +msgid "Confirm" +msgstr "" + +#: ../admin/adm_deactivate.php:67 +msgid "WARNING: experimental feature, use at your own risk" +msgstr "" + +#: ../admin/adm_deactivate.php:68 +msgid "" +"The following domains will be deactivated and redirected to the URL entered " +"in the following box. A backup of the domain configuration will be displayed " +"as a serie of SQL request that you can run to restore the current " +"configuration if you want. Click confirm if you are sure you want to " +"deactivate all this user's domains." +msgstr "" + +#: ../admin/adm_deactivate.php:73 +#, fuzzy +msgid "Redirection URL:" +msgstr "Redireção URL" + +#: ../admin/adm_deactivate.php:78 +msgid "Domains of user: " +msgstr "" + +#: ../admin/adm_deactivate.php:81 +msgid "Missing redirect url." +msgstr "" + +#: ../admin/adm_deactivate.php:99 +#, php-format +msgid "-- Redirecting all domains and subdomains of the user %s to %s\n" +msgstr "" + +#: ../admin/adm_defquotas.php:46 ../admin/adm_panel.php:54 +msgid "Change the default quotas" +msgstr "Mudar os quotas padrões" + +#: ../admin/adm_defquotas.php:52 +msgid "User's quotas synchronised" +msgstr "" + +#: ../admin/adm_defquotas.php:65 +#, fuzzy +msgid "Add account type" +msgstr "Nenhuma conta selecionada" + +#: ../admin/adm_defquotas.php:83 +#, fuzzy +msgid "Delete account type" +msgstr "Deletar as contas selecionadas" + +#: ../admin/adm_defquotas.php:88 +msgid "" +"Here is the list of the quotas on the server for the new accounts. If you " +"want to change them, enter new values" +msgstr "" + +#: ../admin/adm_defquotas.php:90 +msgid "Synchronise user's quota (only to upper value)" +msgstr "" + +#: ../admin/adm_defquotas.php:102 +msgid "Accounts of type" +msgstr "" + +#: ../admin/adm_defquotas.php:104 +msgid "Default Value" +msgstr "" + +#: ../admin/adm_defquotas.php:104 ../admin/adm_list.php:159 +#: ../admin/adm_list.php:203 ../admin/adm_list.php:223 +#: ../admin/adm_list.php:253 +msgid "Quotas" +msgstr "Quotas" + +#: ../admin/adm_defquotas.php:124 +#, fuzzy +msgid "Edit the default quotas" +msgstr "Mudar os quotas padrões" + +#: ../admin/adm_dnsweberror.php:40 +msgid "Domains and Websites having errors" +msgstr "" + +#: ../admin/adm_dnsweberror.php:50 +msgid "List of the websites having errors in the domain database." +msgstr "" + +#: ../admin/adm_dnsweberror.php:53 ../admin/adm_dnsweberror.php:83 +msgid "Uid" +msgstr "" + +#: ../admin/adm_dnsweberror.php:54 ../admin/adm_dnsweberror.php:84 +#: ../admin/adm_list.php:155 ../admin/adm_list.php:233 +#: ../admin/adm_list.php:234 ../admin/adm_list.php:235 +#: ../admin/quotas_users.php:169 +#, fuzzy +msgid "Account" +msgstr "Conta Permitiu ?" + +#: ../admin/adm_dnsweberror.php:55 ../admin/adm_dnsweberror.php:85 +#: ../admin/dom_add.php:57 ../class/m_dom.php:1757 +msgid "Domain name" +msgstr "Nome do Domínio" + +#: ../admin/adm_dnsweberror.php:56 +msgid "FQDN" +msgstr "" + +#: ../admin/adm_dnsweberror.php:57 ../admin/adm_variables.php:57 +msgid "Value" +msgstr "" + +#: ../admin/adm_dnsweberror.php:58 ../admin/adm_domstype.php:59 +#: ../admin/adm_domstypeedit.php:78 +msgid "Description" +msgstr "Descição" + +#: ../admin/adm_dnsweberror.php:59 +msgid "Web Result field" +msgstr "" + +#: ../admin/adm_dnsweberror.php:80 +msgid "List of the domain names having errors in the domain database." +msgstr "" + +#: ../admin/adm_dnsweberror.php:86 +msgid "DNS Result field" +msgstr "" + +#: ../admin/adm_doadd.php:53 ../admin/adm_doedit.php:64 +#: ../admin/ftp_doedit.php:44 ../admin/hta_doadduser.php:41 +#: ../admin/hta_doedituser.php:42 ../admin/mail_doedit.php:57 +msgid "Passwords do not match" +msgstr "" + +#: ../admin/adm_doadd.php:65 +msgid "The new member has been successfully created" +msgstr "O membro novo foi criado com sucesso" + +#: ../admin/adm_dodefquotas.php:48 +msgid "added" +msgstr "" + +#: ../admin/adm_dodefquotas.php:50 +msgid "could not be added" +msgstr "" + +#: ../admin/adm_dodefquotas.php:57 +#, fuzzy +msgid "deleted" +msgstr "Suprimir" + +#: ../admin/adm_dodefquotas.php:59 +#, fuzzy +msgid "could not be deleted" +msgstr "Algums TLD não pode ser suprimidos..." + +#: ../admin/adm_dodefquotas.php:66 +#, fuzzy, php-format +msgid "Deleting quota %s" +msgstr "Suprimando o secundário-domínio %s" + +#: ../admin/adm_dodefquotas.php:72 +#, fuzzy +msgid "WARNING: Confirm the deletion of the quota" +msgstr "AVISO : Confirmar o apagamento do secundário-domínio" + +#: ../admin/adm_dodefquotas.php:75 +#, fuzzy +msgid "Yes, delete this default quota" +msgstr "Mudar os quotas padrões" + +#: ../admin/adm_dodefquotas.php:76 +#, fuzzy +msgid "No, don't delete this default quota" +msgstr "Algums TLD não pode ser suprimidos..." + +#: ../admin/adm_dodefquotas.php:94 +msgid "Default quotas successfully changed" +msgstr "Quotas padrões foram mudados com sucesso" + +#: ../admin/adm_dodefquotas.php:96 +#, fuzzy +msgid "Default quotas could not be set." +msgstr "Quotas padrões foram mudados com sucesso" + +#: ../admin/adm_dodel.php:56 +#, php-format +msgid "Member '%s' does not exist" +msgstr "Membro '%s' não existe" + +#: ../admin/adm_dodel.php:58 +#, php-format +msgid "Member %s successfully deleted" +msgstr "Membro %s foi suprimido com sucesso" + +#: ../admin/adm_dodel.php:65 +#, fuzzy +msgid "Please check the accounts you want to delete" +msgstr "" +"Por favor entrar o nome de arquivo que contem os dados do SQL que precisam " +"restaurar." + +#: ../admin/adm_dodel.php:73 +#, fuzzy, php-format +msgid "Deleting users" +msgstr "Suprimando o secundário-domínio %s" + +#: ../admin/adm_dodel.php:77 +#, fuzzy +msgid "WARNING : Confirm the deletion of the users" +msgstr "AVISO : Confirmar o apagamento do secundário-domínio" + +#: ../admin/adm_dodel.php:87 +#, fuzzy +msgid "Yes, delete those accounts" +msgstr "Deletar as contas selecionadas" + +#: ../admin/adm_dodel.php:88 +#, fuzzy +msgid "No, don't delete those accounts" +msgstr "Deletar as contas selecionadas" + +#: ../admin/adm_doedit.php:77 +msgid "The member has been successfully edited" +msgstr "O membro foi editado com sucesso" + +#: ../admin/adm_doms.php:40 ../admin/adm_panel.php:53 +#, fuzzy +msgid "Manage installed domains" +msgstr "Controla domínios permitidos (TLD)" + +#: ../admin/adm_doms.php:59 +msgid "" +"Here is the list of the domains installed on this server. You can remove a " +"domain if it does not exist or does not point to our server anymore. You can " +"also set the 'Lock' flag on a domain so that the user will not be able to " +"change any DNS parameter or delete this domain from his account." +msgstr "" + +#: ../admin/adm_doms.php:62 +msgid "" +"The domain OK column are green when the domain exists in the worldwide " +"registry and has a proper NS,MX and IP depending on its configuration. It is " +"red if we have serious doubts about its NS, MX or IP configuration. Contact " +"the user of this domain or a system administrator." +msgstr "" + +#: ../admin/adm_doms.php:65 +msgid "If you want to force the check of NS, MX, IP on domains, click the link" +msgstr "" + +#: ../admin/adm_doms.php:65 +msgid "Show domain list with refreshed checked NS, MX, IP information" +msgstr "" + +#: ../admin/adm_doms.php:69 ../admin/adm_mxaccount.php:78 +#: ../admin/adm_slavedns.php:95 ../admin/adm_slavedns.php:140 +msgid "Action" +msgstr "Ação" + +#: ../admin/adm_doms.php:69 ../admin/adm_doms.php:85 ../admin/adm_list.php:196 +#: ../admin/adm_list.php:221 ../admin/adm_list.php:250 +msgid "Connect as" +msgstr "Conectar como" + +#: ../admin/adm_doms.php:69 +#, fuzzy +msgid "Creator" +msgstr "Criar" + +#: ../admin/adm_doms.php:69 +#, fuzzy +msgid "Domain" +msgstr "Domínios" + +#: ../admin/adm_doms.php:69 +msgid "OK?" +msgstr "" + +#: ../admin/adm_doms.php:69 ../admin/dom_edit.php:130 +msgid "Status" +msgstr "" + +#: ../admin/adm_doms.php:76 +#, fuzzy +msgid "Locked Domain" +msgstr "Conta Troncada" + +#: ../admin/adm_doms.php:79 +msgid "Lock" +msgstr "" + +#: ../admin/adm_doms.php:79 +msgid "Unlock" +msgstr "" + +#: ../admin/adm_doms_def_type.php:12 ../admin/adm_panel.php:66 +#, fuzzy +msgid "Manage defaults domains type" +msgstr "Controla domínios permitidos (TLD)" + +#: ../admin/adm_doms_def_type.php:14 ../admin/adm_domstype.php:42 +msgid "" +"If you don't know what this page is about, don't touch anything, and read " +"AlternC documentation about domain types" +msgstr "" + +#: ../admin/adm_doms_def_type.php:15 +msgid "" +"The Type column contains a type of available VirtualHost config on The " +"server." +msgstr "" + +#: ../admin/adm_doms_def_type.php:16 +msgid "" +"The Setting column contains the variables to be expanded in the defaults " +"configuration. Available values are: " +msgstr "" + +#: ../admin/adm_doms_def_type.php:18 +#, fuzzy, php-format +msgid "%%DOMAIN%% : the Domain name" +msgstr "Nome do Domínio" + +#: ../admin/adm_doms_def_type.php:19 +#, php-format +msgid "%%TARGETDOM%%: The destination domain" +msgstr "" + +#: ../admin/adm_doms_def_type.php:20 +#, fuzzy, php-format +msgid "%%SUB%% : The subdomain name" +msgstr "Nome do Domínio" + +#: ../admin/adm_doms_def_type.php:21 +#, php-format +msgid "%%DOMAINDIR%%: the domain directory on the file system" +msgstr "" + +#: ../admin/adm_doms_def_type.php:38 +msgid "There was an error during the record." +msgstr "" + +#: ../admin/adm_doms_def_type.php:40 ../admin/cron.php:14 +msgid "Save done." +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +#, fuzzy +msgid "Activation" +msgstr "Ação" + +#: ../admin/adm_doms_def_type.php:48 +msgid "Concerned" +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +msgid "Sub" +msgstr "" + +#: ../admin/adm_doms_def_type.php:48 +#, fuzzy +msgid "settings" +msgstr "Mostrar ícones?" + +#: ../admin/adm_domstype.php:40 ../admin/adm_panel.php:67 +#, fuzzy +msgid "Manage domains type" +msgstr "Controla domínios permitidos (TLD)" + +#: ../admin/adm_domstype.php:52 +#, fuzzy +msgid "Here is the list of domain types." +msgstr "Aqui está a lista de membros hospedados" + +#: ../admin/adm_domstype.php:54 +#, fuzzy +msgid "Create a domain type" +msgstr "Adiçionar um secundário-domínio" + +#: ../admin/adm_domstype.php:60 +msgid "Target" +msgstr "" + +#: ../admin/adm_domstype.php:61 ../admin/adm_domstypeedit.php:92 +msgid "Entry" +msgstr "" + +#: ../admin/adm_domstype.php:62 +msgid "Compatible with" +msgstr "" + +#: ../admin/adm_domstype.php:62 ../admin/adm_domstypeedit.php:96 +msgid "Enter comma-separated name of other types" +msgstr "" + +#: ../admin/adm_domstype.php:63 +#, fuzzy +msgid "Enabled?" +msgstr "Conta Permitiu ?" + +#: ../admin/adm_domstype.php:64 +msgid "Only DNS?" +msgstr "" + +#: ../admin/adm_domstype.php:65 +msgid "Need to be DNS?" +msgstr "" + +#: ../admin/adm_domstype.php:66 +msgid "Advanced?" +msgstr "" + +#: ../admin/adm_domstype.php:67 ../admin/adm_domstypeedit.php:123 +msgid "Create tmp directory ?" +msgstr "" + +#: ../admin/adm_domstype.php:68 +msgid "create www directory ?" +msgstr "" + +#: ../admin/adm_domstype.php:75 +msgid "Regenerate" +msgstr "" + +#: ../admin/adm_domstypeedit.php:60 +#, fuzzy +msgid "Edit a domain type" +msgstr "Editando o domínio %s" + +#: ../admin/adm_domstypeedit.php:82 +msgid "Target type" +msgstr "" + +#: ../admin/adm_domstypeedit.php:96 +msgid "Compatibility" +msgstr "" + +#: ../admin/adm_domstypeedit.php:100 ../admin/dom_edit.php:170 +#: ../admin/ftp_list.php:72 ../admin/ftp_list.php:82 +#: ../admin/mail_list.php:125 ../admin/mail_list.php:152 +msgid "Enabled" +msgstr "" + +#: ../admin/adm_domstypeedit.php:110 +msgid "Do only a DNS entry" +msgstr "" + +#: ../admin/adm_domstypeedit.php:114 +msgid "Domain must have our DNS" +msgstr "" + +#: ../admin/adm_domstypeedit.php:118 +msgid "Is it an advanced option?" +msgstr "" + +#: ../admin/adm_domstypeedit.php:128 +msgid "Create target directory ?" +msgstr "" + +#: ../admin/adm_domstypeedit.php:133 +#, fuzzy +msgid "Change this domain type" +msgstr "Mudar esta caixa de email" + +#: ../admin/adm_donosu.php:45 +#, fuzzy +msgid "This account is now a normal account" +msgstr "Esta conta é uma conta super-administrador" + +#: ../admin/adm_dorenew.php:53 +#, fuzzy +msgid "The member has been successfully renewed" +msgstr "O membro foi editado com sucesso" + +#: ../admin/adm_dosu.php:45 +#, fuzzy +msgid "This account is now an administrator account" +msgstr "Esta conta é uma conta super-administrador" + +#: ../admin/adm_edit.php:57 +msgid "Member Edition" +msgstr "Edição do Membro" + +#: ../admin/adm_edit.php:73 +#, fuzzy +msgid "Account Enabled?" +msgstr "Conta Permitiu ?" + +#: ../admin/adm_edit.php:76 +#, fuzzy +msgid "You cannot disable your own account." +msgstr "Você não pode mudar sua senha" + +#: ../admin/adm_edit.php:85 ../admin/adm_mxaccount.php:78 +#: ../admin/adm_mxaccount.php:95 ../admin/adm_slavedns.php:140 +#: ../admin/adm_slavedns.php:158 ../admin/cron.php:39 ../admin/ftp_edit.php:84 +#: ../admin/ftp_edit.php:92 ../admin/hta_adduser.php:58 +#: ../admin/hta_edit.php:102 ../admin/index.php:90 ../admin/mem_param.php:58 +#: ../admin/sql_getparam.php:74 ../admin/sql_users_add.php:63 +#: ../admin/sql_users_list.php:48 ../admin/sql_users_password.php:59 +msgid "Password" +msgstr "Senha" + +#: ../admin/adm_edit.php:93 +#, fuzzy +msgid "Password change allowed?" +msgstr "Senha" + +#: ../admin/adm_edit.php:116 +msgid "Reset quotas to default?" +msgstr "" + +#: ../admin/adm_edit.php:119 +msgid "Period" +msgstr "" + +#: ../admin/adm_edit.php:123 +msgid "Edit this account" +msgstr "Editar esta conta" + +#: ../admin/adm_edit.php:137 +msgid "Renew for" +msgstr "" + +#: ../admin/adm_edit.php:138 +msgid "period(s)" +msgstr "" + +#: ../admin/adm_edit.php:141 +#, fuzzy +msgid "Renew" +msgstr "Rebatizar" + +#: ../admin/adm_edit.php:153 +msgid "This account is a super-admin account" +msgstr "Esta conta é uma conta super-administrador" + +# msgid "Disable the database" +# msgstr "Incapa +#: ../admin/adm_edit.php:157 +msgid "" +"There is only one administrator account, you cannot turn this account back " +"to normal" +msgstr "" +"Você pode ter somente uma conta do administrador, você não pode voltar esta " +"conta ao normal" + +#: ../admin/adm_edit.php:160 +msgid "Turn this account back to normal" +msgstr "Voltar esta conta à normal" + +#: ../admin/adm_edit.php:163 +msgid "Make this account a super admin one" +msgstr "Modificar esta conta à uma conta do super admin" + +#: ../admin/adm_edit.php:170 +#, php-format +msgid "Account created by %s" +msgstr "Conta foi criado por %s" + +#: ../admin/adm_email.php:43 ../admin/adm_panel.php:56 +msgid "Send an email to all members" +msgstr "" + +#: ../admin/adm_email.php:48 +#, fuzzy +msgid "The email was successfully sent" +msgstr "O membro foi editado com sucesso" + +#: ../admin/adm_email.php:50 +msgid "There was an error" +msgstr "" + +#: ../admin/adm_email.php:63 +msgid "From" +msgstr "" + +#: ../admin/adm_email.php:67 +msgid "Subject" +msgstr "" + +#: ../admin/adm_email.php:71 ../admin/mem_param.php:59 +#, fuzzy +msgid "Mail" +msgstr "Caixas e email" + +#: ../admin/adm_email.php:75 +msgid "Send" +msgstr "Mandar" + +#: ../admin/adm_list.php:70 +#, fuzzy +msgid "AlternC account list" +msgstr "Lista de contas FTP" + +#: ../admin/adm_list.php:77 +msgid "Minimal view" +msgstr "" + +#: ../admin/adm_list.php:81 +msgid "Complete view" +msgstr "" + +#: ../admin/adm_list.php:87 +msgid "Filters" +msgstr "" + +#: ../admin/adm_list.php:90 +msgid "Search for a Login" +msgstr "" + +#: ../admin/adm_list.php:91 +msgid "Search for a Domain" +msgstr "" + +#: ../admin/adm_list.php:92 ../admin/piwik_sitelist.php:170 +msgid "submit" +msgstr "" + +#: ../admin/adm_list.php:100 +#, fuzzy +msgid "List all AlternC accounts" +msgstr "Editar esta conta" + +#: ../admin/adm_list.php:110 +#, fuzzy +msgid "Or only the accounts of:" +msgstr "Editar esta conta" + +#: ../admin/adm_list.php:115 +#, fuzzy +msgid "List only my accounts" +msgstr "Editar uma conta FTP" + +#: ../admin/adm_list.php:129 +#, fuzzy, php-format +msgid "%s accounts" +msgstr "Contas FTP" + +#: ../admin/adm_list.php:129 +#, fuzzy +msgid "Here is the list of hosted AlternC accounts" +msgstr "Aqui está a lista de membros hospedados" + +#: ../admin/adm_list.php:132 +#, fuzzy +msgid "Create a new AlternC account" +msgstr "Criar uma nova conta ftp" + +#: ../admin/adm_list.php:136 +#, fuzzy +msgid "No account defined for now" +msgstr "Nenhuma conta selecionada" + +#: ../admin/adm_list.php:149 ../admin/adm_list.php:227 +#: ../admin/adm_list.php:264 ../admin/ftp_list.php:101 +msgid "Delete checked accounts" +msgstr "Deletar as contas selecionadas" + +#: ../admin/adm_list.php:156 +msgid "Manager" +msgstr "" + +#: ../admin/adm_list.php:157 +#, fuzzy +msgid "Created by" +msgstr "Criar" + +#: ../admin/adm_list.php:158 +#, fuzzy +msgid "Created on" +msgstr "Criar" + +#: ../admin/adm_list.php:160 +#, fuzzy +msgid "Last login" +msgstr "Último Login: " + +#: ../admin/adm_list.php:161 +#, fuzzy +msgid "Last ip" +msgstr "Último Login: " + +#: ../admin/adm_list.php:162 +msgid "Fails" +msgstr "" + +#: ../admin/adm_list.php:163 ../admin/main.php:87 +msgid "Expiry" +msgstr "" + +#: ../admin/adm_list.php:181 +msgid "Send an email" +msgstr "" + +#: ../admin/adm_list.php:183 ../admin/mail_list.php:167 +#, fuzzy, php-format +msgid "%3$d-%2$d-%1$d" +msgstr "%3$d/%1$d/%2$d %6$d:%5$d %7$s" + +#: ../admin/adm_list.php:192 +msgid "DB:" +msgstr "" + +#: ../admin/adm_list.php:207 ../admin/dom_edit.php:171 +msgid "Disable" +msgstr "" + +#: ../admin/adm_list.php:221 ../admin/adm_list.php:250 +msgid "C" +msgstr "" + +#: ../admin/adm_list.php:222 ../admin/adm_list.php:251 +msgid "E" +msgstr "" + +#: ../admin/adm_list.php:223 ../admin/adm_list.php:253 +msgid "Q" +msgstr "" + +#: ../admin/adm_list.php:255 +msgid "himself" +msgstr "" + +#: ../admin/adm_list.php:257 +#, fuzzy, php-format +msgid "Creator: %s" +msgstr "Criar" + +#: ../admin/adm_login.php:49 ../admin/adm_login.php:56 +msgid "Your authentication information are incorrect" +msgstr "" + +#: ../admin/adm_login.php:62 +msgid "Your IP is incorrect." +msgstr "" + +#: ../admin/adm_login.php:118 +#, fuzzy +msgid "Member login" +msgstr "Lista dos membros" + +#: ../admin/adm_mxaccount.php:47 ../admin/adm_slavedns.php:51 +#, fuzzy +msgid "The requested account has been deleted. It is now denied." +msgstr "O TLD pedido foi suprimido" + +#: ../admin/adm_mxaccount.php:53 ../admin/adm_slavedns.php:57 +msgid "The requested account address has been created. It is now allowed." +msgstr "" + +#: ../admin/adm_mxaccount.php:60 ../admin/adm_panel.php:64 +msgid "Manage allowed accounts for secondary mx" +msgstr "" + +#: ../admin/adm_mxaccount.php:74 +msgid "" +"Here is the list of the allowed accounts for secondary mx management. You " +"can configure the alternc-secondarymx package on your secondary mx server " +"and give him the login/pass that will grant him access to your server's mx-" +"hosted domain list. " +msgstr "" + +#: ../admin/adm_mxaccount.php:92 +msgid "" +"If you want to allow a new server to access your mx-hosted domain list, give " +"him an account." +msgstr "" + +#: ../admin/adm_mxaccount.php:101 ../admin/adm_slavedns.php:163 +msgid "Add this account to the allowed list" +msgstr "" + +#: ../admin/adm_panel.php:40 ../class/m_admin.php:98 +msgid "Admin Control Panel" +msgstr "Painel de controle do Administrador" + +#: ../admin/adm_panel.php:51 ../admin/adm_tld.php:56 +#: ../admin/adm_tldadd.php:46 ../admin/adm_tldedit.php:52 +msgid "Manage allowed domains (TLD)" +msgstr "Controla domínios permitidos (TLD)" + +#: ../admin/adm_panel.php:52 +#, fuzzy +msgid "Password Policies" +msgstr "Senha" + +#: ../admin/adm_panel.php:55 +#, fuzzy +msgid "Manage IP whitelist" +msgstr "Controlar os membros" + +#: ../admin/adm_panel.php:60 +msgid "Advanced features" +msgstr "" + +#: ../admin/adm_panel.php:63 +msgid "Manage slave DNS" +msgstr "" + +#: ../admin/adm_panel.php:65 ../admin/adm_variables.php:47 +#, fuzzy +msgid "Configure AlternC variables" +msgstr "Configurar o navegador de arquivo" + +#: ../admin/adm_panel.php:68 +msgid "DNS and website having errors" +msgstr "" + +#: ../admin/adm_panel.php:69 +#, fuzzy +msgid "Manage databases servers" +msgstr "Criar minha base de dados principal" + +#: ../admin/adm_panel.php:70 +#, fuzzy +msgid "Account creation statistics" +msgstr "Conta foi criado por %s" + +#: ../admin/adm_panel.php:95 +msgid "Click here to unlock the panel and allow user to login." +msgstr "" + +#: ../admin/adm_panel.php:97 +msgid "Are you sure you want to kick everyone?" +msgstr "" + +#: ../admin/adm_panel.php:97 +#, fuzzy +msgid "Click here to lock the panel and force logout of all the user." +msgstr "clica aqui para criar uma conta ftp nesta pasta" + +#: ../admin/adm_passpolicy.php:49 +#, fuzzy +msgid "Manage Password Policy" +msgstr "Mudança da senha SQL" + +#: ../admin/adm_passpolicy.php:63 ../admin/adm_passpolicy.php:78 +msgid "Policy not found" +msgstr "" + +#: ../admin/adm_passpolicy.php:67 +#, fuzzy +msgid "Policy changed" +msgstr "Senha" + +#: ../admin/adm_passpolicy.php:71 +msgid "Cannot edit the policy, an error occurred" +msgstr "" + +#: ../admin/adm_passpolicy.php:82 +msgid "Please choose which policy you want to apply to this password kind:" +msgstr "" + +#: ../admin/adm_passpolicy.php:90 +msgid "Minimum Password Size:" +msgstr "" + +#: ../admin/adm_passpolicy.php:97 +msgid "Maximum Password Size:" +msgstr "" + +#: ../admin/adm_passpolicy.php:104 +msgid "In how many classes of characters must be the password (at least):" +msgstr "" + +#: ../admin/adm_passpolicy.php:111 +msgid "Do we allow the password to be like the login?" +msgstr "" + +#: ../admin/adm_passpolicy.php:117 +msgid "Apply this password policy" +msgstr "" + +#: ../admin/adm_passpolicy.php:118 +msgid "Cancel and go back to the policy list" +msgstr "" + +#: ../admin/adm_passpolicy.php:121 +msgid "" +"The classes of characters are :
1. Low-case letters (a-z)
2. " +"Upper-case letters (A-Z)
3. Figures (0-9)
4. Ascii symbols (!\"#$" +"%&'()*+,-./:;<=>?@[\\]^_`)
5. Non-Ascii symbols (accents...)" +msgstr "" + +#: ../admin/adm_passpolicy.php:134 +msgid "" +"Here is the list of the password policies for each place a password may be " +"needed in AlternC's services. For each of those password kind, you can " +"choose which policy will be applied to passwords. A policy is a minimum and " +"maximum password size, and how many classes of characters must appear in the " +"password. You can also forbid (or not) to use the login or part of it as a " +"password." +msgstr "" + +#: ../admin/adm_passpolicy.php:138 +#, fuzzy +msgid "Password Kind" +msgstr "Senha" + +#: ../admin/adm_passpolicy.php:138 +#, fuzzy +msgid "Password Policy" +msgstr "Senha" + +#: ../admin/adm_passpolicy.php:140 +#, fuzzy +msgid "Min Size" +msgstr "Tamanho" + +#: ../admin/adm_passpolicy.php:141 +#, fuzzy +msgid "Max Size" +msgstr "Tamanho" + +#: ../admin/adm_passpolicy.php:142 +msgid "Complexity" +msgstr "" + +#: ../admin/adm_passpolicy.php:143 +msgid "Allow Password=Login?" +msgstr "" + +#: ../admin/adm_quotadoedit.php:52 +msgid "The quotas has been successfully edited" +msgstr "Os quotas foram editados com sucesso" + +#: ../admin/adm_quotaedit.php:55 +msgid "Editing the quotas of a member" +msgstr "Editando os quotas do membro" + +#: ../admin/adm_quotaedit.php:69 ../admin/quota_show.php:46 +msgid "Quota" +msgstr "Quota" + +#: ../admin/adm_quotaedit.php:69 ../admin/quota_show.php:46 +#: ../admin/quotas_oneuser.php:87 ../admin/quotas_users.php:154 +#: ../admin/quotas_users.php:178 +msgid "Total" +msgstr "Total" + +#: ../admin/adm_quotaedit.php:69 ../admin/quota_show.php:46 +msgid "Used" +msgstr "Usado(s)" + +#: ../admin/adm_quotaedit.php:87 +msgid "Edit the quotas" +msgstr "Editar os quotas" + +#: ../admin/adm_slavedns.php:65 +msgid "" +"The requested ip address has been deleted. It will be denied in one hour." +msgstr "" + +#: ../admin/adm_slavedns.php:71 +msgid "" +"The requested ip address has been added to the list. It will be allowed in " +"one hour." +msgstr "" + +#: ../admin/adm_slavedns.php:83 +msgid "Manage allowed ip for slave zone transfers" +msgstr "" + +#: ../admin/adm_slavedns.php:91 +msgid "" +"Here is the list of the allowed ip or ip class for slave dns zone transfer " +"requests (AXFR). You must add the ip address of all the slave DNS you have " +"so that those slaves will be allowed to transfer the zone files. There is " +"also some defaults ip from DNS checks made by some third-party technical " +"offices such as afnic (for .fr domains)" +msgstr "" + +#: ../admin/adm_slavedns.php:95 ../admin/adm_slavedns.php:114 +#, fuzzy +msgid "IP Address" +msgstr "Endereço email" + +#: ../admin/adm_slavedns.php:110 +msgid "" +"If you want to allow an ip address or class to connect to your dns server, " +"enter it here. Choose 32 as a prefix for single ip address." +msgstr "" + +#: ../admin/adm_slavedns.php:114 +msgid "Prefix" +msgstr "" + +#: ../admin/adm_slavedns.php:120 +#, fuzzy +msgid "Add this ip to the slave list" +msgstr "Adiçionar um email ao domínio %s" + +#: ../admin/adm_slavedns.php:129 +msgid "Manage allowed accounts for slave zone transfers" +msgstr "" + +#: ../admin/adm_slavedns.php:137 +msgid "" +"Here is the list of the allowed accounts for slave dns synchronization. You " +"can configure the alternc-slavedns package on your slave server and give him " +"the login/pass that will grant him access to your server's domain list. " +msgstr "" + +#: ../admin/adm_slavedns.php:154 +msgid "" +"If you want to allow a new server to access your domain list, give him an " +"account." +msgstr "" + +#: ../admin/adm_slavedns.php:194 +msgid "Need open DNS Slave servers?" +msgstr "" + +#: ../admin/adm_slavedns.php:196 +msgid "We offer free of charge DNS servers for alternc users." +msgstr "" + +#: ../admin/adm_slavedns.php:197 +msgid "How does it work?" +msgstr "" + +#: ../admin/adm_slavedns.php:199 +#, php-format +msgid "" +"Give access to the alternc.net servers. Follow the " +"instructions on this page. They will help " +"you to configure this page and configure your alternc.net account." +msgstr "" + +#: ../admin/adm_slavedns.php:200 +#, php-format +msgid "" +"Subscribe to alternc.net. Go to the alternc.net site to " +"use the DNS servers provided for free by the AlternC association and enter " +"the required informations for each server you want to connect to the service." +msgstr "" + +#: ../admin/adm_slavedns.php:203 +msgid "" +"The alternc.net servers will take care of transfering and distributing to " +"the world your domains zones." +msgstr "" + +#: ../admin/adm_tld.php:47 +msgid "Some TLD cannot be deleted..." +msgstr "Algums TLD não pode ser suprimidos..." + +#: ../admin/adm_tld.php:50 +msgid "The requested TLD has been deleted" +msgstr "O TLD pedido foi suprimido" + +#: ../admin/adm_tld.php:68 +msgid "" +"Here is the list of the TLD allowed on this server. Each TLD can be allowed " +"or denied after some checks (whois, ns, domain exists...)" +msgstr "" +"Aqui está a lista do TLD permitido neste servidor. Cada TLD pode ser " +"permitido ou negado após algumas verifcações (whois, ns, domínio existir) " + +#: ../admin/adm_tld.php:70 ../admin/adm_tld.php:91 ../admin/adm_tldadd.php:56 +#: ../admin/adm_tldadd.php:70 +msgid "Add a new TLD" +msgstr "Adicionar um novo TLD" + +#: ../admin/adm_tld.php:73 ../admin/adm_tldadd.php:66 +#: ../admin/adm_tldedit.php:65 +msgid "Allowed Mode" +msgstr "Modalidade Permitida" + +#: ../admin/adm_tld.php:73 ../admin/adm_tldadd.php:65 +#: ../admin/adm_tldedit.php:64 +msgid "TLD" +msgstr "TLD" + +#: ../admin/adm_tld.php:87 +msgid "Delete the checked TLD" +msgstr "Suprimir o TLD selecionado" + +#: ../admin/adm_tldadd.php:58 +msgid "" +"Enter the new TLD (without the first dot) and choose what check should be " +"done." +msgstr "" +"Entrar um novo TLD (sem o primeiro ponto) e escolher que verificação deve " +"ser feita." + +#: ../admin/adm_tldadd.php:59 +#, fuzzy +msgid "" +"Warning : only some final tld are known in the whois function of AlternC, " +"please check m_dom.php accordingly." +msgstr "" +"Aviso: somente algums tld estam conhecedos na função whois do AlternC, por " +"favor verificar em m_domains.php conformente." + +#: ../admin/adm_tlddoadd.php:49 +msgid "The TLD has been successfully added" +msgstr "O TLD foi adiçionado com sucesso" + +#: ../admin/adm_tlddoedit.php:48 +msgid "The TLD has been successfully edited" +msgstr "Este TLD foi editado com sucesso" + +#: ../admin/adm_tldedit.php:60 +msgid "Edit a TLD" +msgstr "Editar um TLD" + +#: ../admin/adm_tldedit.php:69 +msgid "Edit this TLD" +msgstr "Editar este TLD" + +#: ../admin/adm_update_domains.php:40 +msgid "Missing INOTIFY_UPDATE_DOMAIN var in /etc/alternc/local.sh . Fix it!" +msgstr "" + +#: ../admin/adm_variables.php:52 +msgid "Here are the internal AlternC variables that are currently being used." +msgstr "" + +#: ../admin/adm_variables.php:57 +msgid "Comment" +msgstr "" + +#: ../admin/adm_variables.php:57 +msgid "Names" +msgstr "" + +#: ../admin/adm_variables.php:69 +msgid "Save variables" +msgstr "" + +#: ../admin/bro_editor.php:54 ../admin/bro_editor.php:63 +#: ../admin/bro_main.php:355 ../admin/bro_main.php:395 +#, fuzzy, php-format +msgid "%3$d-%2$d-%1$d %4$d:%5$d" +msgstr "%3$d/%1$d/%2$d, à %6$d:%5$d %7$s" + +#: ../admin/bro_editor.php:54 ../admin/bro_editor.php:63 +#, php-format +msgid "Your file %s has been saved" +msgstr "Seu arquivo %s foi salvado com sucesso" + +#: ../admin/bro_editor.php:74 +msgid "File editing" +msgstr "Edição de arquivo" + +#: ../admin/bro_editor.php:80 +msgid "This file is empty" +msgstr "" + +#: ../admin/bro_editor.php:90 +msgid "Save & Quit" +msgstr "Salva & Sair" + +#: ../admin/bro_editor.php:91 +msgid "Quit" +msgstr "Sair" + +#: ../admin/bro_main.php:91 +#, php-format +msgid "Deleting files and/or directories" +msgstr "" + +#: ../admin/bro_main.php:96 +#, fuzzy +msgid "WARNING: Confirm the deletion of this files" +msgstr "AVISO : Confirmar o apagamento do secundário-domínio" + +#: ../admin/bro_main.php:105 +#, fuzzy +msgid "Yes, delete those files/folders" +msgstr "Deletar as contas selecionadas" + +#: ../admin/bro_main.php:106 +msgid "No, don't delete those files/folders" +msgstr "" + +#: ../admin/bro_main.php:144 +msgid "extracting..." +msgstr "" + +#: ../admin/bro_main.php:148 +#, fuzzy +msgid "failed" +msgstr "Arquivo" + +#: ../admin/bro_main.php:151 +msgid "done" +msgstr "" + +#: ../admin/bro_main.php:156 ../class/m_bro.php:76 +msgid "File browser" +msgstr "Navegador de arquivos" + +#: ../admin/bro_main.php:163 +msgid "Path" +msgstr "" + +#: ../admin/bro_main.php:185 +msgid "Send one file:" +msgstr "" + +#: ../admin/bro_main.php:189 +#, fuzzy +msgid "Send this file" +msgstr "Importar este arquivo" + +#: ../admin/bro_main.php:190 +#, php-format +msgid "Warning: max size: %s" +msgstr "" + +#: ../admin/bro_main.php:197 +#, fuzzy +msgid "New file or folder:" +msgstr "Nenhum arquivo nesta pasta" + +#: ../admin/bro_main.php:202 ../admin/piwik_sitelist.php:86 +#: ../admin/piwik_userlist.php:44 ../admin/piwik_userlist.php:56 +msgid "Create" +msgstr "Criar" + +#: ../admin/bro_main.php:204 ../admin/bro_main.php:244 +msgid "File" +msgstr "Arquivo" + +#: ../admin/bro_main.php:205 ../admin/bro_main.php:397 +#: ../admin/ftp_edit.php:75 ../admin/ftp_list.php:72 ../admin/hta_add.php:55 +#: ../admin/hta_adduser.php:50 ../admin/hta_edit.php:94 +#: ../admin/hta_edituser.php:51 ../admin/hta_list.php:68 +msgid "Folder" +msgstr "Pasta" + +#: ../admin/bro_main.php:222 ../admin/bro_main.php:228 +#: ../admin/bro_main.php:286 +msgid "Rename" +msgstr "Rebatizar" + +#: ../admin/bro_main.php:238 ../admin/bro_main.php:244 +#: ../admin/bro_main.php:287 +msgid "Permissions" +msgstr "" + +#: ../admin/bro_main.php:258 +msgid "write" +msgstr "" + +#: ../admin/bro_main.php:266 +#, fuzzy +msgid "Change permissions" +msgstr "Mudar meus ajustes" + +#: ../admin/bro_main.php:289 +#, fuzzy +msgid "Copy" +msgstr "Copiar" + +#: ../admin/bro_main.php:290 +msgid "Move" +msgstr "Relocalizar" + +#: ../admin/bro_main.php:291 +msgid "To" +msgstr "" + +#: ../admin/bro_main.php:302 +msgid "Please select a destination folder" +msgstr "" + +#: ../admin/bro_main.php:328 +#, fuzzy +msgid "Filename" +msgstr "Rebatizar" + +#: ../admin/bro_main.php:329 ../admin/logs_list.php:53 +#: ../admin/sql_list.php:54 +msgid "Size" +msgstr "Tamanho" + +#: ../admin/bro_main.php:330 +msgid "Last modification" +msgstr "" + +#: ../admin/bro_main.php:332 +#, fuzzy +msgid "File Type" +msgstr "Arquivo" + +#: ../admin/bro_main.php:361 ../admin/bro_main.php:542 +#: ../admin/dom_edit.php:121 +msgid "View" +msgstr "Vista" + +#: ../admin/bro_main.php:368 +msgid "Extract" +msgstr "" + +#: ../admin/bro_main.php:374 ../admin/bro_main.php:376 +#, fuzzy +msgid "Restore SQL" +msgstr "Restauração" + +#: ../admin/bro_main.php:376 +#, fuzzy +msgid "In which database to you want to restore this dump?" +msgstr "Que pasta você quiser usar para salvar seus backups?" + +#: ../admin/bro_main.php:381 +#, fuzzy +msgid "Restore it" +msgstr "Restauração" + +#: ../admin/bro_main.php:422 ../admin/bro_main.php:450 +#: ../admin/bro_main.php:485 ../admin/bro_main.php:513 +msgid "V" +msgstr "V" + +#: ../admin/bro_main.php:568 +msgid "No files in this folder" +msgstr "Nenhum arquivo nesta pasta" + +#: ../admin/bro_main.php:578 +msgid "(slow)" +msgstr "" + +#: ../admin/bro_main.php:578 +msgid "Show size of directories" +msgstr "" + +#: ../admin/bro_main.php:582 +msgid "Edit this folder's protection" +msgstr "" + +#: ../admin/bro_main.php:585 ../admin/hta_add.php:62 +msgid "Protect this folder" +msgstr "Protect this folder" + +#: ../admin/bro_main.php:587 +#, fuzzy +msgid "with a login and a password" +msgstr "Senha inicial" + +#: ../admin/bro_main.php:590 +#, fuzzy +msgid "Download this folder" +msgstr "Protect this folder" + +#: ../admin/bro_main.php:592 +#, php-format +msgid "as a %s file" +msgstr "" + +#: ../admin/bro_main.php:599 +#, fuzzy +msgid "Edit the ftp account" +msgstr "Editar esta conta" + +#: ../admin/bro_main.php:600 +#, fuzzy +msgid "that exists in this folder" +msgstr "Nenhum arquivo nesta pasta" + +#: ../admin/bro_main.php:606 +#, fuzzy +msgid "Create an ftp account in this folder" +msgstr "Há uma conta ftp nesta pasta" + +#: ../admin/bro_main.php:615 +#, fuzzy +msgid "Configure the file editor" +msgstr "Configurar o navegador de arquivo" + +#: ../admin/bro_pref.php:49 +msgid "Your preferences have been updated." +msgstr "Suas preferências foram atualizadas." + +#: ../admin/bro_pref.php:59 +msgid "File browser preferences" +msgstr "Preferências do navegador de arquivos" + +#: ../admin/bro_pref.php:66 +msgid "Horizontal window size" +msgstr "Tamanho horizontal da janela" + +#: ../admin/bro_pref.php:74 +msgid "Vertical window size" +msgstr "Tamanho vertical da janela" + +#: ../admin/bro_pref.php:82 +msgid "File editor font name" +msgstr "Nome de fonte do navegador de arquivos" + +#: ../admin/bro_pref.php:90 +msgid "File editor font size" +msgstr "Tamanho de fonte do navegador de arquivos" + +#: ../admin/bro_pref.php:98 +msgid "File list view" +msgstr "Vista lista de arquivos" + +#: ../admin/bro_pref.php:106 +msgid "Downloading file format" +msgstr "Abaixando o formate de arquivo" + +#: ../admin/bro_pref.php:114 +msgid "What to do after creating a file" +msgstr "Que a fazer após ter criado um arquivo" + +#: ../admin/bro_pref.php:122 +msgid "Show icons?" +msgstr "Mostrar ícones?" + +#: ../admin/bro_pref.php:130 +msgid "Show file types?" +msgstr "Mostrar tipos e arquivos?" + +#: ../admin/bro_pref.php:138 +msgid "Remember last visited directory?" +msgstr "Recordar o último diretório visitado?" + +#: ../admin/bro_pref.php:149 +msgid "Change my settings" +msgstr "Mudar meus ajustes" + +#: ../admin/browseforfolder.php:125 ../admin/browseforfolder2.php:120 +msgid "Searching for a folder" +msgstr "" + +#: ../admin/browseforfolder.php:131 ../admin/browseforfolder2.php:126 +#, fuzzy +msgid "Error, cannot find this folder" +msgstr "Protect this folder" + +#: ../admin/browseforfolder.php:133 ../admin/browseforfolder2.php:128 +#, fuzzy +msgid "Back to the root folder" +msgstr "Volta ao navegador de arquivos" + +#: ../admin/browseforfolder.php:145 ../admin/browseforfolder2.php:141 +#, fuzzy +msgid "Select" +msgstr "Suprimir" + +#: ../admin/cron.php:21 ../class/m_cron.php:72 ../class/m_cron.php:181 +msgid "Scheduled tasks" +msgstr "" + +#: ../admin/cron.php:36 +msgid "URL" +msgstr "" + +#: ../admin/cron.php:37 +msgid "Schedule" +msgstr "" + +#: ../admin/cron.php:38 ../admin/hta_edituser.php:55 +#: ../admin/sql_users_list.php:48 +#, fuzzy +msgid "User" +msgstr "Usado(s)" + +#: ../admin/cron.php:40 +#, fuzzy +msgid "Email report" +msgstr "Endereço email" + +#: ../admin/cron.php:57 +msgid "Called URL" +msgstr "" + +#: ../admin/cron.php:60 +msgid "Period:" +msgstr "" + +#: ../admin/cron.php:72 +msgid "Next execution: " +msgstr "" + +#: ../admin/cron.php:75 +msgid "HTTP user (optional)" +msgstr "" + +#: ../admin/cron.php:76 +#, fuzzy +msgid "HTTP password (optional)" +msgstr "Endereço email" + +#: ../admin/cron.php:77 +#, fuzzy +msgid "Mail address (optional)" +msgstr "Endereço email" + +#: ../admin/cron.php:81 +msgid "Apply the modifications" +msgstr "" + +#: ../admin/dom_add.php:45 +msgid "Domain hosting" +msgstr "Hospedagem do Domínio" + +#: ../admin/dom_add.php:49 +msgid "Contact your administrator for more information." +msgstr "Contatar seu administrador para mais informação." + +#: ../admin/dom_add.php:49 +msgid "You cannot add any new domain, your quota is over." +msgstr "Você não pode adiçionr mais domínios, sua quota acabou." + +#: ../admin/dom_add.php:57 +msgid "Advanced import" +msgstr "" + +#: ../admin/dom_add.php:60 +msgid "host my dns here" +msgstr "hospedar meu DNS aqui" + +#: ../admin/dom_add.php:68 +msgid "" +"Do you want to point this domain to another domain already installed in your " +"account?" +msgstr "" + +#: ../admin/dom_add.php:71 +msgid "No: This domain will have its own folder." +msgstr "" + +#: ../admin/dom_add.php:73 +msgid "Yes, redirect this new domain to this one:" +msgstr "" + +#: ../admin/dom_add.php:74 +msgid "-- Choose a domain --" +msgstr "" + +#: ../admin/dom_add.php:87 +msgid "Add this domain" +msgstr "Adiçionar este domínio" + +#: ../admin/dom_add.php:91 +msgid "" +"If you don't want to host in our server the DNS of your domain, don't check " +"the box 'host my dns here'. If you don't know what it mean, leave it checked." +msgstr "" +"Se você não quiser hospedar o DNS em nosso servidor, não seleciona a caixa " +"'hospedar meu DNS aqui'. Se você não sabe o que significa, deixá-lo " +"selecionado." + +#: ../admin/dom_add.php:96 ../admin/dom_doadd.php:60 +msgid "Whois result on the domain" +msgstr "Resultado Whois deste domínio" + +#: ../admin/dom_dnsdump.php:9 +#, fuzzy +msgid "Error: no domain" +msgstr "Número de domínios" + +#: ../admin/dom_doadd.php:52 ../class/m_dom.php:104 +msgid "Add a domain" +msgstr "Adiçionar um domínio" + +#: ../admin/dom_doadd.php:54 +#, php-format +msgid "Your new domain %s has been successfully installed" +msgstr "Seu domínio %s foi instalado com sucesso" + +#: ../admin/dom_doadd.php:55 ../admin/dom_dodel.php:56 +#: ../admin/dom_dodel.php:86 ../admin/dom_editdns.php:62 +#: ../admin/dom_import.php:87 ../admin/dom_subdodel.php:79 +#: ../admin/hta_doedituser.php:62 +msgid "Click here to continue" +msgstr "Clicar aqui para continuar" + +#: ../admin/dom_dodel.php:54 +#, fuzzy +msgid "Deletion have been successfully cancelled" +msgstr "A caixa de email %s foi mudado com sucesso" + +#: ../admin/dom_dodel.php:64 ../admin/dom_dodel.php:67 +#, php-format +msgid "Confirm the deletion of domain %s" +msgstr "Confirma o apagamento deste domínio %s" + +#: ../admin/dom_dodel.php:67 ../admin/sql_del.php:75 +#: ../admin/sql_users_del.php:61 +msgid "WARNING" +msgstr "AVISO" + +#: ../admin/dom_dodel.php:69 +msgid "This will delete the related sub-domains too." +msgstr "Isto suprimirá os secundário-domínios relacionados tambem." + +#: ../admin/dom_dodel.php:74 +#, fuzzy +msgid "Yes, delete this domain name" +msgstr "Nome do Domínio" + +#: ../admin/dom_dodel.php:75 +#, fuzzy +msgid "No, don't delete this domain name" +msgstr "Nome do Domínio" + +#: ../admin/dom_dodel.php:81 +#, php-format +msgid "Domain %s deleted" +msgstr "Domínio %s suprimido" + +#: ../admin/dom_dodel.php:85 +#, php-format +msgid "The domain %s has been successfully deleted." +msgstr "O domínio %s foi suprimido com sucesso." + +#: ../admin/dom_edit.inc.php:40 +#, fuzzy +msgid "Edit a subdomain:" +msgstr "Editando o domínio %s" + +#: ../admin/dom_edit.inc.php:42 +#, fuzzy +msgid "Create a subdomain:" +msgstr "Adiçionar um secundário-domínio" + +#: ../admin/dom_edit.inc.php:63 +msgid "Show advanced options" +msgstr "" + +#: ../admin/dom_edit.inc.php:64 +msgid "Hide advanced options" +msgstr "" + +#: ../admin/dom_edit.inc.php:88 +msgid "(enter an URL here)" +msgstr "" + +#: ../admin/dom_edit.inc.php:92 +msgid "(enter an IPv4 address, for example 192.168.1.2)" +msgstr "" + +#: ../admin/dom_edit.inc.php:96 +msgid "(enter an IPv6 address, for example 2001:0910::0)" +msgstr "" + +#: ../admin/dom_edit.inc.php:100 +#, fuzzy +msgid "(enter a TXT content for this domain)" +msgstr "Adiçionar um email ao domínio %s" + +#: ../admin/dom_edit.inc.php:104 +msgid "(enter a domain name or subdomain)" +msgstr "" + +#: ../admin/dom_edit.inc.php:114 +#, fuzzy +msgid "Edit this subdomain" +msgstr "Adiçionar este domínio" + +#: ../admin/dom_edit.inc.php:116 +#, fuzzy +msgid "Add this subdomain" +msgstr "Adiçionar este domínio" + +#: ../admin/dom_edit.inc.php:135 +#, fuzzy +msgid "Missing value for this sub-domain" +msgstr "Adiçionar um email ao domínio %s" + +#: ../admin/dom_edit.inc.php:141 +msgid "Please select a type for this sub-domain" +msgstr "" + +#: ../admin/dom_edit.php:80 +msgid "" +"Are you sure you want to do this? This will DELETE ALL the mailboxes, " +"messages and aliases on this domain ?" +msgstr "" + +#: ../admin/dom_edit.php:91 +#, fuzzy, php-format +msgid "Manage %s" +msgstr "Controlar os membros" + +#: ../admin/dom_edit.php:96 +msgid "This domain have some DNS change pending. Please wait." +msgstr "" + +#: ../admin/dom_edit.php:99 +#, fuzzy, php-format +msgid "You requested deletion of domain %s." +msgstr "Confirma o apagamento deste domínio %s" + +#: ../admin/dom_edit.php:117 +#, fuzzy +msgid "Edit subdomains" +msgstr "Editando o domínio %s" + +#: ../admin/dom_edit.php:118 +#, fuzzy +msgid "Add subdomains" +msgstr "Adiçionar um secundário-domínio" + +#: ../admin/dom_edit.php:119 ../class/m_mem.php:63 +msgid "Settings" +msgstr "" + +#: ../admin/dom_edit.php:128 +#, fuzzy, php-format +msgid "Editing subdomains of %s" +msgstr "Editando o domínio %s" + +#: ../admin/dom_edit.php:130 +#, fuzzy +msgid "Subdomain" +msgstr "Secundário-domínios" + +#: ../admin/dom_edit.php:153 +msgid "ERROR, please check your server setup" +msgstr "" + +#: ../admin/dom_edit.php:160 ../admin/ftp_list.php:94 +#, fuzzy +msgid "Directory not found" +msgstr "Domínio %s suprimido" + +#: ../admin/dom_edit.php:174 +msgid "Activation pending" +msgstr "" + +#: ../admin/dom_edit.php:177 ../admin/ftp_list.php:84 +#: ../admin/mail_list.php:144 ../admin/mail_list.php:154 +msgid "Disabled" +msgstr "" + +#: ../admin/dom_edit.php:178 +msgid "Enable" +msgstr "" + +#: ../admin/dom_edit.php:181 +msgid "Desactivation pending" +msgstr "" + +#: ../admin/dom_edit.php:189 +msgid "Update pending" +msgstr "" + +#: ../admin/dom_edit.php:192 +#, fuzzy +msgid "Deletion pending" +msgstr "Suprimando o secundário-domínio %s" + +#: ../admin/dom_edit.php:206 +#, fuzzy, php-format +msgid "Add a subdomains to %s" +msgstr "Adiçionar um secundário-domínio" + +#: ../admin/dom_edit.php:223 +#, fuzzy +msgid "DNS & Email parameters" +msgstr "Parâmetros DNS" + +#: ../admin/dom_edit.php:228 +msgid "Manage the DNS on the server ?" +msgstr "Administrar o DNS neste servidor ?" + +#: ../admin/dom_edit.php:239 +msgid "Define TTL for the zone records" +msgstr "" + +#: ../admin/dom_edit.php:241 +msgid "" +"Warning: a low TTL can be problematic. It is recommended not to use a lower " +"TTL than 3600 seconds." +msgstr "" + +#: ../admin/dom_edit.php:241 +msgid "seconds" +msgstr "" + +#: ../admin/dom_edit.php:250 +#, fuzzy +msgid "Manage the Emails Addresses of this domain on the server?" +msgstr "Administrar o DNS neste servidor ?" + +#: ../admin/dom_edit.php:258 +msgid "" +"Warning: If you set this to 'no', all your email accounts and aliases on " +"this domain will be immediately deleted." +msgstr "" + +#: ../admin/dom_edit.php:259 +msgid "Submit the changes" +msgstr "Submeter as mudanças" + +#: ../admin/dom_edit.php:267 +msgid "" +"Here is the actual DNS zone running on the AlternC server. If you just made " +"some changes, you have to wait for it." +msgstr "" + +#: ../admin/dom_edit.php:271 +#, fuzzy +msgid "Click here to view the dump" +msgstr "Clicar aqui para continuar" + +#: ../admin/dom_edit.php:279 +#, fuzzy +msgid "Domain removal" +msgstr "Nome do Domínio" + +#: ../admin/dom_edit.php:280 +#, php-format +msgid "" +"If you want to destroy the domain %s, click on the button below. Warning: " +"this also deletes all FTP accounts, email, mailing lists associated with the " +"domain and subdomains." +msgstr "" + +#: ../admin/dom_edit.php:283 +#, php-format +msgid "Delete %s from this server" +msgstr "" + +#: ../admin/dom_editdns.php:52 +#, php-format +msgid "Editing domain %s" +msgstr "Editando o domínio %s" + +#: ../admin/dom_editdns.php:57 +#, fuzzy, php-format +msgid "The domain %s has been changed." +msgstr "O domínio %s foi suprimido com sucesso." + +#: ../admin/dom_editdns.php:60 ../admin/dom_subdodel.php:75 +#, fuzzy +msgid "The modifications will take effect at %time. Server time is %now." +msgstr "As modificações estaram actualizadas em 5 minutos." + +#: ../admin/dom_import.php:43 +msgid "Import a DNS zone" +msgstr "" + +#: ../admin/dom_import.php:55 +#, fuzzy +msgid "The domain field seems to be empty" +msgstr "A caixa de email %s não existe!" + +#: ../admin/dom_import.php:57 +msgid "" +"Here is my proposition. Modify your zone until my proposition seems good to " +"you" +msgstr "" + +#: ../admin/dom_import.php:59 +#, fuzzy, php-format +msgid "Working on %s" +msgstr "Editando o domínio %s" + +#: ../admin/dom_import.php:61 +msgid "Generated entry" +msgstr "" + +#: ../admin/dom_import.php:61 +msgid "Result" +msgstr "" + +#: ../admin/dom_import.php:61 +msgid "Zone" +msgstr "" + +#: ../admin/dom_import.php:74 +msgid "ERROR" +msgstr "" + +#: ../admin/dom_import.php:74 ../admin/mem_cm.php:56 +msgid "OK" +msgstr "" + +#: ../admin/dom_import.php:96 +#, fuzzy +msgid "Enter the domain name you want to import" +msgstr "A caixa de email %s não existe!" + +#: ../admin/dom_import.php:104 +msgid "Do you want to detect the redirection?" +msgstr "" + +#: ../admin/dom_import.php:115 +msgid "Paste your existing DNS zone here." +msgstr "" + +#: ../admin/dom_import.php:117 +msgid "If you don't know what it is, don't submit this form." +msgstr "" + +#: ../admin/dom_import.php:122 +msgid "Do you want to import the zone as it?" +msgstr "" + +#: ../admin/dom_import.php:126 +msgid "Submit" +msgstr "" + +#: ../admin/dom_subdel.php:51 +#, php-format +msgid "Deleting subdomain %s" +msgstr "Suprimando o secundário-domínio %s" + +#: ../admin/dom_subdel.php:67 +msgid "WARNING : Confirm the deletion of the subdomain" +msgstr "AVISO : Confirmar o apagamento do secundário-domínio" + +#: ../admin/dom_subdodel.php:64 +#, fuzzy, php-format +msgid "Deleting the subdomain %s:" +msgstr "Suprimando o secundário-domínio %s" + +#: ../admin/dom_subdoedit.php:72 ../admin/dom_substatus.php:29 +#, fuzzy +msgid "The modifications will take effect at %time. Server time is %now." +msgstr "As modificações estaram actualizadas em 5 minutos." + +#: ../admin/dom_subedit.php:56 +#, fuzzy +msgid "Editing subdomain" +msgstr "Editando o domínio %s" + +#: ../admin/ftp_del.php:60 +#, php-format +msgid "The ftp account %s has been successfully deleted" +msgstr "Esta conta ftp %s foi suprimado com sucesso" + +#: ../admin/ftp_del.php:68 +#, fuzzy +msgid "Confirm the FTP accounts deletion" +msgstr "Confirma o apagamento deste domínio %s" + +#: ../admin/ftp_del.php:71 +msgid "Do you really want to delete those accounts?" +msgstr "" + +#: ../admin/ftp_doedit.php:46 ../admin/ftp_edit.php:44 +#: ../admin/ftp_edit.php:51 +#, fuzzy +msgid "Create a FTP account" +msgstr "Criar está nova conta FTP." + +#: ../admin/ftp_doedit.php:52 +msgid "Error: neither a creation nor an edition" +msgstr "" + +#: ../admin/ftp_doedit.php:72 +#, fuzzy +msgid "The ftp account has been successfully saved" +msgstr "A conta ftp foi mudado com sucesso" + +#: ../admin/ftp_edit.php:43 +msgid "Neither a creation nor a edition" +msgstr "" + +#: ../admin/ftp_edit.php:53 +#, fuzzy +msgid "Editing a FTP account" +msgstr "Editar uma conta FTP" + +#: ../admin/ftp_edit.php:79 +msgid "" +"This is the root folder for this FTP user. i.e. this FTP user can access to " +"this forlder and all its sub-folders." +msgstr "" + +#: ../admin/ftp_edit.php:93 +#, fuzzy +msgid "Click here if you want to edit password" +msgstr "Please enter a password" + +#: ../admin/ftp_edit.php:114 +#, fuzzy +msgid "Password do not match" +msgstr "Senha" + +#: ../admin/ftp_edit.php:120 ../class/m_admin.php:1279 ../class/m_hta.php:235 +msgid "Please enter a password" +msgstr "Please enter a password" + +#: ../admin/ftp_list.php:45 ../class/m_ftp.php:76 +msgid "FTP accounts list" +msgstr "Lista de contas FTP" + +#: ../admin/ftp_list.php:57 ../class/m_ftp.php:67 +msgid "Create a new ftp account" +msgstr "Criar uma nova conta ftp" + +#: ../admin/ftp_list.php:80 +msgid "Are you sure you want to change his status?" +msgstr "" + +#: ../admin/ftp_list.php:107 +msgid "FTP configuration information" +msgstr "" + +#: ../admin/ftp_list.php:109 +msgid "" +"Here are some configuration information you will need to configure your FTP " +"application." +msgstr "" + +#: ../admin/ftp_list.php:112 +#, fuzzy +msgid "Server:" +msgstr "Servidor SQL" + +#: ../admin/ftp_list.php:113 +msgid "FTP mode for data transfer:" +msgstr "" + +#: ../admin/ftp_list.php:113 +msgid "passive" +msgstr "" + +#: ../admin/ftp_list.php:114 +#, fuzzy +msgid "User/password:" +msgstr "New password" + +#: ../admin/ftp_list.php:114 +msgid "" +"the one you specified when you created the account. You can edit them in the " +"panel." +msgstr "" + +#: ../admin/head.php:32 +#, fuzzy +msgid "AlternC Control Panel" +msgstr "Painel de controle do Administrador" + +#: ../admin/head.php:59 +msgid "" +"Administrator session. you may return to your " +"account or cancel this feature." +msgstr "" + +#: ../admin/head.php:60 +msgid "You can also apply changes." +msgstr "" + +#: ../admin/head.php:65 +msgid "Panel is locked! No one can login!" +msgstr "" + +#: ../admin/hta_add.php:39 ../admin/hta_list.php:49 ../admin/hta_list.php:87 +msgid "Protect a folder" +msgstr "Protect a folder" + +#: ../admin/hta_add.php:43 +msgid "" +"Enter the name of the folder you want to protect. It must already exists." +msgstr "" + +#: ../admin/hta_adduser.php:40 +#, php-format +msgid "Adding a username in %s" +msgstr "Adding a username in %s" + +#: ../admin/hta_adduser.php:67 ../admin/hta_edit.php:112 +msgid "Add this user" +msgstr "Add this user" + +#: ../admin/hta_del.php:42 +#, php-format +msgid "The protected folder %s has been successfully unprotected" +msgstr "The protected folder %s has been successfully unprotected" + +#: ../admin/hta_dodeluser.php:49 +#, fuzzy +msgid "Authorized user deletion confirm" +msgstr "No authorized user in %s" + +#: ../admin/hta_dodeluser.php:52 +msgid "Do you really want to delete those users ?" +msgstr "" + +#: ../admin/hta_doedituser.php:52 +#, php-format +msgid "Change the user %s in the protected folder %s" +msgstr "Change the user %s in the protected folder %s" + +#: ../admin/hta_doedituser.php:60 +#, php-format +msgid "The password of the user %s has been successfully changed" +msgstr "The password of the user %s has been successfully changed" + +#: ../admin/hta_edit.php:39 +msgid "No folder selected!" +msgstr "No folder selected!" + +#: ../admin/hta_edit.php:48 +#, php-format +msgid "List of authorized user in folder %s" +msgstr "List of authorized user in folder %s" + +#: ../admin/hta_edit.php:53 +#, php-format +msgid "No authorized user in %s" +msgstr "No authorized user in %s" + +#: ../admin/hta_edit.php:68 ../admin/sql_users_password.php:38 +#, fuzzy +msgid "Change this user's password" +msgstr "Mudança da senha SQL" + +#: ../admin/hta_edit.php:78 ../admin/sql_users_list.php:70 +msgid "Delete the checked users" +msgstr "Delete the checked users" + +#: ../admin/hta_edit.php:83 +msgid "Show this folder's content in the File Browser" +msgstr "" + +#: ../admin/hta_edit.php:89 +#, fuzzy +msgid "Adding an authorized user" +msgstr "No authorized user in %s" + +#: ../admin/hta_edituser.php:40 +#, php-format +msgid "Editing user %s in the protected folder %s" +msgstr "Editing user %s in the protected folder %s" + +#: ../admin/hta_edituser.php:59 ../admin/mem_param.php:83 +#: ../admin/mem_param.php:84 +msgid "New password" +msgstr "New password" + +#: ../admin/hta_edituser.php:68 +#, fuzzy +msgid "Change the password" +msgstr "Mudança da senha SQL" + +#: ../admin/hta_list.php:40 +msgid "Protected folders list" +msgstr "Protected folders list" + +#: ../admin/hta_list.php:60 +msgid "" +"You can set passwords to protect some of your folders.
This will create ." +"htaccess and .htpasswd files that restrict access to these directory and to " +"any sub-elements." +msgstr "" + +#: ../admin/hta_list.php:77 +#, fuzzy +msgid "Edit login and passwords" +msgstr "Senha inicial" + +#: ../admin/hta_list.php:86 +msgid "Unprotect the checked folders" +msgstr "Unprotect the checked folders" + +#: ../admin/index.php:67 +#, fuzzy +msgid "Web Hosting Control Panel" +msgstr "Painel de controle do Administrador" + +#: ../admin/index.php:83 +msgid "" +"To connect to the hosting control panel, enter your AlternC's login and " +"password in the following form and click 'Enter'" +msgstr "" + +#: ../admin/index.php:84 +msgid "You are attemping to connect without IP restriction." +msgstr "" + +#: ../admin/index.php:88 +#, fuzzy +msgid "AlternC access" +msgstr "Lista de contas FTP" + +#: ../admin/index.php:91 +msgid "Enter" +msgstr "" + +#: ../admin/index.php:111 +msgid "" +"To read your mail in a browser, click here to go to your server's Webmail" +msgstr "" + +#: ../admin/index.php:123 +msgid "You must accept the session cookie to log-in" +msgstr "Você precisa aceitar o cookie da sessão para o login" + +#: ../admin/index.php:152 +#, fuzzy +msgid "Need a login and a password" +msgstr "Senha inicial" + +#: ../admin/ip_main.php:58 +msgid "" +"Here you can add rules to restrict access to AlternC's services, filtered by " +"IP. First, add trusted IPs in the 'Known IP and networks' list. Then, add " +"rules to grant access on services to the chosen IPs from this list." +msgstr "" + +#: ../admin/ip_main.php:60 +#, fuzzy +msgid "Enabled rules" +msgstr "Conta Permitiu ?" + +#: ../admin/ip_main.php:64 +msgid "Authorised IP address or network" +msgstr "" + +#: ../admin/ip_main.php:65 ../admin/ip_main.php:95 +#, fuzzy +msgid "Access type" +msgstr "Conta Permitiu ?" + +#: ../admin/ip_main.php:76 +msgid "for" +msgstr "" + +#: ../admin/ip_main.php:86 +#, fuzzy +msgid "Add a new rule" +msgstr "Adicionar um novo TLD" + +#: ../admin/ip_main.php:89 +msgid "" +"You need to have some 'Known IP and networks' defined below to define a new " +"rule." +msgstr "" + +#: ../admin/ip_main.php:119 +msgid "Authorized IP address or network" +msgstr "" + +#: ../admin/ip_main.php:144 +msgid "Known IP and networks" +msgstr "" + +#: ../admin/ip_main.php:146 +msgid "IP or network" +msgstr "" + +#: ../admin/ip_main.php:172 +msgid "Add an IP or a networks" +msgstr "" + +#: ../admin/ip_main.php:181 +msgid "IP or network. IPv4, IPv6 and subnet allowed" +msgstr "" + +#: ../admin/ip_main.php:214 +msgid "Please select an access type" +msgstr "" + +#: ../admin/logs_list.php:35 +msgid "Logs Listing" +msgstr "" + +#: ../admin/logs_list.php:43 +msgid "You have no web logs to list at the moment." +msgstr "" + +#: ../admin/logs_list.php:49 +msgid "" +"Here are web logs of your account.
You can download them to do specific " +"extract and statistics." +msgstr "" + +#: ../admin/logs_list.php:53 +#, fuzzy +msgid "Creation Date" +msgstr "Criar" + +#: ../admin/logs_list.php:53 +#, fuzzy +msgid "Download link" +msgstr "Abaixar" + +#: ../admin/logs_list.php:65 +msgid "Download" +msgstr "Abaixar" + +#: ../admin/mail_del.php:54 +#, fuzzy +msgid "Deleting mail accounts" +msgstr "Suprimir uma conta FTP" + +#: ../admin/mail_del.php:57 +#, fuzzy +msgid "Please confirm the deletion of the following mail accounts:" +msgstr "Confirma o apagamento das bases de dados SQL seguintes" + +#: ../admin/mail_del.php:74 +#, fuzzy +msgid "Confirm the deletion" +msgstr "Confirma o apagamento deste domínio %s" + +#: ../admin/mail_del.php:74 +msgid "Don't delete anything and go back to the email list" +msgstr "" + +#: ../admin/mail_del.php:78 +msgid "" +"Warning: Deleting an email address will destroy all the messages it " +"contains! You will NOT be able to get it back!" +msgstr "" + +#: ../admin/mail_doedit.php:120 +#, fuzzy +msgid "Your email has been edited successfully" +msgstr "Seu domínio %s foi instalado com sucesso" + +#: ../admin/mail_edit.php:53 +#, fuzzy, php-format +msgid "Editing the email %s" +msgstr "Editar a caixa e email %s" + +#: ../admin/mail_edit.php:67 +msgid "Is this email enabled?" +msgstr "" + +#: ../admin/mail_edit.php:69 +msgid "" +"You can enable or disable this email anytime. This will bounce any mail " +"received on this address, but will not delete the stored email, or the " +"redirections or password." +msgstr "" + +#: ../admin/mail_edit.php:73 +msgid "No (email disabled)" +msgstr "" + +#: ../admin/mail_edit.php:74 +msgid "Yes (email enabled)" +msgstr "" + +#: ../admin/mail_edit.php:78 +#, fuzzy +msgid "Is it a POP/IMAP account?" +msgstr "É uma conta POP?" + +#: ../admin/mail_edit.php:79 +msgid "" +"POP/IMAP accounts are receiving emails in the server. To read those emails, " +"you can use a Webmail, or a mail client such as Thunderbird. If you don't " +"use POP/IMAP, you can configure your email to be a redirection to other " +"existing emails. The maximum size is in megabytes, use 0 to make it infinite." +msgstr "" + +#: ../admin/mail_edit.php:82 +#, php-format +msgid "This mailbox is currently using %1$s / %2$s" +msgstr "" + +#: ../admin/mail_edit.php:85 +msgid "" +"This mailbox is pending deletion. You can recover its mails by setting it to " +"'Yes' NOW!" +msgstr "" + +#: ../admin/mail_edit.php:95 +#, fuzzy +msgid "Click here to edit the existing password" +msgstr "Please enter a password" + +#: ../admin/mail_edit.php:96 +#, fuzzy +msgid "Enter a POP/IMAP password" +msgstr "Senha POP" + +#: ../admin/mail_edit.php:98 ../class/m_quota.php:537 +msgid "MB" +msgstr "" + +#: ../admin/mail_edit.php:98 +msgid "Maximum allowed size of this Mailbox" +msgstr "" + +#: ../admin/mail_edit.php:103 +msgid "" +"WARNING: turning POP/IMAP off will DELETE the stored messages in this email " +"address." +msgstr "" + +#: ../admin/mail_edit.php:105 +#, fuzzy +msgid "Is it a redirection to other email addresses?" +msgstr "Suprimir as bases selecionadas" + +#: ../admin/mail_edit.php:107 +msgid "" +"If you want to send emails received on this address to other addresses, even " +"outside this server, enter those recipients here." +msgstr "" + +#: ../admin/mail_edit.php:107 +#, fuzzy +msgid "one recipient per line" +msgstr "Um email por linha" + +#: ../admin/mail_edit.php:115 +#, fuzzy +msgid "Change this email address" +msgstr "Mudar esta caixa de email" + +#: ../admin/mail_list.php:72 +#, fuzzy +msgid "Create a new mail account" +msgstr "Criar uma nova conta ftp" + +#: ../admin/mail_list.php:76 +#, fuzzy +msgid "Can't have empty mail." +msgstr "Mudar esta caixa de email" + +#: ../admin/mail_list.php:76 +#, fuzzy +msgid "Create this email address" +msgstr "Criar uma caixa de email" + +#: ../admin/mail_list.php:78 +#, fuzzy +msgid "Manage Catch-all for this domain" +msgstr "Adiçionar um email ao domínio %s" + +#: ../admin/mail_list.php:92 +#, fuzzy, php-format +msgid "Email addresses of the domain %s" +msgstr "Lista de caixas de email do domínio %s" + +#: ../admin/mail_list.php:96 +#, fuzzy +msgid "No mails for this domain." +msgstr "Adiçionar um email ao domínio %s" + +#: ../admin/mail_list.php:106 +msgid "Search" +msgstr "" + +#: ../admin/mail_list.php:111 +#, fuzzy +msgid "Show system emails" +msgstr "Nome do Domínio" + +#: ../admin/mail_list.php:118 +msgid "Items per page:" +msgstr "" + +#: ../admin/mail_list.php:125 +#, fuzzy +msgid "Address" +msgstr "Endereço email" + +#: ../admin/mail_list.php:125 +#, fuzzy +msgid "Last login time" +msgstr "Último Login: " + +#: ../admin/mail_list.php:125 +msgid "Other recipients" +msgstr "Outros receptores" + +#: ../admin/mail_list.php:125 +msgid "Pop/Imap" +msgstr "" + +#: ../admin/mail_list.php:136 +#, fuzzy +msgid "Deleting..." +msgstr "Suprimando o secundário-domínio %s" + +#: ../admin/mail_list.php:141 +msgid "" +"This email will be deleted soon. You may still be able to undelete it by " +"clicking here" +msgstr "" + +#: ../admin/mail_list.php:141 +#, fuzzy +msgid "Undelete" +msgstr "Suprimir" + +#: ../admin/mail_list.php:167 ../admin/main.php:34 +msgid "Never" +msgstr "" + +#: ../admin/mail_list.php:178 +#, fuzzy +msgid "Delete the checked email addresses" +msgstr "Suprimir as bases selecionadas" + +#: ../admin/mail_list.php:186 +msgid "Mails configuration information" +msgstr "" + +#: ../admin/mail_list.php:188 +msgid "" +"Here are some configuration information you will need to configure your mail " +"application." +msgstr "" + +#: ../admin/mail_list.php:195 +msgid "Outgoing mail (SMTP)" +msgstr "" + +#: ../admin/mail_list.php:196 +msgid "Incoming mail" +msgstr "" + +#: ../admin/mail_list.php:201 ../admin/mail_list.php:242 +msgid "Which protocol shall you use?" +msgstr "" + +#: ../admin/mail_list.php:203 +msgid "Submission" +msgstr "" + +#: ../admin/mail_list.php:206 ../admin/mail_list.php:217 +#: ../admin/mail_list.php:228 ../admin/mail_list.php:247 +#: ../admin/mail_list.php:258 ../admin/mail_list.php:269 +#: ../admin/mail_list.php:280 +#, fuzzy +msgid "Server name: " +msgstr "Rebatizar" + +#: ../admin/mail_list.php:207 ../admin/mail_list.php:218 +#: ../admin/mail_list.php:229 +msgid "" +"The mail address you want to access (example : myuser@example.tld)" +msgstr "" + +#: ../admin/mail_list.php:207 ../admin/mail_list.php:218 +#: ../admin/mail_list.php:229 +#, fuzzy +msgid "Username: " +msgstr "Nome de usúario" + +#: ../admin/mail_list.php:208 ../admin/mail_list.php:219 +#: ../admin/mail_list.php:230 ../admin/mail_list.php:248 +#: ../admin/mail_list.php:259 ../admin/mail_list.php:270 +#: ../admin/mail_list.php:281 +msgid "Port: " +msgstr "" + +#: ../admin/mail_list.php:209 ../admin/mail_list.php:220 +#: ../admin/mail_list.php:231 ../admin/mail_list.php:249 +#: ../admin/mail_list.php:260 ../admin/mail_list.php:271 +#: ../admin/mail_list.php:282 +msgid "Authentication: " +msgstr "" + +#: ../admin/mail_list.php:210 ../admin/mail_list.php:221 +#: ../admin/mail_list.php:232 ../admin/mail_list.php:250 +#: ../admin/mail_list.php:261 ../admin/mail_list.php:272 +#: ../admin/mail_list.php:283 +msgid "Authentication method: " +msgstr "" + +#: ../admin/mail_list.php:210 ../admin/mail_list.php:250 +#: ../admin/mail_list.php:261 ../admin/mail_list.php:272 +#: ../admin/mail_list.php:283 +#, fuzzy +msgid "Normal password" +msgstr "Senha inicial" + +#: ../admin/mail_list.php:211 ../admin/mail_list.php:222 +#: ../admin/mail_list.php:233 ../admin/mail_list.php:251 +#: ../admin/mail_list.php:262 ../admin/mail_list.php:273 +#: ../admin/mail_list.php:284 +#, fuzzy +msgid "Connection security:" +msgstr "Conectar como" + +#: ../admin/mail_list.php:214 +msgid "SMTP" +msgstr "" + +#: ../admin/mail_list.php:221 ../admin/mail_list.php:232 +#, fuzzy +msgid "Normal Password" +msgstr "Senha inicial" + +#: ../admin/mail_list.php:225 +msgid "SMTPS" +msgstr "" + +#: ../admin/mail_list.php:244 +msgid "IMAP" +msgstr "" + +#: ../admin/mail_list.php:255 +msgid "IMAPS" +msgstr "" + +#: ../admin/mail_list.php:266 +msgid "POP3" +msgstr "" + +#: ../admin/mail_list.php:277 +msgid "POP3S" +msgstr "" + +#: ../admin/mail_manage_catchall.php:38 +msgid "Problem with the domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:47 +#, fuzzy +msgid "Catchall successfully deleted" +msgstr "Membro %s foi suprimido com sucesso" + +#: ../admin/mail_manage_catchall.php:50 ../admin/mail_manage_catchall.php:53 +#, fuzzy +msgid "Catchall successfully updated" +msgstr "Os quotas foram editados com sucesso" + +#: ../admin/mail_manage_catchall.php:56 +msgid "Unknown target type" +msgstr "" + +#: ../admin/mail_manage_catchall.php:63 +#, php-format +msgid "Manage catch-all configuration of %s" +msgstr "" + +#: ../admin/mail_manage_catchall.php:72 +msgid "" +"You can choose what to do with emails sent to unexisting address of this " +"domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:80 +msgid "No catch-all" +msgstr "" + +#: ../admin/mail_manage_catchall.php:84 +#, fuzzy +msgid "No catch-all for this domain." +msgstr "Adiçionar um email ao domínio %s" + +#: ../admin/mail_manage_catchall.php:88 +msgid "Redirect to same address on a different domain" +msgstr "" + +#: ../admin/mail_manage_catchall.php:92 +#, php-format +msgid "" +"Mails sent to john.doe@%s will be redirect to john.doe@anotherdomain.tld" +msgstr "" + +#: ../admin/mail_manage_catchall.php:95 +#, fuzzy +msgid "Enter the 'target' domain" +msgstr "Controla domínios permitidos (TLD)" + +#: ../admin/mail_manage_catchall.php:96 +msgid "example.tld" +msgstr "" + +#: ../admin/mail_manage_catchall.php:98 +msgid "Or choose one of your own" +msgstr "" + +#: ../admin/mail_manage_catchall.php:106 +msgid "Redirect to a specific email" +msgstr "" + +#: ../admin/mail_manage_catchall.php:110 +#, php-format +msgid "" +"Mails sent to an unexisting email on '@%s' will be redirect to user@example." +"tld." +msgstr "" + +#: ../admin/mail_manage_catchall.php:113 +msgid "john.doe@example.tld" +msgstr "" + +#: ../admin/mailautoconfig_outlook.php:16 +#, fuzzy +msgid "Missing POST of the mail address" +msgstr "Mudar esta caixa de email" + +#: ../admin/mailautoconfig_thunderbird.php:9 +msgid "Error: Missing GET of emailaddress" +msgstr "" + +#: ../admin/mailautoconfig_thunderbird.php:12 +msgid "Error: Empty $emailDomain" +msgstr "" + +#: ../admin/main.php:31 +msgid "Last Login: " +msgstr "Último Login: " + +#: ../admin/main.php:36 +#, fuzzy, php-format +msgid "the %3$d-%2$d-%1$d at %4$d:%5$02d" +msgstr "%3$d/%1$d/%2$d, à %6$d:%5$d %7$s" + +#: ../admin/main.php:37 +#, php-format +msgid "from: %1$s " +msgstr "do: %1$s " + +#: ../admin/main.php:42 +#, php-format +msgid "%1$d login failed since last login" +msgstr "%1$d login falharam desde o último login" + +#: ../admin/main.php:85 +msgid "Expired or about to expire accounts" +msgstr "" + +#: ../admin/main.php:87 +msgid "Last name, surname" +msgstr "" + +#: ../admin/main.php:87 +msgid "uid" +msgstr "" + +#: ../admin/main.php:103 +msgid "" +"You are using the AlternC Panel. You can contact the AlternC community for " +"information or feedback by joining the mailing-list" +msgstr "" + +#: ../admin/mem_admin.php:40 +#, fuzzy +msgid "Your administrator preferences has been successfully changed." +msgstr "Seus parâmetros de backup foram mudados com sucesso" + +#: ../admin/mem_admin.php:46 ../admin/mem_param.php:116 +#, fuzzy +msgid "Admin preferences" +msgstr "Preferências do editor de arquivos" + +#: ../admin/mem_chgmail.php:44 ../admin/mem_cm.php:42 ../admin/mem_cm.php:53 +#: ../admin/mem_cm2.php:47 ../admin/mem_param.php:92 +msgid "Change the email of the account" +msgstr "Mudar o email da sua conta" + +#: ../admin/mem_chgmail.php:51 +#, php-format +msgid "help_mem_chgmail %s" +msgstr "" + +#: ../admin/mem_cm.php:54 +msgid "" +"Enter the key you got when you requested the mailbox change, then click the " +"OK button." +msgstr "" + +#: ../admin/mem_cm.php:55 +msgid "Key" +msgstr "" + +#: ../admin/mem_cm2.php:55 +#, fuzzy +msgid "The mailbox has been successfully changed." +msgstr "A caixa de email %s foi mudado com sucesso" + +#: ../admin/mem_logout.php:41 ../admin/mem_logout.php:49 +msgid "Disconnected" +msgstr "" + +#: ../admin/mem_logout.php:51 +msgid "You have been logged out of your administration desktop." +msgstr "" + +#: ../admin/mem_logout.php:52 +#, fuzzy +msgid "Click here to log in" +msgstr "Clicar aqui para continuar" + +#: ../admin/mem_param.php:43 +#, fuzzy +msgid "Your help setting has been updated." +msgstr "Suas preferências foram atualizadas." + +#: ../admin/mem_param.php:47 +#, fuzzy +msgid "Settings of your account" +msgstr "Suprimir uma conta FTP" + +#: ../admin/mem_param.php:60 ../class/m_mem.php:579 +msgid "Help" +msgstr "Ajuda" + +#: ../admin/mem_param.php:63 +#, fuzzy +msgid "Administrator" +msgstr "Administração do" + +#: ../admin/mem_param.php:69 ../admin/mem_passwd.php:50 +#: ../admin/sql_users_list.php:59 +#, fuzzy +msgid "Password change" +msgstr "Senha" + +#: ../admin/mem_param.php:73 +msgid "You cannot change your password" +msgstr "Você não pode mudar sua senha" + +#: ../admin/mem_param.php:78 +msgid "help_chg_passwd" +msgstr "" + +#: ../admin/mem_param.php:82 +#, fuzzy +msgid "Old password" +msgstr "Senha POP" + +#: ../admin/mem_param.php:85 +#, fuzzy +msgid "Change my password" +msgstr "Mudança da senha SQL" + +#: ../admin/mem_param.php:95 +msgid "help_chg_mail" +msgstr "" + +#: ../admin/mem_param.php:96 +#, fuzzy +msgid "Current mailbox" +msgstr "Criar uma caixa de email" + +#: ../admin/mem_param.php:97 +#, fuzzy +msgid "New mailbox" +msgstr "Caixas e email" + +#: ../admin/mem_param.php:98 +#, fuzzy +msgid "Change my email address" +msgstr "Mudar esta caixa de email" + +#: ../admin/mem_param.php:103 +#, fuzzy +msgid "Online help settings" +msgstr "Ajuda online" + +#: ../admin/mem_param.php:106 +msgid "help_help_settings" +msgstr "" + +#: ../admin/mem_param.php:107 +msgid "Do you want to see the help texts and links on each page?" +msgstr "" + +#: ../admin/mem_param.php:108 +#, fuzzy +msgid "Change these settings" +msgstr "Mudar meus ajustes" + +#: ../admin/mem_param.php:119 +#, fuzzy +msgid "Members list view" +msgstr "Lista dos membros" + +#: ../admin/mem_param.php:120 +msgid "Large view" +msgstr "" + +#: ../admin/mem_param.php:121 +msgid "Short view" +msgstr "" + +#: ../admin/mem_param.php:123 +#, fuzzy +msgid "Change my admin preferences" +msgstr "Preferências do editor de arquivos" + +#: ../admin/mem_passwd.php:44 +msgid "Your password has been successfully changed." +msgstr "Sua senha foi mudado com sucesso." + +#: ../admin/menu.php:37 +#, fuzzy, php-format +msgid "Welcome %s" +msgstr "Deleter %s" + +#: ../admin/menu.php:105 +msgid "About" +msgstr "" + +#: ../admin/nowebmail.php:28 +msgid "" +"There is currently no webmail configured. If you need one, contact your " +"server administrator" +msgstr "" + +#: ../admin/piwik_addaccount.php:34 +#, fuzzy +msgid "You cannot add any new Piwik account, your quota is over." +msgstr "Você não pode adiçionr mais domínios, sua quota acabou." + +#: ../admin/piwik_addaccount.php:44 +msgid "Error : missing arguments." +msgstr "" + +#: ../admin/piwik_addaccount.php:50 +#, fuzzy, php-format +msgid "Creation of Piwik account \"%s\"" +msgstr "Criar uma nova conta ftp" + +#: ../admin/piwik_addaccount.php:67 +msgid "Successfully added piwik user" +msgstr "" + +#: ../admin/piwik_addsites.php:44 +msgid "Error while adding website.
" +msgstr "" + +#: ../admin/piwik_addsites.php:46 +msgid "Website added Successfully" +msgstr "" + +#: ../admin/piwik_site_dodel.php:39 +msgid "Missing site parameters" +msgstr "" + +#: ../admin/piwik_site_dodel.php:50 +#, fuzzy +msgid "Site successfully deleted" +msgstr "Membro %s foi suprimido com sucesso" + +#: ../admin/piwik_site_dodel.php:61 +#, fuzzy +msgid "Piwik site deletion confirm" +msgstr "Lista de contas FTP" + +#: ../admin/piwik_site_dodel.php:64 +msgid "Do you really want to delete this Piwik website ?" +msgstr "" + +#: ../admin/piwik_sitelist.php:48 +msgid "You don't own this piwik site!" +msgstr "" + +#: ../admin/piwik_sitelist.php:56 +msgid "You dont own user" +msgstr "" + +#: ../admin/piwik_sitelist.php:83 ../admin/piwik_userlist.php:53 +#, fuzzy +msgid "Add a new website" +msgstr "Adicionar um novo TLD" + +#: ../admin/piwik_sitelist.php:85 ../admin/piwik_userlist.php:55 +msgid "URL of the website" +msgstr "" + +#: ../admin/piwik_sitelist.php:106 +msgid "Existing Piwik monitored websites" +msgstr "" + +#: ../admin/piwik_sitelist.php:114 +#, fuzzy +msgid "No existing Piwik websites" +msgstr "Editar uma conta FTP" + +#: ../admin/piwik_sitelist.php:120 +#, fuzzy +msgid "Site name" +msgstr "Rebatizar" + +#: ../admin/piwik_sitelist.php:120 +msgid "Site url" +msgstr "" + +#: ../admin/piwik_sitelist.php:147 +msgid "Credentials management" +msgstr "" + +#: ../admin/piwik_user_dodel.php:39 +msgid "Missing login parameters" +msgstr "" + +#: ../admin/piwik_user_dodel.php:59 +msgid "Piwik accounts deletion confirm" +msgstr "" + +#: ../admin/piwik_user_dodel.php:62 +#, php-format +msgid "Do you really want to delete the Piwik account %s ?" +msgstr "" + +#: ../admin/piwik_useradmin.php:42 +#, fuzzy +msgid "No piwik user specified" +msgstr "No folder selected!" + +#: ../admin/piwik_useradmin.php:52 +msgid "You don't own this piwik website" +msgstr "" + +#: ../admin/piwik_useradmin.php:60 +msgid "You don't own this piwik user" +msgstr "" + +#: ../admin/piwik_useradmin.php:71 +msgid "success" +msgstr "" + +#: ../admin/piwik_useradmin.php:75 +#, fuzzy +msgid "This right does not exist" +msgstr "Membro '%s' não existe" + +#: ../admin/piwik_useradmin.php:105 +msgid "Rights for user" +msgstr "" + +#: ../admin/piwik_useradmin.php:128 +#, fuzzy +msgid "Add rights to user" +msgstr "Add this user" + +#: ../admin/piwik_useradmin.php:139 +#, fuzzy +msgid "admin" +msgstr "Esta conta NÃO é uma conta administrativa" + +#: ../admin/piwik_useradmin.php:139 +#, fuzzy +msgid "noacces" +msgstr "Lista de contas FTP" + +#: ../admin/piwik_useradmin.php:139 +msgid "view" +msgstr "" + +#: ../admin/piwik_userlist.php:41 +#, fuzzy +msgid "Create a new piwik account" +msgstr "Criar uma nova conta ftp" + +#: ../admin/piwik_userlist.php:66 +#, fuzzy +msgid "Existing Piwik accounts" +msgstr "Editar uma conta FTP" + +#: ../admin/piwik_userlist.php:74 +msgid "No existing Piwik users" +msgstr "" + +#: ../admin/piwik_userlist.php:79 ../admin/piwik_userlist.php:89 +#, fuzzy +msgid "Connect" +msgstr "Conectar como" + +#: ../admin/quota_show.php:34 +msgid "Account's quotas" +msgstr "" + +#: ../admin/quota_show.php:40 +msgid "No quotas for this account, or quotas currently unavailable!" +msgstr "" + +#: ../admin/quotas_oneuser.php:14 +#, fuzzy, php-format +msgid "%s account" +msgstr "Contas FTP" + +#: ../admin/quotas_oneuser.php:25 ../class/m_quota.php:60 +#, fuzzy +msgid "quota_web" +msgstr "Espaço de Disco" + +#: ../admin/quotas_oneuser.php:36 ../admin/quotas_users.php:132 +#: ../class/m_dom.php:93 +msgid "Domains" +msgstr "Domínios" + +#: ../admin/quotas_oneuser.php:37 +#, fuzzy +msgid "Emails" +msgstr "Endereço email" + +#: ../admin/quotas_oneuser.php:38 ../admin/quotas_oneuser.php:121 +#: ../admin/quotas_oneuser.php:167 ../admin/quotas_users.php:128 +#: ../admin/quotas_users.php:169 +msgid "Space" +msgstr "" + +#: ../admin/quotas_oneuser.php:112 +#, fuzzy +msgid "Databases:" +msgstr "Bases de dados" + +#: ../admin/quotas_oneuser.php:120 ../admin/quotas_users.php:177 +msgid "DB" +msgstr "" + +#: ../admin/quotas_oneuser.php:158 +msgid "Mailman lists:" +msgstr "" + +#: ../admin/quotas_oneuser.php:166 ../admin/quotas_users.php:173 +#: ../admin/quotas_users.php:176 +msgid "Lists" +msgstr "" + +#: ../admin/quotas_users.php:20 +#, fuzzy +msgid "Quotas status" +msgstr "Quotas" + +#: ../admin/quotas_users.php:29 +msgid "" +"This page shows the space and service count of your AlternC server and each " +"AlternC accounts." +msgstr "" + +#: ../admin/quotas_users.php:30 +#, fuzzy, php-format +msgid "Administration -> Manage the Alternc accounts" +msgstr "Mudar o email da sua conta" + +#: ../admin/quotas_users.php:30 +#, php-format +msgid "If you want to manage them, go to" +msgstr "" + +#: ../admin/quotas_users.php:33 +#, php-format +msgid "% of the total." +msgstr "" + +#: ../admin/quotas_users.php:33 +msgid "MB." +msgstr "" + +#: ../admin/quotas_users.php:33 +#, php-format +msgid "Sizes are shown as %s" +msgstr "" + +#: ../admin/quotas_users.php:36 +msgid "Global" +msgstr "" + +#: ../admin/quotas_users.php:36 +msgid "Server-side view:" +msgstr "" + +#: ../admin/quotas_users.php:37 +msgid "Detailed view:" +msgstr "" + +#: ../admin/quotas_users.php:38 +msgid "In MB" +msgstr "" + +#: ../admin/quotas_users.php:39 +msgid "Percentage" +msgstr "" + +#: ../admin/quotas_users.php:40 +msgid "Graphical" +msgstr "" + +#: ../admin/quotas_users.php:43 +#, fuzzy +msgid "Show the domain names" +msgstr "Nome do Domínio" + +#: ../admin/quotas_users.php:45 +#, fuzzy +msgid "Hide the domain names" +msgstr "Nome do Domínio" + +#: ../admin/quotas_users.php:48 +#, fuzzy +msgid "All accounts" +msgstr "Contas FTP" + +#: ../admin/quotas_users.php:128 ../admin/quotas_users.php:169 +msgid "Count" +msgstr "" + +#: ../admin/quotas_users.php:137 ../class/m_mail.php:177 +#, fuzzy +msgid "Email addresses" +msgstr "Endereço email" + +#: ../admin/quotas_users.php:143 +msgid "Mailman lists" +msgstr "" + +#: ../admin/quotas_users.php:149 ../admin/sql_del.php:72 +#: ../admin/sql_dorestore.php:40 ../admin/sql_getparam.php:44 +#: ../admin/sql_list.php:37 ../admin/sql_restore.php:44 +#: ../class/m_mysql.php:990 +#, fuzzy +msgid "MySQL Databases" +msgstr "Bases de dados MySQL" + +#: ../admin/quotas_users.php:171 +#, fuzzy +msgid "Dom" +msgstr "Domínios" + +#: ../admin/quotas_users.php:172 ../admin/quotas_users.php:175 +#, fuzzy +msgid "Mails" +msgstr "Caixas e email" + +#: ../admin/quotas_users.php:174 +msgid "Web" +msgstr "" + +#: ../admin/sql_bck.php:34 +#, fuzzy +msgid "MySQL Databases - Configure backups" +msgstr "Bases de dados MySQL" + +#: ../admin/sql_bck.php:40 ../admin/sql_dobck.php:34 +msgid "" +"You aren't allowed to access this page. Contact your administrator if you " +"want to." +msgstr "" + +#: ../admin/sql_bck.php:65 +#, php-format +msgid "Manage the SQL backup for database %s" +msgstr "Administrar o backup SQL para a base de dados %s" + +#: ../admin/sql_bck.php:70 +#, fuzzy +msgid "Do MySQL backup?" +msgstr "Fazer backup SQL?" + +#: ../admin/sql_bck.php:73 +msgid "No backup" +msgstr "Nenhum backup" + +#: ../admin/sql_bck.php:74 +msgid "Weekly backup" +msgstr "Backup semanal" + +#: ../admin/sql_bck.php:75 +msgid "Daily backup" +msgstr "Backup diário" + +#: ../admin/sql_bck.php:79 +#, fuzzy +msgid "How many backups should be kept?" +msgstr "Quantos backups devem ser mantidos?" + +#: ../admin/sql_bck.php:91 +msgid "Compress the backups? (gzip)" +msgstr "Você quiser compresser os backups? (gzip)" + +#: ../admin/sql_bck.php:100 +msgid "In which folder do you want to store the backups?" +msgstr "Que pasta você quiser usar para salvar seus backups?" + +#: ../admin/sql_bck.php:107 +#, fuzzy +msgid "Change the MySQL backup parameters" +msgstr "Mudar os parâmetros SQL atuais" + +#: ../admin/sql_bck.php:116 ../admin/sql_dorestore.php:50 +#: ../admin/sql_restore.php:53 +#, fuzzy +msgid "You currently have no database defined" +msgstr "Você não tem nenhuma base de dados definida" + +#: ../admin/sql_del.php:51 +#, fuzzy, php-format +msgid "The database %s has been successfully deleted" +msgstr "A base de dados %s foi suprimido com sucesso" + +#: ../admin/sql_del.php:66 +msgid "Please check which databases you want to delete" +msgstr "" + +#: ../admin/sql_del.php:75 +#, fuzzy +msgid "Confirm the deletion of the following SQL databases" +msgstr "Confirma o apagamento das bases de dados SQL seguintes" + +#: ../admin/sql_del.php:76 +#, fuzzy +msgid "This will delete all the tables currently in those db." +msgstr "Isto suprimirá todas as tabelas atuais nestas bases de dados." + +#: ../admin/sql_del.php:90 +#, fuzzy +msgid "No, don't delete the database" +msgstr "Permitir a base de dados" + +#: ../admin/sql_del.php:90 +#, fuzzy +msgid "Yes, delete the database" +msgstr "Permitir a base de dados" + +#: ../admin/sql_doadd.php:37 +#, fuzzy +msgid "Can't create a database: your quota is over" +msgstr "Você não pode adiçionr mais domínios, sua quota acabou." + +#: ../admin/sql_dobck.php:56 +msgid "Your backup parameters has been successfully changed." +msgstr "Seus parâmetros de backup foram mudados com sucesso" + +#: ../admin/sql_dorestore.php:56 +msgid "Restore a SQL backup" +msgstr "Restaurar o backup SQL" + +#: ../admin/sql_dorestore.php:63 +msgid "" +"Your database has been restored, check out the previous text for error " +"messages." +msgstr "" +"Sua base de dados foi restaurado, verificar o texto precedente para ver se " +"há mensagens de erro." + +#: ../admin/sql_getparam.php:53 +#, fuzzy +msgid "Your current connection settings are" +msgstr "Aqui seus parâmetros atuaís" + +#: ../admin/sql_getparam.php:59 +#, fuzzy +msgid "Mysql Server" +msgstr "Servidor SQL" + +#: ../admin/sql_getparam.php:63 ../admin/sql_list.php:54 +msgid "Database" +msgstr "Base de dados" + +#: ../admin/sql_getparam.php:79 +#, fuzzy +msgid "Web interface PhpMyAdmin" +msgstr "Admin do SQL Geral" + +#: ../admin/sql_getparam.php:91 +msgid "" +"You changed the MySQL User base configuration. Please refer to your " +"configuration" +msgstr "" + +#: ../admin/sql_getparam.php:94 +#, fuzzy +msgid "Back to the MySQL database list" +msgstr "Lista de contas FTP" + +#: ../admin/sql_list.php:45 +msgid "You have no sql user at the moment." +msgstr "" + +#: ../admin/sql_list.php:54 ../admin/sql_list.php:65 +msgid "Backup" +msgstr "Backup" + +#: ../admin/sql_list.php:54 ../admin/sql_list.php:67 +#, fuzzy +msgid "Restore" +msgstr "Restauração" + +#: ../admin/sql_list.php:54 ../admin/sql_list.php:68 +#, fuzzy +msgid "Show Settings" +msgstr "Mostrar ícones?" + +#: ../admin/sql_list.php:77 +#, fuzzy +msgid "Delete the checked databases" +msgstr "Suprimir as bases selecionadas" + +#: ../admin/sql_list.php:90 +#, fuzzy +msgid "Create a new MySQL database" +msgstr "Criar uma nova base de dados" + +#: ../admin/sql_list.php:96 +#, fuzzy +msgid "MySQL Database" +msgstr "Bases de dados MySQL" + +#: ../admin/sql_list.php:103 +msgid "Can't have empty MySQL suffix" +msgstr "" + +#: ../admin/sql_list.php:103 +#, fuzzy +msgid "Create this new MySQL database." +msgstr "Criar esta nova base de dados." + +#: ../admin/sql_pma_sso.php:46 +#, fuzzy +msgid "SQL Admin" +msgstr "Admin SQL" + +#: ../admin/sql_restore.php:58 +#, fuzzy, php-format +msgid "Restore a MySQL backup for database %s" +msgstr "Restaurar o backup SQL para a base de dados %s" + +#: ../admin/sql_restore.php:61 +msgid "" +"Warning: Write the complete path and the filename.
For example if your " +"backups are in the directory /Backups,
write /Backups/file.sql.gz " +"(where file.sql.gz is the filename)." +msgstr "" + +#: ../admin/sql_restore.php:66 +#, fuzzy +msgid "" +"Please enter the path and the filename containing SQL data to be restored." +msgstr "" +"Por favor entrar o nome de arquivo que contem os dados do SQL que precisam " +"restaurar." + +#: ../admin/sql_restore.php:67 +#, fuzzy +msgid "Restore my database" +msgstr "Restaurar a base de dados" + +#: ../admin/sql_restore.php:67 +msgid "Tip: you can restore a file directly in the File Browser" +msgstr "" + +#: ../admin/sql_restore.php:72 +msgid "Please the complete path of the filename" +msgstr "" + +#: ../admin/sql_restore.php:81 +msgid "Note: If the filename ends with .gz, it will be uncompressed before." +msgstr "" +"Nota: Se o nome de arquivo termina com .gz, primeiramente ele será de-" +"compressado." + +#: ../admin/sql_users_add.php:41 ../admin/sql_users_list.php:79 +#, fuzzy +msgid "Create a new MySQL user" +msgstr "Criar um membro novo" + +#: ../admin/sql_users_add.php:72 +#, fuzzy +msgid "Create this new MySQL user" +msgstr "Criar um membro novo" + +#: ../admin/sql_users_del.php:47 +#, fuzzy, php-format +msgid "The user %s has been successfully deleted" +msgstr "A base de dados %s foi suprimido com sucesso" + +#: ../admin/sql_users_del.php:58 +#, fuzzy +msgid "MySQL users" +msgstr "Bases de dados MySQL" + +#: ../admin/sql_users_del.php:61 +#, fuzzy +msgid "Confirm the deletion of the following MySQL users" +msgstr "Confirma o apagamento das bases de dados SQL seguintes" + +#: ../admin/sql_users_del.php:76 +#, fuzzy +msgid "No, don't delete the MySQL user" +msgstr "Criar um membro novo" + +#: ../admin/sql_users_del.php:76 +#, fuzzy +msgid "Yes, delete the MySQL user" +msgstr "Criar um membro novo" + +#: ../admin/sql_users_dorights.php:54 +#, fuzzy +msgid "The rights has been successfully applied to the user" +msgstr "Os quotas foram editados com sucesso" + +#: ../admin/sql_users_list.php:37 ../class/m_mysql.php:124 +#, fuzzy +msgid "MySQL Users" +msgstr "Bases de dados MySQL" + +#: ../admin/sql_users_list.php:48 +msgid "Rights" +msgstr "" + +#: ../admin/sql_users_list.php:58 +#, fuzzy +msgid "Manage the rights" +msgstr "Controlar os membros" + +#: ../admin/sql_users_password.php:68 +#, fuzzy +msgid "Change user password" +msgstr "Mudança da senha SQL" + +#: ../admin/sql_users_rights.php:38 +#, php-format +msgid "MySQL Rights for %s" +msgstr "" + +#: ../admin/sql_users_rights.php:89 +msgid "Reverse selection" +msgstr "" + +#: ../admin/sql_users_rights.php:103 +msgid "Apply" +msgstr "" + +#: ../admin/stats_members.php:32 +msgid "" +"Image_Graph not installed. use 'aptitude install php-pear' then 'pear " +"install --alldeps Image_Graph-devel' to see the graph." +msgstr "" + +#: ../admin/stats_members.php:41 +#, fuzzy +msgid "Account creation per month" +msgstr "Conta foi criado por %s" + +#: ../admin/stats_members.php:54 +msgid "before the month" +msgstr "" + +#: ../admin/stats_members.php:56 +msgid "during the month" +msgstr "" + +#: ../admin/vm.php:52 ../class/m_lxc.php:60 +#, fuzzy +msgid "Console access" +msgstr "Lista de contas FTP" + +#: ../admin/vm.php:69 +msgid "You can start a virtual machine." +msgstr "" + +#: ../admin/vm.php:72 +#, fuzzy +msgid "Click here to start a virtual machine." +msgstr "Clicar aqui para continuar" + +#: ../admin/vm.php:78 +msgid "Start time" +msgstr "" + +#: ../admin/vm.php:79 +msgid "SSH Fingerprint" +msgstr "" + +#: ../admin/vm.php:80 +msgid "Useful command" +msgstr "" + +#: ../admin/vm.php:86 +msgid "You can stop your virtual machine." +msgstr "" + +#: ../admin/vm.php:89 +#, fuzzy +msgid "Click here to stop your running virtual machine." +msgstr "Clicar aqui para continuar" + +#: ../admin/vm.php:99 +msgid "Tips" +msgstr "" + +#: ../admin/vm.php:104 +msgid "Available softwares" +msgstr "" + +#: ../admin/vm.php:105 +msgid "Remotely start/stop a VM" +msgstr "" + +#: ../admin/vm.php:110 +msgid "" +"You can script the launch the console access in command line by using this " +"url:" +msgstr "" + +#: ../admin/vm.php:112 +msgid "You can halt the vm by using:" +msgstr "" + +#: ../admin/vm.php:114 +msgid "" +"And you can see existing vm information (if the vm is running) by using:" +msgstr "" + +#: ../admin/vm.php:116 +msgid "" +"Warning: if you do not use HTTPS, your password will be transfered without " +"any protection" +msgstr "" + +#: ../admin/vm.php:120 +msgid "To access a remote console with SSH, you can use Putty." +msgstr "" + +#: ../admin/vm.php:122 +msgid "To transfer files, you can use Filezilla in SFTP mode." +msgstr "" + +#: ../class/functions.php:281 +msgid "Bytes" +msgstr "" + +#: ../class/functions.php:283 +msgid "Byte" +msgstr "" + +#: ../class/functions.php:288 +msgid "Kb" +msgstr "" + +#: ../class/functions.php:292 +msgid "Mb" +msgstr "" + +#: ../class/functions.php:296 +msgid "Gb" +msgstr "" + +#: ../class/functions.php:298 +msgid "Tb" +msgstr "" + +#: ../class/functions.php:389 +msgid "year" +msgstr "" + +#: ../class/functions.php:389 +msgid "years" +msgstr "" + +#: ../class/functions.php:391 +msgid "month" +msgstr "" + +#: ../class/functions.php:391 +msgid "months" +msgstr "" + +#: ../class/functions.php:414 +#, fuzzy +msgid "Not managed" +msgstr "Controlado localemente" + +#: ../class/functions.php:541 ../class/functions.php:543 +msgid "Previous Page" +msgstr "" + +#: ../class/functions.php:597 ../class/functions.php:599 +msgid "Next Page" +msgstr "" + +#: ../class/functions.php:621 +#, fuzzy +msgid "Clic here to generate a password" +msgstr "Please enter a password" + +#: ../class/functions.php:656 ../class/functions.php:657 +#, fuzzy +msgid "Choose a folder..." +msgstr "Protect a folder" + +#: ../class/m_action.php:156 +msgid "Error setting actions" +msgstr "" + +#: ../class/m_action.php:168 +#, fuzzy +msgid "Error selecting old actions" +msgstr "Suprimir uma conta FTP" + +#: ../class/m_action.php:181 +msgid "Error purging old actions" +msgstr "" + +#: ../class/m_admin.php:60 +msgid "This TLD is forbidden" +msgstr "Este TLD é proibido" + +#: ../class/m_admin.php:61 +msgid "primary DNS is checked in WHOIS db" +msgstr "O DNS preliminar está selecionado em db WHOIS" + +#: ../class/m_admin.php:62 +msgid "primary & secondary DNS are checked in WHOIS db" +msgstr "O DNS preliminar e secundário estam selecionados em db WHOIS" + +#: ../class/m_admin.php:63 +msgid "Domain must exist, but don't do any DNS check" +msgstr "O domínio deve existir, mais não faz a verificação DNS" + +#: ../class/m_admin.php:64 +msgid "Domain can be installed, no check at all" +msgstr "O domínio pode ser instalado, mas não faz nenhuma verificação" + +#: ../class/m_admin.php:65 +#, fuzzy +msgid "Domain can be installed, force NO DNS hosting" +msgstr "O domínio pode ser instalado, forçã a hospedadem SEM DNS" + +#: ../class/m_admin.php:75 +#, fuzzy +msgid "Administration" +msgstr "Administração do" + +#: ../class/m_admin.php:83 +#, fuzzy +msgid "Manage AlternC accounts" +msgstr "Mudar o email da sua conta" + +#: ../class/m_admin.php:88 +#, fuzzy +msgid "User Quotas" +msgstr "Quotas" + +#: ../class/m_admin.php:104 ../class/m_mysql.php:130 +msgid "PhpMyAdmin" +msgstr "" + +#: ../class/m_admin.php:111 +msgid "Switch debug Off" +msgstr "" + +#: ../class/m_admin.php:111 +msgid "Switch debug On" +msgstr "" + +#: ../class/m_admin.php:118 +#, fuzzy +msgid "Applying..." +msgstr "Suprimando o secundário-domínio %s" + +#: ../class/m_admin.php:119 +msgid "Domain changes are already applying" +msgstr "" + +#: ../class/m_admin.php:125 +#, fuzzy +msgid "Apply changes" +msgstr "Senha" + +#: ../class/m_admin.php:128 +msgid "" +"Server configuration changes are applied every 5 minutes. Do you want to do " +"it right now?" +msgstr "" + +#: ../class/m_admin.php:174 ../class/m_admin.php:224 ../class/m_admin.php:288 +#: ../class/m_admin.php:364 ../class/m_admin.php:405 ../class/m_admin.php:436 +#: ../class/m_admin.php:491 ../class/m_admin.php:657 ../class/m_admin.php:696 +#: ../class/m_admin.php:720 ../class/m_admin.php:746 +msgid "-- Only administrators can access this page! --" +msgstr "" + +#: ../class/m_admin.php:322 +msgid "" +"Invalid pattern type provided. Are you even performing a legitimate action?" +msgstr "" + +#: ../class/m_admin.php:372 +msgid "Subject, message and sender are mandatory" +msgstr "" + +#: ../class/m_admin.php:377 +msgid "Sender is syntaxically incorrect" +msgstr "" + +#: ../class/m_admin.php:448 +msgid "-- Only administrators can do that! --" +msgstr "" + +#: ../class/m_admin.php:454 +#, fuzzy +msgid "You don't seem to be allowed to delegate this domain" +msgstr "Confirma o apagamento deste domínio %s" + +#: ../class/m_admin.php:495 +msgid "Missing db_server field" +msgstr "" + +#: ../class/m_admin.php:499 ../class/m_admin.php:504 +msgid "All fields are mandatory" +msgstr "" + +#: ../class/m_admin.php:508 +#, fuzzy +msgid "Please enter a valid email address" +msgstr "Criar uma caixa de email" + +#: ../class/m_admin.php:514 +msgid "Login can only contains characters a-z and 0-9" +msgstr "" + +#: ../class/m_admin.php:521 +msgid "The login is too long (14 chars max)" +msgstr "" + +#: ../class/m_admin.php:526 +msgid "Login can only contains characters a-z, 0-9 and -" +msgstr "" + +#: ../class/m_admin.php:572 +msgid "This login already exists" +msgstr "" + +#: ../class/m_admin.php:589 +#, php-format +msgid "query failed: %s " +msgstr "" + +#: ../class/m_admin.php:616 +#, php-format +msgid "New account %s from %s on %s" +msgstr "" + +#: ../class/m_admin.php:621 +#, php-format +msgid "Cannot send email to %s" +msgstr "" + +#: ../class/m_admin.php:625 +#, php-format +msgid "Query failed: %s" +msgstr "" + +#: ../class/m_admin.php:898 +#, fuzzy +msgid "This account is ALREADY an administrator account" +msgstr "Esta conta é uma conta super-administrador" + +#: ../class/m_admin.php:920 +#, fuzzy +msgid "This account is NOT an administrator account!" +msgstr "Esta conta é uma conta super-administrador" + +#: ../class/m_admin.php:1061 +#, fuzzy, php-format +msgid "Domain '%s' not found." +msgstr "Domínio %s suprimido" + +#: ../class/m_admin.php:1080 ../class/m_admin.php:1112 +#: ../class/m_admin.php:1162 +#, fuzzy +msgid "This TLD does not exist" +msgstr "Membro '%s' não existe" + +#: ../class/m_admin.php:1133 +msgid "The TLD name is mandatory" +msgstr "" + +#: ../class/m_admin.php:1140 +msgid "This TLD already exist" +msgstr "" + +#: ../class/m_admin.php:1275 +#, fuzzy +msgid "Please enter a login" +msgstr "Please enter a password" + +#: ../class/m_admin.php:1285 +msgid "-- Program error -- The requested password policy does not exist!" +msgstr "" + +#: ../class/m_admin.php:1293 +msgid "The password length is too short according to the password policy" +msgstr "" + +#: ../class/m_admin.php:1298 +msgid "The password is too long according to the password policy" +msgstr "" + +#: ../class/m_admin.php:1308 +msgid "" +"The password policy prevents you to use your login name inside your password" +msgstr "" + +#: ../class/m_admin.php:1332 +msgid "" +"Your password contains not enough different classes of character, between " +"low-case, up-case, figures and special characters." +msgstr "" + +#: ../class/m_authip.php:338 +msgid "Object not available" +msgstr "" + +#: ../class/m_authip.php:347 +#, php-format +msgid "Can't identified class for the protocole %s" +msgstr "" + +#: ../class/m_bro.php:68 +msgid "1 column, detailed" +msgstr "1 coluna, detalhado" + +#: ../class/m_bro.php:68 +msgid "2 columns, short" +msgstr "2 colunas, condensado" + +#: ../class/m_bro.php:68 +msgid "3 columns, short" +msgstr "3 colunas, condensado" + +#: ../class/m_bro.php:69 +msgid "tar.Z (Unix)" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "tar.bz2 (Linux)" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "tgz (Linux)" +msgstr "" + +#: ../class/m_bro.php:69 +msgid "zip (Windows/Dos)" +msgstr "" + +#: ../class/m_bro.php:71 +msgid "Edit the newly created file" +msgstr "Editar o arquivo recentemente criada" + +#: ../class/m_bro.php:71 +msgid "Go back to the file manager" +msgstr "Volta ao navegador de arquivos" + +#: ../class/m_bro.php:186 +#, fuzzy +msgid "This directory do not exist" +msgstr "Membro '%s' não existe" + +#: ../class/m_bro.php:365 ../class/m_bro.php:1040 +msgid "Cannot create the requested directory. Please check the permissions" +msgstr "" + +#: ../class/m_bro.php:371 ../class/m_bro.php:388 ../class/m_bro.php:413 +#: ../class/m_bro.php:437 ../class/m_bro.php:469 ../class/m_bro.php:479 +#: ../class/m_bro.php:509 ../class/m_bro.php:546 ../class/m_bro.php:587 +#: ../class/m_bro.php:625 ../class/m_bro.php:630 ../class/m_bro.php:721 +#: ../class/m_bro.php:868 ../class/m_bro.php:900 +msgid "File or folder name is incorrect" +msgstr "" + +#: ../class/m_bro.php:393 ../class/m_bro.php:558 +msgid "Cannot create the requested file. Please check the permissions" +msgstr "" + +#: ../class/m_bro.php:483 ../class/m_bro.php:634 +msgid "You cannot move or copy a file to the same folder" +msgstr "" + +#: ../class/m_bro.php:610 +#, php-format +msgid "" +"I cannot find a way to extract the file %s, it is an unsupported compressed " +"format" +msgstr "" + +#: ../class/m_bro.php:717 +msgid "Cannot read the requested file. Please check the permissions" +msgstr "" + +#: ../class/m_bro.php:792 +#, fuzzy +msgid "File not in authorized directory" +msgstr "No authorized user in %s" + +#: ../class/m_bro.php:895 +msgid "Cannot edit the requested file. Please check the permissions" +msgstr "" + +#: ../class/m_cron.php:40 +msgid "Daily" +msgstr "" + +#: ../class/m_cron.php:41 +msgid "Hour" +msgstr "" + +#: ../class/m_cron.php:42 +msgid "Half Hour" +msgstr "" + +#: ../class/m_cron.php:125 +msgid "URL not valid" +msgstr "" + +#: ../class/m_cron.php:133 +#, fuzzy +msgid "Email address is not valid" +msgstr "Lista de caixas de email do domínio %s" + +#: ../class/m_cron.php:142 +msgid "You quota of cron entries is over. You cannot create more cron entries" +msgstr "" + +#: ../class/m_cron.php:151 +msgid "Identity problem" +msgstr "" + +#: ../class/m_dom.php:178 +msgid "Err: failed to prepare the zone" +msgstr "" + +#: ../class/m_dom.php:200 +#, fuzzy +msgid "Missing domain name" +msgstr "Editando o domínio %s" + +#: ../class/m_dom.php:495 +msgid "The name MUST contain only letter and digits" +msgstr "" + +#: ../class/m_dom.php:515 ../class/m_dom.php:1291 +msgid "" +"The parameters for this subdomain and domain type are invalid. Please check " +"for subdomain entries incompatibility" +msgstr "" + +#: ../class/m_dom.php:629 ../class/m_dom.php:1054 ../class/m_dom.php:1119 +#: ../class/m_dom.php:1262 ../class/m_dom.php:1351 ../class/m_dom.php:1395 +#: ../class/m_dom.php:1710 +msgid "--- Program error --- No lock on the domains!" +msgstr "" + +#: ../class/m_dom.php:636 ../class/m_dom.php:1059 ../class/m_dom.php:1286 +#: ../class/m_dom.php:1420 +msgid "The domain name is syntaxically incorrect" +msgstr "" + +#: ../class/m_dom.php:642 ../class/m_dom.php:683 ../class/m_dom.php:1498 +msgid "" +"The requested domain is forbidden in this server, please contact the " +"administrator" +msgstr "" + +#: ../class/m_dom.php:646 +msgid "This domain is the server's domain! You cannot host it on your account!" +msgstr "" + +#: ../class/m_dom.php:651 ../class/m_dom.php:656 +#, fuzzy +msgid "The domain already exist" +msgstr "Edição de arquivo" + +#: ../class/m_dom.php:663 ../class/m_dom.php:1402 +msgid "" +"The last member of the domain name is incorrect or cannot be hosted in that " +"server" +msgstr "" + +#: ../class/m_dom.php:667 ../class/m_dom.php:671 +msgid "The domain cannot be found in the whois database" +msgstr "" + +#: ../class/m_dom.php:690 +msgid "Your domain quota is over, you cannot create more domain names" +msgstr "" + +#: ../class/m_dom.php:697 +msgid "An unexpected error occured when creating the domain" +msgstr "" + +#: ../class/m_dom.php:706 ../class/m_dom.php:1065 +#, fuzzy, php-format +msgid "Domain '%s' not found" +msgstr "Domínio %s suprimido" + +#: ../class/m_dom.php:820 +#, fuzzy +msgid "Could not delete default type" +msgstr "Algums TLD não pode ser suprimidos..." + +#: ../class/m_dom.php:972 +msgid "The Whois database is unavailable, please try again later" +msgstr "" + +#: ../class/m_dom.php:979 ../class/m_dom.php:1406 +msgid "The domain cannot be found in the Whois database" +msgstr "" + +#: ../class/m_dom.php:1124 ../class/m_dom.php:1355 +#, fuzzy +msgid "The sub-domain does not exist" +msgstr "A caixa de email %s não existe!" + +#: ../class/m_dom.php:1155 +msgid "invalid url" +msgstr "" + +#: ../class/m_dom.php:1165 +#, fuzzy +msgid "The folder you entered is incorrect or does not exist" +msgstr "Membro '%s' não existe" + +#: ../class/m_dom.php:1174 ../class/m_dom.php:1182 +#, fuzzy +msgid "The ip address is invalid" +msgstr "Lista de caixas de email do domínio %s" + +#: ../class/m_dom.php:1190 +#, fuzzy +msgid "The name you entered is incorrect" +msgstr "Membro '%s' não existe" + +#: ../class/m_dom.php:1198 +#, fuzzy +msgid "The TXT value you entered is incorrect" +msgstr "Membro '%s' não existe" + +#: ../class/m_dom.php:1203 +msgid "Invalid domain type selected, please check" +msgstr "" + +#: ../class/m_dom.php:1274 +msgid "" +"There is some forbidden characters in the sub domain (only A-Z 0-9 and - are " +"allowed)" +msgstr "" + +#: ../class/m_dom.php:1313 ../class/m_dom.php:1324 +msgid "Cannot write to the destination folder" +msgstr "" + +#: ../class/m_dom.php:1410 +msgid "" +"The DNS of this domain do not match the server's DNS. Please change your " +"domain's DNS before you install it again" +msgstr "" + +#: ../class/m_dom.php:1425 +#, fuzzy, php-format +msgid "The domain name %s does not exist" +msgstr "A caixa de email %s não existe!" + +#: ../class/m_dom.php:1431 +#, fuzzy +msgid "No change has been requested..." +msgstr "Suas preferências foram atualizadas." + +#: ../class/m_dom.php:1439 ../class/m_dom.php:1444 +msgid "" +"There is no MX record pointing to this server, and you are asking us to host " +"the mail here. Make sure to update your MX entries or no mail will be " +"received" +msgstr "" + +#: ../class/m_dom.php:1491 ../class/m_dom.php:1515 +msgid "The IP address you entered is incorrect" +msgstr "" + +#: ../class/m_dom.php:1588 ../class/m_dom.php:1594 ../class/m_dom.php:1612 +#: ../class/m_dom.php:1618 +#, fuzzy +msgid "This domain is not installed in your account" +msgstr "Esta conta é uma conta super-administrador" + +#: ../class/m_dom.php:1660 +msgid "The specified slave account already exists" +msgstr "" + +#: ../class/m_dom.php:1691 +msgid "--- Program error --- Lock already obtained!" +msgstr "" + +#: ../class/m_dom.php:1831 +#, fuzzy +msgid "Locally hosted" +msgstr "Controlado localemente" + +#: ../class/m_dom.php:1832 +#, fuzzy +msgid "URL redirection" +msgstr "Redireção URL" + +#: ../class/m_dom.php:1833 +msgid "IPv4 redirect" +msgstr "" + +#: ../class/m_dom.php:1834 +msgid "Webmail access" +msgstr "Acesso Webmail" + +#: ../class/m_dom.php:1835 +#, fuzzy +msgid "Squirrelmail Webmail access" +msgstr "Acesso Webmail" + +#: ../class/m_dom.php:1836 +#, fuzzy +msgid "Roundcube Webmail access" +msgstr "Acesso Webmail" + +#: ../class/m_dom.php:1837 +msgid "IPv6 redirect" +msgstr "" + +#: ../class/m_dom.php:1838 +msgid "CNAME DNS entry" +msgstr "" + +#: ../class/m_dom.php:1839 +msgid "TXT DNS entry" +msgstr "" + +#: ../class/m_dom.php:1840 +msgid "MX DNS entry" +msgstr "" + +#: ../class/m_dom.php:1841 +msgid "secondary MX DNS entry" +msgstr "" + +#: ../class/m_dom.php:1842 +msgid "Default mail server" +msgstr "" + +#: ../class/m_dom.php:1843 +msgid "Default backup mail server" +msgstr "" + +#: ../class/m_dom.php:1844 +#, fuzzy +msgid "AlternC panel access" +msgstr "Lista de contas FTP" + +#: ../class/m_err.php:66 ../class/m_err.php:98 +#, fuzzy +msgid "err_" +msgstr "A informação entrada é incorreta" + +#: ../class/m_ftp.php:56 ../class/m_ftp.php:447 +msgid "FTP accounts" +msgstr "Contas FTP" + +#: ../class/m_ftp.php:105 +#, fuzzy +msgid "This account do not exist or is not of this account" +msgstr "Esta conta é uma conta super-administrador" + +#: ../class/m_ftp.php:117 +msgid "Error during update" +msgstr "" + +#: ../class/m_ftp.php:151 +#, fuzzy +msgid "No FTP account found" +msgstr "Nenhuma conta selecionada" + +#: ../class/m_ftp.php:187 ../class/m_ftp.php:262 ../class/m_ftp.php:322 +#, fuzzy +msgid "This FTP account does not exist" +msgstr "Membro '%s' não existe" + +#: ../class/m_ftp.php:217 +#, php-format +msgid "FTP login is incorrect: too many '%s'" +msgstr "" + +#: ../class/m_ftp.php:224 +#, fuzzy +msgid "FTP login is incorrect" +msgstr "Membro '%s' não existe" + +#: ../class/m_ftp.php:271 ../class/m_ftp.php:351 +msgid "The chosen prefix is not allowed" +msgstr "" + +#: ../class/m_ftp.php:282 ../class/m_ftp.php:360 +#, fuzzy +msgid "This FTP account already exists" +msgstr "A caixa de email %s não existe!" + +#: ../class/m_ftp.php:290 ../class/m_ftp.php:372 +#, fuzzy +msgid "The directory cannot be created" +msgstr "Algums TLD não pode ser suprimidos..." + +#: ../class/m_ftp.php:347 +#, fuzzy +msgid "Password can't be empty" +msgstr "Senha" + +#: ../class/m_ftp.php:388 +msgid "Your FTP account quota is over. You cannot create more ftp accounts" +msgstr "" + +#: ../class/m_hta.php:60 +msgid "Protected folders" +msgstr "Protected folders" + +#: ../class/m_hta.php:81 ../class/m_hta.php:291 ../class/m_hta.php:332 +#, fuzzy, php-format +msgid "The folder '%s' does not exist" +msgstr "Membro '%s' não existe" + +#: ../class/m_hta.php:89 ../class/m_hta.php:94 ../class/m_hta.php:104 +#: ../class/m_hta.php:253 ../class/m_hta.php:298 ../class/m_hta.php:347 +#, fuzzy +msgid "File already exist" +msgstr "Edição de arquivo" + +#: ../class/m_hta.php:98 +msgid "Restricted area" +msgstr "" + +#: ../class/m_hta.php:126 +#, fuzzy +msgid "No protected folder" +msgstr "Protected folders" + +#: ../class/m_hta.php:208 +#, php-format +msgid "I cannot delete the file '%s/.htaccess'" +msgstr "" + +#: ../class/m_hta.php:212 +#, php-format +msgid "I cannot delete the file '%s/.htpasswd'" +msgstr "" + +#: ../class/m_hta.php:231 +#, fuzzy +msgid "Please enter a user" +msgstr "Please enter a password" + +#: ../class/m_hta.php:261 +#, fuzzy, php-format +msgid "The user '%s' already exist for this folder" +msgstr "Nenhum arquivo nesta pasta" + +#: ../class/m_hta.php:273 +#, fuzzy +msgid "Please enter a valid username" +msgstr "Please enter a password" + +#: ../class/m_hta.php:402 +#, fuzzy +msgid "An incompatible .htaccess file exists in this folder" +msgstr "Nenhum arquivo nesta pasta" + +#: ../class/m_log.php:60 +msgid "Logs" +msgstr "" + +#: ../class/m_lxc.php:133 +#, fuzzy +msgid "VM already started" +msgstr "Edição de arquivo" + +#: ../class/m_mail.php:95 +#, fuzzy +msgid "Email Addresses" +msgstr "Endereço email" + +#: ../class/m_mail.php:158 ../class/m_mail.php:243 ../class/m_mail.php:328 +#: ../class/m_mail.php:455 ../class/m_mail.php:509 +msgid "The email you entered is syntaxically incorrect" +msgstr "" + +#: ../class/m_mail.php:191 +#, fuzzy +msgid "Email account password" +msgstr "Senha inicial" + +#: ../class/m_mail.php:281 +#, fuzzy +msgid "No email found for this query" +msgstr "Adiçionar um email ao domínio %s" + +#: ../class/m_mail.php:340 +#, fuzzy +msgid "You cannot create email addresses: your quota is over" +msgstr "Você não pode adiçionr mais domínios, sua quota acabou." + +#: ../class/m_mail.php:346 +#, fuzzy +msgid "This email address already exists" +msgstr "A caixa de email %s não existe!" + +#: ../class/m_mail.php:352 +msgid "An unexpected error occured when creating the email" +msgstr "" + +#: ../class/m_mail.php:406 +msgid "This email is not yours, you can't change anything on it" +msgstr "" + +#: ../class/m_mail.php:469 ../class/m_mail.php:875 +#, fuzzy, php-format +msgid "The email %s does not exist, it can't be deleted" +msgstr "A caixa de email %s não existe!" + +#: ../class/m_mail.php:473 +#, php-format +msgid "The email %s is already marked for deletion, it can't be deleted" +msgstr "" + +#: ../class/m_mail.php:482 +#, fuzzy, php-format +msgid "The email %s has been marked for deletion" +msgstr "O domínio %s foi suprimido com sucesso." + +#: ../class/m_mail.php:488 +#, fuzzy, php-format +msgid "The email %s has been successfully deleted" +msgstr "O domínio %s foi suprimido com sucesso." + +#: ../class/m_mail.php:520 +#, php-format +msgid "The email %s does not exist, it can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:524 +#, php-format +msgid "The email %s is special, it can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:528 +#, php-format +msgid "" +"Sorry, deletion of email %s is already in progress, or not marked for " +"deletion, it can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:537 +#, fuzzy, php-format +msgid "The email %s has been undeleted" +msgstr "A caixa de email %s foi criado com sucesso" + +#: ../class/m_mail.php:540 +#, php-format +msgid "-- Program Error -- The email %s can't be undeleted" +msgstr "" + +#: ../class/m_mail.php:621 +msgid "" +"There is forbidden characters in your email address. You can't make it a POP/" +"IMAP account, you can only use it as redirection to other emails" +msgstr "" + +#: ../class/m_mail.php:641 +msgid "" +"You set a quota smaller than the current mailbox size. Since it's not " +"allowed, we set the quota to the current mailbox size" +msgstr "" + +#: ../class/m_mail.php:826 +#, fuzzy +msgid "The slave MX account was not found" +msgstr "Conta Permitiu ?" + +#: ../class/m_mem.php:95 ../class/m_mem.php:101 ../class/m_mem.php:168 +#: ../class/m_mem.php:299 +msgid "User or password incorrect" +msgstr "" + +#: ../class/m_mem.php:105 ../class/m_mem.php:483 +#, fuzzy +msgid "This account is locked, contact the administrator" +msgstr "Esta conta é uma conta super-administrador" + +#: ../class/m_mem.php:112 ../class/m_mem.php:271 +msgid "" +"This website is currently under maintenance, login is currently disabled." +msgstr "" + +#: ../class/m_mem.php:127 +msgid "Your IP isn't allowed to connect" +msgstr "" + +#: ../class/m_mem.php:243 +#, fuzzy +msgid "Missing password" +msgstr "Senha inicial" + +#: ../class/m_mem.php:252 +msgid "Identity lost or unknown, please login" +msgstr "" + +#: ../class/m_mem.php:258 ../class/m_mem.php:347 +msgid "Session unknown, contact the administrator" +msgstr "" + +#: ../class/m_mem.php:264 ../class/m_mem.php:352 +msgid "IP address incorrect, please contact the administrator" +msgstr "" + +#: ../class/m_mem.php:341 +#, fuzzy +msgid "Cookie incorrect, please accept the session cookie" +msgstr "Você precisa aceitar o cookie da sessão para o login" + +#: ../class/m_mem.php:388 +#, fuzzy +msgid "You are not allowed to change your password." +msgstr "Você não pode mudar sua senha" + +#: ../class/m_mem.php:392 +msgid "The old password is incorrect" +msgstr "" + +#: ../class/m_mem.php:396 ../class/m_mem.php:445 +msgid "The new passwords are differents, please retry" +msgstr "" + +#: ../class/m_mem.php:420 +msgid "You must be a system administrator to do this." +msgstr "" + +#: ../class/m_mem.php:440 +#, fuzzy +msgid "This account is locked, contact the administrator." +msgstr "Esta conta é uma conta super-administrador" + +#: ../class/m_mem.php:448 +#, php-format +msgid "" +"Hello,\n" +"\n" +"You requested the modification of your password for your\n" +"account %s on %s\n" +"Here are your username and password to access the panel :\n" +"\n" +"--------------------------------------\n" +"\n" +"Username : %s\n" +"Password : %s\n" +"\n" +"--------------------------------------\n" +"\n" +"Note : if you didn't requested that modification, it means that\n" +"someone did it instead of you. You can choose to ignore this message.\n" +"If it happens again, please contact your server's Administrator. \n" +"\n" +"Cordially.\n" +msgstr "" + +#: ../class/m_mem.php:493 +#, php-format +msgid "" +"Hello,\n" +"\n" +"Someone (maybe you) requested an email's address modification of the " +"account\n" +"%s on %s\n" +"To confirm your request, go to this url :\n" +"\n" +"%s\n" +"\n" +"(Warning : if this address is displayed on 2 lines, don't forgot to\n" +"take it on one line).\n" +"The panel will ask you the key given when the email address\n" +"modification was requested.\n" +"\n" +"If you didn't asked for this modification, it means that someone\n" +"did it instead of you. You can choose to ignore this message. If it happens\n" +"again, please contact your server's administrator.\n" +"\n" +"Cordially.\n" +msgstr "" + +#: ../class/m_mem.php:534 +msgid "The information you entered is incorrect." +msgstr "" + +#: ../class/m_menu.php:113 +msgid "Home / Information" +msgstr "" + +#: ../class/m_menu.php:120 +msgid "Logout" +msgstr "" + +#: ../class/m_menu.php:127 +msgid "Online help" +msgstr "Ajuda online" + +#: ../class/m_menu.php:135 +msgid "Languages" +msgstr "" + +#: ../class/m_mysql.php:49 +msgid "" +"There are no databases in db_servers for this user. Please contact your " +"administrator." +msgstr "" + +#: ../class/m_mysql.php:110 +#, fuzzy +msgid "MySQL" +msgstr "Bases de dados MySQL" + +#: ../class/m_mysql.php:119 +#, fuzzy +msgid "Databases" +msgstr "Bases de dados" + +#: ../class/m_mysql.php:178 +msgid "Cannot connect to PhpMyAdmin" +msgstr "" + +#: ../class/m_mysql.php:219 ../class/m_mysql.php:385 +#, fuzzy, php-format +msgid "Database %s not found" +msgstr "Domínio %s suprimido" + +#: ../class/m_mysql.php:246 +msgid "Your databases quota is over. You cannot create more databases" +msgstr "" + +#: ../class/m_mysql.php:257 +msgid "Database can't have empty suffix" +msgstr "" + +#: ../class/m_mysql.php:262 ../class/m_mysql.php:380 ../class/m_mysql.php:462 +msgid "Database name can contain only letters and numbers" +msgstr "" + +#: ../class/m_mysql.php:268 +msgid "Database name cannot exceed 64 characters" +msgstr "" + +#: ../class/m_mysql.php:273 +#, fuzzy, php-format +msgid "Database %s already exists" +msgstr "Edição de arquivo" + +#: ../class/m_mysql.php:291 +msgid "" +"There is a problem with the special PhpMyAdmin user. Contact the " +"administrator" +msgstr "" + +#: ../class/m_mysql.php:310 +#, fuzzy +msgid "An error occured. The database could not be created" +msgstr "Algums TLD não pode ser suprimidos..." + +#: ../class/m_mysql.php:328 +#, fuzzy +msgid "The database was not found. I can't delete it" +msgstr "A base de dados %s foi suprimido com sucesso" + +#: ../class/m_mysql.php:367 +#, fuzzy +msgid "User aren't allowed to configure their backups" +msgstr "Você não pode mudar sua senha" + +#: ../class/m_mysql.php:398 +msgid "You have to choose how many backups you want to keep" +msgstr "" + +#: ../class/m_mysql.php:402 +#, fuzzy +msgid "Directory does not exist" +msgstr "Membro '%s' não existe" + +#: ../class/m_mysql.php:420 ../class/m_mysql.php:465 +#, fuzzy +msgid "Database not found" +msgstr "Domínio %s suprimido" + +#: ../class/m_mysql.php:427 ../class/m_mysql.php:711 +#, fuzzy +msgid "The password is mandatory" +msgstr "Senha" + +#: ../class/m_mysql.php:432 +msgid "MySQL password cannot exceed 16 characters" +msgstr "" + +#: ../class/m_mysql.php:472 +msgid "Databases rights are not correct" +msgstr "" + +#: ../class/m_mysql.php:477 +msgid "The username can contain only letters and numbers." +msgstr "" + +#: ../class/m_mysql.php:483 +#, fuzzy +msgid "Database user not found" +msgstr "Domínio %s suprimido" + +#: ../class/m_mysql.php:495 +msgid "Could not grant rights" +msgstr "" + +#: ../class/m_mysql.php:513 +#, fuzzy +msgid "No file specified" +msgstr "No folder selected!" + +#: ../class/m_mysql.php:520 ../class/m_mysql.php:524 +#, fuzzy +msgid "File not found" +msgstr "Domínio %s suprimido" + +#: ../class/m_mysql.php:707 +#, fuzzy +msgid "The username is mandatory" +msgstr "O usuário não tem nenhuma base de dados" + +#: ../class/m_mysql.php:715 ../class/m_mysql.php:792 +msgid "The username can contain only letters and numbers" +msgstr "" + +#: ../class/m_mysql.php:722 +msgid "MySQL username cannot exceed 16 characters" +msgstr "" + +#: ../class/m_mysql.php:727 +#, fuzzy +msgid "The database user already exists" +msgstr "Edição de arquivo" + +#: ../class/m_mysql.php:731 ../class/m_mysql.php:765 +#, fuzzy +msgid "The passwords do not match" +msgstr "Senha" + +#: ../class/m_mysql.php:802 +#, fuzzy +msgid "The username was not found" +msgstr "O usuário não tem nenhuma base de dados" + +#: ../class/m_mysql.php:831 +#, fuzzy +msgid "This user does not exist in the MySQL/User database" +msgstr "O usuário tem uma base de dados MySQL" + +#: ../class/m_mysql.php:1105 +#, fuzzy +msgid "The directory could not be created" +msgstr "Algums TLD não pode ser suprimidos..." + +#: ../class/m_piwik.php:40 +#, fuzzy +msgid "Piwik statistics" +msgstr "Número de statisticas Web" + +#: ../class/m_piwik.php:45 +#, fuzzy +msgid "Piwik Users" +msgstr "Usado(s)" + +#: ../class/m_piwik.php:46 +msgid "Piwik Sites" +msgstr "" + +#: ../class/m_piwik.php:81 +msgid "Statistics through Piwik accounts" +msgstr "" + +#: ../class/m_piwik.php:193 ../class/m_piwik.php:316 +msgid "You are not allowed to delete the statistics of this website" +msgstr "" + +#: ../class/m_piwik.php:366 +msgid "Unable to reach the API" +msgstr "" + +#: ../class/m_piwik.php:372 +msgid "Error while decoding response from the API" +msgstr "" + +#: ../class/m_piwik.php:378 +msgid "Other format than JSON is not implemented yet" +msgstr "" + +#: ../class/m_quota.php:65 +msgid "Show my quotas" +msgstr "" + +#: ../class/m_quota.php:78 +#, php-format +msgid "%s%% of %s" +msgstr "" + +#: ../class/m_quota.php:78 ../class/m_quota.php:105 ../class/m_quota.php:196 +#, fuzzy +msgid "quota_" +msgstr "Espaço de Disco" + +#: ../class/m_quota.php:236 +#, fuzzy +msgid "Error writing the quota entry!" +msgstr "Editando os quotas do membro" + +#: ../class/m_quota.php:537 +msgid "B" +msgstr "" + +#: ../class/m_quota.php:537 +msgid "GB" +msgstr "" + +#: ../class/m_quota.php:537 +msgid "KB" +msgstr "" + +#: ../class/mime.php:135 +msgid "CSS Stylesheet" +msgstr "" + +#: ../class/mime.php:136 +msgid "Comma Separated Values data" +msgstr "" + +#: ../class/mime.php:137 +msgid "DIA Diagram" +msgstr "" + +#: ../class/mime.php:138 +msgid "Word Document" +msgstr "" + +#: ../class/mime.php:139 +msgid "Word Document Template" +msgstr "" + +#: ../class/mime.php:140 +msgid "Encapsulated Postscript" +msgstr "" + +#: ../class/mime.php:141 +msgid "GIF Image" +msgstr "" + +#: ../class/mime.php:142 +msgid "Macintosh Executable" +msgstr "" + +#: ../class/mime.php:143 ../class/mime.php:144 +msgid "HTML Document" +msgstr "" + +#: ../class/mime.php:145 ../class/mime.php:146 +msgid "JPEG Image" +msgstr "" + +#: ../class/mime.php:147 +msgid "Music Playlist" +msgstr "" + +#: ../class/mime.php:148 +msgid "MP3 Music File" +msgstr "" + +#: ../class/mime.php:149 +msgid "Ogg Music File" +msgstr "" + +#: ../class/mime.php:150 +msgid "Acrobat PDF" +msgstr "" + +#: ../class/mime.php:151 +msgid "PHP Source" +msgstr "" + +#: ../class/mime.php:152 +msgid "PNG Image" +msgstr "" + +#: ../class/mime.php:153 ../class/mime.php:154 +msgid "Powerpoint Slideshow" +msgstr "" + +#: ../class/mime.php:155 +msgid "Postscript Document" +msgstr "" + +#: ../class/mime.php:156 +msgid "Photoshop Image" +msgstr "" + +#: ../class/mime.php:157 +msgid "Rar Compressed Files" +msgstr "" + +#: ../class/mime.php:158 +msgid "Rich Text Document" +msgstr "" + +#: ../class/mime.php:159 +msgid "OpenOffice Spreadsheet" +msgstr "" + +#: ../class/mime.php:160 +msgid "OpenOffice Drawing" +msgstr "" + +#: ../class/mime.php:161 +msgid "OpenOffice Presentation" +msgstr "" + +#: ../class/mime.php:162 +msgid "OpenOffice Writer" +msgstr "" + +#: ../class/mime.php:163 ../class/mime.php:164 +msgid "TIFF Image" +msgstr "" + +#: ../class/mime.php:165 +msgid "Text Document" +msgstr "" + +#: ../class/mime.php:166 ../class/mime.php:167 +msgid "Virtual Card" +msgstr "" + +#: ../class/mime.php:168 +msgid "Gimp Image" +msgstr "" + +#: ../class/mime.php:169 +msgid "Excel Spreadsheet" +msgstr "" + +#: ../class/mime.php:170 +msgid "Zip Compressed Files" +msgstr "" + +#: ../class/mime.php:171 +msgid "Flash Animation" +msgstr "" + +#: ../class/mime.php:172 ../class/mime.php:173 ../class/mime.php:174 +msgid "Real Media File" +msgstr "" + +#, fuzzy +#~ msgid "Click here to do so." +#~ msgstr "Clicar aqui para continuar" + +#, fuzzy +#~ msgid "Mailing lists" +#~ msgstr "Número de envi-listas" + +#, fuzzy +#~ msgid "Web Statistics" +#~ msgstr "Número de statisticas Web" + +#~ msgid "help_domain_del %s" +#~ msgstr "" +#~ "Se você quiser suprimir o domínio %s, clica a tecla abaixo.Aviso : isto " +#~ "suprimirá todo o ftp, correios, envi-listas ... associadas com " +#~ "estedomínio e os sécondarios domínios dele" + +#, fuzzy +#~ msgid "Add %s mail to the domain %s" +#~ msgstr "Adiçionar um email ao domínio %s" + +#, fuzzy +#~ msgid "AlternC" +#~ msgstr "Lista de contas FTP" + +#, fuzzy +#~ msgid "Mailboxes size:" +#~ msgstr "Caixas e email" + +#, fuzzy +#~ msgid "You want it to be deleted in" +#~ msgstr "Algums TLD não pode ser suprimidos..." + +#, fuzzy +#~ msgid "General PhpMyAdmin" +#~ msgstr "Admin do SQL Geral" + +#~ msgid "Editing an FTP account" +#~ msgstr "Editar uma conta FTP" + +#, fuzzy +#~ msgid "IP address" +#~ msgstr "Endereço email" + +#, fuzzy +#~ msgid "You cannot add any new ftp account, your quota is over." +#~ msgstr "Você não pode adiçionr mais domínios, sua quota acabou." + +#~ msgid "The FTP account has been successfully created" +#~ msgstr "A conta FTP foi criado com sucesso" + +#~ msgid "No account selected!" +#~ msgstr "Nenhuma conta selecionada" + +#~ msgid "Change this FTP account" +#~ msgstr "Mudar esta conta FTP" + +#, fuzzy +#~ msgid "The database user was not found" +#~ msgstr "A base de dados %s foi suprimido com sucesso" + +#, fuzzy +#~ msgid "Edition of %s" +#~ msgstr "Adiçionar a caixa de email em %s" + +#, fuzzy +#~ msgid "You have to set a new password." +#~ msgstr "Você não pode mudar sua senha" + +#, fuzzy +#~ msgid "You have to input a password." +#~ msgstr "Você não pode mudar sua senha" + +#, fuzzy +#~ msgid "Create this alias" +#~ msgstr "Criar" + +#, fuzzy +#~ msgid "Set a passowrd:" +#~ msgstr "New password" + +#, fuzzy +#~ msgid "Change your password:" +#~ msgstr "Mudança da senha SQL" + +#, fuzzy +#~ msgid "Password does not match" +#~ msgstr "Membro '%s' não existe" + +#, fuzzy +#~ msgid "Password match" +#~ msgstr "Senha" + +#, fuzzy +#~ msgid "Clear all redirections" +#~ msgstr "Redireção IP" + +#, fuzzy +#~ msgid "This allow you to change your mail password." +#~ msgstr "Você não pode mudar sua senha" + +#, fuzzy +#~ msgid "Webmail Access" +#~ msgstr "Acesso Webmail" + +#, fuzzy +#~ msgid "Email Address" +#~ msgstr "Endereço email" + +#, fuzzy +#~ msgid "Active" +#~ msgstr "Ação" + +#, fuzzy +#~ msgid "Raw web statistics" +#~ msgstr "Número de statisticas Web" + +#, fuzzy +#~ msgid "err_mysql_1" +#~ msgstr "Sua quota está completo, você não pode criar mais bases de dados." + +#~ msgid "Your database has been successfully created" +#~ msgstr "Sua base de dados foi criado com sucesso" + +#, fuzzy +#~ msgid "Your current settings are" +#~ msgstr "Aqui seus parâmetros atuaís" + +#, fuzzy +#~ msgid "MySQL Server" +#~ msgstr "Servidor SQL" + +#, fuzzy +#~ msgid "" +#~ "Enter the new password of your MySQL database and click 'change the " +#~ "password' to change it" +#~ msgstr "" +#~ "Entrar sua nova senha de base de dados SQL e clica sobre 'Mudança de " +#~ "senha' para a mudar" + +#, fuzzy +#~ msgid "err_mysql_13" +#~ msgstr "Sua quota está completo, você não pode criar mais bases de dados." + +#, fuzzy +#~ msgid "You cannot add any new statistics, your quota is over." +#~ msgstr "Você não pode adiçionr mais domínios, sua quota acabou." + +#, fuzzy +#~ msgid "Domain name:" +#~ msgstr "Nome do Domínio" + +#, fuzzy +#~ msgid "Create those raw statistics" +#~ msgstr "Número de statisticas Web" + +#, fuzzy +#~ msgid "No Statistics selected!" +#~ msgstr "Nenhuma conta selecionada" + +#, fuzzy +#~ msgid "The Statistics has been successfully changed" +#~ msgstr "A caixa de email %s foi mudado com sucesso" + +#, fuzzy +#~ msgid "Change the Raw Statistics" +#~ msgstr "Mudar os quotas padrões" + +#, fuzzy +#~ msgid "Change those Raw Statistics." +#~ msgstr "Mudar os quotas padrões" + +#, fuzzy +#~ msgid "Raw Statistics List" +#~ msgstr "Número de statisticas Web" + +#, fuzzy +#~ msgid "Delete the checked Raw Statistics (apache)" +#~ msgstr "Suprimir as bases selecionadas" + +#, fuzzy +#~ msgid "The email %s is special, it can't be deleted" +#~ msgstr "A caixa de email %s foi criado com sucesso" + +#, fuzzy +#~ msgid "Local mailbox" +#~ msgstr "Caixas e email" + +#~ msgid "Add a mail to the domain %s" +#~ msgstr "Adiçionar um email ao domínio %s" + +#, fuzzy +#~ msgid "Redirections
Other recipients:" +#~ msgstr "Outros receptores" + +#, fuzzy +#~ msgid "Is it a temporary mail account?" +#~ msgstr "Mudar esta conta FTP" + +#, fuzzy +#~ msgid "The email address %s has been successfully created" +#~ msgstr "A caixa de email %s foi criado com sucesso" + +#, fuzzy +#~ msgid "The email address %s has been successfully changed" +#~ msgstr "A caixa de email %s foi mudado com sucesso" + +#, fuzzy +#~ msgid "Edit an email address of the domain %s" +#~ msgstr "Editar a caixa de email do domínio %s" + +#, fuzzy +#~ msgid "Edit the email address %s" +#~ msgstr "Editar a caixa e email %s" + +#, fuzzy +#~ msgid "help_mail_edit" +#~ msgstr "" +#~ "Se nós não controlamos o DNS deste domínio
controlamos seus " +#~ "correios?" + +#~ msgid "Add a mailbox on %s" +#~ msgstr "Adiçionar a caixa de email em %s" + +#, fuzzy +#~ msgid "Add many mailboxes on %s" +#~ msgstr "Adiçionar a caixa de email em %s" + +#, fuzzy +#~ msgid "This account will be deleted on" +#~ msgstr "Algums TLD não pode ser suprimidos..." + +#, fuzzy +#~ msgid "help_sql_list_ok" +#~ msgstr "" +#~ "Você coloca para fora uma ou algumas bases de dados
Clica sobre " +#~ "'Admin SQL'no menu para administrá-los
Ou usa a tabela abaixo para " +#~ "administrar os backups / restaurações,suprimir suas bases :" + +#, fuzzy +#~ msgid "Change the MySQL password" +#~ msgstr "Mudança de senha SQL" + +#, fuzzy +#~ msgid "Get the current MySQL parameters" +#~ msgstr "Mostrar os parâmetros SQL atuaís" + +#, fuzzy +#~ msgid "help_sql_list_no" +#~ msgstr "" +#~ "Você ainda não criou sua base de dados principal, por favor entra a senha " +#~ "para criá-la.\n" + +#~ msgid "Create my main database" +#~ msgstr "Criar minha base de dados principal" + +#, fuzzy +#~ msgid "help_sql_users_list_ok" +#~ msgstr "" +#~ "Você coloca para fora uma ou algumas bases de dados
Clica sobre " +#~ "'Admin SQL'no menu para administrá-los
Ou usa a tabela abaixo para " +#~ "administrar os backups / restaurações,suprimir suas bases :" + +#, fuzzy +#~ msgid "help_sql_users_rights_ok" +#~ msgstr "" +#~ "Você coloca para fora uma ou algumas bases de dados
Clica sobre " +#~ "'Admin SQL'no menu para administrá-los
Ou usa a tabela abaixo para " +#~ "administrar os backups / restaurações,suprimir suas bases :" + +#~ msgid "New member" +#~ msgstr "Membro novo" + +#~ msgid "Create a new member" +#~ msgstr "Criar um membro novo" + +#, fuzzy +#~ msgid "Member" +#~ msgstr "Lista dos membros" + +#~ msgid "Account Enabled ?" +#~ msgstr "Conta Permitiu ?" + +#, fuzzy +#~ msgid "Back to the account list" +#~ msgstr "Lista de contas FTP" + +#~ msgid "Member list" +#~ msgstr "Lista dos membros" + +#, fuzzy +#~ msgid "List all the accounts" +#~ msgstr "Editar esta conta" + +#~ msgid "Locked Account" +#~ msgstr "Conta Troncada" + +#~ msgid "AlternC Desktop" +#~ msgstr "Desktop AlternC" + +#, fuzzy +#~ msgid "mode" +#~ msgstr "Pasta" + +#~ msgid "all/none" +#~ msgstr "tudo/nada" + +#~ msgid "Import this file" +#~ msgstr "Importar este arquivo" + +#~ msgid "There is an ftp account in this folder" +#~ msgstr "Há uma conta ftp nesta pasta" + +#, fuzzy +#~ msgid "Click here to edit this ftp account." +#~ msgstr "clica aqui para editar esta conta ftp" + +#~ msgid "This folder has restricted access" +#~ msgstr "Esta pasta tem o acesso limitado" + +#~ msgid "Click here to protect this folder with login/password" +#~ msgstr "Clica aqui para proteger esta pasta com login/senha" + +#~ msgid "this folder and its subfolders as a compressed file" +#~ msgstr "esta pasta e as secondárias-pastas como um arquivo comprimido" + +#~ msgid "Configure the file browser" +#~ msgstr "Configurar o navegador de arquivo" + +#~ msgid "File editor preferences" +#~ msgstr "Preferências do editor de arquivos" + +#~ msgid "Back to the file browser" +#~ msgstr "Volta ao navegador de arquivos" + +#~ msgid "" +#~ "The domain %s has been changed. The modifications will take effect in 5 " +#~ "minutes." +#~ msgstr "" +#~ "O domínio %s foi modificado. As modificações estarão atualizadas em 5 " +#~ "minutos." + +#~ msgid "Subdomains" +#~ msgstr "Secundário-domínios" + +#~ msgid "DNS parameters" +#~ msgstr "Parâmetros DNS" + +#~ msgid "help_dns_mx %s %s" +#~ msgstr "" +#~ "Se nós controlamos seu DNS
Você pode controlar seu correios em " +#~ "outra parte se você quiser (campo MX).
Escreve %s neste campo se seus correios devem ser controlados por %s
ou " +#~ "coloca o endereço IP ou nome do servidor de email usado para controlar " +#~ "seus correios.Aviso: Se você não coloca nada neste campo, seus " +#~ "correios serão inacessívels" + +#~ msgid "MX Field" +#~ msgstr "Campo MX" + +#~ msgid "help_dns_mail" +#~ msgstr "" +#~ "Se nós não controlamos o DNS deste domínio
controlamos seus " +#~ "correios?" + +#~ msgid "The modifications will take effect in 5 minutes." +#~ msgstr "As modificações estaram actualizadas em 5 minutos." + +#~ msgid "The folder must exists." +#~ msgstr "The folder must exists." + +#~ msgid "Add a username" +#~ msgstr "Add a username" + +#~ msgid "Administration of" +#~ msgstr "Administração do" + +#, fuzzy +#~ msgid "Enter your username and password to connect to the virtual desktop" +#~ msgstr "" +#~ "Entrar seu nome do usúario e sua senha para conectar à interface desktop " +#~ "virtual" + +#, fuzzy +#~ msgid "You can use a different language: " +#~ msgstr "" +#~ "Se você quiser usar uma lingua diferente, clicar sobre a bandeira abaixo" + +#~ msgid "Is it a POP account?" +#~ msgstr "É uma conta POP?" + +#~ msgid "POP password" +#~ msgstr "Senha POP" + +#~ msgid "One email per line" +#~ msgstr "Um email por linha" + +#~ msgid "Create this mailbox" +#~ msgstr "Criar uma caixa de email" + +#~ msgid "Delete the selected mailboxes" +#~ msgstr "Suprimir as caixas de email selecionados" + +#~ msgid "The mailbox %s has been successfully created" +#~ msgstr "A caixa de email %s foi criado com sucesso" + +#, fuzzy +#~ msgid "Back to the mail account list" +#~ msgstr "Volta ao navegador de arquivos" + +#~ msgid "The mailbox %s has been successfully changed" +#~ msgstr "A caixa de email %s foi mudado com sucesso" + +#~ msgid "Edit a mailbox of the domain %s" +#~ msgstr "Editar a caixa de email do domínio %s" + +#~ msgid "Change this mailbox" +#~ msgstr "Mudar esta caixa de email" + +#~ msgid "Mailbox list of the domain %s" +#~ msgstr "Lista de caixas de email do domínio %s" + +#~ msgid "General SQL Admin" +#~ msgstr "Admin do SQL Geral" + +#, fuzzy +#~ msgid "Front page" +#~ msgstr "Nome" + +#, fuzzy +#~ msgid "Create a new database" +#~ msgstr "Criar uma nova base de dados" + +#, fuzzy +#~ msgid "Create this new database." +#~ msgstr "Criar esta nova base de dados." + +#, fuzzy +#~ msgid "Do sql backup?" +#~ msgstr "Fazer backup SQL?" + +#, fuzzy +#~ msgid "How many backup should be kept?" +#~ msgstr "Quantos backups devem ser mantidos?" + +#, fuzzy +#~ msgid "Change the SQL backup parameters" +#~ msgstr "Mudar os parâmetros SQL atuais" + +#, fuzzy +#~ msgid "Change the SQL password" +#~ msgstr "Mudança de senha SQL" + +#, fuzzy +#~ msgid "Get the current SQL parameters" +#~ msgstr "Mostrar os parâmetros SQL atuaís" + +#, fuzzy +#~ msgid "" +#~ "Enter the new password of your SQL database and click 'change the " +#~ "password' to change it" +#~ msgstr "" +#~ "Entrar sua nova senha de base de dados SQL e clica sobre 'Mudança de " +#~ "senha' para a mudar" + +#~ msgid "Restore a SQL backup for database %s" +#~ msgstr "Restaurar o backup SQL para a base de dados %s" + +#~ msgid "Please enter the filename containing SQL data to be restored." +#~ msgstr "" +#~ "Por favor entrar o nome de arquivo que contem os dados do SQL que " +#~ "precisam restaurar." + +#, fuzzy +#~ msgid "err_mysql_20" +#~ msgstr "Sua senha é demasiado longa (16 caráteres max)" + +#, fuzzy +#~ msgid "Create this new user" +#~ msgstr "Criar esta nova base de dados." + +#, fuzzy +#~ msgid "WARNING : Confirm the deletion of this files" +#~ msgstr "AVISO : Confirmar o apagamento do secundário-domínio" + +#, fuzzy +#~ msgid "Please choose the filename containing SQL data to be restored." +#~ msgstr "" +#~ "Por favor entrar o nome de arquivo que contem os dados do SQL que " +#~ "precisam restaurar." + +#, fuzzy +#~ msgid "New Name:" +#~ msgstr "Membro novo" + +#, fuzzy +#~ msgid "Move to" +#~ msgstr "Relocalizar" + +#, fuzzy +#~ msgid "" +#~ "The subdomain has been deleted. Changes will take place in 5 minutes." +#~ msgstr "" +#~ "O domínio %s foi modificado. As modificações estarão atualizadas em 5 " +#~ "minutos." + +#, fuzzy +#~ msgid "Copy to" +#~ msgstr "Copiar" + +#, fuzzy +#~ msgid "Sub-domain" +#~ msgstr "Secundário-domínios" + +#, fuzzy +#~ msgid "Validate this change" +#~ msgstr "Submeter as mudanças" + +#, fuzzy +#~ msgid "Actions" +#~ msgstr "Ação" + +#, fuzzy +#~ msgid "Manage this temporary account" +#~ msgstr "Mudar esta conta FTP" + +#, fuzzy +#~ msgid "Manage the Emails of this domain on the server ?" +#~ msgstr "Administrar o DNS neste servidor ?" + +#, fuzzy +#~ msgid "Edition du sous-domaine" +#~ msgstr "Editando o secundário-domínio %s" + +#, fuzzy +#~ msgid "Sous-domaine" +#~ msgstr "Secundário-domínios" + +#~ msgid "Destroy my database" +#~ msgstr "Destruir minha base de dados" + +#~ msgid "Manage the SQL backup" +#~ msgstr "Administrar os backups SQL" + +#~ msgid "Delete my SQL database" +#~ msgstr "Suprimir minha base de dados SQL" + +#~ msgid "hlp_sql_bck" +#~ msgstr "" +#~ "Seu backup MySQL está salvado na pasta de db.sql.1 a " +#~ "db.sql.19
seu nome da base de dados substitui 'db'.
AVISO: Se você muda os ajustes backup (backups, compressão...) os " +#~ "backups antigos podem ficar na pasta backup.Usar a administração de " +#~ "arquivos para suprimi-los." + +#~ msgid "err_mysql_11" +#~ msgstr "" +#~ "Você não tem nenhuma base de dados, clica sobre 'Base de Dados' para " +#~ "criar a primeira" + +#~ msgid "err_mysql_10" +#~ msgstr "" +#~ "Você não pode criar sua base de dados principal : você ainda tem outras " +#~ "base de dados !" + +#~ msgid "err_mysql_9" +#~ msgstr "O arquivo é incorreto ou não existe." + +#~ msgid "err_mysql_8" +#~ msgstr "A senha é demasiado longa (16 caráteres max)" + +#~ msgid "err_mysql_7" +#~ msgstr "O nome de arquivo você escolheu não existe ou é incorreto." + +#~ msgid "err_mysql_6" +#~ msgstr "A pasta é incorreta!" + +#~ msgid "err_mysql_5" +#~ msgstr "seu número backup está incorreto." + +#~ msgid "err_mysql_4" +#~ msgstr "Esta base de dados jà existe!" + +#~ msgid "err_mysql_3" +#~ msgstr "" +#~ "Sua base de dados não existe, você pode começará um acesso criando o." + +#~ msgid "quota_mysql" +#~ msgstr "MySQL Base de Dados" + +#~ msgid "err_mem_8" +#~ msgstr "A senha deve ter pelo menos 3 caráteres" + +#~ msgid "err_mem_7" +#~ msgstr "As novas senhas são diferentes, por favor tentar de novo" + +# PROBLEME : il y avait 2 fois le 5, les autres messages doivent surement etre décalés (TODO) +#~ msgid "err_mem_6" +#~ msgstr "A senha antiga é incorreta" + +#~ msgid "err_mem_5" +#~ msgstr "Endereço IP incorreto, por favor contatar o administrador" + +#~ msgid "err_mem_4" +#~ msgstr "Sessão desconhecido, por favor contatar o administrador" + +#~ msgid "err_mem_3" +#~ msgstr "Cookie incorreto, por favor aceitar o cookie da sessão" + +#~ msgid "err_mem_2" +#~ msgstr "Esta conta está troncada, por favor chamar o administrador" + +#~ msgid "err_mem_1" +#~ msgstr "Usúario ou senha incorreto" + +#~ msgid "err_mail_15" +#~ msgstr "Este email não é uma conta pop. É impossível mudar a senha !" + +#~ msgid "err_mail_14" +#~ msgstr "Um ou mais redireções de email são invalidos" + +#~ msgid "err_mail_13" +#~ msgstr "Por favor entrar um email valido" + +#~ msgid "err_mail_12" +#~ msgstr "Por favor entrar uma senha pop" + +#~ msgid "err_mail_11" +#~ msgstr "Por favor entrar um endereço Email" + +#~ msgid "err_mail_10" +#~ msgstr "-- Erro de Programa -- Quota de Correios não existe" + +#~ msgid "err_mail_9" +#~ msgstr "O domínio '%s' não existe." + +#~ msgid "err_mail_8" +#~ msgstr "Sua quota email acabou. Você não pode criar mais contas de email." + +#~ msgid "err_mail_7" +#~ msgstr "O email '%s' jà existe." + +#~ msgid "err_mail_6" +#~ msgstr "O domínio '%s' não existe." + +#~ msgid "err_mail_5" +#~ msgstr "-- Erro de Servidor --- Parâmetro é incorreto (%s)" + +#~ msgid "err_mail_4" +#~ msgstr "" +#~ "Por favor escolha 'conta pop' e escholha a senha pop, ou entra algumas " +#~ "redireções, ou os dois" + +#~ msgid "err_mail_3" +#~ msgstr "Este email '%s' não existe" + +#~ msgid "err_mail_2" +#~ msgstr "Nenhum email no domínio '%s'" + +#~ msgid "err_mail_1" +#~ msgstr "conexão ldap impossível, por favor tenta mais tarde." + +#~ msgid "quota_mail" +#~ msgstr "Contas de Email" + +#~ msgid "Delete a protected folder" +#~ msgstr "Delete a protected folder" + +#~ msgid "err_hta_11" +#~ msgstr "Please enter a valid username" + +#~ msgid "err_hta_10" +#~ msgstr "The user '%s' already exist for this folder" + +#~ msgid "err_hta_9" +#~ msgstr "The file '%s' is not correct" + +#~ msgid "err_hta_8" +#~ msgstr "The folder '%s' does not exist" + +#~ msgid "err_hta_7" +#~ msgstr "The file .htaccess does not exist" + +#~ msgid "err_hta_6" +#~ msgstr "I cannot delete the file '%s'/.htpasswd" + +#~ msgid "err_hta_5" +#~ msgstr "I cannot delete the file '%s'/.htaccess" + +#~ msgid "err_hta_4" +#~ msgstr "No protected folder" + +#~ msgid "err_hta_3" +#~ msgstr "" +#~ ".htaccess parsed and syntaxically correct, a .htpasswd already exist." + +#~ msgid "err_hta_2" +#~ msgstr "" +#~ ".htaccess parsed and syntaxically correct, a .htpassword file has been " +#~ "created." + +#~ msgid "err_hta_1" +#~ msgstr "An incompatible .htaccess file exists in this folder." + +#~ msgid "<-No Password->" +#~ msgstr "<-Sem Senha->" + +#~ msgid "hlp_ftp_add" +#~ msgstr "Você não pode adiçionar uma nova conta ftp. Sua conta está cheia." + +#~ msgid "hlp_ftp_list_no" +#~ msgstr "" +#~ "Você não tem nenhuma conta FTP disponível. Clica sobre 'Criar uma conta " +#~ "ftp' para criar uma.
Para poder acessar seus arquivos com um " +#~ "programa ftp, você deve criar pelo menos uma conta. Cada conta é " +#~ "associado com uma pasta, e não pode acessar nada fora os arquivos e " +#~ "pastas nesta pasta'
Mais informação sobre o FTP em Ajuda Online " +#~ "HELPID_100
" + +#~ msgid "hlp_ftp_list" +#~ msgstr "" +#~ "Aqui está a lista de contas ftp com acesso à sua conta.Clica sobre " +#~ "'Modifiçar' para mudar o nome do usúario, a senha ou o diretório de " +#~ "raizPara suprimir uma conta, seliciona a conta correspondante e clica " +#~ "sobre a tecla 'Suprimir as contas selecionadas'
Para poder acessar " +#~ "seus arquivos com um programa ftp, você deve criar pelo menos uma conta. " +#~ "Cada conta é associado com uma pasta, e não pode acessar nada fora os " +#~ "arquivos e pastas nesta pasta'
Mais informação sobre o FTP em Ajuda " +#~ "Online HELPID_100
" + +#~ msgid "err_ftp_6" +#~ msgstr "Esta pasta não pode ser criada." + +#~ msgid "err_ftp_5" +#~ msgstr "" +#~ "Sua quota para a conta FTP está cheio. Você não pode criar mais contas " +#~ "FTPs." + +#~ msgid "err_ftp_4" +#~ msgstr "Esta conta FTP jà existe" + +#~ msgid "err_ftp_3" +#~ msgstr "O prefixo escolhido não é permitido" + +#~ msgid "err_ftp_2" +#~ msgstr "Esta conta FTP não existe" + +#~ msgid "err_ftp_1" +#~ msgstr "Nenhuma conta FTP achada" + +#~ msgid "quota_ftp" +#~ msgstr "Contas FTP" + +#~ msgid "err_err_1" +#~ msgstr "Esta mesagem do erro não existe (%s)" + +#~ msgid "err_err_0" +#~ msgstr "OK" + +#~ msgid "hlp_edit_domain" +#~ msgstr "" +#~ "Esta zona permite as modificações de parâmetros de seu domínio e dos " +#~ "secundários-domínios instalados
Você pode criar um novo secundário-" +#~ "domínio e escholer de re-dirigir a seu espaço de disco, a um outro " +#~ "endereço Internet, o a um endereço IP (utilização advancado)
Mais " +#~ "informação sobre a administração dos domínios na seção de ajuda online " +#~ "HELPID_200
" + +#~ msgid "hlp_del_domain" +#~ msgstr "" +#~ "O domínio foi suprimido, mais os arquivos do seu web-site não foram " +#~ "destruídos.
Se você quiser destruir os arquivos du web-site, usa a " +#~ "Administração de Arquivo
Mais informação sobre a administração dos " +#~ "domínios na seção de ajuda online HELPID_200
" + +#~ msgid "hlp_add_domain_2" +#~ msgstr "" +#~ "Clica sobre o link abaixo. Você pode acessar os parâmetros do domínio no " +#~ "menu à esquerda2 links aparecerão :
- o primeiro para modificar os " +#~ "parâmetros de hospedagem do domínio (secondario-domínios, redireções, " +#~ "hospedagem do email ...)
- o segundo para administrar as contas de " +#~ "email do domínio (se você quiser criar as caixas de email).
Mais " +#~ "informação sobre a administração dos domínios na seção de ajuda online " +#~ "HELPID_200
" + +#~ msgid "hlp_add_domain" +#~ msgstr "" +#~ " - Entrar o nome do domínio que você gostaria hospedar. O nome do domínio " +#~ "deve ser completo, mais sem o www.
IMPORTANTE: Se você " +#~ "gostaria uma hospedagem actual do domínio, o DNS do seu domínio deve " +#~ "apontar para nossos servidors DNS. Contatar sua companhia de hospedagem " +#~ "para mais informação.
Exemplos : globonet.org / demo.com / test.eu." +#~ "org etc.
Mais informação sobre a administração dos domínios na seção " +#~ "da ajuda online HELPID_200
" + +#~ msgid "" +#~ "err_dom_23DNS (and eventually wait 1 day) before you install it again." +#~ msgstr "" +#~ "O DNS deste domínio não combina o DNS do servidor. Por favor mudar o DNS " +#~ "do seu domínio (e esperar 1 dia) antes de instalar-lo de novo." + +#~ msgid "err_dom_22" +#~ msgstr "" +#~ "O domínio pedido é proibido neste servidor. Por favor contatar o " +#~ "administrador" + +#~ msgid "err_dom_21" +#~ msgstr "A pasta que você entrou é incorreta ou não existe." + +#~ msgid "err_dom_20" +#~ msgstr "O URL que você entrou é incorreto." + +#~ msgid "err_dom_19" +#~ msgstr "O endereço IP que você entrou é incorreto." + +#~ msgid "err_dom_18" +#~ msgstr "" +#~ "Este domínio é o do servidor !!! Você não pode hospedá-lo em sua conta !" + +#~ msgid "err_dom_17" +#~ msgstr "--- Erro de Programa --- Fechamento obtido já !" + +#~ msgid "err_dom_16" +#~ msgstr "O secundário-domínio jà existe." + +#~ msgid "err_dom_15" +#~ msgstr "Nenhuma mudança foi pedida..." + +#~ msgid "err_dom_14" +#~ msgstr "O secundário-domínio não existe." + +#~ msgid "err_dom_13" +#~ msgstr "" +#~ "O domínio mudou menos de 5 minutos há. Por favor tenta de novo em algums " +#~ "minutos." + +#~ msgid "err_dom_12" +#~ msgstr "O domínio não foi achado na base de dados Whois." + +#~ msgid "err_dom_11" +#~ msgstr "" +#~ "A base de dados Whois está inacessível, por favor tenta de novo mais " +#~ "tarde." + +#~ msgid "err_dom_10" +#~ msgstr "Sua quota do domínio jà acabou, você não pode criar mais domínios." + +#~ msgid "err_dom_9" +#~ msgstr "O domínio foi suprimido menos de 5 minutos há." + +#~ msgid "err_dom_8" +#~ msgstr "O domínio jà existe." + +#~ msgid "err_dom_7" +#~ msgstr "" +#~ "O ultímo membro do domínio é incorreto ou não pode ser hospidado neste " +#~ "servidor." + +#~ msgid "err_dom_6" +#~ msgstr "" +#~ "Há algums caráteres proibidos no nome domínio (somente A-Z 0-9 e - são " +#~ "permitidos)." + +#~ msgid "err_dom_5" +#~ msgstr "Um dos membros do domínio é demasiado longo." + +#~ msgid "err_dom_4" +#~ msgstr "O nome do domínio é demasiado longo" + +#~ msgid "err_dom_3" +#~ msgstr "--- Erro de program --- Falta o fechamento nos domínios !" + +#~ msgid "err_dom_2" +#~ msgstr "O Domínio '%s' não é o seu" + +#~ msgid "err_dom_1" +#~ msgstr "O Domínio '%s' não foi achado" + +#~ msgid "quota_dom" +#~ msgstr "Nome dos Domínios" + +#~ msgid "err_bro_2" +#~ msgstr "Você não pode relocalizar ou copiar o arquivo a mesma pasta" + +#~ msgid "err_bro_1" +#~ msgstr "Nome do arquivo ou a pasta é incorreto" + +#~ msgid "Number of FTP accounts" +#~ msgstr "Número de contas FTP" + +#~ msgid "Number of email accounts" +#~ msgstr "Número de contas do email" + +#~ msgid "Disk space (in KB)" +#~ msgstr "Espaco Disco (em KB)" + +#~ msgid "Recalculate the quotas of the account" +#~ msgstr "Recalcular os quotas da conta" + +#~ msgid "err_admin_12" +#~ msgstr "Este TLD jà existe" + +#~ msgid "err_admin_11" +#~ msgstr "Este TLD não existe" + +#~ msgid "err_admin_10" +#~ msgstr "Somente os carateres a-z, 0-9 e - são permitidos no Login" + +#~ msgid "err_admin_8" +#~ msgstr "Esta conta JÀ é uma conta administrativa" + +#~ msgid "err_admin_7" +#~ msgstr "Você pode me peder uma senha somente uma vez por dia !" + +#~ msgid "err_admin_6" +#~ msgstr "Todos os campos são obrigatórios" + +#~ msgid "err_admin_5" +#~ msgstr "Por favor entrar um endreço email válido" + +#~ msgid "err_admin_4" +#~ msgstr "-- Não posso criar esta conta --" + +#~ msgid "err_admin_3" +#~ msgstr "Este login jà existe" + +#~ msgid "err_admin_2" +#~ msgstr "Conta não foi achado" + +#~ msgid "err_admin_1" +#~ msgstr "-- Somente os administradores tem acceso à essas paginas !! --" diff --git a/ssl/ssl.sql b/ssl/ssl.sql new file mode 100644 index 00000000..b6e32e22 --- /dev/null +++ b/ssl/ssl.sql @@ -0,0 +1,20 @@ + +CREATE TABLE `certificates` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `uid` int(10) unsigned NOT NULL, + `status` tinyint(3) unsigned NOT NULL, + `shared` tinyint(3) unsigned NOT NULL, + `fqdn` varchar(255) NOT NULL, + `altnames` text NOT NULL, + `validstart` datetime NOT NULL, + `validend` datetime NOT NULL, + `sslcsr` text NOT NULL, + `sslkey` text NOT NULL, + `sslcrt` text NOT NULL, + `sslchain` text NOT NULL, + `ssl_action` varchar(32) NOT NULL, + `ssl_result` varchar(32) NOT NULL, + PRIMARY KEY (`id`), + KEY `uid` (`uid`), + KEY `ssl_action` (`ssl_action`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; diff --git a/ssl/ssl_alias_manager.sh b/ssl/ssl_alias_manager.sh new file mode 100644 index 00000000..ba20414d --- /dev/null +++ b/ssl/ssl_alias_manager.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +# Launched by incron when /tmp/generate_certif_alias exists +# regenerate the list of global aliases used by Comodo for certificate ownership validation +APACHECONF=/etc/apache2/conf.d/alternc-ssl_cert-alias.conf +TMP=/tmp/alternc-ssl_cert-alias_${$}.tmp +FILEDIR=/var/lib/alternc/ssl-cert-alias + + +rm -f "$TMP" +mkdir -p "$FILEDIR" + +mysql --defaults-file=/etc/alternc/.my.cnf --skip-column-names -B -e "SELECT name,value FROM certif_alias;" | while read name value +do + echo "alias $name ${FILEDIR}${name}" >>$TMP + echo "$value" >"${FILEDIR}${name}" +done +mv -f "$TMP" "$APACHECONF" + +service apache2 reload + diff --git a/ssl/templates/panel-ssl.conf b/ssl/templates/panel-ssl.conf new file mode 100644 index 00000000..d1fb3700 --- /dev/null +++ b/ssl/templates/panel-ssl.conf @@ -0,0 +1,30 @@ + + DocumentRoot /usr/share/alternc/panel/admin + AssignUserId alterncpanel alterncpanel + SetEnv LOGIN "%%UID%%-%%LOGIN%%" + ServerName %%fqdn%% + RewriteEngine on + RewriteRule ^/admin/(.*) /$1 + + alias /alternc-sql /usr/share/phpmyadmin + + RewriteEngine On + RewriteRule ^webmail /webmail-redirect.php [L] + + # Mail autoconfig + RewriteRule ^mail/mailautoconfig.xml$ /mailautoconfig_thunderbird.php [L] + RewriteRule ^mail/config-v1.1.xml$ /mailautoconfig_thunderbird.php [L] + RewriteRule ^autodiscover/autodiscover.xml$ /mailautoconfig_outlook.php [L] + RewriteRule ^Autodiscover/Autodiscover.xml$ /mailautoconfig_outlook.php [L] + RewriteRule ^Autodiscover.xml$ mailautoconfig_outlook.php [L] + RewriteRule ^autodiscover.xml$ mailautoconfig_outlook.php [L] + + # will be used to define aliases such as /javascript /squirrelmail ... + Include /etc/alternc/apache-panel.d/*.conf + + SSLEngine On + SSLCertificateFile %%CRT%% + SSLCertificateKeyFile %%KEY%% + %%CHAINLINE%% + + diff --git a/ssl/templates/roundcube-ssl.conf b/ssl/templates/roundcube-ssl.conf new file mode 100644 index 00000000..3d929cb6 --- /dev/null +++ b/ssl/templates/roundcube-ssl.conf @@ -0,0 +1,58 @@ + + ServerName %%fqdn%% + AssignUserId www-data www-data + SetEnv LOGIN "0000-roundcube" + + DocumentRoot /var/lib/roundcube + + # Access to tinymce files + + Options Indexes MultiViews FollowSymLinks + AllowOverride None + Order allow,deny + allow from all + + + + Options +FollowSymLinks + # This is needed to parse /var/lib/roundcube/.htaccess. See its + # content before setting AllowOverride to None. + AllowOverride All + order allow,deny + allow from all + + + # Protecting basic directories: + + Options -FollowSymLinks + AllowOverride None + + + + Options -FollowSymLinks + AllowOverride None + Order allow,deny + Deny from all + + + + Options -FollowSymLinks + AllowOverride None + Order allow,deny + Deny from all + + + Alias /javascript /usr/share/javascript/ + + + Options FollowSymLinks MultiViews + Order allow,deny + Allow from all + + + SSLEngine On + SSLCertificateFile %%CRT%% + SSLCertificateKeyFile %%KEY%% + %%CHAINLINE%% + + diff --git a/ssl/templates/squirrelmail-ssl.conf b/ssl/templates/squirrelmail-ssl.conf new file mode 100644 index 00000000..1a43e3e1 --- /dev/null +++ b/ssl/templates/squirrelmail-ssl.conf @@ -0,0 +1,26 @@ + + ServerName %%fqdn%% + AssignUserId alternc-squirrelmail nogroup + SetEnv LOGIN "%%UID%%-%%LOGIN%%" + + DocumentRoot /usr/share/squirrelmail + + php_value open_basedir /usr/share/squirrelmail:/etc/squirrelmail/:/var/lib/squirrelmail/data/:/var/spool/squirrelmail/:/etc/mailname + php_admin_flag safe_mode off + Options Indexes FollowSymLinks + + + Alias /javascript /usr/share/javascript/ + + + Options FollowSymLinks MultiViews + Order allow,deny + Allow from all + + + SSLEngine On + SSLCertificateFile %%CRT%% + SSLCertificateKeyFile %%KEY%% + %%CHAINLINE%% + + diff --git a/ssl/templates/url-ssl.conf b/ssl/templates/url-ssl.conf new file mode 100644 index 00000000..9f20b30b --- /dev/null +++ b/ssl/templates/url-ssl.conf @@ -0,0 +1,17 @@ + + ServerName %%fqdn%% + AssignUserId #%%UID%% #%%GID%% + SetEnv LOGIN "%%UID%%-%%LOGIN%%" + + KeepAlive Off + + RewriteEngine On + RewriteCond %{REQUEST_FILENAME} !/cgi-bin/ + RewriteRule ^/(.*)$ %%redirect%%/$1 [R=301,L] + + SSLEngine On + SSLCertificateFile %%CRT%% + SSLCertificateKeyFile %%KEY%% + %%CHAINLINE%% + + diff --git a/ssl/templates/vhost-ssl.conf b/ssl/templates/vhost-ssl.conf new file mode 100644 index 00000000..0283033c --- /dev/null +++ b/ssl/templates/vhost-ssl.conf @@ -0,0 +1,22 @@ + + ServerName %%fqdn%% + DocumentRoot "%%document_root%%" + AssignUserId #%%UID%% #%%GID%% + SetEnv LOGIN "%%UID%%-%%LOGIN%%" + + + php_admin_value open_basedir "%%account_root%%:/usr/share/php/" + php_admin_value upload_tmp_dir %%account_root%%/tmp + php_admin_value sendmail_path '/usr/lib/alternc/sendmail "%%mail_account%%" ' + php_admin_flag mail.add_x_header on + Options +MultiViews -FollowSymLinks +SymLinksIfOwnerMatch + AllowOverride AuthConfig FileInfo Limit Options Indexes + + + SSLEngine On + SSLCertificateFile %%CRT%% + SSLCertificateKeyFile %%KEY%% + %%CHAINLINE%% + + + diff --git a/ssl/update_ssl.php b/ssl/update_ssl.php new file mode 100644 index 00000000..4a17b121 --- /dev/null +++ b/ssl/update_ssl.php @@ -0,0 +1,8 @@ +#!/usr/bin/php +