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 + 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 00000000..4f391de3 Binary files /dev/null and b/ssl/panel/locales/de_DE/LC_MESSAGES/alternc.mo differ 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 00000000..986043e6 Binary files /dev/null and b/ssl/panel/locales/en_US/LC_MESSAGES/alternc.mo differ diff --git a/ssl/panel/locales/en_US/LC_MESSAGES/manual.po b/ssl/panel/locales/en_US/LC_MESSAGES/manual.po new file mode 100644 index 00000000..17773ffc --- /dev/null +++ b/ssl/panel/locales/en_US/LC_MESSAGES/manual.po @@ -0,0 +1,793 @@ +# English AlternC Translation +# Copyright (c) 2002 the AlternC Development Team +# +# $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 00000000..dc06b5e5 Binary files /dev/null and b/ssl/panel/locales/es_ES/LC_MESSAGES/alternc.mo differ 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 00000000..8f5f1705 Binary files /dev/null and b/ssl/panel/locales/fr_FR/LC_MESSAGES/alternc.mo differ 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 00000000..b550b85b Binary files /dev/null and b/ssl/panel/locales/it_IT/LC_MESSAGES/alternc.mo differ diff --git a/ssl/panel/locales/it_IT/LC_MESSAGES/manual.po b/ssl/panel/locales/it_IT/LC_MESSAGES/manual.po new file mode 100644 index 00000000..281f7ca3 --- /dev/null +++ b/ssl/panel/locales/it_IT/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/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 00000000..7cb3e7ce Binary files /dev/null and b/ssl/panel/locales/nl_NL/LC_MESSAGES/alternc.mo differ 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 00000000..50e40d64 Binary files /dev/null and b/ssl/panel/locales/pt_BR/LC_MESSAGES/alternc.mo differ 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 +